*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
	
--basic-white: #fff; /* белый */

--basic-total-black: #000; /* черный */
--basic-black: #202021; /* темный */

--basic-grey: #b5b6b8; /* серый */
--basic-grey-light: #ebeff2; /* светло-серый */

--basic-beige: #f9f3e3; /* фирменный бежевый */

--basic-green: #267f44; /* фирменный зеленый */
--basic-green-dark: #06391f; /* тёмно-зеленый */
--basic-green-light: #007e3e; /* светло-зеленый */

--basic-blue: #316db3; /* фирменный синий */
--basic-red: #cb2229; /* фирменный красный */
--basic-yellow: #d1b12c; /* фирменный желтый */

--transitionLong: all 1.2s cubic-bezier(.19,1,.22,1); /* transition долгий */
--transition: all .6s cubic-bezier(.19,1,.22,1); /* transition */

}

html,
input,
textarea {}

html,
input,
textarea,
select,
p,
.__p {
    position: relative;
    font-family: 'manrope', Tahoma, Calibri;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

html,
input,
textarea,
select,
p {
    color: var(--basic-black);
}

body {
    position: relative;
    text-align: left;
    margin: 0 auto;
    background: var(--basic-beige);
    -webkit-font-smoothing: antialiased;
    min-width: 980px;
    overflow-x: hidden;
}

body.__hide-all {
    padding-right: 4px;
    overflow-y: 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%;
    transition: var(--transitionLong);
    background: var(--basic-black);
    opacity: 0;
}

body.show-menu:before, 
body.__hide-all:before {
    opacity: .64;
    transition: var(--transitionLong);
    z-index: 998;
}

::selection {
    color: var(--basic-grey);
    background-color: var(--basic-green-light);
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--basic-white);
}

::-webkit-scrollbar-thumb {
    background: var(--basic-black);
}

a,
input,
select,
textarea {
    outline: none;
}

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,
.text__sub-title {
    position: relative;
    font-weight: 400;
    margin: 0 0 32px;
}

* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + .text__title {
    margin-top: 48px;
}

.text__title:last-child,
.text__sub-title:last-child {
    margin-bottom: 0;
}

.text__sub-title {
    display: block;
    width: fit-content;
    padding: 12px 24px;
    font-weight: 500;
    border: 1.5px solid rgba(209,177,44,.32);
    border-radius: 32px;
}

.text__sub-title.text__center {
    margin: auto;
}

.text__sub-title + .text__title {
    margin-top: 48px;
}

h1,
.__h1 {
    font-size: 48px;
    line-height: 56px;
}

h2,
.__h2 {
    font-size: 40px;
    line-height: 44px;
}

h3,
.__h3 {
    font-size: 32px;
    line-height: 36px;
}

h4,
.__h4 {
    font-size: 28px;
    line-height: 32px;
}

h5,
.__h5 {
    font-size: 24px;
    line-height: 28px;
}

p,
.__p {
    margin: 0;
}

p + p,
.__p + .__p,
* + ul.ul__list,
ul.ul__list + p,
ul.ul__list li + li {
    margin-top: 12px;
}

.text__big {
    font-size: 20px;
    line-height: 28px;
}

.text__big + *  {
    margin-top: 16px;
}

* + .text__big  {
    margin-top: 48px;
}

.text__normal {
    font-size: 16px;
    line-height: 24px;
}

.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__nowrap {
    position: relative;
    white-space: nowrap;
    transition: var(--transitionLong);
}

.text__nowrap:hover {
    transition: var(--transitionLong);
    z-index: 100;
}

.text__indent-64 {
    text-indent: 64px;
}

.text__indent-96 {
    text-indent: 96px;
}

.text__indent-128 {
    text-indent: 128px;
}

.text__mt-24 {
    margin-top: 24px !important;
}

.text__right {
    text-align: right;
}

.text__color-green {
    color: var(--basic-green);
}

.text__color-green-light {
    color: var(--basic-green-light);
}

.text__color-black {
    color: var(--basic-black);
}

.text__color-grey {
    color: var(--basic-grey);
}

.text__color-grey-light {
    color: var(--basic-grey-light);
}

.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: 500 !important;
}

.text__extra-bold {
    font-weight: 700;
}

.text__opacity,
.opacity {
    opacity: .48;
}

.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: 48px;
}

ul.ul__list li:before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    display: block;
    width: 32px;
    height: 1px;
    background: var(--basic-green);
    z-index: 12;
}

ul.ul__list.text__small li:before {
    top: 8px;
}

.text__title + ul.ul__list {
    margin-top: 64px;
}

img.img__wrap, 
img.img__contain {
    height: 100%;
    -o-object-position: center;
    object-position: center;
}

img.img__wrap {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

img.img__contain {
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

@media screen and (max-width: 920px) {
            
    h1,
    .__h1 {
        font-size: 36px;
        line-height: 40px;
    }

    h2,
    .__h2 {
        font-size: 32px;
        line-height: 36px;
    }

    h3,
    .__h3 {
        font-size: 28px;
        line-height: 32px;
    }

    h4,
    .__h4 {
        font-size: 24px;
        line-height: 28px;
    }

    h5,
    .__h5 {
        font-size: 20px;
        line-height: 24px;
    }

    .text__width-75,
    .text__width-66,
    .text__width-50 {
        max-width: 100%;
    }
    
}

/*** ------------ end.headings, text ------------ ***/



/*** ------------ links ------------ ***/

a {
    position: relative;
    color: var(--basic-black);
}

a,
a:hover {
    text-decoration: none !important;
    outline: none !important;
    transition: var(--transition);
}

.link__scroll-location {
    position: absolute;
    top: -96px;
}

	/*** ------------ link__border-bottom ------------ ***/
    
.link__border-bottom {
	display: inline-block;
    width: fit-content;
    color: var(--basic-black);
}

.link__border-bottom.text__color-white {
    color: var(--basic-white);
}

.link__border-bottom:hover {
    color: var(--basic-green);
}

.link__border-bottom.text__color-white:hover {
    color: var(--basic-yellow);
}

.link__border-bottom:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--basic-green);
    transform: scalex(0);
    transform-origin: right;
    z-index: 12;
    transition: transform 1.6s cubic-bezier(.19,1,.22,1);
}

