*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
	
--basic-white: #fff; /* белый */

--basic-black: #082e55; /* темный */
--basic-dark: #4b4b4b; /* темно-серебрянный */

--basic-grey: #c1b6b8; 
--basic-grey-light: #e4dfe0;
--basic-grey-pale: #f0eded;
--basic-grey-border: #d8d1d3;

--basic-yellow: #ffcd29;

}

html,
input,
textarea {}

html,
input,
textarea,
select,
p {
    position: relative;
    font-family: 'poppins', Tahoma, Calibri;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: var(--basic-white);
}

body {
    position: relative;
    text-align: left;
    margin: 0 auto;
    background: var(--basic-black);
    -webkit-font-smoothing: antialiased;
    min-width: 980px;
    overflow-x: hidden;
}

@media screen and (max-width: 920px) {
		
	body {
		min-width:320px;
	}	
	
}

body:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--basic-black);
    opacity: 0;
    transition: all .4s ease;
}

body.show-menu:before {
    opacity: .64;
    transition: all .4s ease;
    z-index: 998;
}

::selection {
    color: var(--basic-white);
    background-color: var(--basic-grey);
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--basic-black);
}

::-webkit-scrollbar-thumb {
    background: var(--basic-dark);
}

a,
input,
select,
textarea {
    outline: none !important;
}

img {
    vertical-align: top;
}

iframe {
    border: none;
    vertical-align: top;
}

ul,
ol {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
}

/*** ------------ clear ------------ ***/

header:after,
.wrap:not(.d-flex):after,
.container:not(.d-flex):after,
ul:after,
ol:after,
form:after {
    content: '';
    display: block;
    clear: both;
    overflow: hidden;
}

*:first-child {
    margin-top: 0;
}

*:last-child {
    margin-bottom: 0;
}

/*** ------------ end.clear ------------ ***/



/*** ------------ headings, text ------------ ***/

h1,
h2,
h3,
h4,
h5,
.text__title {
    position: relative;
    font-family: 'poppins';
    font-weight: 300;
    margin: 0 0 32px;
}

* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + .text__title {
    margin-top: 48px;
}

.text__title:last-child {
    margin-bottom: 0;
}

h1,
.__h1 {
    font-size: 56px;
    line-height: 56px;
}

h2,
.__h2 {
    font-size: 48px;
    line-height: 48px;
}

h3,
.__h3 {
    font-size: 32px;
    line-height: 32px;
}

h4,
.__h4 {
    font-size: 24px;
    line-height: 24px;
}

h5,
.__h5 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 24px;
}

p {
    margin: 0;
}

p + p,
.__p + .__p,
* + ul.ul__list,
ul.ul__list li + li {
    margin-top: 12px;
}

ul.ul__list + p {
    margin-top: 24px;
}

.text__big {
    font-size: 18px;
    line-height: 26px;
}

.text__big + * {
    margin-top: 32px;
}

.text__small {
    font-size: 14px;
    line-height: 20px;
}

.text__extra-small {
    font-size: 12px;
    line-height: 16px;
}

.text__uppercase {
    text-transform: uppercase;
}

.text__lowercase {
    text-transform: lowercase;
}

.text__center {
    text-align: center;
}

.text__indent-64 {
    text-indent: 64px;
}

.text__indent-128 {
    text-indent: 128px;
}

.text__color-yellow {
    color: var(--basic-yellow);
}

.text__title > .text__color-yellow {
	text-shadow: var(--basic-yellow) 1px 0 8px;
}

.text__color-grey {
    color: var(--basic-grey);
}

.text__color-black {
    color: var(--basic-black);
}

.text__color-white {
    color: var(--basic-white);
}

.text__width-75 {
    max-width: 75%;
}

.text__width-66 {
    max-width: 66%;
}

.text__width-50 {
    max-width: 50%;
}

.text__bold,
b,
strong {
    font-weight: 400;
}

