/****************************************************************************************************
        FONTS       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
@font-face {
    font-family: "Grandstander";
    font-style: normal;
    font-weight: 700;
    src: url("./fonts/Grandstander-Bold.woff2") format("woff2"),
        url("./fonts/Grandstander-Bold.woff") format("woff");
}
@font-face {
    font-family: "Grandstander";
    font-style: normal;
    font-weight: 500;
    src: url("./fonts/Grandstander-Medium.woff2") format("woff2"),
        url("./fonts/Grandstander-Medium.woff") format("woff");
}
@font-face {
    font-family: "Grandstander";
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/Grandstander-Thin.woff2") format("woff2"),
        url("./fonts/Grandstander-Thin.woff") format("woff");
}
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    src: url("./fonts/Roboto-Bold.woff2") format("woff2"),
        url("./fonts/Roboto-Bold.woff") format("woff");
}
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/Roboto-Regular.woff2") format("woff2"),
        url("./fonts/Roboto-Regular.woff") format("woff");
}



/****************************************************************************************************
        VARIABLES       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
:root {
    /* fonts */
    --font-basic: "Roboto", sans-serif;
    --font-heading: "Grandstander", sans-serif;

    /* colors */
    --color-black: #000;
    --color-white: #fff;
    --green-color: #009688;
    --light-green-color: #3C9C93;
    --red-color: #F93448;

    /* text */
    --text-black: #474849;
    --text-grey: #63737D;
    --text-white: #F2FCFF;

    /* text shadow */
    --text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}



/****************************************************************************************************
        BASIC       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
body {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    color: var(--text-grey);
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    font-family: var(--font-basic);
}
body * {
    box-sizing: border-box;
    outline: 0;
    max-width: 100%;
}
body.menu--on {
    overflow: hidden;
}
select {
    -webkit-appearance: none;
}
a {
    text-decoration: none;
    transition: all .2s ease;
}
p {
    margin: 0;
    margin-bottom: 20px;
}
img {
    max-width: 100%;
    height: auto;
}
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}
h1 {
    font-size: 65px;
    letter-spacing: -2px;
    margin: 40px 0;
}
h2 {
    font-size: 55px;
    margin: 40px 0;
}
h3 {
    font-size: 42px;
    margin: 40px 0;
}
h4 {
    font-size: 30px;
    margin: 30px 0;
}
ul,
ol {
    margin: 20px 0;
}
ul {
    padding: 0;
}
ul li {
    list-style: none;
}
ul:first-child,
ol:first-child,
h1:first-child, 
h2:first-child, 
h3:first-child, 
h4:first-child, 
h5:first-child, 
h6:first-child {
    margin-top: 0 !important;
}
ul:last-child,
ol:last-child,
ul li:last-child,
p.zero-margin,
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0 !important;
}

/* COMMON CLASSES ********************************************************************************/
.body__inner {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
body.is-loading .body__inner {
    opacity: 0.2;
}
.wrapper {
    width: 1230px;
    max-width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}
.cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero.contain {
	background-repeat: no-repeat;
	background-position: center top;
}
@media (min-width: 992px) {
	.hero.contain {
		background-size: contain;
		background-position: 80% center;
	}
}
.ajax,
.ajax-url {
    display: none;
}
.disable--margin-bottom {
    margin-bottom: 0 !important;
}
.slider {
    padding: 0 20px;
}
.slider .slick-track {
    max-width: unset;
}
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 6px;
    transition: all .2s ease;
    cursor: pointer;
    z-index: 1;
}
.slick-arrow.slick-disabled {
    display: none !important;
}
.slick-prev {
    left: 0;
}
.slick-next {
    right: 0;
}
.slick-arrow:before,
.slick-arrow:after {
   position: absolute;
   content: "";
   left: 50%;
   width: 18px;
   height: 2px;
   background-color: var(--light-green-color);
   z-index: 1;
}
.slick-prev:before {
    top: 20px;
    transform: translateX(-50%) rotate(-45deg);
}
.slick-prev:after {
    bottom: 20px;
    transform: translateX(-50%) rotate(45deg);
}
.slick-next:before {
    top: 20px;
    transform: translateX(-50%) rotate(45deg);
}
.slick-next:after {
    bottom: 20px;
    transform: translateX(-50%) rotate(-45deg);
}