.link__border-bottom.text__color-white:before {
    background: var(--basic-white);
}

.link__border-bottom:hover:before {
    transform: scalex(1);
    transform-origin: left;
    transition: transform 1.6s cubic-bezier(.19,1,.22,1);
}

.link__border-bottom > div {
    width: 12px;
    height: 12px;
    overflow: hidden;
    margin-left: 8px;
}

.link__border-bottom > div img {
    margin: auto;
    width: 100%;
}

	/*** ------------ link__button ------------ ***/

.link__button {
    width: fit-content;
    cursor: pointer;
    overflow: hidden;
}

.link__button:hover {
    color: var(--basic-black);
}

.link__button *,
.link__button:hover * {
    transition: var(--transitionLong);
}

.link__button span {
    position: relative;
    display: inline-block;
    background: var(--basic-green);
    color: var(--basic-black);
    font-size: 14px;
    line-height: 16px;
    padding: 16px 32px;
    border-radius: 32px;
    z-index: 100;
}

.link__button span.__grey {
    color: var(--basic-white);
    background: var(--basic-grey);
}

.link__button:hover span {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
}

.link__button > div {
    width: 48px;
    height: 48px;
    background: var(--basic-green);
    border-radius: 50%;
    overflow: hidden;
}

.link__button > div.__grey {
    background: var(--basic-grey);
}

.link__button:hover > div {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
}

.link__button > div img {
    margin: auto;
    max-width: 12px;
}

.link__button:hover > div img {
    transform: rotate(405deg);
}

* + .link__button {
    margin-top: 48px;
}

@media screen and (max-width: 920px) {
        
    .link__button span {
        padding: 16px 20px;
    }

}

	/*** ------------ link__rotate ------------ ***/

.link__rotate {
    position: relative;
    width: fit-content;
    cursor: pointer;
    overflow: hidden;
}

.text__center > .link__rotate {
    margin: auto;
}

.link__rotate:before,
.link__rotate:hover:before,
.link__rotate > div,
.link__rotate:hover > div {
    transition: var(--transitionLong);
}

.link__rotate:before {
    content: attr(data-title);
    position: absolute;
    top: 100%;
    left: 0;
}

.link__rotate:hover > div,
.link__rotate:hover:before {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

    /*** ------------ links__wrap ------------ ***/

* + .links__wrap {
    margin-top: 32px;
}

.links__wrap > * + * {
    margin-top: 0;
    margin-left: 32px;
}

/*** ------------ end.links ------------ ***/



/*** ------------ form ------------ ***/

form,
button,
submit {}

input,
button,
submit,
textarea {
    -webkit-appearance: none;
    border-radius: 0;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
    color: transparent;
}

input[type=date]:required:invalid::-webkit-datetime-edit {
    color: transparent;
}
input[type=date]:focus::-webkit-datetime-edit {
    color: black !important;
}

input[type="text"],
input[type="date"],
input[type="password"],
input[type="submit"],
textarea {
    position: relative;
    display: inline-block;
    color: var(--basic-black);
    font-weight: 400;
    border: 0;
}

textarea {
    width: 100%;
}

input[type="submit"] {
    width: auto;
    color: var(--basic-white);
    background: var(--basic-green);
    transition: var(--transition);
}

input[type="submit"]:hover {
    color: var(--basic-black);
    transition: var(--transition);
}

textarea {
    min-width: 100%;
    max-width: 100%;
    height: 112px;
    min-height: 112px;
    max-height: 112px;
}

::-webkit-input-placeholder {color: var(--basic-black);background: transparent;}
::-moz-placeholder          {color: var(--basic-black);background: transparent;}
:-moz-placeholder           {color: var(--basic-black);background: transparent;}
:-ms-input-placeholder      {color: var(--basic-black);background: transparent;}

form + p {
    margin-top: 24px;
}

/*** ------------ end.form ------------ ***/



/*** ------------ wrap ------------ ***/

.wrap {
    position: relative;
    display: block;
    width: 100%;
}

.container {
    position: relative;
    display: block;
    max-width: 1336px;
    width: calc(100% - 32px);
    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 ------------ ***/



/*** ------------ absolute-* ------------ ***/

.absolute-center,
.popup {
    position: absolute;
    left: 50%;
    z-index: 23;
}

.absolute-center,
.popup {
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}

@media screen and (max-width: 920px) {
	
}

/*** ------------ end.absolute-* ------------ ***/



/*** ------------ content ------------ ***/

#wrapper {
    position: relative;
    width: 100%;
    min-height: 100%;
}

#content__wrap {
    position: relative;
    width: 100%;
    min-height: calc(100% - 180.75px);
    z-index: 20;
}

.content {
    padding-top: 96px;
    padding-bottom: 96px;
}

header + #content__wrap > .__main-content > .content:first-child {
    padding-top: 160px;
}

.__is-hidden {
    overflow: hidden;
}

@media screen and (max-width: 920px) {
    
}

/*** ------------ end.content ------------ ***/



/*** ------------ sub-title__wrap ------------ ***/

.sub-title__wrap {
    position: relative;
}

.sub-title__wrap > .item:first-child .text__sub-title {
    display: block;
    width: fit-content;
}

@media screen and (max-width: 920px) {
        
    .sub-title__wrap > .item + .item {
        margin-top: 48px;
    }

    .sub-title__wrap > .item:first-child .text__sub-title {
        text-align: center;
        margin: auto;
    }

}

