/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */



a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

/************************************/

@font-face {
    font-family: 'Butler';
    src: url('../media/Butler_Webfont/Butler-Medium.woff2') format('woff2'),
        url('../media/Butler_Webfont/Butler-Medium.woff') format('woff');
        font-weight: 500;
        font-style: normal;
}


body{
    font-family: 'Butler',Arial,sans-serif;
    font-weight: 500;
    font-style:normal;
    overflow-x: hidden;
}
body.active{
    overflow-y:hidden;
}

.header{
    position: relative;
    min-height: 575px;
}
.header-main{
    height: calc(100vh - 47px);
    min-height: 830px;
}


.background-animation{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #080A1C 0%, #4F4F4F 100%);
    opacity: 0;
    z-index: 200;
    animation-name: bgFadeOut;
    animation-duration: 5s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    pointer-events: none;
}

@keyframes bgFadeOut{
    from{
        opacity: 100;
    }
    to{
        opacity: 0;
    }
}

.navbar-menu{
    padding:14px 25px 0px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.burger{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 12px;
    width: 17px;
}


.burger span{
    display: block;
    border: 1px solid #fff;
    width: 17px;
    transition: all 0.5s;
    position: absolute;
}

.burger-brands span{
    border: 1px solid #fff;
}

.burger-side{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 12px;
    width: 17px;
}

.burger-side span{
    display: block;
    border: 1px solid #fff;
    width: 17px;
    transition: all 0.5s;
    position: absolute;
}

.burger-side span:nth-last-of-type(1){
    display: none;
}

.burger-side span:nth-last-of-type(2){
    transform:  rotate(45deg);  
    top: 5px;
  }
  .burger-side span:nth-last-of-type(3){
      top: 5px;
      transform:  rotate(-45deg); 
  }
  


.burger span:nth-of-type(2){
    top: 5px;
}
.burger span:nth-of-type(3){
    top: 10px;
}



.side-menu{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #080A1C;
    transform: translateX(100%);
	transition: transform 0.5s; 
    z-index: 200;
}

.side-menu-list{
    margin-top: 60px;
    text-align: right;
    padding-right: 27px;
}

.side-menu-link{
    font-weight: 800;
    text-transform: uppercase;
    font-size: 128px;
    line-height: 122.75px;
    color: #FFFFFF;
    font-family: 'Butler',Arial,sans-serif;
    text-decoration: none;
    transition: 0.2s;
}

.side-menu-link:hover{
    color: #EEDDCB;
}


.side-menu.active{
    transform: translateX(0);
}



.header-main-image{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: -1;
}

.video-main{
    background: #000000;
}

.header-main-text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-weight: 500;
    font-size: 50px;
    text-align: center;
    color: #fff;
    line-height: 120%;
    max-width: 858px;
    opacity: 0;
    transition: 500ms;
}

.header-main-text.active{
    opacity: 100;
}

.arrow-down{
    position: absolute;
    bottom: 51px;
    left: 50%;
    transform: translate(-50%,0);
    opacity: 0;
    transition: 500ms;
}

.arrow-down.active{
    opacity: 100;
}

.main{
    position: relative;
}

.main-after-header{
    display: flex;
    align-items: center;
    padding:115px 200px;
    justify-content: center;
    gap: 50px;
}
.main-after-header-text{
    max-width: 427px;
}

.main-after-header-text-big{
    text-transform: capitalize;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    color: #000000;
}

.main-after-header-text-small{
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 21.82px;
    color: #0A0A0A;
    margin-top: 29px;
}

.main-after-header-button{
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-top: 29px;
    text-decoration: underline;
}

.main-about{
    padding: 98px 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F6F6F6;
    gap: 88px;
}
.main-about-text{
    text-align: center;
    max-width: 609px;
}
.main-about-text-big{
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
}

.main-about-text-small{
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 21.82px;
    color: #0A0A0A;
    margin-top: 22px;
}

.main-about-button{
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-top: 22px;
    text-decoration: underline;
}


.main-about-gallery{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
}
.gallery-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.gallery-text{
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 20.83px;
    text-align: center;
    max-width: 239px;
    color: #0A0A0A;
}

.main-brands{
    padding-top: 121px;
    padding-left: 160px;
    padding-right: 173px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    position: relative;
    gap: 105px;
    padding-bottom: 136px;
}

.brands-sticky-container{
    position: relative;
}

.brands-sticky{
    position: sticky;
    top: 129px;
}