/* GRID ********************************************************************************/
.grid:not(.slider) {
    display: grid;
    gap: 20px;
}
.grid--1 {
    grid-template-columns: 1fr;
}
.grid--2 {
    grid-template-columns: 1fr 1fr;
}
.grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* LOADING ********************************************************************************/
@keyframes loading {
    from {
      transform: scale(0);
      opacity: 1;
    }
  
    to {
      transform: scale(1);
      opacity: 0;
    }
}
.loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    z-index: 555;
}
body.is-loading .loading {
    display: block;
}
.loading div {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 0.3rem solid #000;
    animation: 1.5s loading infinite;
}
.loading div:nth-child(2) {
    animation-delay: 0.5s;
}

/* HAMBURGER ********************************************************************************/
.hamburger {
    position: relative;
    width: 44px;
    height: 26px;
    border-top: 3px solid var(--green-color);
    border-bottom: 3px solid var(--green-color);
    transition: all .2s ease;
    opacity: 1;
    cursor: pointer;
    z-index: 200;
}
body.menu--on .hamburger {
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}
.hamburger::before,
.hamburger::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    width: 100%;
    height: 3px;
    background-color: var(--green-color );
    pointer-events: none;
    transition: all .2s ease;
    z-index: 1;
}
body.menu--on .hamburger::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}
body.menu--on .hamburger::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* BUTTON ********************************************************************************/
.btns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.btns:not(:first-child) {
    margin-top: 30px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    background-color: var(--red-color);
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 16px;
    padding-bottom: 12px;
    transition: all .2s ease;
    border-radius: 5px;
    cursor: pointer;
    text-shadow: none !important;
    border: none;
}
.btn:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* CLOSE ********************************************************************************/
.close {
    position: relative;
    width: 55px;
    height: 55px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
}
.close::before,
.close::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    height: 1%;
    width: 25px;
    border-radius: 1px;
    background-color: #000;
    z-index: 1;
}
.close::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.close::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* SECTION ********************************************************************************/
section {
    position: relative;
    margin: 150px 0;
    z-index: 1;
}

/* OVERLAY ********************************************************************************/
.overlay {
    position: relative;
    overflow: hidden;
    height: 0;
    z-index: -1;
}
.overlay img {
    position: absolute;
    inset: 0;
    z-index: 1; 
}

/* TEXT BODY ********************************************************************************/
.text__body a:not(.btn) {
    color: inherit;
    text-decoration: underline;
}
.text__body a:not(.btn):hover {
    color: var(--red-color);
}

/* ACCORDION ********************************************************************************/
.accordion__item {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.4);
}
.accordion__item:not(:last-child) {
    margin-bottom: 20px;
}
.accordion__item__head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
    padding: 18px 22px;
    padding-right: 60px;
    cursor: pointer;
    z-index: 1;
}
.accordion__item__head::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 17px;
    height: 2px;
    background-color: var(--red-color);
    pointer-events: none;
    z-index: 1;
}
.accordion__item__head::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 30px;
    transform: translate(-75%, -50%);
    width: 2px;
    height: 17px;
    background-color: var(--red-color);
    transition: all .2s ease;
    pointer-events: none;
    z-index: 1;
}
.accordion__item.is-active .accordion__item__head::after {
    height: 0;
}
.accordion__item__head img {
    width: 50px;
    height: auto;
    pointer-events: none;
}
.accordion__item__head span {
    pointer-events: none;
}
.accordion__item__content {
    max-height: 0;
    transition: all .2s ease;
    overflow: hidden;
}
.accordion__item.is-active .accordion__item__content {
    max-height: 1000px;
}
.accordion__item__content .text__body {
    padding: 22px;
}