.text__opacity,
.opacity {
    opacity: .4;
}

.text__italic,
i {
    font-style: italic;
}

ul,
ol {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.ul__list li {
    position: relative;
    padding-left: 32px;
}

ul.ul__list li:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    display: block;
    width: 16px;
    height: .75px;
    background: var(--basic-grey);
    z-index: 12;
}

.bg__black ul.ul__list li:before {
    background: var(--basic-white);
}

ul.ul__list.text__small li:before {
    top: 10px;
}

img.img__wrap {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

img.img__contain {
    width: auto;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

@media screen and (max-width: 920px) {
        
    h1,
    h2,
    h3,
    h4,
    h5,
    .text__title {
        margin: 0 0 24px;
    }
    
    * + h1,
    * + h2,
    * + h3,
    * + h4,
    * + h5,
    * + .text__title {
        margin-top: 32px;
    }
    
    h1,
    .__h1 {
        font-size: 40px;
        line-height: 44px;
    }
    
    h2,
    .__h2 {
        font-size: 32px;
        line-height: 36px;
    }
    
    h3,
    .__h3 {
        font-size: 28px;
        line-height: 32px;
    }
        
    .text__indent-64 {
        text-indent: 32px;
    }
    
    .text__indent-128 {
        text-indent: 64px;
    }

}

/*** ------------ end.headings, text ------------ ***/



/*** ------------ links ------------ ***/

a {
    position: relative;
    color: var(--basic-white);
}

a,
a:hover {
    text-decoration: none !important;
    transition: all .4s ease;
}

.link__scroll-location {
    position: absolute;
    top: -48px;
}

	/*** ------------ link__border-bottom ------------ ***/
    
.link__border-bottom {
	display: inline-block;
    color: var(--basic-white);
	border-bottom: 1.5px solid rgba(255,255,255,.32);
}

.link__border-bottom:hover {
    color: var(--basic-yellow);
	border-color: var(--basic-yellow);
}

	/*** ------------ link__button ------------ ***/

.link__button {
	display: inline-block;
	padding: 12px 32px;
	color: var(--basic-white);
	border: 1.5px solid rgba(255,255,255,.32);
	border-radius: 16px;
	overflow: hidden;
	z-index: 12;
}

* + .link__button {
	margin-top: 32px;
}
  
.link__button:hover {
    color: var(--basic-black);
    border-color: var(--basic-white);
    box-shadow: 0px 0px 48px rgba(255,205,41,.64);
}

.link__button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    display: block; 
    width: 110%;
    height: 0;
    background: var(--basic-white);
    z-index: 1;
    transition: all .4s ease;
}

.link__button:hover:before {
    height: 110%;
    transition: all .4s ease;
}

.link__button span {
    position: relative;
    z-index: 12;
}

/*** ------------ end.links ------------ ***/



/*** ------------ icon__before ------------ ***/

.icon__before:before {
	content: '';
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	margin-right: 12px;
    transition: all .4s ease;
}

a:hover .icon__before:before {
    transition: all .4s ease;
}

.icon-before__shield:before {
	background: url('../images/icons/icon__all/icon__shield-white.svg') no-repeat center transparent;
	background-size: cover;
}

a:hover .icon-before__shield:before {
	background: url('../images/icons/icon__all/icon__shield-black.svg') no-repeat center transparent;
	background-size: cover;
}

/*** ------------ end.icon__before ------------ ***/



/*** ------------ form ------------ ***/

form,
button,
submit {}

input,
button,
submit,
textarea {
    -webkit-appearance: none;
    border-radius: 0;
}

input[type="text"],
input[type="file"],
input[type="password"],
input[type="submit"],
input[type="button"],
textarea {
    position: relative;
    display: inline-block;
    padding: 16px 24px;
    font-size: 14px;
    line-height: 24px;
    border-radius: 16px;
    border: 0;
}

input[type="text"],
input[type="file"],
input[type="password"] {
    width: 100%;
}

textarea {
    width: 100%;
}

input[type="text"],
input[type="file"],
input[type="password"],
textarea {
    background: rgba(255,255,255,.04);
    background-color: rgba(255,255,255,.04);
}

input[type="submit"],
input[type="button"] {
    width: auto;
    color: var(--basic-black);
    background: var(--basic-yellow);
    box-shadow: var(--basic-yellow) 1px 0 8px;
    transition: all .4s ease;
}

input[type="submit"]:hover,
input[type="button"]:hover {
    color: var(--basic-black);
    background: var(--basic-white);
    box-shadow: var(--basic-white) 1px 0 8px;
    transition: all .4s ease;
}

textarea {
    min-width: 100%;
    max-width: 100%;
    height: 112px;
    min-height: 112px;
    max-height: 112px;
}

input + input,
input + textarea,
textarea + input {
    margin-top: 8px;
}

::-webkit-input-placeholder {color: var(--basic-white);}
::-moz-placeholder          {color: var(--basic-white);}
:-moz-placeholder           {color: var(--basic-white);}
:-ms-input-placeholder      {color: var(--basic-white);}

form + p {
    margin-top: 24px;
    text-align: right;
}

/*** ------------ end.form ------------ ***/



/*** ------------ wrap ------------ ***/

.wrap {
    position: relative;
    display: block;
    width: 100%;
}

.container {
    position: relative;
    display: block;
    max-width: 1336px;
    width: calc(100% - 64px);
    padding: 0 16px;
    margin: auto;
}

.__none {
    display: none !important;
}

@media screen and (max-width: 920px) {
			
	.container {
		width: 100%;
	}

}

/*** ------------ end.wrap ------------ ***/



/*** ------------ flex ------------ ***/

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.fw-nowrap {
    flex-wrap: nowrap;
}

.fd-column {
    flex-direction: column;
}

.fd-row-reverse {
    flex-direction: row-reverse;
}

.fd-column-reverse {
    flex-direction: column-reverse;
}

.jc-space-between {
    justify-content: space-between;
}

.ai-center {
    align-items: center;
}

.ai-baseline {
    align-items: baseline;
}

.__auto-top {
    margin-top: auto;
}

.__auto-right {
    margin-right: auto;
}

.__auto-bottom {
    margin-bottom: auto;
}

.__auto-left {
    margin-left: auto;
}

.__h-100 {
    height: 100%;
}

/*** ------------ end.flex ------------ ***/



/*** ------------ content ------------ ***/

#wrapper {
    position: relative;
    width: 100%;
    min-height: 100%;
}

