/*  ==========  INFO  ==========  */
    /* laptop: 1200px */
    /* tablet: 960px */
    /* large-mobile: 640px */
    /* mobile: 480px */
    /* mini-mobile: 320px */
/*  ==========  END INFO  ==========  */






/*  ==========  GENERAL SECTION  ==========  */
/* body{
    background-color: var(--color-background);
} */
/*  ==========  END GENERAL SECTION  ==========  */





/*  ==========  SLIDER-LAYOUT SECTION  ==========  */
#slider-layout{
    padding-top: 20px;
    padding-bottom: 20px;
}
#slider-layout .slider-layout-inner{
    display: flex;
    gap: 20px;
}
#slider-layout .slider-main{
    max-width: 1000px;
    max-height: 500px;
    aspect-ratio: 2/1;
    border-radius: 20px;
    overflow: hidden;
}
#slider-layout .slider-main img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#slider-layout .graphics-group{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    width: 380px;
    border-radius: 20px;
    padding: 32px;
    box-sizing: border-box;
    background-image: 
        url(/assets/index-slide-component-crane.png),
        linear-gradient(to left top, #832de0 -22%, var(--color-accent) 100%);
    background-position: 0px 125px, 0 0;
    background-repeat: no-repeat, no-repeat;
    background-size: 100%, cover;
}
#slider-layout .graphics-group .title-wrap{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#slider-layout .graphics-group .title{
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, .4);
}
#slider-layout .graphics-group .sub-title{
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
}
#slider-layout .graphics-group .button-action{
    width: 100%;
    background-color: #fff;
}
#slider-layout .graphics-group .button-action:hover{
    color: var(--color-accent);
}
@media screen and (max-width: 960px) {
    #slider-layout .slider-layout-inner{
        flex-direction: column;
    }
    #slider-layout .graphics-group{
        width: 100%;
        background-position: 0px 10vw, 0 0;
    }
    #slider-layout .graphics-group .title-wrap,
    #slider-layout .graphics-group .button-wrap{
        width: 340px;
    }
}
@media screen and (max-width: 640px) {
    #slider-layout .graphics-group{
        height: 280px;
        align-items: center;
    }
    #slider-layout .graphics-group .title,
    #slider-layout .graphics-group .sub-title{
        text-align: center;
    }
    #slider-layout .graphics-group .title-wrap,
    #slider-layout .graphics-group .button-wrap{
        width: 100%;
        align-items: center;
    }
}
/*  ==========  END SLIDER-LAYOUT SECTION  ==========  */





/*  ==========  SOLUTION SECTION  ==========  */
#solution .solution-inner{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    gap: 12px;
}
#solution .item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 22px;
    padding-bottom: 32px;
    box-sizing: border-box;
    border-radius: 24px;
    background-color: #fff;
    border: 1px solid var(--color-border);
    transition: .3s all;
}
#solution .item:hover{
    transform: translateY(-4px);
}
#solution .item .icon svg{
    width: 42px;
    height: 42px;
    color: var(--color-accent);
}
#solution .item .title{
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text-title);
}
#solution .item .text{
    width: 100%;
    font-size: 16px;
    color: var(--color-text-secondary);
}
#solution .item .button-wrap{
    display: flex;
    align-items: flex-end;
    height: 100%;
}
@media screen and (max-width: 960px){
    #solution .solution-inner{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 480px){
    #solution .solution-inner{
        display: flex;
        flex-direction: column;
    }
}
/*  ==========  END SOLUTION SECTION  ==========  */





/*  ==========  GET-STARTED SECTION  ==========  */
#about .about-inner{
    display: flex;
    gap: 40px;
}
#about .heading-group{
    display: flex;
    flex: 1;
}
#about .badge-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
#about .badge-wrap .item{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 16px;
    box-sizing: border-box;
    border-radius: 100px;
    border: 1px solid var(--color-border);
}
#about .badge-wrap .item .text{
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-secondary);
}
#about .image-cover img{
    max-width: 420px;
    border-radius: 24px;
    object-fit: cover;
}
#about .button-wrap{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
}
#about .instagram-button{
	background: linear-gradient(to right top, #fd2e1a, #be0b75);
	color: #fff;
}
#about .telegram-button{
    background-color: #1c80c4;
	color: #fff;
}
#about .tiktok-button{
    background-color: #000;
	color: #fff;
}
#about .youtube-button{
    background-color: #ff0033;
	color: #fff;
}
@media screen and (max-width: 960px){
    #about .about-inner{
        flex-direction: column;
    }
}
@media screen and (max-width: 640px){
    #about .image-cover{
        align-items: center;
        padding: 0 10px;
        box-sizing: border-box;
    }
    #about .image-cover img{
        width: 100%;
        max-width: 100%;
        max-height: 300px;
    }
    #about .badge-wrap{
        justify-content: center;
    }
    #about .badge-wrap .item{
        padding: 5px 8px;
    }
    #about .heading-group .description{
        padding: 0 10px;
        box-sizing: border-box;
        text-align: justify;
    }
    #about .button-wrap{
        justify-content: center;
    }
}
/*  ==========  END GET-STARTED SECTION  ==========  */





