#main section{
    min-height: 870px;
    padding: 150px 0;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#main section .desc{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    align-items: center;
    justify-content: center;
}
#main section .desc h2{
    font-weight: 600;
    line-height: 1.4;
    font-size: 2.5em;
    font-weight: 700;
}
#main section .desc h2.text-primary{
    color: #5a6e91;
}
#main section .desc p{
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}
#main section .list{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2em;
    text-align: center;
}
#main section .list > div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}
#main section .list > div img{
    height: 100px;
}
#main section .list > div b{
    font-size: 1.2rem;
    line-height: 1;
    color: #000;
}
#main section .list > div p{
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

@media screen and (max-width: 600px) {
    #main section{
        padding: 80px 0;
        min-height: 0;
    }
    #main section .desc h2{
        /* font-size: 6vw; */
    }
}
#main #headsection{
    background-image: url('/img/home/main-img-1.jpg');
    background-size: 120% auto;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 0;
    height: 100vh;
    max-height: 900px;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: 4000ms cubic-bezier(0.25, 1, 0.5, 1);
}
#main #headsection .bgpn{
    position: absolute;
    width: 100vw;
    height: 300vw;
    background-color: #161d3f;
    top: 0;
    left: 0;
    z-index: 0;
    transform: rotate(40deg) translateX(-132vw) translateY(-20vh);
    backdrop-filter: blur(3px);
    transition: 4000ms cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}
#main #headsection ._div{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    line-height: 1.5;
    color: #FFF;
}
#main #headsection ._div .title{
    font-size: 48px;
    font-weight: bold;
    line-height: 1.4;
}
#main #headsection ._div .title img{
    height: 1.2em;
}
#main #headsection ._div .desc{
    color: #f1f1f1;
    font-weight: 400;
}
#main #headsection ._div > *{
    opacity: 0;
    transform: translateY(30px);
    transition: 1400ms cubic-bezier(0.25, 1, 0.5, 1);
}
#main #headsection ._div > *:nth-child(1){transition-delay: 200ms;}
#main #headsection ._div > *:nth-child(2){transition-delay: 300ms;}
#main #headsection ._div > *:nth-child(3){transition-delay: 500ms;}
#main #headsection.active ._div > *{
    opacity: 1;
    transform: translateY(0);
}
#main #headsection.active .bgpn{
    transform: rotate(36deg) translateX(-125vw) translateY(-20vh);
    opacity: 0.9;
}
#main #headsection.active{
    background-size: 100% auto;
}

@media screen and (max-width: 600px) {
    #main #headsection{
        background-size: auto 100% !important;
        background-position: 70%;
    }
    #main #headsection.active{
        background-size: auto 100% !important;
        background-position: 60%;
    }
    #main #headsection .title{
        font-size: 8.3vw !important;
    }
    #headsection > div > div._div > div > a.btn:nth-child(1){
        max-width: 140px;
        padding: 0;

    }
    #main #headsection .bgpn{

    }
    #main #headsection.active .bgpn{
        transform: rotate(40deg) translateX(-36vw) translateY(-20vh);
    }
}




#main .btn{
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3em;
    padding: 0 3em;
    color: #FFF;
    background-color: #3a79f9;
    border-radius: 3em;
    line-height: 1;
    font-weight: 500;
    position: relative;
}
#main .btn:hover{
    background-color: #265ecd;
}
#main .btn.outline{
    color: #265ecd;
    background-color: transparent;
    border: 2px solid #3a79f9;
}
#main .btn.bg-tranparent{
    background-color: transparent !important;
}
#main .btn.arr:after{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-image: url('/img/home/arr-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    right: 1.5em;
    margin-top: -5px;
    transition: 300ms cubic-bezier(0.25, 1, 0.5, 1);
}
#main .btn.arr:hover:after{
    right: 1.2em;
}

@media screen and (max-width: 600px) {
    #main .btn{
        font-size: 1.2em;
    }
}


#main section#service .desc{
    width: 50%;
    text-align: left;
    padding: 150px 55px;
    align-items: flex-start; 
    background: rgba(255,255,255,0.8);
}
#main section#service .desc h2{
    font-weight: 400;
    font-size: 2.2em;
}
#main section#service .desc h2 .text-primary{
    color: #3a79f9 !important;
}
#main section#service .list > div{
    color: #FFF;
    align-items: flex-start;
    text-align: left;
    padding: 80px 0;
}
#main section#service .list > div b{
    color: #FFF;
    opacity: 0.6;
    font-size: 2.6em;
    font-weight: 800;
}
#main section#service .list > div p{
    color: #FFF;
}



#main section#press .comp{
    margin-top: 60px;
    
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: stretch;
    position: relative;
}
#main section#press .comp ._div{
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: stretch;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
#main section#press .comp ._div ._bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: 700ms cubic-bezier(0.25, 1, 0.5, 1);
}
#main section#press .comp ._div:hover ._bg{
    transform: scale(1.1);
}
#main section#press .comp ._div .inner{
    background-color: rgb(10 14 31 / 58%);
    color: #FFF;
    backdrop-filter: blur(1px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: absolute;
    z-index: 1;
    bottom:0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 30px;
    transition: 300ms cubic-bezier(0.25, 1, 0.5, 1);
}
#main section#press .comp > div{
    flex: 1;
}
#main section#press .comp > div:nth-child(1){
    height: 800px;
    order: 2;
}
#main section#press .comp > div:nth-child(1):hover .inner{
    height: 50%;
}
#main section#press .comp > div:nth-child(2){
    display: flex;
    flex-direction: column;
    gap: 30px;
}
#main section#press .comp > div:nth-child(2) .inner{
    height: auto;
}