/*** ------------ end.sub-title__wrap ------------ ***/



/*** ------------ shadow-effect ------------ ***/

.shadow-effect:before {
    content:' ';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: .48;
    z-index: 40;
    transition: var(--transition);
}

.shadow-effect.shadow-effect__white:before {
    background: var(--basic-white);
}

.shadow-effect.shadow-effect__black:before {
    background: var(--basic-black);
}

/*** ------------ end.shadow-effect ------------ ***/



/*** ------------ section ------------ ***/

section {
    position: fixed;
    bottom: -32px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 8px;
    background: var(--basic-green);
    box-shadow: 0px 0px 64px rgb(12,41,75,.64);
    border-radius: 32px;
    opacity: 0;
    pointer-events: none;
    z-index: 800;
    transition: var(--transitionLong);
}

section.section__scroll {
    bottom: 32px;
    opacity: 1;
    pointer-events: auto;
    transition: var(--transitionLong);
}

    /*** ------------ section__button ------------ ***/

.section__button {
    position: relative;
}

.section-button__click {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    background: var(--basic-black);
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transitionLong);
    z-index: 1;
}

.section-button__click.section-button__book {
    background: url('../images/icons/icons__all/icon__book-white.svg') center no-repeat var(--basic-black);
    background-size: 50%;
}

.section-button__click.section-button__certificate {
    background: url('../images/icons/icons__all/icon__certificate-white.svg') center no-repeat var(--basic-black);
    background-size: 50%;
}

.section-button__click:hover {
    background-color: var(--basic-black-light);
    transition: var(--transitionLong);
}

.section-button__title {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    font-weight: 400;
    padding: 8px 16px;
    white-space: nowrap;
    background: var(--basic-white);
    border-radius: 12px;
    box-shadow: 0px 0px 128px rgb(12,41,75,.32);
    pointer-events: none;
    opacity: 0;
    transition: var(--transitionLong);
    z-index: 10;
}

.section-button__click:hover + .section-button__title {
    top: -28px;
    opacity: 1;
    transition: var(--transitionLong);
}

    /*** ------------ section__phone ------------ ***/

.section__phone {
    position: relative;
    padding: 6px 16px 2px;
    margin: 0 16px;
    white-space: nowrap;
    border-left: 1.5px solid rgba(255,255,255,.16);
    border-right: 1.5px solid rgba(255,255,255,.16);
}

.section__phone a {
    font-weight: 400;
}

/*** ------------ end.section ------------ ***/



/*** ------------ header ------------ ***/

header {
    position: fixed;
    top: 0;
    width: 100%;
    transition: var(--transition);
    z-index: 800;
}

header.__scroll {
    background: var(--basic-white);
    box-shadow: 0px 16px 64px rgba(0,0,0,.16);
    transition: var(--transition);
}

.__animation-on header {
    opacity: 0;
    transform: translateY(-32px);
    -webkit-transform: translateY(-32px);
    animation: showHeader 1.5s ease-in-out;
    animation-delay: .4s;
    animation-fill-mode: forwards;
}

@keyframes showHeader {   
    100% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}

    /*** ------------ header__contact ------------ ***/

.header__contact {
    position: relative;
    margin: 0 0 0 32px;
    z-index: 100;
}

.header__contact a {
    color: var(--basic-black);
}

.header__contact a:hover {
    color: var(--basic-green);
}

.header-contact__phone > div + div {
    text-align: right;
}

@media screen and (max-width: 920px) {
            
    .header-contact__phone .link__rotate {
        display: block;
        width: 40px;
        height: 40px;
        background: url('../images/icons/icons__all/icon__phone-black.svg') no-repeat center rgba(209,177,44,.16);
        background-size: 40%;
        border-radius: 50%;
        z-index: 10;
    }
    
    .header-contact__phone .link__rotate:hover {
        background-color: rgba(209,177,44,.32);
    }    

    .header-contact__phone a > div,
    .header-contact__phone .link__rotate:before {
        display: none;
    }

}

    /*** ------------ header-contact__mail ------------ ***/

.header-contact__mail {
    position: relative;
}

* + .header-contact__mail {
    margin-left: 48px;
}

.header-contact__mail > a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: url('../images/icons/icons__all/icon__mail-black.svg') no-repeat center rgba(209,177,44,.16);
    background-size: 40%;
    border-radius: 50%;
    z-index: 10;
}

.header-contact__mail > a:hover {
    background-color: rgba(209,177,44,.32);
}

.header-contact__mail > div {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: fit-content;
    padding: 4px 12px;
    font-size: 10px;
    line-height: 12px;
    background: var(--basic-green);
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transitionLong);
    z-index: 12;
}

.header-contact__mail > a:hover + div {
    top: calc(100% - 4px);
    opacity: 1;
    transition: var(--transitionLong);
}

@media screen and (max-width: 920px) {
            
    .header-contact__mail {
        display: none;
    }

}

/*** ------------ end.header ------------ ***/



/*** ------------ logo ------------ ***/

.logo {
    position: relative;
    display: block;
}

.logo__stassen {
    width: 128px;
    height: 64px;
    background: url('../images/logo/logo__stassen.svg') no-repeat center transparent;
    background-size: contain;
}

header .logo__stassen {
    margin: 16px 32px 16px 0;
}

footer .logo__stassen {
    width: 192px;
    height: 96px;
}

@media screen and (max-width: 920px) {
        
    header .logo__stassen {
        width: 96px;
        height: 48px;
        margin: 16px 16px 16px 0;
    }

}

/*** ------------ end.logo ------------ ***/



/*** ------------ main__menu ------------ ***/

.main__menu {
    position: relative;
    margin: auto;
    z-index: 23;
}

.main__menu li {
    position: relative;
}