/* ANIMATIONS */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInBottom {
    0% {
        opacity: 0;
        transform: translateY(20%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInBottom {
    0% {
        transform: translateY(20%);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes slideInFromRight {
    0% {
        transform: translate(100%, -50%);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}
@keyframes slideInFromRight {
    0% {
        transform: translate(100%, -50%);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}
@keyframes footStep {
    0% {
		bottom: 0;
		left: 0;
        /* transform: translate(-400%, 400%); */
    }
    25% {
		bottom: 25%;
		left: 25%;
        /* transform: translate(-300%, 300%); */
    }
    50% {
		bottom: 50%;
		left: 50%;
        /* transform: translate(-200%, 200%); */
    }
    75% {
		bottom: 75%;
		left: 75%;
        /* transform: translate(-100%, 100%); */
    }
    100% {
		bottom: 100%;
		left: 100%;
        /* transform: translate(0, 0); */
    }
}

/* OBSERVER */
.observe {
    position: relative;
    z-index: 1;
}
[data-animation='fadeInLeft'] {
    opacity: 0;
    transform: translateX(-20%);
}
.observe.observed [data-animation='fadeInLeft'],
.observe.observed[data-animation='fadeInLeft'] {
    animation: fadeInLeft 1s forwards;
}
[data-animation='fadeInBottom'] {
    opacity: 0;
    transform: translateY(20%);
}
.observe.observed [data-animation='fadeInBottom'],
.observe.observed[data-animation='fadeInBottom'] {
    animation: fadeInBottom 1s forwards;
}
[data-animation='fadeInRight'] {
    opacity: 0;
    transform: translateX(20%);
}
.observe.observed [data-animation='fadeInRight'],
.observe.observed[data-animation='fadeInRight'] {
    animation: fadeInRight 1s forwards;
}
[data-animation='fadeIn'] {
    opacity: 0;
}
.observe.observed [data-animation='fadeIn'],
.observe.observed[data-animation='fadeIn'] {
    animation: fadeIn 2s forwards;
}
[data-animation='slideInBottom'] {
    transform: translateY(20%);
}
.observe.observed [data-animation='slideInBottom'],
.observe.observed[data-animation='slideInBottom'] {
    animation: slideInBottom 1s forwards;
}
/* [data-animation='footStep'] {
    transform: translate(-400%, 400%);
} */
.observe.observed [data-animation='footStep']:nth-child(1) {
    animation-delay: .5s;
}

.observe.observed .footprint--left [data-animation='footStep'],
.footprint--left .observe.observed[data-animation='footStep'] {
	animation: footStep 5.6s steps(1) forwards;
}

.observe.observed .footprint--left [data-animation='footStep']:nth-child(1) {
    animation-delay: .7s;
}

.observe.observed [data-animation='footStep'],
.observe.observed[data-animation='footStep'] {
    animation: footStep 4s steps(1) forwards;
}



/****************************************************************************************************
        HEADER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 132px;
    padding: 20px 0;
}
.header__logo {
    position: relative;
    display: inline-flex;
    width: 200px;
    z-index: 200;
}
.header__logo img {
    width: 100%;
    height: auto;
}
.header nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header nav a:not(.btn) {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
    text-transform: uppercase;
}
.header nav a:not(.btn):hover {
    color: var(--red-color);
}




/****************************************************************************************************
        SECTIONS       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/

/* HERO ********************************************************************************/
.hero {
    position: relative;
    margin: 0;
    overflow: hidden;
    z-index: 1;
}
.hero:not(.cover):not(.contain) {
    color: var(--text-white);
    background-color: var(--green-color);
}
.hero.contain::before,
.hero.cover::before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 10%, #fff 60%);
    z-index: -1;
}
.hero .inner {
    display: flex;
    align-items: flex-start;
    min-height: 800px;
    padding-top: 180px;
    padding-bottom: 22%;
}
.hero.contain .inner {
	padding: 120px 0;
	min-height: 500px;
}
.hero__content {
    width: 645px;
    font-size: 18px;
}
.hero.contain h1,
.hero.cover h1 {
    color: var(--green-color);
}
.hero__image {
    position: absolute;
    right: 0;
    bottom: -22px;
    height: auto;
    width: 44vw;
    max-width: 785px;
    z-index: -2;
}
.hero__layer1 {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    padding-bottom: 15.8%;
    z-index: -1;
}
.hero__layer1 img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

/* STORY ********************************************************************************/
.story {
    position: relative;
    z-index: 10;
}
.story .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}
.story__image {
    position: relative;
    width: 470px;
    flex-shrink: 0;
    z-index: 1;
}
.story__image img:not(.layer) {
    width: 100%;
    height: auto;
}
.wrapper--footprints {
	position: relative;
}
.wrapper--footprints .footprint {
    position: absolute;
    width: 100px;
    right: 20px;
    z-index: 50;
	pointer-events: none;
	height: 100%;
	top: 0;
}
.wrapper--footprints .footprint--left {
	left: -75px;
	right: auto;
}
.wrapper--footprints .footprint img {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.3;
    z-index: 1;
}
.wrapper--footprints .footprint img:nth-child(1) {
    bottom: 0;
    left: 0;
    /* transform: translate(-400%, 400%); */
	/* transform: translate(-50%, -50%); */
}
.wrapper--footprints .footprint img:nth-child(2) {
	bottom: 0;
    left: 0;
	transform: translate(100px, 100px);
    /* transform: translate(50%, 50%); */
}
.story__content {
    width: 588px;
    flex-shrink: 0;
}
.story__content h2 {
    color: var(--red-color);
}

@media (max-width: 991px) {
	.footprint {
		display: none !important;
	}
}

/* PRODUCTS RANGE ********************************************************************************/
.products-range {
    position: relative;
    z-index: 1;
}
.products-range .overlay--top {
    background-color: var(--green-color);
    padding-bottom: 15%;
}
.products-range__container {
    padding-top: 100px;
    color: var(--text-white);
    background-color: var(--green-color);
}
.products-range__head {
    text-align: center;
}
.products-range__head .text__body {
    width: 982px;
    margin: 0 auto;
}
.products-range__head img:not(:first-child) {
    margin-top: 20px;
}
.products-range__item {
    padding: 50px 0;
}
.products-range__item .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
}
.products-range__item:nth-child(2n+1) {
    background-color: var(--light-green-color);
}
.products-range__item img {
    width: 476px;
    flex-shrink: 0;
}
.products-range__item .text__body {
    width: 522px;
    flex-shrink: 0;
}
.products-range__item h2:not(:last-child) {
    margin-bottom: 50px;
}
.products-range__item .btn:not(:first-child) {
    margin-top: 50px;
}
.products-range .overlay--bottom {
    padding-bottom: 15%;
}

/* VALUES ********************************************************************************/
.values {}
.values .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
}
.values__content {
    width: 620px;
    flex-shrink: 0;
}
.values__content h2 {
    color: var(--green-color);
}
.values__image {
    width: 460px;
    flex-shrink: 0;
}
.values .accordion {
    width: 578px;
}
.values .accordion__item {
    
}

/* CONTACT ********************************************************************************/
.contacts.has-background {
    margin: 0;
    padding: 150px 0;
}
.contacts .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.contacts__content {
    color: var(--text-white);
    background-color: var(--green-color);
    padding: 50px;
}
.contacts__info {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    gap: 20px;
    padding: 50px;
}
.contacts__info__item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-grey);
}
.contacts__info__item:hover {
    text-decoration: underline;
}

/* PRODUCTS GRID ********************************************************************************/
.products-grid {
    position: relative;
    z-index: 1;
}
.products-grid__container {
    background-color: var(--color-white);
}
.products-grid .grid {
    gap: 130px 36px;
}
.slider .products-grid__item {
    padding: 10px;
}
.products-grid__item {
    /* cursor: pointer; */
}
.grid .products-grid__item__image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 118%;
    -webkit-box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.1);
    z-index: 1;
}
.slider .products-grid__item__image {
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.1);
}
.modal__content .products-grid__item__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    flex-shrink: 0;
    height: auto;
    -webkit-box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.1);
}
.grid .products-grid__item__image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    z-index: 1;
}
.modal__content .products-grid__item__image img {
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
}
.products-grid__item__content {
    -webkit-box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.1);
}
.slider .products-grid__item__content {
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.1);
}
.products-grid__item__content:not(:first-child) {
    margin-top: 18px;
}
.modal__content .products-grid__item__content {
    flex-grow: 1;
    min-height: 100%;
    margin: 0;
    padding: 24px;
}
.grid .products-grid__item__title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    font-size: 18px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    color: var(--color-black);
    font-weight: 700;
    padding: 10px 15px;
}
.modal .products-grid__item__title {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    color: var(--color-black);
    font-weight: 700;
}
.modal .products-grid__item__title:not(:last-child) {
    margin-bottom: 24px;
}
.products-grid__item:hover .products-grid__item__title {
    color: var(--red-color);
}
.grid .products-grid__item__text {
    display: none;
}
.products-grid .overlay--bottom {
    background-color: #F0F0F0;
    padding-bottom: 23%;
}