.brands-sticky-big-text{
    font-size: 48px;
    line-height: 57.6px;
    font-weight: 500;
}

.brands-sticky-small-text{
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 20.83px;
    color: #092345;
    margin-top: 19px;
    margin-bottom: 38px;
}

.brands-sticky-button{
    text-decoration: underline;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-top: 36px;
}

.brands-gallery{
    display: flex;
    flex-direction: column;
    gap: 94px;
}

.brands-gallery-item{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.brands-gallery-image{
    object-fit: cover;
    max-width: 616px;
}

.brands-gallery-text{
font-family: 'DM Sans', sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 22px;
letter-spacing: 0em;
text-align: left;
margin-top: 40px;
margin-bottom: 40px;
max-width: 582px;
color: #0A0A0A;
}

.brands-gallery-text span{
    font-weight: 600;
}

a{
    text-decoration: underline;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: #0A0A0A;
    cursor: pointer;
}
.socials-logo{
    cursor: pointer;
}


.main-contact{
    padding-top: 127px;
    text-align: center;
    width: 100%;
    background: linear-gradient(180deg, #EDE8E2 57.29%, #F5E7DA 100%);
    padding-bottom: 127px;

}

.main-contact-text-big{
    font-weight: 500;
    font-size: 50px;
    line-height: 60px;
}

.main-contact-adress{
    margin-top: 58px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    max-width: 371px;
    letter-spacing: 0.1em;
    position: relative;
    left: 50%;
    transform: translate(-50%,0);
}

.main-contact-info{
    margin-top: 53px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    max-width: 371px;
    letter-spacing: 0.1em;
    position: relative;
    left: 50%;
    transform: translate(-50%,0);
}

.contact-us-image{
    object-fit: cover;
    margin-top: 113px;

}

.footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #080A1C;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 44px;
    padding-right: 71px;
    position: relative;
}

.footer-left-side{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 23px;
}

.footer-socials{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 9.5px;
}

.footer-copyright, .footer-menu-link {
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: 0em;
    text-align: left;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
}

.division-wrapper{
    padding-top: 50px;
    padding-bottom: 127px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    padding-left: 200px;
    padding-right: 200px;
}

.division-after-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 0px;
    padding-bottom: 50px;
    border-bottom: 1px solid black;
    width: 100%;
}

.division-after-header-big-text{
    font-weight: 500;
    font-size: 48px;
    line-height: 57.6px;
    text-transform: capitalize;
}

.division-after-header-small-text{
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #092345;
    max-width: 778px;
}


.division-gallery-item{
    display: flex;
    align-items: center;
    gap: 50px;
}
.division-wrapper .division-gallery-item:nth-child(2){
    flex-direction: row-reverse;
}

.brands-wrapper .division-gallery-item:nth-child(2){
    flex-direction: row;
}
.brands-wrapper .division-gallery-item:nth-child(3){
    flex-direction: row-reverse;
}

.division-gallery-button{
    font-weight: 600;
    margin-top: 31px;
}

.division-gallery-logo{
    margin-bottom: 31px;
}



.division-gallery-text{
    margin-bottom: 31px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    max-width: 531px;
}

.division-gallery-text span{
    font-weight: 600;
    font-style: italic;
}

.partners{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 77px;
    padding-top: 75px;
    padding-bottom: 75px;
    padding-left: 200px;
    padding-right: 200px;
    background-color: #F6F6F6;
}

.partners-text-wrapper{
    text-align: center;
}

.partners-big-text{
    font-size: 50px;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: 0em;
    text-align: center;
    text-transform: capitalize;
}

.partners-small-text{
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: center;
    margin-top: 32px;
}

.partners-images-wrapper{
    display: flex;
    flex-wrap: wrap;
    row-gap: 35px;
    column-gap: 28px;    
    max-width: 1105px;
    justify-content: center;
}

.partners-image{
    object-fit: cover;
    width: 45%;
}


.services-after-header{
    margin-left: 200px;
    margin-right: 200px;
    margin-top: 91px;
    flex-direction: row;
    gap: 0px;
    justify-content: space-between;
    height: auto;
    padding-bottom: 41px;
    width: auto;
}
.services-after-header .division-after-header-small-text{
    max-width: 748px;
}
.swiper-services{
    margin-top: 64px;
    margin-left: 200px;
    margin-bottom: 149px;
}

.swiper-scrollbar{
    height: 8px;
    border-radius: 0px;
}

.swiper-scrollbar-horizontal{
    height: 8px;
    border-radius: 0px;
}

.swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal{
    position: relative;
    height: 8px;
    border-radius: 0px;
    background: var(--swiper-scrollbar-bg-color,rgba(0,0,0,.20));
    left: 0;
    bottom: 0;
    margin-top: 63px;
    max-width: 978px;
}

.carousel-services-text-container{
    margin-top: 26px;
}

.carousel-services-image{
    object-fit: cover;
}

.carousel-services-big-text{
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: 0em;
    text-align: left;
    color: #0A0A0A;
}

.carousel-services-small-text{
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    max-width: 410px;
    margin-top: 26px;
}

.mail-link{
    letter-spacing: 0.1em;
}

.division-gallery-container{
    display: flex;
    gap: 100px;
    flex-direction: column;
}

.navbar-menu-phone{
    display: none;
}

.burger-phone{
    display: none;
}

.swiper-brands{
    display: none;
}
.gallery-services{
    display: none;
}
.swiper-main{
    display: none;
}

.footer-phone{
    display: none;
}

.header.active{
   display: none;
}
.main.active{
    display: none;
}
.footer.active{
    display: none;
}

.video-logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation-name: bigLogoAnim;
    animation-delay: 1s;
    animation-duration: 2s;
    opacity: 0;
}

@keyframes bigLogoAnim{
    0%{
        opacity: 0;
        width: 597px;
        height: 597px;
    }
    50%{
        opacity: 100%;
    }
    100%{
        top: -15px;
        width: 34px;
        height: 34px;
        opacity: 100%;
        left: 47.9%;
    }
    
}


.video-logo-second{
    position: absolute;
    left: 50%;
    top: -33px;
    transform: translate(-50%,0%);
    animation-name: secondLogoAnim;
    animation-delay: 3s;
    animation-duration: 2s;
    opacity: 0;
    z-index: 50;
    animation-fill-mode: forwards;
}

.burger-main{
    animation-name: headerFill;
    animation-delay:3s;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}
.burger-main span{
    border: 1px solid #fff;
}
.home-header-logo{
    opacity: 0;
}

.home-header-logo.active{
    opacity: 100;
}
.burger-main.active{
    opacity: 100;
}

.burger-main.active span{
    border: 1px solid #000;
}

.black-thing{
    position: absolute;
    width: 100%;
    height: 60px;
    background-color: #000;
    z-index: 1;
    transition: 200ms;
    bottom: -20px;
}

@keyframes headerFill{
    from{
        opacity: 0;
    }
    to{
        opacity: 100;
    }
}
@keyframes secondLogoAnim{
    0%{
        opacity: 0;
    }
    50%{
        opacity:100%
    }
    100%{
        left: 25px;
        transform: translate(0,0);
        opacity: 100%;
    }
}
.header-phone-image{
    display: none;
}
.navbar-menu-desktop{
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-not-main{
    display: none;
}

.header-image{
    width: 100%;
    position: absolute;
    object-fit: cover;
    z-index: -1;
    height: 575px;
}

.main-not-home{
    margin-top: 622px;
}

.video-phone{
    display: none;
}

.header-logo-animated{
    opacity: 0;
}

.policies-container {
    width: 100%;
    max-width: 1112px;
    margin: 0 auto;
}

.policies-gallery-text-container {
    flex-grow: 1;
    width: 100%;
}

.policies-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 32px;
}

.policies-list li {
    margin-bottom: 10px;
}

.policies-list li:last-child {
    margin-bottom: 0;
}

.policies-list a {
    color: #080A1C;
}

.footer-menu-link {
    text-decoration: underline;
}

.footer-menu-link:hover {
    text-decoration: none;
}

@media (max-width:1514px) {
    .policies-wrapper {
        max-width: 1452px;
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px;
    }
    .policies-after-header {
        max-width: 1112px;
        margin: 0 auto;
    }
}

@media (max-width:1200px){
    .services-after-header{
        margin-left: 100px;
        margin-right: 100px;
    }
    .division-after-header{
        gap: 0;
    }
    .swiper-services{
        margin-left: 100px;
    }
    .swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal{
        max-width: 587px;
    }
    .division-wrapper{
        padding-left: 100px;
        padding-right: 100px;
    }
    .division-gallery-container{
        align-items: center;
    }
    .division-gallery-item{
        flex-direction: column;
    }
    .division-gallery-item:nth-child(3){
        flex-direction: column;
    }
    .division-wrapper .division-gallery-item:nth-child(2){
        flex-direction: column;
    }
    .main-brands{
        flex-direction: column;
        padding-left: 100px;
        padding-right: 100px;
        align-items: center;
    }
    .brands-wrapper .division-gallery-item:nth-child(3){
        flex-direction: column;
    }
    .partners-images-wrapper{
        flex-direction: column;
    }
    .partners-image{
        width: auto;
    }
}