.main-menu__hidden {
    display: none !important;
}

    /*** ------------ header main__menu ------------ ***/

header .main__menu {
    margin: 0 auto 0 16px;
}

header .main__menu:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 1.5px;
    height: 48px;
    background: var(--basic-yellow);
    /*opacity: .32;*/
    z-index: 10;
}

body:not(.home-page) header .main__menu > li,
.home-page header .main__menu > li + li {
    margin-left: 48px;
}

.home__page header .main__menu > li:nth-child(1) {
    display: none;
}

header .main__menu li a {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 28px;
    text-transform: lowercase;
    font-weight: 500;
    color: var(--basic-black);
}

header .main__menu li a:hover {
    color: var(--basic-green);
}

header .main__menu li a:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--basic-green);
    transform: scalex(0);
    transform-origin: right;
    z-index: 12;
    transition: transform 1.6s cubic-bezier(.19,1,.22,1);
}

header .main__menu li a:hover:before {
    transform: scalex(1);
    transform-origin: left;
    transition: transform 1.6s cubic-bezier(.19,1,.22,1);
}

header .__icon-back:before {
    content: '';
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    margin-right: 12px;
    background: url('../images/icons/icons__arrows/icon__arrow-left-black.svg') center no-repeat transparent;
    background-size: cover;
    z-index: 1;
}

@media screen and (max-width: 920px) {
        
    header .main__menu {
        margin: 0 auto 0 16px;
    }

    header .main__menu:before {
        left: -16px;
    }

    header .main__menu > li {
        margin-left: 0 !important;
    }

    .home__page header .main__menu > li:not(:nth-child(2)) {
        display: none;
    }

    header .main__menu li a {
        text-transform: none;
    }
    
}

/*** ------------ end.main__menu ------------ ***/



/*** ------------ item-grid ------------ ***/

.item-grid {
    width: calc(100% + 32px);
    margin: -16px;
}

.item-grid > .item {
    padding: 16px;
}
   
.item-grid.__small-padding {
    width: calc(100% + 8px);
    margin: -4px;
}
    
.item-grid.__small-padding > .item {
    padding: 4px;
}
    
.item-grid.__no-padding {
    width: 100%;
    margin: 0 auto;
}
    
.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 {
    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-extra {
    width: 75%;
}

.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%;
}

.item-grid__olympic > .item:nth-child(4) {
    margin-left: calc(33.333% / 2);
}

.item-grid__tetris > .item:nth-child(2) {
    margin-right: 33.333%;
}

.item-grid__tetris > .item:nth-child(3) {
    margin-left: 33.333%;
}

@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%;
    }
            
    .item-grid__olympic > .item:nth-child(4),
    .item-grid__tetris > .item:nth-child(3) {
        margin-left: 0;
    }

    .item-grid__tetris > .item:nth-child(2) {
        margin-right: 0;
    }
    
}
    
/*** ------------ end.item-grid ------------ ***/



/*** ------------ text__image ------------ ***/

.text__image {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 40px;
    transform: translateY(4px);
    background: var(--basic-grey);
    border-radius: 32px;
    overflow: hidden;
    transition: var(--transitionLong);
    z-index: 10;
}

.text__image:hover {
    opacity: 0;
    transition: var(--transitionLong);
}

.text__image + div {
    position: absolute;
    display: block;
    top: 25%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 160px;
    height: 224px;
    background: var(--basic-grey);
    border-radius: 48px;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    transition: var(--transitionLong);
    box-shadow: 0px 0px 128px rgb(12,41,75,.32);
    z-index: 1;
}

.text__image:hover + div {
    top: 50%;
    opacity: 1;
    transition: var(--transitionLong);
}

@media screen and (max-width: 920px) {
            
    .text__image {
        width: 56px;
        height: 32px;
        transform: translateY(2px);
    }

}

/*** ------------ end.text__image ------------ ***/



/*** ------------ hello__wrap ------------ ***/

.hello__wrap {
    padding-top: 144px;
}

    /*** ------------ hello-wrap__block ------------ ***/

.hello__wrap > .container {
    z-index: 100;
}

.hello-wrap__tea {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 544px);
    background: var(--basic-beige);
    z-index: 1;
}

.hello-wrap__tea > img {
    mix-blend-mode: multiply;
}

.hello-wrap__block {
    border-top: 1.5px solid rgba(249,243,227,.16);
}

.__animation-on .hello-wrap__block {
    opacity: 0;
    transform: translateY(48px);
    -webkit-transform: translateY(48px);
    animation: showHello 1.5s ease-in-out;
    animation-delay: .8s;
    animation-fill-mode: forwards;
}

@keyframes showHello {   
    100% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}

.hello-wrap__block.content {
    padding-top: 64px;
    padding-bottom: 64px;
}

.hello-wrap__title {
    font-size: 64px;
    line-height: 56px;
    margin-left: -2px;
}

.hello-wrap__content {
    width: 50%;
    margin: 32px 0 0 auto;
}

@media screen and (max-width: 920px) {
            
    .hello__wrap {
        padding-top: 80px;
    }

    .hello-wrap__title {
        font-size: 48px;
        line-height: 44px;
        margin-left: 0px;
    }
    
    .hello-wrap__content {
        width: 75%;
        margin: 16px 0 0 auto;
    }

}

    /*** ------------ hello-wrap__button ------------ ***/

.hello-wrap__button,
.circle__button {
    position: relative;
    width: 192px;
    height: 192px;
    margin: auto;
    border-radius: 50%;
    background: var(--basic-yellow);
    transition: var(--transition);
    z-index: 100;
}

.__animation-on .hello-wrap__button {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    animation: showButton 1.5s ease-in-out;
    animation-delay: 1.6s;
    animation-fill-mode: forwards;
}

