:root{
    --background: #F7F7F7;
}
*{
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
html {
    font-size: 15px;
    overflow-y: scroll;
}
body, ul{
    margin: 0;
    padding: 0;
}
body{
    overflow: hidden;
    background-color: var(--background);
    font-family: 'Gilroy', sans;
    font-size: 1rem;
    font-weight: 400;
}
span{
    line-height: 1.7;
}
a{
    text-decoration: none;
    color: #000;
}
img{
    max-width: 100%;
    max-height: 100%;
    transform: translate3d(0, 0, 1px);
}
button{
    outline: none;
    border: none;
}
textarea:focus, input:focus{
    outline: none;
}
hr{
    width: 100%;
    border-style: solid;
    border-color: #eee;
}
#smooth-wrapper{
    transition: 250ms all !important;
}
#smooth-content {
  will-change: transform;
}
.loader{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0;
    z-index: 1000000000;
}
.global-header{
    height: 80px;
    width: 100%;
    position: fixed;
    display: flex;
    top: 30px;
    padding: 0 30px;
    z-index: 100;
    transition: 250ms all ease-in;
}
.global-header.active{
    padding: 0 10px !important;
    top: 10px !important;
}
.header-content-wrapper{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.global-nav, .header-right{
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    height: 80px;
    width: fit-content;
    border-radius: 40px;
    background-color: #fff !important;
    display: flex;
    position: relative;
    align-items: center;
    column-gap: 10px;
}
.global-nav{
    padding: 7px 60px 7px 7px;
}

.logo-container-wrapper{
    background-color: var(--background);
    width: 250px;
    border-radius: 40px;
    height: 100%;
    border: 1px solid transparent;
    transition: 150ms all !important;
}
.logo-container-wrapper:hover{
    background-color: #efefef;
    border-color: #ddd;
}
.logo-container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.logo-img, .logo-img img{
    height: 30px;
    object-fit: contain;
    object-position: 0 0;
}
.global-nav-links{
    display: flex;
    align-items: center;
    list-style: none;
    height: 100%;
    margin-left: 30px;
}
.global-nav-links > li > a{
    padding: 10px 15px;
    font-size: 1rem;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 102;
    transition: 100ms all !important;
    transition-delay: 50ms !important;
    cursor: pointer;
}
.global-nav-links > li > a:hover,
.global-nav-links:not(:has(> li > a:hover)) > li > a.active{
    color: #fff;
}
.global-nav-links > li > a.active:hover,
.global-nav-links:not(:has(> li > a:hover)) > li > a.active{
    padding-bottom: 100px;
}
.nav-cursor{
    position: absolute;
    background-color: #4D5F5E;
    z-index: 101;
    opacity: 0;
    border-radius: 40px;
    left: 0px;
    height: 35px;
    top: 22.5px;
    transition: 250ms opacity !important;
}
.global-nav-links:has(li > a:hover, li > a.active) .nav-cursor{
    opacity: 1;
}

.header-right{
    padding: 7px;
}
.language-selector-wrapper,
.language-selector-content{
    display: flex;
    overflow: hidden;
    flex-direction: row-reverse;
}
.language-selector-wrapper:has(.language-selector-content.active){
    position: absolute;
    background-color: #fff;
    top: 0;
    right: calc(100% - 70px);
    border-radius: 40px;
    min-height: 100%;
    z-index: 10;
    align-items: center;
    width: fit-content;
    overflow: visible;
}
.language-selector-content{
    height: 80px;
    background-color: #fff;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}
.language-selector-wrapper:has(.language-selector-content.active) .language-selector-content:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 65px);
    height: 100%;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    z-index: -1;
}
.header-right:has(.language-selector-content.active){
    padding-left: 80px;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.language-selector-wrapper:has(.language-selector-content:not(.active)) .language-selector-menu-wrapper{
    opacity: 0;
    pointer-events: none;
    width: 0;
}

.language-selector-button{
    width: 65px;
    height: 65px;
    min-width: 65px;
    min-height: 65px;
}
.language-selector-content:not(.active) i{
    display: none;
}
.language-selector-content.active .selected{
    display: none;
}
.language-selector-menu-wrapper{
    display: flex;
    align-items: center;
}
.language-selector-menu{
    display: flex;
    list-style: none;
    padding: 0 15px;
}
.language-selector-menu li a{
    padding: 15px 15px;
    border-radius: 100%;
    cursor: pointer;
}
.language-selector-menu li a:hover{
    background-color: #ededed
}
.contact-button{
    padding: 0 40px;
    background-color: #3a4a4a;
    border-radius: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 40px;
}
.contact-button .icon{
    transform: translateY(-12.5%);
}
.contact-button:hover{
    background-color: #596968;
}
img.light-icon{
    filter: invert(100%);
    object-position: center;
    
}

.main-section{
    transform-origin: center;
    margin: auto;
    width: 100%;
    border-radius: 0 0 80px 80px;
    overflow: hidden;
    z-index: 1;
    position: relative;
}
.intro{
    width: 100%;
    padding-top: 200px;
    background-color: var(--background);
}
.intro-bg{
    position: absolute;
    pointer-events: none;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: .3;
    width: 100%;
    aspect-ratio: 2500 / 1771;
    background-image: url("../img/intro-bg-rJMUjfT.jpg");
    background-size: contain;
    background-repeat: no-repeat;
}
.intro-content-wrapper{
    z-index: 2;
    position: relative;
}
.intro-top{
    padding: 0 15vw 50px 15vw;
    display: flex;
    justify-content: space-between
}
.intro-top .text-container{
    max-width: 900px;
    font-size: 1.375rem;
}
.intro-top .big-title{
    color: #273434;
}
.intro-top span{
    color: #58656f;
}
.intro-top .skip-button{
    font-size: 25px;
}
.intro-link-section{
    align-self: end;
    display: flex;
    column-gap: 10px;
}
.watch-button{
    width: 150px !important;
}
.intro-img{
    width: 98%;
    height: 90vh;
    background-image: url("../img/intro-wOGPo0g.jpg");
    background-size: cover;
    background-repeat: none;
    border-radius: 80px;
    margin: 0 auto;
    min-height: 300px;
}
.home-about{
    margin-top: 0 !important;
}
.section-wrapper{
    background-color: var(--background);
    width: 100%;
    height: fit-content;
}
.content-section{
    padding: 40px;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.content-inner{
    display: flex;
    column-gap: 50px;
}
.content-title-wrapper{
    padding: 20px 0 10px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 60px
}
footer .content-title-wrapper{
    margin-bottom: 10px
}
.content-title{
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    word-spacing: 5px;
    margin-bottom: 10px;
    display: block;
}
.content-img{
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.content-img img{
    width: 100%;
    height: 100%;
}
.text-container :is(.standart-button, .black-button){
    margin-top: 40px
}
.project-container{
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    height: fit-content;
}
.project-container .row{
    width: 100%;
    height: 300px;
    display: flex;
    column-gap: 30px
}
.project-grid-item{
    cursor: pointer;
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 50%;
    border-radius: 15px;
    overflow: hidden;
    will-change: transform;
}
.project-img{
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .9
}
.project-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
.project-img:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(77, 95, 94, .7);
    transition: 250ms all ease-out !important
}
.project-text-wrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 10px;
    transition: 250ms all ease-out !important
}
.project-grid-item:not(.project-site) .project-text-wrapper{
    justify-content: end;
}
.project-grid-item:not(.project-site) .project-text-wrapper .project-text{
    margin: 30px;
    font-size: 1.35rem;
    font-weight: bold;
}
.project-logo img{
    object-fit: contain;
    height: 70px;
}
.project-text{
    color: #fff;
    text-transform: uppercase;
}
.project-grid-item:not(.project-site) .project-text{
    text-transform: capitalize
}
.project-grid-item:hover .project-text-wrapper{
    transform: scale(1.1);
}
.project-grid-item:hover .project-img:after{
    opacity: .8
}

/* Brands */

@property --brand-color {
  syntax: '<color>';
  initial-value: #82afaf;
  inherits: false;
}
.home-brands{
    --brand-color: #82afaf;
    background: radial-gradient(circle at 50% 0%, var(--brand-color) 25%, var(--background) 200%);
    line-height: 1.7;
    font-weight: 400;
    min-height: 110vh;
    transition: 250ms --brand-color ease-out;
}

.brands-content-wrapper{
    padding-top: 150px;
    padding-bottom: 150px;
    display: flex;
    column-gap: 20px;
}
.brands-left-container{
    width: 40%
}
.brands-left-container h1{
    color: #1C2226;
    font-size: 55px;
    line-height: .5;
}
.brands-left-container span{
    color: white;
    font-size: 1.35rem;
}
.brands-link-section{
    display: flex;
    margin-top: 20px;
    column-gap: 10px;
}
.brands-left-container .skip-button{
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    background-color: #fff;
    font-size: 24px;
    border-color: #fff;
}
.brands-progress{
    height: 250px;
    width: 4px;
    background: #fff;
    border-radius: 40px;
    margin-top: 20px;
}
.brands-content{
    width: 60%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.brands-content > *{
    display: flex;
    flex-direction: column;
}
.brand-item{
    border-radius: 15px;
    overflow: hidden;
    position: absolute;
    background-color: #fff;
    will-change: transform;
}
.brand-banner{
    position: absolute;
    width: 100%;
    height: 200px;
}
.brand-banner img{
    width: 100%;
    max-height: unset;
    transition: 500ms all ease-in-out !important;
}
.brand-item:hover .brand-banner img{
    scale: 1.1
}
.brand-item-content{
    padding: 60px 30px 30px 30px;
    z-index: 1;
    position: relative;
    background-color: #fff;
    margin-top: 250px;
}
.brand-logo-container{
    position: absolute;
    top: 0;
    left: 30px;
    transform: translateY(-50%);
    background-color: #F0F0F0;
    width: 70px;
    height: 70px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.brand-logo-container img{
    height: 80%;
}
.brand-text-container.text-container{
    max-width: 100%;
    font-size: 1rem;
}
.brand-text-container.text-container h3{
    font-size: 2rem
}

/* End Brands */

/* Main Slider*/

.home-slider-images{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.home-slider-images img{
    position: absolute;
    height: 100%;
    object-fit: cover;
}
.home-slider-images img.active{
    z-index: 1 !important;
}
.home-slider{
    width: 100%;
    height: 100vh;
    position: relative;
}
.home-slider-content-wrapper{
    background-color: unset;
    position: relative;
    z-index: 20;
}
.home-slider-content{
    top: 0;
    max-width: 540px;
    position: relative;
    font-weight: 400;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.home-slider-static-text{
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 1.2rem;
    color: #4D5F5E;
    text-transform: uppercase;
}
.home-slider-text-carousel{
    padding-top: 125px !important;
    padding: 50px;
    background-color: rgba(207, 228, 39, .7);
}
.home-slider .text-container{
    max-width: 100%;
    font-size: 1.2rem;
    color: #4D5F5E;
}
.home-slider-navigator{
    background-color: rgba(77, 95, 94, .7);
    padding: 20px 50px;
    color: white;
    display: flex;
    align-items: center;
}
.home-slider-navigator button{
    min-width: 50px;
    min-height: 50px;
    font-size: 2rem;
    background-color: transparent;
    border: 1px solid #aaa !important;
    border-radius: 100%;
    outline: none;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 250ms all !important;
    cursor: pointer;
}
.home-slider-navigator button:hover{
    background-color: rgba(255, 255, 255, .1);
    border-color: white !important;
}
.home-slider .slide-indicator{
    margin: 0 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.home-slider-navigator .page-indicator{
    margin-left: auto;
    min-width: fit-content;
}
.home-slider-logo{
    position: absolute;
    width: 200px;
    bottom: 30px;
    right: 30px;
    z-index: 10 !important;
}

/* End Main Slider */

/* Footer */

.blogs-wrapper{
    margin: 60px 0;
    display: flex;
    justify-content: space-between;
}
.blog-container{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 900px;
    column-gap: 30px;
    row-gap: 60px;
}
.blog-content{
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 60px;
}
.blog-item{
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.blog-item.main{
    width: 100%;
    min-height: 600px;
    color: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
}
.blog-item.standart{
    width: calc(33% - (60px / 3));
    min-height: 300px;
    color: #000
}
.blog-container .blog-item.standart{
    width: calc(25% - (60px / 3));
}
.blog-item.central{
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.blog-img{
    overflow: hidden;
    object-fit: cover;
    object-position: 50% 100%;
    border-radius: 10px;
    transition: 500ms all ease-in-out !important;
}
.blog-item:hover .blog-img img{
    scale: 1.1
}
.blog-item.main .blog-img,
.blog-item.central .blog-img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-position: center;
}
.blog-item.standart .blog-img{
    width: 100%;
    height: 250px;
}
.blog-item.main:after,
.blog-item.central:after{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, .25) 25%, transparent 50%);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    pointer-events: none;
}
.blog-item.standart:after{
    height: 250px;
}
.blog-item-content{
    position: relative;
    z-index: 1
}
.blog-item.main .blog-item-content,
.blog-item.central .blog-item-content{
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    transition: 500ms all ease-in-out !important;
}
.blog-item.main:hover .blog-item-content,
.blog-item.central:hover .blog-item-content{
    padding-bottom: 90px;
}
.blog-title{
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
    transition: 375ms all ease-in !important;
}
.blog-item.standart:hover .blog-title{
    text-decoration-color: #000;
}
.blog-item.main:hover .blog-title,
.blog-item.central:hover .blog-title{
    text-decoration-color: #fff;
}
.blog-item.main .blog-title{
    font-size: 2rem;
    width: 80%;
}
.blog-item.standart .blog-title,
.blog-item.central .blog-title{
    font-size: 1.2rem;
    margin-top: 3px;
    margin-bottom: 7px;
}
.blog-item.main .blog-date{
    align-self: end;
}
.blog-item.main .tag-container,
.blog-item.central .tag-container{
    margin-bottom: 20px;
}
.blog-item.standart .tag-container{
    position: absolute;
    left: 10px;
    top: -245px;
}
.blog-page-navigator{
    display: flex;
    width: 100%;
    padding: 30px;
    column-gap: 5px;
    position: relative;
    justify-content: center;
    align-items: center;
}
.blog-page-navigator .border-button{
    min-width: 50px;
    height: 50px;
}
.blog-page-navigator .border-button.active{
    border-color: #000 !important;
}
.blog-page-navigator .next-button{
    margin-left: 20px;
    text-decoration: underline;
    cursor: pointer
}
.blog-page-navigator .prev-button{
    margin-right: 20px;
    text-decoration: underline;
    cursor: pointer
}
.not-found{
    font-size: 2rem;
    width: 100%;
    text-align: center;
    display: block;
    min-height: 50vh;
}
/*
.blog-item.standart{
    width: 25%;
    height: 300px;
    position: relative;
    margin-bottom: 80px;
}
.blog-item.huge{
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #fff;
    border-radius: 15px;
    overflow: hidden;
}
.blog-item.huge .blog-item-content{
    position: relative;
    z-index: 1;
}
.blog-item-content{
    padding: 30px;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), transparent)
}
.blog-img{
    height: 200px;
}
.huge .blog-img{
    position: absolute;
    width: 100%;
    height: 100%;
}
.blog-item .blog-tag{
    background-color: #fff;
    border: 1px solid #eee;
    width: fit-content;
    padding: 7px 20px;
    font-size: 12px;
    border-radius: 40px;
    color: #000;
}
.blog-item.standart .blog-tag{
    position: absolute;
    top: 10px;
    left: 10px;
}
.blog-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}
.blog-title{
    font-size: 25px;
    margin: 5px 0 15px 0;
    line-height: 1.2
}
.blog-item.huge .blog-title{
    margin: 20px 0 50px 0;
}
    */

.footer-wrapper{
    will-change: transform;
}
footer{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background-color: #fff !important;
}
.footer-main{
    display: flex;
    column-gap: 40px;
    font-size: 1.2rem;
}
.footer-logo{
    margin-bottom: 20px;
}
.footer-main .content-title-wrapper{
    font-size: 1.35rem;
}
.footer-main aside{
    display: flex;
    flex-direction: column;
    width: calc(25% - (40px / 3));
}
.footer-main aside ul{
    list-style: none;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}
.footer-main aside ul li, span:not(.content-title-wrapper span){
    line-height: 1.75;
}
.footer-main aside ul li[data-tag]:after{
    content: attr(data-tag);
    font-size: .8rem;
    color: #4D5F5E;
    background-color: #F4F6F6;
    padding: 7px 20px;
    margin-left: 10px;
    border-radius: 40px;
    height: fit-content;
    align-self: center;
}

.footer-bottom{
    margin-top: 40px;
    border-top: 2px solid #ccc;
    padding: 40px 0 0;
    display: flex;
    justify-content: space-between
}
.footer-bottom .media{
    width: fit-content;
    border-radius: 40px;
    background-color: #F4F6F6;
    padding: 0 20px;
}
.footer-bottom .media ul{
    display: flex;
    list-style: none;
    height: 80px;
    column-gap: 20px;
}
.footer-bottom .media-item{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 25px 10px;
    column-gap: 10px;
    color:#4D5F5E;
}
.footer-bottom .media-item i{
    font-size: 25px;
}
.footer-bottom-links{
    display: flex;
    align-items: center;
    column-gap: 30px;
    
}

/* End Footer */

/* Navbar Dropdown */

.global-nav-links > li > a.active ~ .nav-dropdown-wrapper{
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}
#smooth-content{
    background-color: #fff;
}
body:has(.global-nav-links > li > a.active) #smooth-content,
body:has(.active .project-router-wrapper) #smooth-content{
    filter: blur(15px);
}
.nav-dropdown-wrapper{
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    top: 140px;
    position: fixed;
    z-index: 0;
    transition: 250ms opacity !important;
}
body:has(.global-nav-links > li > a.active) .nav-dropdown-close-wrapper,
body:has(.active .project-router-wrapper) .project-router-close-wrapper,
body:has(.header-router-button.active) .main-section.test:before{
    content: "";
    background-color: rgba(77, 95, 94, .3);
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transition: 250ms all !important;
}
body:has(.header-router-button.active) .main-section:before{
    z-index: 2;
}
.nav-dropdown{
    background-color: #DFE5E5;
    display: flex;
    padding: 50px;
    border-radius: 40px;
    width: 1440px;
    max-width: calc(100vw - 60px);
    position: fixed;
    top: 120px;
    left: 30px;
    column-gap: 30px;
    transition: 250ms all ease-in !important;
}
.global-header.active .nav-dropdown{
    left: 10px;
    top: 100px;
}
.nav-dropdown-router-side{
    display: flex;
    flex-wrap: wrap;
    max-width: 50%;
    height: fit-content;
}
.nav-dropdown-router-item{
    max-width: 50%;
    font-size: .9rem;
    padding: 20px;
    max-height: fit-content;
}
.nav-dropdown-contact-side .nav-dropdown-router-item{
    max-width: calc(50% - (30px / 2));
    padding: 0 !important;
}
.nav-dropdown-contact-side .nav-dropdown-router-side{
    gap: 30px;
}
.nav-dropdown-router-item:not(.nav-dropdown-contact-side *):hover{
    background-color: rgba(255, 255, 255, .3);
    border-radius: 10px;
    cursor: pointer
}
.nav-dropdown-router-title{
    color: #3b4b49;
    font-weight: 400;
    line-height: 2.5;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    transition: 375ms all ease-in !important;
}
.nav-dropdown-router-item:hover .nav-dropdown-router-title{
    text-decoration-color: #4D5F5E;
}

.nav-dropdown-router-item span{
    line-height: 1.5 !important;
    color: #6e7575;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.nav-dropdown-img-router-side{
    display: flex;
    column-gap: 10px;
}
.nav-dropdown-img-router-item{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: end;
    padding: 20px;
    min-width: 300px;
    min-height: 450px;
    color: white;
    transition: 250ms all !important;
    font-size: .9rem;
}
.nav-dropdown-img-router-img{
    pointer-events: none;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.nav-dropdown-img-router-img:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .75) 25%, transparent 75%);
    z-index: 1;
}
.nav-dropdown-img-router-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-dropdown-img-router-title{
    font-size: 1.2rem;
    line-height: 2.5;
    font-weight: 600
}
.nav-dropdown-img-router-button{
    background-color: rgba(255, 255, 255, .2) !important;
    min-width: 100%;
    justify-content: center;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 30px;
    transition: 250ms all !important;
}
.nav-dropdown-img-router-button:hover{
    background-color: rgba(255, 255, 255, .3) !important;
}
.nav-dropdown-brand-side{
    padding-right: 30px;
    position: relative;
}
.nav-dropdown-brand-side:after{
    content: "";
    position: absolute;
    left: -50px;
    top: -50px;
    width: calc(100% + 50px);
    height: calc(100% + 100px);
    z-index: -1;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    background-color: white;
}
.nav-dropdown-brand-side span{
    font-weight: 500;
    font-size: 1.4rem;
}
.nav-dropdown-brands{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.nav-dropdown-brand{
    width: 250px;
    height: 70px;
    display: flex;
    gap: 5px;
    justify-content: start;
    border-radius: 60px;
    position: relative;
    transition: 250ms all !important;
    font-size: 2rem;
    align-items: end;
    padding: 10px 60px 10px 30px;
    color: #ccc;
    margin-bottom: 10px;
}
.logo-wrapper{
    height: 100%;
    aspect-ratio: 1 / 1;
    padding: 5px;
    background-color: #798A45;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: 12px;
}
.webinar-text{
    font-family: 'Aristotelica Display Trial DemiBold';
    color: #798A45;
    font-size: 2.5rem !important;
    height: fit-content;
    line-height: 1 !important;
}
.nav-dropdown-brand img:nth-child(2){
    padding: 15px 0 7px !important;
    display: block;
}
.nav-dropdown-brand:before{
    content: "";
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}
.nav-dropdown-brand:hover{
    background-color: #ddd;
}
.nav-dropdown-brand img{
    height: 100%;
    object-fit: contain;
}
.nav-dropdown-contact-side{
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.nav-dropdown-contact-side hr{
    border-color: #6e7575;
    opacity: .35;
}
.nav-dropdown-contact-content{
    display: flex;
    margin-top: 20px;
    gap: 40px;
    align-items: end;
    color: #4D5F5E;
    font-weight: 400;
}
.nav-dropdown-contact-content .black-button{
    min-width: fit-content;
}
.nav-dropdown-contact-side .nav-dropdown-router-side{
    max-width: 100%;
}

/* End Navbar Dropdown */

/* Popup */

.popup-wrapper{
    position: fixed;
    z-index: 150;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.popup-wrapper:after {
    content: "";
    background-color: rgba(77, 95, 94, .3);
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}
.popup{
    background-color: #fff;
    width: 1000px;
    max-width: calc(100vw - 20px);
    min-height: 60vh;
    border-radius: 20px;
    box-shadow: 0 0 50px 0 rgba(10, 40, 50, .1);
    padding: 15px 13px;
}
.popup-top{
    display: flex;
    justify-content: space-between;
    height: fit-content;
}
.popup-top .logo-container{
    background-color: #eee;
    border-radius: 40px;
    height: 100%;
    height: 50px;
    min-width: 250px;
}
.popup-close{
    padding: 0 10px;
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.popup-content{
    padding: 60px 40px 40px;
    display: flex;
    gap: 60px;
}
.popup-slider-side{
    width: 30%;
    min-width: 300px;
}
.popup-slider-side > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.popup-content .text-side{
    width: 70%;
}
.popup-content span{
    display: block;
}
.popup-title{
    font-size: 1.75rem;
    line-height: 1.25 !important;
    margin-bottom: 10px;
    font-weight: 500
}
.popup-content .text-content{
    color: #4D5F5E;
    font-size: 1.2rem;
    padding-top: 20px;
}
body:has(.popup-wrapper) #smooth-wrapper{
    filter: blur(15px);
}
.popup-slider{
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.popup-slider-item{
    overflow: hidden;
    position: relative;
}
.popup-slider-item .bottom-img{
    padding: 40px;
}
.popup-slider-item .country{
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: .8rem;
    background-color: white;
}
.popup-slider-navigator{
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
.popup-slider-navigator button{
    width: 50px !important;
    height: 50px !important;
}

/* End Popup */


/* Filter Popup */

.popup-window-title{
    font-size: 1.2rem;
}
.filter-popup{
    width: unset;
    min-height: fit-content;
    padding: 20px;
}
.filter-popup .logo-container{
    background: transparent;
    justify-content: start;
    padding: 0;
}
.filter-popup .popup-content{
    flex-direction: column;
    gap: 20px;
    padding: 40px 0 10px;
}
.filter-select{
    border: 1px solid #ddd;
    height: 70px;
    border-radius: 10px;
    width: 350px;
    max-width: 100%;
    font-size: 1.3rem;
    display: flex !important;
    align-items: center;
    padding: 20px;
    margin-top: 10px;
}
.filter-select .selected{
    color: #777;
}
.filter-popup .button-container{
    flex-direction: column;
    gap: 10px;
}
.filter-popup .button-container > *{
    width: 100%;
}


/* End Filter Popup*/

/* Header Router */


.header-router-item .content{
    display: none;
}
.header-router-button{
    position: relative;
    font-size: 25px;
}
.header-router-menu-wrapper{
    position: absolute;
    top: 100%;
    left: -7px;
    margin-top: 17px;
    background-color: white;
    border-radius: 40px;
    width: 400px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    overflow: hidden;
    transition-duration: 250ms;
    transition-property: width, height !important;
    transition-timing-function: ease-in;
    z-index: 2;
}
.header-router-button.active .header-router-close-wrapper{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
}
.header-router-button:not(.active) .header-router-menu-wrapper{
    pointer-events: none !important;
    opacity: 0 !important;
}
.header-router-menu{
    width: 100%;
    padding: 30px;
}
.header-router-top{
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}
.header-router-top .search-button{
    height: 55px;
    width: 55px;
}
.header-router-top .search-button .icon{
    width: 20px;
    height: 20px;
}
.header-router{
    display: flex;
    flex-direction: column;
    align-items: start;
}
.header-router-item{
    width: 100%;
    padding: 15px 0;
    font-size: 1.35rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-router-item :is(.chevron-left, .chevron-right){
    font-size: .8rem;
}
.header-router .black-button{
    width: 100%;
    margin-top: 20px;
    font-size: 1.2rem;
    
}
body:has(.header-router-button.active) #smooth-content{
    filter: blur(15px);
}


.header-router-menu{
    position: absolute;
    transition: 250ms all ease-in-out !important;
}
.header-router-menu:has(.header-router-item.active){
    transform: translateX(-100%);
}
.header-router-item.active > .content{
    display: flex;
    flex-direction: column;
    opacity: 1;
    pointer-events: all;
}

.header-router .content{
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    transform: translateX(100%);
    right: 0px;
    top: 0;
    padding: 30px;
    display: flex;
    justify-content: start;
    align-items: start;
}
.header-router .content-top{
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 10px 0 15px;
}
.header-router .content  hr{
    width: 100%;
}
.header-router .content .title{
    font-size: 1.75rem;
}
.header-router .content > span{
    color: #9f9f9f;
}
.header-router .content > h5{
    margin: 30px 0 15px 0;
}
.header-router .content ul{
    display: flex;
    flex-direction: column;
    text-align: start;
    padding: 10px 0;
    font-size: 1rem;
    list-style: none;
}
.header-router .content ul a{
    padding: 10px;
    display: block;
    font-size: 1.2rem;
    height: fit-content;
}
.header-router .content ul:has(img) a{
    height: 60px;
}
.header-router .content ul li img{
    width: 100%;
    max-width: 150px
}

/* End Header Rotuer */


.slider-navigator :is(.slider-prev, .slider-next){
    background-color: #fff;
    min-width: 50px;
    min-height: 50px;
    border-radius: 100%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-navigator .slider-next{
    margin-right: 10px;
}

#toast-container{
    top: 110px !important;
}
.toast{
    box-shadow: 0 0 50px 0 rgba(10, 40, 50, .2) !important;
    padding: 20px 20px 20px 60px !important;
    border-radius: 40px !important;
    margin: 15px 0 !important;
    font-size: 1.1rem;
    width: fit-content !important;
}

.text-container{
    max-width: 45%;
    font-size: 1.2rem;
    width: 100%;
}
.text-container :is(h1, h2, h3, h4, h5){
    font-weight: 500;
    margin: 0 0 20px 0;
}
.text-container span{
    color: #6e7575;
}
.text-container h3{
    font-size: 2.5rem;
}
.text-container ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 20px 0 0;
}
.text-container ul li{
    display: flex;
    align-items: center;
    color: #4D5F5E;
}
.text-container ul li:before,
.select-menu li a:after{
    content: "";
    background-image: url("../img/icon/tick-lG2Q_b9.svg");
    min-width: 30px;
    min-height: 30px;
    border: 1px solid #ccc;
    border-radius: 100%;
    background-color: white;
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
}
.text-container ul.dark li:before{
    filter: invert(100%);
}
.big-title{
    font-size: 4.5rem;
    line-height: 1
}
.section-title{
    display: flex;
    align-items: center;
    font-size: 4rem;
    line-height: 1
}
.standart-button{
    display: block;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 15px 40px;
    height: fit-content;
    border-radius: 40px;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
}
.border-button{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    border: 1px solid #ccc;
    text-align: center;
    cursor: pointer;
    transition: 250ms all !important;
}
.border-button:hover{
    border: 1px solid black;
}
.black-button{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 66px;
    border-radius: 40px;
    line-height: 1.2;
    text-align: center;
    background-color: #000;
    color: #fff;
}
.black-button:hover{
    background-color: #37444E;
}
.big-button{
    --size: 66px;
    min-width: var(--size);
    height: var(--size);
}
.flex{
    display: flex;
}
.relative{
    position: relative;
}
.justify-content-start{
    justify-content: start;
}
.justify-content-end{
    justify-content: end;
}
.owl-nav.disabled{
    display: none;
}
.hvr{
    cursor: pointer;
}
.full-width{
    width: 100% !important;
    max-width: unset !important;
}
.fit-width{
    width: fit-content !important;
}
.input-arrow{
    padding-right: 60px !important;
    position: relative;
}
.input-arrow:before{
    width: 30px;
    position: absolute;
    right: 15px;
}
:is(.arrow-left, .arrow-right, .arrow-up, .arrow-down, .chevron-left, .chevron-right, .chevron-up, .chevron-down){
    display: block;
}
:is(.arrow-left, .arrow-right, .arrow-up, .arrow-down, .chevron-left, .chevron-right, .chevron-up, .chevron-down):before{
    display: block;
    content: "";
    background-size: cover;
    width: 100%;
    height: 100%;
    filter: invert(100%);
    width: 1em;
    height: 1em;
    transition: 100ms all !important;
}
:is(.arrow-left, .arrow-right, .arrow-up, .arrow-down):before{
    background-image: url("../img/icon/arrow-left-tSgkkhY.svg");
}
:is(.chevron-left, .chevron-right, .chevron-up, .chevron-down):before{
    background-image: url("../img/icon/chevron-right-RRt0QEk.svg");
}
.arrow-dark:before, .chevron-dark:before{
    filter: none !important;
}
.arrow-up:before{
    transform: rotate(90deg);
}
.arrow-right:before{
    transform: rotate(180deg);
}
.arrow-down:before{
    transform: rotate(270deg);
}
.chevron-up:before{
    transform: rotate(270deg);
}
.chevron-left:before{
    transform: rotate(180deg);
}
.chevron-down:before{
    transform: rotate(90deg);
}
.arrow-anim{
    position: relative;
    transition: 125ms all !important;
}
.arrow-anim:before{
    content: "";
    background-image: url("../img/icon/arrow-left-tSgkkhY.svg");
    background-size: cover;
    background-position: center;
    height: 25px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    position: absolute;
    opacity: 0;
}
.arrow-anim:not(.arrow-dark):before{
    filter: invert(100%);
}
.arrow-anim:before{
    width: 0;
    transition: 125ms all ease-out !important;
}
.arrow-anim:is(:hover, :focus, :active):before{
    width: 30px;
    opacity: 1;
}
.arrow-anim:is(:hover, :focus, :active){
    padding-left: 50px;
    padding-right: 30px;
}
.tag-container{
    display: flex;
    gap: 10px;
}
.tag-container .tag{
    width: fit-content;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 0 50px 0 rgba(10, 40, 50, .1);
    color: #000;
    padding: 7px 20px;
    border-radius: 40px;
    column-gap: 10px;
    font-size: .8rem;
    height: fit-content;
}
.owl-stage{
    display: flex;
}
.owl-stage:not(.home-slider-text-carousel .owl-stage){
    cursor: grab;
}
.owl-stage:not(.home-slider-text-carousel .owl-stage):active{
    cursor: grabbing;
}
.icon{
    width: 1em;
    height: 1em;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}
.icon:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.icon.colored:before{
    filter: brightness(0) saturate(100%) invert(35%) sepia(5%) saturate(1375%) hue-rotate(128deg) brightness(92%) contrast(84%);
}
.icon.invert{
    filter: invert(100%);
}
.facebook-icon:before{background-image: url("../img/icon/facebook-circle-m9btREv.svg");}
.instagram-icon:before{background-image: url("../img/icon/instagram-A-c9VB9.svg");}
.linkedin-icon:before{background-image: url("../img/icon/linkedin-lAvAww7.svg");}
.document-icon:before{background-image: url("../img/icon/sd-card-M5v7RiD.svg");}
.link-icon:before{background-image: url("../img/icon/link-gN_Ny95.svg");}
.share-icon:before{background-image: url("../img/icon/share-Yq94v2s.svg");}
.cross-icon:before{background-image: url("../img/icon/cross-XT6j6y3.svg");}
.filter-icon:before{background-image: url("../img/icon/filter-kVHdcSy.svg");}
.search-icon:before{background-image: url("../img/icon/search-Jiwy6ld.svg");}
.entegre-icon:before{background-image: url("../img/icon/entegre-slider-icon-rwRjo7z.svg")}
.cari-icon:before{background-image: url("../img/icon/cari-icon-p9VgWDq.svg")}
.webinar-icon:before{background-image: url("../img/icon/webinar-icon-GlIheh4.png");filter: brightness(0) saturate(100%) invert(58%) sepia(14%) saturate(1225%) hue-rotate(34deg) brightness(85%) contrast(91%);}
.iste-icon:before{background-image: url("../img/icon/iste-icon-IMNql6r.svg")}
.mail-icon:before{background-image: url("../img/icon/mail-icon-StjPavW.svg")}