/*  ==========  VIDEOS SECTION  ==========  */
#videos .videos-inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
#videos .videos-inner .item{
    border-radius: 24px;
    overflow: hidden;
}
@media screen and (max-width: 960px) {
    #videos .videos-inner .item{
        aspect-ratio: 9 / 16;
    }
    #videos .videos-inner .item .plyr{
        height: 100%;
    }
}
@media screen and (max-width: 640px) {
    #videos .videos-inner{
        overflow-x: auto;
        display: flex;
        scroll-behavior: smooth;
        scrollbar-width: thin;
        scrollbar-color: #ddd transparent;
    }
    #videos .videos-inner .item{
        width: 220px;
        flex: 0 0 auto;
    }
}
/*  ==========  END VIDEOS SECTION  ==========  */





/*  ==========  CATALOG SECTION  ==========  */
#catalog{
    background-color: rgb(24, 26, 52);
}
#catalog .heading-group{
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
}
#catalog .slider-controls{
    display: flex;
    align-items: center;
    gap: 16px;
}
#catalog .slider-controls .control{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 50px;
    border-radius: 12px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    transition: .3s all;
}
#catalog .slider-controls .control:hover{
    color: var(--color-accent);
    background-color: #fff;
    cursor: pointer;
}
#catalog .heading-group .sub-title{
    color: #fff;
}
#catalog .catalog-inner{
    width: 100%;
    overflow: hidden;
}
#catalog .catalog-inner .lane{
    overflow-x: auto;
    display: flex;
    gap: 16px;
    scroll-behavior: smooth;
    padding: 12px 0;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}
#catalog .one-click-whatsapp{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px;
    box-sizing: border-box;
    margin-top: 32px;
}
#catalog .one-click-whatsapp .title{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
#catalog .one-click-whatsapp .description{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    box-sizing: border-box;
    border-radius: 100px;
    background-color: rgb(var(--color-primary-rgb), .3);
    font-family: var(--font-secondary);
    color: #fff;
}
#catalog .one-click-whatsapp .button-group{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
#catalog .one-click-whatsapp .button-first{
    color: #fff;
    background-color: var(--color-light-green);
    border-radius: 100px;
}
.online-status{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.online-status::before{
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-light-green);
    transform: scale(1);
    animation: pulse-green 2s infinite;
    box-shadow: 0 0 0 0 rgb(48, 189, 75, 1);
}
@keyframes pulse-green {
	0% {
		transform: scale(0.98);
		box-shadow: 0 0 0 0 rgba(48, 189, 75, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(48, 189, 75, 0);
	}
	100% {
		transform: scale(0.98);
		box-shadow: 0 0 0 0 rgba(48, 189, 75, 0);
	}
}
@media screen and (max-width: 960px){
    #catalog .one-click-whatsapp{
        border-radius: 12px;
    }
}
@media screen and (max-width: 640px){
    #catalog .heading-group{
        flex-direction: column;
        align-items: center;
    }
    #catalog .one-click-whatsapp .button-group{
        width: 240px;
        flex-direction: column;
        align-items: center;
    }
}
/*  ==========  END CATALOG SECTION  ==========  */





/*  ==========  ADVANTAGES SECTION  ==========  */
#advantages{
    background-color: #fff;
}
#advantages .advantages-inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
#advantages .item{
    display: flex;
    gap: 20px;
}
#advantages .item .icon.i1{background-image: url('/assets/advantages-item-icon1.png');}
#advantages .item .icon.i2{background-image: url('/assets/advantages-item-icon2.png');}
#advantages .item .icon.i3{background-image: url('/assets/advantages-item-icon3.png');}
#advantages .item .icon.i4{background-image: url('/assets/advantages-item-icon4.png');}
#advantages .item .icon.i5{background-image: url('/assets/advantages-item-icon5.png');}
#advantages .item .icon.i6{background-image: url('/assets/advantages-item-icon6.png');}
#advantages .item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    background-size: 30px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
#advantages .item .text-group{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#advantages .item .title{
    font-size: 20px;
    font-weight: 600;
}
#advantages .item .description{
    font-size: 16px;
    font-family: var(--font-secondary);
    color: var(--color-text-secondary);
}
#advantages .one-click-whatsapp{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid var(--color-border);
    border-radius: 100px;
}
#advantages .one-click-whatsapp .title{
    font-size: 20px;
    font-weight: 600;
}
#advantages .one-click-whatsapp .description{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    box-sizing: border-box;
    border-radius: 100px;
    background-color: rgb(var(--color-primary-rgb), .3);
    font-family: var(--font-secondary);
}
#advantages .one-click-whatsapp .button-group{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
#advantages .one-click-whatsapp .button-first{
    background-color: var(--color-light-green);
    border-radius: 100px;
}
@media screen and (max-width: 960px){
    #advantages .advantages-inner{
        grid-template-columns: repeat(2, 1fr);
    }
    #advantages .one-click-whatsapp{
        border-radius: 12px;
    }
}
@media screen and (max-width: 640px){
    #advantages .item{
        flex-direction: column;
    }
    #advantages .item .title{
        font-size: 18px;
    }
    #advantages .item .description{
        font-size: 14px;
    }
    #advantages .one-click-whatsapp .button-group{
        width: 240px;
        flex-direction: column;
        align-items: center;
    }
}
@media screen and (max-width: 480px){
    #advantages .advantages-inner{
        padding: 32px 5%;
        box-sizing: border-box;
        grid-template-columns: repeat(1, 1fr);
        gap: 22px;
    }
    #advantages .item{flex-direction: row;}
    #advantages .item .icon{
        width: 36px;
        height: 36px;
        background-size: 24px !important;
    }
    #advantages .item .title{
        font-size: 16px;
    }
}
/*  ==========  END ADVANTAGES SECTION  ==========  */