@media (max-width:600px){
    .header{
        min-height: 534px;
    }
    .navbar-menu-phone{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 28.1px 15px;
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .phone-navbar-home{
        display: none;
        transition: 500ms;
    }
    .phone-navbar-home.active{
       display: flex;
       position: sticky;
       z-index: 100;
       top: 0; 
    }
    .navbar-menu{
        display: none;
    }
    .burger span{
        border: 1px solid #000000;
    }
    .header-main-image{
        max-height: 445px;
    }
    .division-wrapper{
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 30px;
        padding-bottom: 30px;
        gap: 55px;
    }
    .division-after-header{
        gap: 29px;
        border-bottom: none;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 0;
    }
    .division-after-header-big-text{
        font-size: 28px;
        line-height: 33px;
        padding-bottom: 10px;
        border-bottom: 1px solid black;
        width: 100%;
    }
    .division-after-header-small-text{
        color: #0A0A0A;
        font-size: 14px;
        line-height: 19.1px;
    }
    .division-gallery-image{
        object-fit: cover;
        width: 100%;
    }
 
    .division-gallery-text-container{
        padding-left: 15px;
        padding-right: 15px;
    }
    .division-gallery-item{
        gap: 34px;
    }
    .division-gallery-text{
        margin-bottom: 34px;
        font-size: 14px;
        line-height: 19px;
        color: #080A1C;
    }
    .division-gallery-button{
        font-weight: 500;
    }
    .division-gallery-container{
        gap: 34px;
    }
    .burger{
        display: none;
    }
    .burger-phone{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        height: 12px;
        width: 17px;
    }

    .burger-phone span{
        display: block;
        border: 1px solid #000;
        width: 17px;
        transition: all 0.5s;
        position: absolute;
    }
   
    .burger-phone.active span{
        border: 1px solid #fff;
    
    }
    
    
    .burger-phone span:nth-of-type(2){
        top: 5px;
    }
    .burger-phone span:nth-of-type(3){
        top: 10px;
    }
    
    .burger-phone.active span:nth-last-of-type(1){
        display: none;
    }
    .burger-phone.active span:nth-last-of-type(2){
      transform:  rotate(45deg);  
    }
    .burger-phone.active span:nth-last-of-type(3){
        top: 5px;
        transform:  rotate(-45deg); 
    }

    .partners{
        padding-top: 50px;
        padding-left: 15px;
        padding-right: 0;
        gap: 25px;
        padding-bottom: 50px;
    }
    .partners-text-wrapper{
        padding-right: 15px;
    }
    .partners-big-text{
        font-size: 28px;
        line-height: 33.6px;
        text-align: left;
    }
    .partners-small-text{
        text-align: left;
        margin-top: 29px;
        font-size: 14px;
        line-height: 19px;
    }

    .partners-images-wrapper{
        display: none;
    }

    .swiper-brands{
        display: block;
        width: 100%;
        margin-left: auto;
        margin-right: 0;
    }
    .swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal{
        max-width: 360px;
    }
    .carousel-services-image{
        height: 267px;
    }
    .swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal{
        margin-top: 25px;
    }

    .services-after-header{
        margin-left: 0;
        margin-right: 0;
        margin-top: 30px;
    }
    .gallery-services{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60px;
        margin: 60px 0;
    }
    .swiper-services{
        display: none;
    }

    .gallery-services-text-wrapper{
        margin-top: 26px;
        padding-left: 15px;
        padding-right: 55px;
    }

    .gallery-services-big-text{
        font-family: 'DM Sans', sans-serif;
        font-weight: 700;
        font-size: 24px;
        line-height: 31px;
    }

    .gallery-services-small-text{
        font-family: 'DM Sans', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        margin-top: 26px;
    }

    .video-main{
        max-height: 100%;
        object-fit: cover;
    }

    .header-main-text{
        font-weight: 500;
        font-size: 29px;
        line-height: 43.5px;
        position: relative;
        padding-left: 44px;
        padding-right: 44px;
        top: 192px;
        transform: translate(-50%,0);
    }
    .arrow-down{
        bottom: 33px;
    }

    .main-after-header{
        flex-direction: column-reverse;
        padding: 0;
        gap: 25px;
        margin-top: 40px;
    }
    .main-after-header-text{
        padding:0 15px;
    }

    .main-after-header-text-big{
        font-size: 28px;
        line-height: 33.6px;
    }
    .main-after-header-text-small{
        margin-top: 29px;
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 29px;
    }

    .main-about{
        padding-left: 15px;
        padding-top: 50px;
        padding-bottom: 50px;
        padding-right: 0;
    }
    .main-about-text{
        text-align: left;
        padding-right: 15px;
    }
    .main-about-text-big{
        font-size: 28px;
        line-height: 33.6px;
    }
    .main-about-text-small{
        font-size: 14px;
        line-height: 19px;
        margin-top: 29px;
        margin-bottom: 29px;
    }
    .main-about-gallery{
        display: none;
    }
    .swiper-main{
        width: 100%;
        display: block;
    }
    .gallery-text{
        margin-top: 17px;
        font-size: 14px;
        line-height: 18px;
    }
    .main-brands{
        padding: 30px 0;
        gap: 55px;
    }
    .brands-sticky{
        position: relative;
        top: 0;
        padding-left: 15px;
        padding-right: 15px;
    }
    .brands-sticky-big-text{
        font-size: 28px;
        line-height: 33px;
        width: 100px;
    }
    .brands-sticky-small-text{
        font-size: 14px;
        line-height: 19px;
        letter-spacing: 0.03em;
        margin: 29px 0;
        color: #000;
    }
    .brands-gallery{
        gap: 60px;
    }
    .brands-gallery-image{
        max-width: 100%;
    }
    .brands-gallery-text-block{
        padding-left: 15px;
        padding-right: 15px;
    }
    .brands-gallery-text{
        font-size: 14px;
        line-height: 19px;
        margin: 29px 0;
    }
    .brands-page-logo{
        max-width: 100%;
    }
    .footer-left-side{
        display: none;
    }
    .footer-right-side{
        display: none;
    }
    .footer-phone{
        display: block;
    }
    .footer-phone-top{
        display: flex;
        justify-content: space-between;
    }
    .footer{
        display: block;
        padding: 22px 30px 35px 30px;
    }
    .footer-phone-bottom{
        text-align: center;
        margin-top: 40px;
    }
    .footer-copyright{
        text-align: center;
        margin-top: 20px;
    }
    .side-menu-list{
    text-align: right;
    padding-right: 27px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 100px;
    margin-top: 0;
    }
    .side-menu-link{
        font-size: 57px;
        line-height: 55px;
    }
    .header.active{
        display: none;
    }
    .main.active{
        display: none;
    }
    .footer.active{
        display: none;
    }
    .navbar-menu-side{
        display: flex;
        justify-content: end;
        align-items: end;
        padding-top: 39.5px;
    }
    .navbar-menu-side a{
        display: none;
    }
    .header-main-image{
        display: none;
    }
    .header-phone-image{
        display: block;
        width: 100%;
        max-height: 445px;
        position: absolute;
        object-fit: cover;
        z-index: -1;
    }
    .header-not-main{
        display: block;
        min-height: 445px;
    }
    .navbar-menu-desktop{
        display: none;
    }
    .header-image{
        display: none;
    }
    .main-not-home{
        margin-top: 0;
    }
    .video-main{
        display: block;
    }
    .video-phone{
        display: block;
    }
    .video-desktop{
        display: none;
    }
    .header-main{
        height: 100vh;
    }
}

.header-logo-white.active{
    display: none;
}

.header-logo-black{
    display: none;
}

.header-logo-black.active{
    display: block;
}
.burger.active{
    opacity: 100;
}

.burger.active span{
    border: 1px solid #000;
}

.burger-animation{
    opacity: 0;
    animation-name: burgerFill;
    animation-duration: 1s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
}

@keyframes burgerFill {
    from{
        opacity: 0;
    }        
    to{
        opacity: 100;
    }
}

@media (min-width:601px) {
    .policies-main {
        margin-top: 528px;
    }
}

@media (min-width:1201px) {
    .policies-container .policies-gallery-item {
        flex-direction: row-reverse;
    }
    .policies-container .policies-gallery-item:nth-child(2) {
        flex-direction: row;
    }
    .policies-container .policies-gallery-item:nth-child(3) {
        flex-direction: row-reverse;
    }
    .policies-container .policies-gallery-item:nth-child(4) {
        flex-direction: row;
    }
}