@keyframes showButton {   
    100% {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.circle__button {
    width: 160px;
    height: 160px;
}

.circle__button.__transparent {
    background: transparent;
    border: 1.5px solid var(--basic-green);
}

.circle__button + .circle__button {
    margin-top: -32px;
    z-index: 10;
}

.hello-wrap__button:hover,
.circle__button:hover {
    color: var(--basic-white);
    background: var(--basic-green-dark);
    transition: var(--transition);
    border-color: transparent;
    box-shadow: 0px 0px 64px rgba(6,57,31,.64);
}

.hello-wrap__button > *,
.circle__button > * {
    margin: auto;
}

    /*** ------------ hello-wrap__kv ------------ ***/

.hello-wrap__kv {
    height: 544px;
    background: var(--basic-grey);
    overflow: hidden;
    z-index: 90;
}

.__animation-on .hello-wrap__kv {
    opacity: 0;
    animation: showKV 1.5s ease-in-out;
    animation-delay: 2.4s;
    animation-fill-mode: forwards;
}

@keyframes showKV {   
    100% {
        opacity: 1;
    }
}

.hello-wrap__button + .hello-wrap__kv {
    margin-top: -96px;
    border-top: 1.5px solid var(--basic-beige);
}

.hello-wrap__kv > img {
    display: none;
}

@media screen and (max-width: 920px) {
        
    .hello-wrap__kv > img {
        display: block;
    }

}

/*** ------------ end.hello__wrap ------------ ***/



/*** ------------ video ------------ ***/

video {
    width: auto;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 100%;
    z-index: 1;
    background-size: cover;
}
    
video source {
    min-width: 100%;
    height: auto;
    min-height: 100%;
}

@media screen and (max-width: 920px) {
        
    video {
        display: none !important;
    }

}

/*** ------------ end.video ------------ ***/



/*** ------------ catalog__wrap ------------ ***/

.catalog__wrap > * {
    z-index: 100;
}

h1 + .catalog__wrap,
* + .catalog__wrap {
    margin-top: 64px;
}

@media screen and (max-width: 920px) {
        
    .catalog__page .catalog__wrap.d-flex {
        flex-direction: column;
    }

    h1 + .catalog__wrap {
        margin-top: 32px;
    }

}

    /*** ------------ catalog__menu ------------ ***/

.catalog__wrap > .catalog__menu {
    position: relative;
    display: block;
    width: 208px;
}

.catalog__menu > ul > li {
    position: relative;
    display: block;
}

.catalog__menu > ul > li + li {
    margin-top: 16px;
}

.catalog__menu > ul > li > a {
    position: relative;
    display: block;
    padding-left: 36px;
}

.catalog__menu > ul > li > a:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(209,177,44,.64);
}

.catalog__page.__all-tea .catalog__menu > ul > li.__all-tea > a:before,
.catalog__page.__black-tea .catalog__menu > ul > li.__black-tea > a:before,
.catalog__page.__green-tea .catalog__menu > ul > li.__green-tea > a:before,
.catalog__page.__organic-tea .catalog__menu > ul > li.__organic-tea > a:before,
.catalog__page.__herbal-infusion .catalog__menu > ul > li.__herbal-infusion > a:before,
.catalog__page.__premium-tea .catalog__menu > ul > li.__premium-tea > a:before,
.catalog__page.__gift-tea .catalog__menu > ul > li.__gift-tea > a:before, 
.catalog__page.__aroma-black-tea .catalog__menu > ul > li.__aroma-black-tea > a:before {
    background: url('../images/icons/icons__all/icon__check-white.svg') no-repeat center var(--basic-green);
    background-size: 66%;
    border-color: transparent;
}

@media screen and (max-width: 920px) {
        
    .catalog__wrap > .catalog__menu {
        width: 100%;
    }

    .catalog__menu > ul > li + li {
        margin-top: 8px;
    }

    .catalog__menu > ul > li > a {
        font-size: 14px;
        line-height: 16px;
        padding-left: 24px;
    }
    
    .catalog__menu > ul > li > a:before {
        top: 0;
        width: 16px;
        height: 16px;
    }
    
}

    /*** ------------ catalog__page ------------ ***/

.catalog__wrap > .catalog__page {
    position: relative;
    display: block;
}

.catalog__wrap > .catalog__menu + .catalog__page {
    width: calc(100% - 208px);
    padding-left: 64px;
}

@media screen and (max-width: 920px) {
            
    .catalog__wrap > .catalog__menu + .catalog__page {
        width: 100%;
        padding: 32px 0 0;
    }

}

/*** ------------ catalog__wrap ------------ ***/



/*** ------------ catalog__items ------------ ***/

.catalog-item__wrap {
    cursor: pointer;
    border: 1.5px solid rgba(209,177,44,.32);
    transition: var(--transitionLong);
}

.catalog-item__wrap:hover {
    background: var(--basic-white);
    border-color: transparent;
    transition: var(--transitionLong);
}

.catalog-item__img {
    height: 256px;
    overflow: hidden;
    background: var(--basic-white);
    border-bottom: 1.5px solid rgba(209,177,44,.32);
}

.catalog-item__img > * {
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    transition: var(--transitionLong);
}

.catalog-item__img > img {
    mix-blend-mode: multiply;
}

.catalog-item__wrap:hover .catalog-item__img > * {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    transition: var(--transitionLong);
}

.catalog-item__content {
    padding: 32px;
}

.catalog-item__title {
    font-weight: 500;
    font-size: 18px;
}

* + .catalog-item__info {
    margin-top: 32px;
}

.catalog-item__ozon {
    position: relative;
    display: block;
    width: 176px;
    padding: 12px;
    text-align: center;
    background: rgba(209,177,44,.32);
    color: var(--basic-black);
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
}

.catalog-item__ozon:hover {
    background: rgba(209,177,44,.48);
}

.catalog-item__ozon > div:after {
    content: '';
    position: relative;
    display: block;
    width: 100%;
    height: 16px;
    margin: 4px auto 0;
    background: url('../images/logo/logo__other/logo__ozon.svg') center no-repeat transparent;
    background-size: contain;
    z-index: 1;
}

.catalog-item__about {
    display: none;
    opacity: 0;
    pointer-events: none;
}

* + .catalog-item__buy {
    margin-top: 32px;
}

.catalog-item__cta {
    position: relative;
    display: block;
    width: calc(100% - 176px);
    padding-right: 32px;
}

@media screen and (max-width: 920px) {
            
    .catalog-item__buy {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .catalog-item__cta {
        width: 100%;
        padding-right: 0;
    }
    
    .catalog-item__cta + * {
        margin-top: 24px;
    }
    
}

/*** ------------ end.catalog__items ------------ ***/



/*** ------------ catalog__hidden ------------ ***/

.catalog__hidden {
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    min-width: 296px;
    max-width: 480px;
    height: 100%;
    padding: 48px;
    background: var(--basic-white);
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    opacity: 1;
    overflow-y: scroll;
    overflow-x: hidden;
    pointer-events: none;
    transition: all .72s cubic-bezier(.42,0,1,1);
    z-index: 1001;
}

.catalog__hidden::-webkit-scrollbar-thumb {
    background: rgba(209,177,44,.64);
}

.catalog__hidden.__show {
    right: 0;
    pointer-events: auto;
    transition: var(--transitionLong);
}

.catalog-hidden__close {
    position: absolute;
    top: 38px;
    right: 32px;
    display: block;
    width: 48px;
    height: 48px;
    background: url('../images/icons/icons__all/icon__close-black.svg') no-repeat center rgba(209,177,44,.16);
    background-size: 25%;
    border-radius: 50%;
    cursor: pointer;
    z-index: 80;
    transition: var(--transition);
}

.catalog-hidden__close:hover {
    opacity: .64;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    background-color: rgba(209,177,44,.32);
    transition: var(--transition);
}

.catalog__hidden * + .link__button {
    margin-top: auto;
    max-width: 100%;
    text-align: center;
}

.catalog-hidden__title {
    padding: 0 80px 12px 0;
}

* + .catalog-hidden__content {
    margin-top: 32px;
}

.catalog-hidden__img {
    height: 216px;
    overflow: hidden;
    border: 1.5px solid rgba(209,177,44,.32);
}

.catalog-hidden__img > * {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.catalog-hidden__img + * {
    margin-top: 32px;
}

@media screen and (max-width:620px) {
        
    .catalog__hidden {
        padding: 48px 5%;
    }

}

/*** ------------ end.catalog__hidden ------------ ***/



/*** ------------ catalog__link ------------ ***/

* + .catalog__link {
    margin-top: 64px !important;
}

.catalog-link__wrap {
    padding: 32px 0;
    border-top: 1.5px solid var(--basic-black);
}

.catalog-link__wrap > * {
    z-index: 100;
}

.catalog-link__wrap > *,
.catalog-link__wrap:hover > * {
    transition: var(--transitionLong);
}

.catalog-link__wrap:before {
    content: '';
    position: absolute;
    top: -1.5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 100vw;
    height: 0;
    background: var(--basic-black);
    transition: var(--transitionLong);
    pointer-events: none;
    z-index: 1;
}

.catalog-link__wrap:hover:before {
    height: calc(100% + 3px);
    transition: var(--transitionLong);
}

.catalog-link__wrap:hover > * {
    color: var(--basic-white);
}

.catalog-link__img {
    position: absolute;
    top: 50%;
    right: 48px;
    -webkit-transform: translateY(-65%) rotate(8deg);
    transform: translateY(-65%) rotate(8deg);
    display: block;
    width: 320px;
    height: 424px;
    background: var(--basic-green-light);
    overflow: hidden;
    z-index: 20;
    pointer-events: none;
    opacity: 0;
    transition: all .24s cubic-bezier(0.215,0.610,0.355,1);
}

.catalog-link__wrap:hover .catalog-link__img {
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
    opacity: 1;
    transition: all .48s cubic-bezier(0.215,0.610,0.355,1);
}

@media screen and (max-width:620px) {
        
    .catalog-link__wrap > .item {
        width: 32px !important;
    }

    .catalog-link__wrap > .item.item-wide {
        width: calc(100% - 32px) !important;
        padding-left: 32px;
    }

    .catalog-link__title.__h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .catalog-link__img {
        width: 160px;
        height: 212px;
    }

}

/*** ------------ end.catalog__link ------------ ***/



/*** ------------ filter__block ------------ ***/

* + .filter__block {
    margin-top: 32px;
}

.filter__block {
    padding: 16px 32px;
    border: 1.5px solid rgba(209,177,44,.32);
}

.filter__block ul li {
    position: relative;
}

.filter__block ul li:not(:last-child) {
    margin-right: 24px;
}

.filter__block ul li.filter-block__item,
.filter__block ul li.filter-block__all {
    cursor: pointer;
    transition: var(--transition);
}

.filter__block ul li.filter-block__item:hover,
.filter__block ul li.filter-block__all:hover {
    opacity: .64;
    transition: var(--transition);
}

.filter__block ul li.filter-block__item.active,
.filter__block ul li.filter-block__all.__is-active {
    color: var(--basic-green);
    transition: var(--transition);
}

.filter__block ul li.filter-block__item:before,
.filter__block ul li.filter-block__all:before {
    content: '';
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    margin: 0px 12px 0 0;
    border: 1.5px solid rgba(209,177,44,.64);
    transition: var(--transition);
    z-index: 12;
}

.filter__block ul li.filter-block__item.active:before,
.filter__block ul li.filter-block__all.__is-active:before {
    background: url('../images/icons/icons__all/icon__check-white.svg') no-repeat center var(--basic-green);
    background-size: 66%;
    border-color: transparent;
    transition: var(--transition);
}

#filter-items .item.hidden {
    display: none;
}

#filter + #filter-items {
    margin-top: 32px;
}

@media screen and (max-width: 920px) {
        
    /*#filter-settings > li:first-child {
        display: none;
    }

    #filter-settings > li:nth-child(2) {
        margin-left: auto; 
    }

    #filter-settings > li:last-child {
        margin-right: auto; 
    }*/

}

/*** ------------ end.filter__block ------------ ***/



/*** ------------ about__wrap ------------ ***/

.about__wrap:before {
    content: '';
    position: absolute;
    top: -64px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 128px;
    height: 128px;
    background: url('../images/back/about__wrap/__before.png') center no-repeat transparent;
    background-size: contain;
    pointer-events: none;
    z-index: 100;
}

* + .about__block {
    margin-top: 48px !important;
}

.about__block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 1.5px;
    height: 100%;
    background: rgba(209,177,44,.32);
}