#content__wrap {
    position: relative;
    width: 100%;
}
 
.content {
    padding-top: 64px;
    padding-bottom: 64px;
}

.__sticky {
    position: sticky;
    top: 32px;
}

.__is-hidden {
    overflow: hidden;
}

.content__header:not(:last-child) {
    margin-bottom: 32px;
}

.content__header > *:nth-child(1) {
    margin: 0;
}

.content__header > *:nth-child(2) {
    margin: 0 0 0 auto;
}

@media screen and (max-width: 920px) {
        	
    .content {
        padding-top: 48px;
        padding-bottom: 48px;
    }

}

/*** ------------ end.content ------------ ***/



/*** ------------ item-grid ------------ ***/

.item-grid {
    width: calc(100% + 32px);
    margin: -16px;
}

.item-grid.__no-padding {
    width: 100%;
    margin: 0 auto;
}
    
.item-grid > .item {
    padding: 16px;
}
   
.item-grid.__no-padding > .item {
    padding: 0;
}
    
.item-grid > a.item {
    border: 0;
}    
    
.item-grid.item-grid-2 > .item {
    width: 50%;
}
    
.item-grid.item-grid-2 > .item.item-wide,
.item-grid.item-grid-3 > .item.item-extra,
.item-grid.item-grid-4 > .item.item-extra {
    width: 100%;
}
    