#main section#devices .comp{
    display: flex;
    margin-top: 60px;
    font-size: 1.2em;
}
#main section#devices .comp > div{
    flex: 1;
    text-align: center;
    /* border: 1px solid rgba(0,0,0,0.2); */
    background-color: #FFF;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}
#main section#devices .comp > div > div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#main section#devices .comp > div ._t{
    background-color: #1b3874;
    height: 3em;
    color: #FFF;
}
#main section#devices .comp > div ._st{
    background-color: #f3f3f3;
    height: 5em;
    color: #000;
    font-size: 1.8em;
}
#main section#devices .comp > div ._st small{
    font-size: 0.7em;
    font-weight: 300;
}
#main section#devices .comp > div ul{}
#main section#devices .comp > div ul li{
    border-bottom: 1px solid #eee;
    font-size: 0.8em;
    height: 3em;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}
#main section#devices .comp > div ._btn{
    padding: 2em 0;
}

#main section#devices .comp > div:nth-child(1){
    transform: scale(0.9);
    transform-origin: center right;
}
#main section#devices .comp > div:nth-child(3){
    transform: scale(0.9);
    transform-origin: center left;
}
#main section#devices .comp > div:nth-child(2){
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
    z-index: 2;
}
#main section#devices .comp > div:nth-child(2) ._t{
    background-color: #3a79f9;
    font-weight: 600;
}
#main section#devices .comp > div:nth-child(2) ._st{
    background-image: url('/img/home/main-bg_3.png'); background-size: cover; background-repeat: no-repeat; background-position: center; align-items: stretch;
    color: #FFF;

}



#main section#introduce{
    padding: 100px 0;
    min-height: 0;
}
#main section#introduce .grid1{
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 50px;
    align-items: center;
}
#main section#introduce .bg{
    background-image: url('/img/home/main-img-3.jpg'); background-size: cover; background-repeat: no-repeat; background-position: center; align-items: stretch;
    height: 100%;
    display: block;
}
#main section#introduce .desc{
    align-items: flex-start;
    text-align: left;
    margin-bottom: 40px;
    padding: 40px 0;
}
#main section#introduce .list{
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 20px;

    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}
#main section#introduce .list > div{
    display: grid;
    grid-template-columns: 40px 1fr;
    justify-content: flex-start;
    text-align: left;
    gap: 30px;
}
#main section#introduce .list > div img{
    height: auto;
}



@media screen and (max-width: 600px) {
    #main section#feature .list{
        display: block;
        margin-bottom: -60px;
    }
    #main section#feature .list > div{
        width: 45%;
        display: inline-flex;
        padding: 0 0 60px;
    }
    
    #main section#press .comp{
        margin-top: 40px;
        gap: 15px;
        flex-direction: column;
    }
    #main section#press .comp > div{
        min-height: 400px !important;
        gap: 15px !important;
        order: 0 !important;
        width: 100%;
    }
    #main section#press .comp ._div .inner{
        padding: 15px !important;
    }
    #main section#press .comp .inner{
        height: auto !important;
    }

    #main section#devices .comp{
        margin: 0px -20px -20px;
        padding: 40px;
        overflow-y: auto;
        white-space: nowrap;
    }
    #main section#devices .comp{
        gap: 20px;
    }
    #main section#devices .comp > div{
        min-width: 280px;
        order: 1;
    }
    #main section#devices .comp > div:nth-child(2){
        order: 0;
    }
    #main section#devices .comp > div:nth-child(1), #main section#devices .comp > div:nth-child(3){
        transform: scale(1);
    }

    #main section#introduce{
        padding: 0;
        margin: 0 -20px;
    }
    #main section#introduce .grid1{
        display: flex;
        flex-direction: column;
    }
    #main section#introduce h2{
        font-size: 6vw !important;
    }
    #main section#introduce .desc{
        padding: 0 20px;
    }
    #main section#introduce .bg{
        width: 100%;
        height: 300px;
        background-size: 180% auto !important;
    }
    #main section#introduce .list > div{
        grid-template-columns: 30px 1fr;
        gap: 10px;
        font-size: 0.9em;
    }
    #main section#introduce .list > div img{
        height: 30px;
    }


    #main section#service .desc h2{
        font-size: 6vw;
    }
    #main section#service .desc{
        padding: 80px 20px;
        margin: 0 -20px;
        width: calc(100% + 40px);
        text-align: center;
        align-items: center;
    }
    #main section#service .list{
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 50px 0;
        gap: 50px;
    }
    #main section#service .list > div{
        padding: 0;
        text-align: center;
        align-items: center;
    }
}




@media screen and (max-width: 600px) {

}