.about__block > .item.__left {
    margin-left: 50%;
}

.about-block__content,
.about-block__advantages {
    padding: 32px;
}

.about__block > .item + .item,
.about-block__advantages + .about-block__advantages {
    border-top: 1.5px solid rgba(209,177,44,.32);
}

.about-block__content > .__p + .__p {
    margin-top: 32px;
    padding-bottom: 96px;
}

.__advantages-content {
    width: calc(100% - 48px);
    margin-left: auto;
}

.about-block__img {
    position: absolute;
    top: 20%;
    right: calc(50% + 32px);
    display: block;
    width: 288px;
    height: 384px;
    background: var(--basic-grey);
    overflow: hidden;
    z-index: 10;
}

@media screen and (max-width:620px) {
        
    .about__block:before {
        left: 0;
        -webkit-transform: none;
        transform: none;
    }

    .about__block > .item.__left {
        margin-left: 0;
    }

    .about-block__content > .__p + .__p {
        padding-bottom: 0;
    }

    .about-block__img {
        display: none;
    }

}

/*** ------------ end.about__wrap ------------ ***/



/*** ------------ faq__block ------------ ***/

* + .faq__block {
    margin-top: 64px;
}

.faq__block {
    padding: 0 192px;
}

.contact__block .faq__block {
    padding: 0;
}