.item-grid.item-grid-3 > .item {
    width: 33.333%;
}
    
.item-grid.item-grid-3 > .item.item-wide {
    width: 66.666%;
}
    
.item-grid.item-grid-4 > .item {
    width: 25%;
}
    
.item-grid.item-grid-4 > .item.item-wide,
.item-grid.item-grid-3 > .item.item-50 {
    width: 50%;
}
    
.item-grid.item-grid-5 > .item {
    width: 20%;
}
    
.item-grid.item-grid-6 > .item {
    width: 16.666%;
}
    
.item-grid.item-grid-7 > .item {
    width: 14.28%;
}
    
.item-grid.item-grid-8 > .item {
    width: 12.5%;
}

@media screen and (max-width: 920px) {
    
    .item-grid {
		width: 100%;
		margin: -16px auto;
	}

	.item-grid > .item {
		padding: 16px 0;
	}
    
    .item-grid.item-grid-2 > .item,
    .item-grid.item-grid-3 > .item,
    .item-grid.item-grid-4 > .item,
    .item-grid.item-grid-5 > .item,
    .item-grid.item-grid-6 > .item,
    .item-grid.item-grid-7 > .item,
    .item-grid.item-grid-8 > .item,
    .item-grid.item-grid-2 > .item.item-wide,
    .item-grid.item-grid-3 > .item.item-wide,
    .item-grid.item-grid-4 > .item.item-wide,
    .item-grid.item-grid-3 > .item.item-extra,
    .item-grid.item-grid-3 > .item.item-50	{
        width: 100%;
    }
        
}
    
/*** ------------ end.item-grid ------------ ***/



/*** ------------ hello__wrap ------------ ***/

.hello__wrap {
    height: 100%;
}

.hello-wrap__content {
    
}

.hello-wrap__logo {
    position: relative;
    display: block;
    width: 192px;
    height: 64px;
    margin: 0 auto 32px;
    background: url('../images/logo/logo.png') no-repeat center transparent;
    background-size: contain;
    z-index: 1;
}

.form__fields {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: auto;
}

* + .form__fields {
    margin-top: 24px;
}

.form-fields__col {
    position: relative;
}

.form-fields__col + .form-fields__col {
    margin-left: 8px;
}

.form-fields__col:nth-child(1) {
    width: calc(100% - 80px);
}

.form-fields__col:nth-child(2) {
    width: 72px;
}

@media screen and (max-width: 920px) {
    	
}

/*** ------------ end.hello__block ------------ ***/



/*** ------------ admin ------------ ***/

.upload {
	margin: auto;
}

* + .pagination,
* + .codes-table {
	margin-top: 32px;
}

.pagination > a {
	position: relative;
	display: inline-block;
	min-width: 32px;
	font-size: 10px;
    line-height: 32px;
    text-align: center;
    padding: 0 4px;
    margin: 2px 4px 2px 0;
    border-radius: 8px;
    border: 0;
	color: var(--basic-white);
	background: rgba(255,255,255,.04);
}

.pagination > a:hover {
	background: rgba(255,255,255,.16);
}

.pagination > a.active {
	color: var(--basic-black);
	background: var(--basic-white);
}

.codes-table table {
    position: relative;
    font-size: 14px;
    line-height: 20px;
	border: 1px solid rgba(255,255,255,.16);
}

.codes-table table tr + tr {
	border-top: 1px solid rgba(255,255,255,.16);
}

.codes-table table tr > th + th,
.codes-table table tr > td + td {
	border-left: 1px solid rgba(255,255,255,.16);
}

.codes-table table tr > th {
    font-weight: 400;
    text-align: left;
	background: rgba(255,255,255,.04);
}

.codes-table table tr > th,
.codes-table table tr > td {
    padding: 12px 16px;
}

/*** ------------ end.admin ------------ ***/