<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">main{
    width: 1100px;
    max-width: 90vw;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
section{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 150px;
    justify-content: center;

    padding: 90px 0;

    border-bottom: 1px solid rgba(0, 0,0, 0.2);
}
section:last-child{
    border-bottom: none;
}
section div{
    width: calc((100% - 150px)/2);

}
section img{
    width: 200px;
}
.buttons{
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100% ;
    justify-content: center;
}
main button{
    min-width: 180px;
    border-radius: 40px;
    background-color: var(--primary);
    color: white;
    border: none;

    font-weight: 600;
    font-size: 18px;
    padding: 12px 30px;

    transition: 0.3s;

    width: fit-content;
}
.buttons button:nth-child(2){
    color: black;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background-color: white;   
}
button:hover{
    transform: scale(1.03)
}

h1, h2{
    margin: 0 0 50px 0;
    font-weight: 1000;
    font-size: 28px;
}
h1{
    font-size: 37px;
    margin-bottom: 18px;
}
p{
    margin-top: 0;
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: 400;
}
ul li{
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 22px;
}
ul{
    margin-bottom: 40px;
}
section:first-child&gt;div{    
    width: 70%;
    text-align: center;
    margin-bottom: 10px;
}
section:first-child h1{
    text-align: center !important;
}

section:first-child p{
    margin-bottom: 15px;
}
section:last-child div{
    background-color: rgba(217, 217, 217, 0.25);
    padding: 40px;
    border-radius: 20px;
    width: 55%;
}
section:last-child div h2{
    margin-bottom: 35px;
}
section:last-child div p{
    margin-bottom: 25px;
}
section:last-child div ul{
    margin-bottom:5px;
}
section:last-child div ul li{
    margin-bottom: 10px;
}
.images{
    display: flex;
    justify-content: center;
    align-items: center;
}
.images img{
    box-shadow: 0px 0px 9.6px 0px rgba(0, 0, 0, 0.12) !important;
    border-radius: 3%;
    width: 540px !important;
    max-width: 40vw;
}
.images2 img{
    width: 450px !important;
    position: absolute;
}
.images2 img:first-child{
    transform: translateX(-100px) translateY(-145px);
}
.images2 img:last-child{
    transform: translateX(70px) translateY(145px);
}
.dirs2 img:first-child{
    transform: translateX(-100px) translateY(-115px);
}
.dirs2 img:last-child{
    width: 400px !important;
    transform: translateX(110px) translateY(115px);
}
.dirs3 img:first-child{
    transform: translateX(-100px) translateY(-80px);
}
.dirs3 img:last-child{
    width: 400px !important;
    transform: translateX(80px) translateY(113px);
}
.rfqs3 img:first-child{
    width: 540px !important;
    transform: translateX(0) translateY(-75px);
}
.rfqs3 img:last-child{
    width: 240px !important;
    transform: translateX(190px) translateY(75px);

}

.header_landing button{
    min-width: 0 !important;
    transform: scale(1.1);
}

.header_landing .header_pc #loglink{
    background-color: transparent;
    border: none;
    color: black
}
.header_landing .header_phone #loglink{
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    border-radius: 10vw !important;
}

@media (min-width: 700px) {

    section:not(section:last-child, section:first-child){
        min-height: 600px !important;
    }

    section:first-child button{
        min-width: 300px;
    }
    section&gt;div{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 22px !important
    }
    section&gt;div&gt;*{
        margin: 0 !important;
    }
    ul{
        display: flex;
        flex-direction: column;
        gap: 22px
    }
    ul li{
        margin: 0;
    }

    section:last-child&gt;div, section:last-child ul{
        gap:10px
    }
    
}


@media (max-width: 700px) {
    main{
        overflow: visible !important;
    }
    section{
        width: 100vw;
        flex-direction: column;
        padding: 15vw 2vw !important;
        align-items: center;
        gap: 10vw;
        border: none;
        position: relative;
        overflow: visible;
    }
    section::after{
        content: "";
        width: 100vw;
        height: 1px;
        background-color: rgba(0, 0, 0, 0.15);
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 9999;
    }
    section&gt;div{
        width: 90% !important;
        display: flex;
        flex-direction: column;
    }

    .buttons{
        flex-direction: column;
    }
    main button{
        min-width: 10vw;
        border-radius: 7vw;
        font-size: 5vw;
        padding: 3vw 6vw;
        margin: auto;
    }
    .buttons button{
        width: 90%;

    }
   
    h1, h2{
        margin: 2vw 0 8vw 0;
        line-height: 9vw;
        text-align: center;
    }
    h1{
        font-size: 7.4vw !important;
        
    }
    h2{
        font-size: 6vw;
        line-height: 7vw
    }
    p{
        margin-bottom: 5vw;
        font-size: 4.5vw;
        line-height: 6.5vw;
        font-weight: 500;
    }
    ul li{
        font-weight: 500;

        margin-bottom: 4vw;
        font-size: 4.5vw;
        padding-left: 1em;
    }
    ul{
        margin-bottom: 5vw;
        padding-left: 4vw;
    }
    section:first-child{
        margin-top: 0vw;
        padding-bottom: 15vw !important;
    }
    section:first-child&gt;div{
        width: 80%;
    }
    section:last-child{
        padding-top: 5vw !important;
    }
    section:last-child div{
        padding: 5vw;
        border-radius: 20px;
        width: 90vw;
    }
    section:last-child h2{
        text-align: left !important;
        margin-bottom: 4vw !important;
        font-size: 6vw !important;
    }
    section:last-child div button{
        align-self:baseline;
        margin: 0;
        width: fit-content;
    }
    section:last-child div p{
        line-height: 4.8vw;
        margin-bottom: 10vw;
    }
    section:last-child ul li{
        list-style: disc;
        padding-left: 1vw;
    }
    section:last-child ul li::before{
        display: none
    }
    section:nth-last-child(-n+2)::after{
        display: none
    }






    .rfq_landing section{
        flex-direction: column-reverse;
    }
    .dir_landing section{
        flex-direction: column-reverse;
    }
    



















    
    .images2{
        height: 82vw;
        gap: 0 !important
    }
    .images img{
        width: 100% !important;
        max-width: 100vw;

        box-shadow: 0px 0px 2vw 0.5vw rgba(0, 0, 0, 0.07) !important;

    }
    .images2 img:first-child{
        position: relative;
        width: 75vw !important;
        transform: translateX(-10vw) translateY(-22vw);
    }
    .images2 img:last-child{
        width: 75vw !important;
        transform: translateX(10vw) translateY(15vw);
    }

    .dirs2 img:first-child{
        transform: translateX(-10vw) translateY(-22vw);
    }
    .dirs2 img:last-child{
        transform: translateX(10vw) translateY(5vw);
    }
    .dirs2{
        margin-bottom: -15vw;   
    }


    .dirs3 img:first-child{
        width: 85vw !important;
        transform: translateX(-5vw) translateY(-22vw);
    }
    .dirs3 img:last-child{
        width: 70vw !important;
        transform: translateX(13vw) translateY(5vw);
    }
    .dirs3{
        margin-bottom: -15vw;
        margin-top: 7vw;
    }


    .rfqs3 img:first-child{
        transform: translateX(0) translateY(-10vw);
    }
    .rfqs3 img:last-child{
        width: 40vw !important;
        transform: translateX(25vw) translateY(22vw);
    }


}





.footerhome{
    margin-top: 50px;
}</pre></body></html>