.faq-block__item {
    padding: 32px;
    background: var(--basic-white);
}

.faq-block__item + .faq-block__item {
    margin-top: 8px;
}

.faq-block__link {
    padding-right: 48px;
}

.faq-block__link:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    display: block;
    width: 24px;
    height: 24px;
    background: url('../images/icons/icons__arrows/icon__arrow-more-black.svg') no-repeat center var(--basic-beige);
    background-size: 40%;
    /*border-radius: 8px;*/
    pointer-events: none;
    transition: var(--transitionLong);
    z-index: 12;
}

.faq-block__link:hover:after {
    background-color: rgba(209,177,44,.32);
    box-shadow: 0px 0px 48px rgba(38,127,68,.64);
    transition: var(--transitionLong);
}

.faq-block__link.show__link-change-before:after {
    -webkit-transform: translateY(-50%) rotate(135deg);
    transform: translateY(-50%) rotate(135deg);
    background: url('../images/icons/icons__arrows/icon__arrow-more-white.svg') no-repeat center var(--basic-green);
    background-size: 40%;
    transition: var(--transitionLong);
}

.faq-block__content {
    padding: 32px 16% 0 0;
}

.show__link,
.show__link.show__link-change-before {
    transition: var(--transitionLong);
}

.show__link.show__link-change-before {
    color: var(--basic-green);
}

@media screen and (max-width:760px) {
        
    * + .faq__block {
        margin-top: 48px;
    }

    .faq__block {
        padding: 0;
    }

    .faq-block__content {
        padding: 32px 0 0;
    }
	
}

/*** ------------ end.faq__block ------------ ***/



/*** ------------ contact__wrap ------------ ***/

.contact__wrap {
    padding-bottom: 96px;
}

.contact__wrap > * {
    z-index: 100;
}

.contact__content {
    padding-left: 8%;
    padding-right: 8%;
}

@media screen and (max-width: 920px) {
            
    .contact__content {
        padding-left: 0;
        padding-right: 0;
    }

}

    /*** ------------ contact__block ------------ ***/

* + .contact__block {
    margin-top: 48px;
}

.contact-block__list ul {
    padding-left: 32px;
    border-left: 1.5px solid rgba(209,177,44,.16);
}

.contact-block__list ul > li + li {
    margin-top: 48px;
}

@media screen and (max-width: 920px) {
        
    .contact-block__info {
        width: 100%;
        margin: 0;
    }

    .contact-block__info > .wrap.item-grid {
        padding: 48px;
    }

    .contact-block__map {
        height: 392px;
        margin-top: -128px;
    }

    .contact-block__list ul {
        padding-top: 32px;
        padding-left: 0;
        border-top: 1.5px solid rgba(209,177,44,.16);
        border-left: 0;
    }
    
}

/*** ------------ end.contact__wrap ------------ ***/



/*** ------------ popup ------------ ***/

.popup {
    position: fixed;
    display: none;
    z-index: 1003;
}

#overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    background: var(--basic-black);
    opacity: .8;
    z-index: 1002;
}

.popup__wrap {
    width: 90%;
    max-width: 800px;
    flex-wrap: nowrap;
}

.popup-wrap__main {
    position: relative;
    display: block;
    width: 66%;
    padding: 48px;
    background: var(--basic-white);
}

.popup-wrap__image {
    position: relative;
    display: block;
    width: 34%;
    background: var(--basic-grey);
    overflow: hidden;
}

@media screen and (max-width: 920px) {
            
    .popup-wrap__main {
        width: 100%;
        padding: 32px;
    }

    .popup-wrap__image {
        display: none;
    }

}