/*  ==========  OUR MISSON SECTION  ==========  */
#our-mission .our-mission-inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
#our-mission .item{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    box-sizing: border-box;
    border-left: 1px solid var(--color-border);
}
#our-mission .item .title{
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-secondary);
}
#our-mission .item .description{
    font-size: 18px;
    line-height: 1.7;
}
#our-mission .item .badge-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
#our-mission .item .badge-wrap .icon{
    padding: 16px;
    box-sizing: border-box;
    background-color: var(--color-background);
    border-radius: 12px;
}
@media screen and (max-width: 960px){
    #our-mission .our-mission-inner{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    #our-mission .item:nth-child(3){
        border-left: none;
        border-top: 1px solid var(--color-border);
        grid-column: 1/3;
    }
}
@media screen and (max-width: 640px){
    #our-mission .our-mission-inner{
        display: flex;
        flex-direction: column;
    }
    #our-mission .item{
        padding: 22px;
    }
    #our-mission .item:nth-child(3){
        border-top: none;
        border-left: 1px solid var(--color-border);
        grid-column: unset;
    }
    #our-mission .item .title{
        font-size: 18px;
    }
    #our-mission .item .description{
        font-size: 14px;
    }
}
/*  ==========  END OUR MISSON SECTION  ==========  */





/*  ==========  BRANDS SECTION  ==========  */
#brands .brands-inner{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
#brands .brands-inner .item{
    filter: saturate(0);
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 12px;
    box-sizing: border-box;
}
@media screen and (max-width: 960px){
    #brands .brands-inner{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 480px){
    #brands .brands-inner{
        grid-template-columns: repeat(2, 1fr);
    }
}
/*  ==========  END BRANDS SECTION  ==========  */





/*  ==========  GEOGRAPHY SECTION  ==========  */
#geography .geography-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
#geography .image-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 300px;
}
@media screen and (max-width: 640px){
    #geography .geography-inner{
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }
}
/*  ==========  END GEOGRAPHY SECTION  ==========  */






/*  ==========  FAQ STYLES  ==========  */
#faq{
    background-color: var(--color-background);
}
#faq .faq-inner{
    display: flex;
    gap: 40px;
    user-select: none;
}
#faq .faq-body{
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}
#faq .faq-body .item{
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
    transition: .4s all;
}
#faq .faq-body .item .top{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
}
#faq .faq-body .item .top .icon{
    display: flex;
    align-items: center;
    transition: .4s all;
}
#faq .faq-body .item .content{
    overflow: hidden;
    height: 0;
    transition: .4s all;
}
#faq .faq-body .item .content ul{
    padding-left: 24px;
    margin: 12px 0;
}
#faq .faq-body .item.opened .content{
    padding-top: 24px;
    height: auto;
}
#faq .faq-body .item.opened .top .icon{
    transform: rotate(180deg);
}
@media screen and (max-width: 960px){
    #faq .faq-inner{
        flex-direction: column;
        gap: 0;
    }
}
/*  ==========  END FAQ STYLES  ==========  */





/*  ==========  INTRO SECTION  ==========  */
#final-contact{
    background-color: #fff;
}
#final-contact .final-contact-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
#final-contact-form{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    box-sizing: border-box;
    border-radius: 24px;
    background-color: var(--color-background);
}
#final-contact-form .button-wrap .button{
    float: right;
    width: 240px;
    height: 50px;
}
@media screen and (max-width: 960px){
    #final-contact .final-contact-inner{
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    #final-contact-form{
        width: 100%;
    }
}
@media screen and (max-width: 640px){
    #final-contact-form .button-wrap .button{
        width: 100%;
    }
}
/*  ==========  END INTRO SECTION  ==========  */





/*  ==========  ITEMS SECTION  ==========  */

/*  ==========  END ITEMS SECTION  ==========  */