/****************************************************************************************************
        POPUP       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.popup {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    z-index: 999;
}
.popup.is-active {
    display: block;
    animation: fadeIn .2s forwards;
}
.popup .modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(100%, -50%);
    width: 1022px;
    max-width: 85vw;
    transition: all .2s ease;
    z-index: 1;
}
.popup.is-active .modal {
    animation: slideInFromRight .4s forwards;
}
.modal {
    background-color: #fff;
    border-radius: 40px;
    padding: 40px;
}
.modal .close {
    position: absolute;
    top: -45px;
    right: -45px;
    z-index: 1;
}
.modal__content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-height: 50vh;
    overflow: hidden;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: thin;
}
.modal__content ::-webkit-scrollbar {
    width: 8px;
}
.modal__content ::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.modal__content ::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
.modal__content ::-webkit-scrollbar-thumb:hover {
    background: #555;
}



/****************************************************************************************************
        FOOTER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.footer {
    position: relative;
    z-index: 1;
}
.footer .overlay--top {
    padding-bottom: 5%;
}
.footer__container {
    background-color: rgba(249, 52, 72, .2);
    padding: 0 0 50px;
}
.footer .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}
.footer__logo {
    display: inline-flex;
    width: 200px;
}
.footer__logo img {
    width: 100%;
    height: auto;
}
.footer nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.footer nav a {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
    text-transform: uppercase;
}
.footer nav a:hover {
    color: var(--red-color);
}
.footer__copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    font-size: 14px;
    color: var(--text-white);
    background-color: var(--red-color);
    border-radius: 8px;
}
.footer__copyright:not(:first-child) {
    margin-top: 46px;
}




/****************************************************************************************************
        RESPONSIVE       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.show--md {
    display: none !important;
}

@media only screen and (max-width: 1259px) {
    .wrapper {
        width: 992px;
    }
    section {
        margin: 120px 0;
    }
    .hero .inner {
        min-height: 640px;
        padding-top: 140px;
    }
    .hero__content {
        width: 576px;
    }
    .story__image {
        width: 370px;
    }
    .story__content {
        width: 480px;
    }
    .products-range__container {
        padding-top: 60px;
    }
    .products-range__item .inner {
        gap: 60px;
    }
    .products-range__item img {
        width: 380px;
    }
    .products-range__item .text__body {
        width: 460px;
    }
    .values__content {
        width: 480px;
    }
    .values__image {
        width: 360px;
    }
    .modal {
        padding: 25px;
    }
    .modal__content .products-grid__item__image {
        width: 260px;
    }
}

@media only screen and (max-width: 991px) {
    .show--md {
        display: block !important;
    }
    .wrapper {
        width: 768px;
    }
    .grid--3 {
        grid-template-columns: 1fr 1fr;
    }
    .header__logo {
        width: 160px;
    }
    .header .inner {
        gap: 20px;
        min-height: 100px;
    }
    .header nav {
        gap: 20px;
    }
    .hero__content {
        width: 460px;
    }
    .hero .inner {
        padding-top: 80px;
        min-height: unset;
    }
    .story .inner {
        flex-wrap: wrap;
    }
    .story__content {
        order: 0;
        width: 100%;
    }
    .story__image {
        order: 1;
    }
    .products-range__item .inner {
        flex-wrap: wrap;
    }
    .products-range__item .text__body {
        width: 100%;
        order: 1;
    }
    .products-range__item img {
        width: auto;
        order: 0;
    }
    .contacts .inner {
        grid-template-columns: 1fr;
    }
    .values .inner {
        flex-wrap: wrap;
    }
    .values .accordion,
    .values__content,
    .values__image {
        width: 100%;
    }
    .header nav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        transform: translateX(100%);
        width: 290px;
        background-color: #fff;
        padding: 120px 30px 50px 30px;
        transition: all .4s ease;
        z-index: 100;
    }
    body.menu--on .header nav {
        transform: translateX(0);
    }
    .header nav a:not(:last-child) {
        margin-bottom: 20px;
    }
    .header nav a:not(.btn) {
        display: block;
        font-size: 22px;
    }
    .close {
        width: 50px;
        height: 50px;
    }
    .modal {
        padding: 15px;
        border-radius: 20px;
    }
    .popup .modal {
        max-width: calc(100vw - 90px);
    }
    .modal .close {
        top: -28px;
        right: -28px;
    }
    .modal__content {
        flex-wrap: wrap;
        max-height: calc(100vh - 135px);
    }
    .modal__content .products-grid__item__image {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .wrapper {
        width: 100%;
    }
    section {
        margin: 80px 0;
    }
    h1 {
        font-size: 52px;
    }
    h2 {
        font-size: 46px;
    }
    h3 {
        font-size: 40px;
    }
    .header__logo {
        width: 200px;
    }
    .footer .inner {
        justify-content: center;
    }
    .products-grid .grid {
        gap: 60px 30px;
    }
    .contacts.has-background {
        padding: 80px 0;
    }
    .contacts__info,
    .contacts__content {
        padding: 30px;
    }
    .hero .inner {
        padding-top: 60px;
        padding-bottom: 48%;
    }
}

@media only screen and (max-width: 575px) {
    .wrapper {
        padding: 0 15px;
    }
    .header .inner {
        min-height: unset;
        padding: 20px 0;
    }
    .header nav {
        padding: 120px 15px 30px 15px;
    }
    .footer nav {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }
}