/*** ------------ end.popup ------------ ***/



/*** ------------ feedback__wrap ------------ ***/

* + .feedback__wrap {
    margin-top: 36px;
}

.feedback__wrap:first-child {
    margin-top: -12px;
}

.feedback-form__group {
    margin-top: 12px;
}

.feedback-form__group:not(.wrap) {
    width: calc(50% - 6px);
}

.feedback__form input[type="text"],
.feedback__form textarea,
.feedback__form input[type="submit"] {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1.5px solid rgba(209,177,44,.32);
    /*border-radius: 8px;*/
}

.feedback__form input[type="text"],
.feedback__form input[type="submit"] {
    max-height: 56px;
}

.feedback__form textarea {
    max-height: 56px;
}

.feedback__form input[type="text"]:focus,
.feedback__form textarea:focus {
    border-color: rgba(209,177,44,.48);
}

.feedback__form input[type="text"] {
    background: transparent !important;
}

.feedback__form input[type="submit"] {
    max-width: 256px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    color: var(--basic-white);
    border-color: transparent;
    background: var(--basic-green);
    transition: var(--transitionLong);
}

.feedback__form input[type="submit"]:hover {
    background: var(--basic-green-dark);
    transition: var(--transitionLong);
}

.feedback-form__group.d-flex > .__p {
    max-width: calc(100% - 176px);
    margin-top: auto;
}

@media screen and (max-width: 920px) {
            
}

/*** ------------ end.feedback__wrap ------------ ***/



/*** ------------ __leaves ------------ ***/

.__leaves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 101;
}

.__leaves div {
    position: absolute;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.catalog__wrap > .__leaves div:nth-child(1) {
    top: 64px;
    left: -32px;
    width: 192px;
    height: 192px;
}

.catalog__wrap > .__leaves div:nth-child(2) {
    top: 50%;
    right: -32px;
    width: 112px;
    height: 112px;
}

.about__wrap > .__leaves div:nth-child(1) {
    bottom: 64px;
    left: 0;
    width: 128px;
    height: 128px;
}

.faq__wrap > .__leaves div:nth-child(1) {
    top: 64px;
    right: -16px;
    width: 176px;
    height: 176px;
}

@media screen and (max-width: 920px) {
        
    .catalog__wrap > .__leaves div:nth-child(2) {
        right: 0;
        width: 96px;
        height: 96px;
    }
        
    .faq__wrap > .__leaves div:nth-child(1) {
        right: 0;
        width: 144px;
        height: 144px;
    }

}

/*** ------------ end.__leaves ------------ ***/



/*** ------------ footer ------------ ***/

footer {
    position: relative;
    display: block;
    width: 100%;
    background: var(--basic-green-dark);
    z-index: 1;
}

footer:before {
    content: '';
    position: absolute;
    inset: 0;
    display: block;
    background: url('../images/back/__svg/__004.svg') top center transparent no-repeat;
    background-size: cover;
    pointer-events: none;
    opacity: .12;
    z-index: 1;
}

footer > * {
    z-index: 100;
}

    /*** ------------ footer__menu ------------ ***/

.footer__menu {
    z-index: 10;
}

.footer-menu__item + .footer-menu__item {
    margin-left: auto;
    padding-left: 32px;
}

.footer-menu__item > *:first-child + ul {
    margin-top: 24px;
}

.footer-menu__item > ul > li + li {
    margin-top: 8px;
}

.footer-menu__item a:hover {
    color: var(--basic-yellow);
}

@media screen and (max-width: 920px) {

    .footer__menu {
        margin-top: 48px !important;
    }

    .footer-menu__item:last-child {
        width: 100%;
        order: -1;
        margin-bottom: 24px;
    }

    .footer-menu__item + .footer-menu__item {
        margin-left: 0;
        padding-left: 0;
    }

    .footer-menu__item:last-child .__auto-left {
        margin-left: 0;
    }
    
}

    /*** ------------ footer__privacy ------------ ***/

* + .footer__privacy {
    margin-top: 48px !important;
    padding-top: 48px;
    border-top: 1.5px solid rgba(249,243,227,.12);
}

@media screen and (max-width: 920px) {

    .footer__privacy > .item + .item {
        margin-top: 24px;
    }
    
}

/*** ------------ end.footer ------------ ***/



/*** ------------ bg ------------ ***/

.bg__white {
    background: var(--basic-white);
}

.bg__black {
    background: var(--basic-black);
}

.bg__grey-light {
    background: var(--basic-grey-light);
}

/*** ------------ end.bg ------------ ***/



/*** ------------ close__button ------------ ***/

.close__button {
    position: absolute;
    width: 32px;
    height: 32px;
    font-size: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 100; 
    transition: var(--transition); 
}

.popup .close__button {
    top: 6px;
    right: 6px;	
}

.menu__wrap .close__button {
    top: 40px;
    right: 40px;	
}

.close__button::before,
.close__button::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 24px;
    top: calc(50% - 12px);
    left: 50%;
    background: var(--basic-white);
}

.close__button::before {-webkit-transform: rotate(45deg);transform: rotate(45deg);transition: var(--transition);}
.close__button::after {-webkit-transform: rotate(-45deg);transform: rotate(-45deg);transition: var(--transition);}
.close__button:hover::before {-webkit-transform: rotate(135deg);transform: rotate(135deg);transition: var(--transition);}
.close__button:hover::after {-webkit-transform: rotate(-135deg);transform: rotate(-135deg);transition: var(--transition);}

@media screen and (max-width: 920px) {
        
    .popup .close__button::before,
    .popup .close__button::after {
        background: var(--basic-black);
    }
    
    .menu__wrap .close__button {
        top: 24px;
        right: 26px;	
    }

}

/*** ------------ end.close__button ------------ ***/