@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    background-color: white;
}

@media (max-width: 600px) {
    body {
        font-size: 15px;
    }
}

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

a {
    text-decoration: none
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

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

.page {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding-right: 40px;    
    padding-left: 40px;
    margin-right: auto;
    margin-left: auto;
    z-index: 1;
}

/******* Intro ******/
.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: black;
    min-height: 100vh;
    width: 100%;
    position: relative;

    background-image: url("/images/bg.webp");
    background-size: cover;
    background-position: center;
}

.intro-img{
    position: absolute;
    width: 900px;
    height: auto;
    left: 57%;
    margin-top: 24px;
}

.intro-box{
    width: 520px;
    height: 100%;
}

.intro-box h1 {
    font-size: 60px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}
.intro-box h2 {
    font-size: 40px;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
}
.intro-box p {
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
}

.try-cta {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;

    padding: 18px 60px;
    margin-top: 50px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid white;
    width: 100%;
    color: white;
    font-size: 18px;

    box-shadow: 5px 10px 35px rgba(0,0,0,0.1);
    transition: .5s all;
    align-items: center;
}

.try-cta:hover {
    background: #1d1d1d;
    color: white;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.3);
    transform: translateY(3px);
}

.try-img{
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.try-dot{
    width: 35px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bl-dot{
    background-color: black;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.try-text {
    cursor: pointer;
    /* font-weight: 800; */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    /* line-height: 1; */

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*header*/
.header{
    position: absolute;
    top: 0;
    width: 100%;
}

.header-box{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
}

.header-box-logo{
    width: 180px;
}

.header-box-cta{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sign-cta {
    text-decoration: none !important;
    display: block;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: white;
    text-decoration: none;
    line-height: 1;
    margin: 0;

    width: fit-content;
    padding: 18px 30px;
    cursor: pointer;
    border-radius: 50px;
    border: 2px solid white;

    box-shadow: 5px 10px 35px rgba(0,0,0,0.1);
    transition: .5s all;
}

.sign-cta:hover {
    background: #1d1d1d;
    color: white;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.3);
    transform: translateY(3px);
}

/*scroll animation box*/
.box{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -50%);

    border: 2px solid white;
    width: 50px;
    height: 50px;
    border-radius: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box span{
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin: 0 auto;
    animation: animate 2s infinite;
}

.box span:nth-child(2)
{
    animation-delay: -0.2s;
}

.box span:nth-child(3)
{
    animation-delay: -0.4s;
}

@keyframes animate{

    0%{
        opacity: 0;
        transform: rotate(45deg) translate(-1px, -1px);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: rotate(45deg) translate(1px, 1px);
    }
}


/*feat*/
.section{
    position: relative;
}

.bg-silver{
    background-color: #f8f8f8;
}

.bg-white{
    background-color: #ffffff;
}

.feat-box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feat-box-text{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 55%;
    padding: 100px 0;
}

.content-box{
    z-index: 1;
}

.content-box ul {
    line-height: 1.5;
} 

.feat-box-img{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    padding: 100px 0;
    z-index: 1;
}

.feat-box-img img{
    z-index: 1;
}

.bg-silver .feat-box-img:after{
    content: '';
    position: absolute;
    width: 200px;
    height: 100%;
    background-color: #3ebe90;
    z-index: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.feat-box-text h2 {
    font-size: 40px;
    font-weight: 400;
    color: black;
    margin-bottom: 20px;
    line-height: 1.5;
}
.feat-box-text p {
    font-size: 20px;
    font-weight: 400;
    color: black;
    margin-bottom: 10px;
    line-height: 1.5;
}

.service-cta-box{
    display: flex;
    flex-direction: row;
    justify-content: left;

}
.service-cta {
    /* width: 45%; */
    padding: 18px 25px;
    border: none;
    background-color: white;
    color: black;
    font-size: 16px;
    margin-top: 30px;
}
.service-cta:first-child {
    margin-right: 20px;
}
.service-cta:hover{
    background-color: white;
    color: black;
}

.footer{
    padding: 100px 0 50px 0;
    background-color: #1d1d1d;
}
.footer-box{
    text-align: center;
}

.footer-box img{
    width: 50px;
    height: auto;
}

.footer-box h3{
    font-size: 18px;
    color: white;
    font-weight: 100;
    margin-top: 20px;
}

@media (max-width: 1400px){
    .intro-box {
        width: 500px;
    }
    .intro-img {
        width: 750px;
        left: 60%;
    }
    .intro-box h1 {
        font-size: 50px;
    }
    .intro-box h2 {
        font-size: 30px;
    }
    .intro-box p {
        font-size: 20px;
    }
    .feat-box-text h2 {
        font-size: 35px;
    }
}

@media (max-width: 1200px){
    .header-box-logo {
        width: 150px;
    }
    .sign-cta {
        font-size: 15px;
        padding: 15px 25px;
    }
    .intro-box {
        width: 450px;
    }
    .intro-box h1 {
        font-size: 40px;
    }
    .intro-box h2 {
        font-size: 25px;
    }
    .intro-box p {
        font-size: 18px;
    }

    .feat-box-text h2 {
        font-size: 30px;
    }
    .feat-box-text p {
        font-size: 18px;
    }

    .service-cta {
        /* width: 40%; */
        padding: 15px 25px;
        font-size: 15px;
        margin-top: 20px;
    }

    .footer-box h3 {
        font-size: 16px;
    }
}

@media (max-width: 950px) {
    .content-box{
        width: 80%;
        margin: auto;
    }

    .try-cta
    {
        width:unset;
    }
    .intro {
        padding: 130px 0 100px 0;
        justify-content: space-around;
        min-height: 50vh;
        text-align: center;
    }
    .intro-box {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    .intro-img {
        position: relative;
        width: 100%;
        left: 0;
        right: 0;
        margin: 50px auto 0 auto;
        max-width: 500px;
    }
    .box {
        bottom: 0;
    }

    .feat-box-text {
        width: 100%;
        padding: 70px 0;
        text-align: center;
    }
    .feat-box-img {
        width: 100%;
        padding: 30px 150px;
        z-index: 1;
    }
    .service-cta-box {
        justify-content: center;
    }

    .feat-box-text:after, .feat-box-img:after{
        content: '';
        position: absolute;
        width: 80% !important;
        height: 100%;
        background-color: #3ebe90;
        z-index: 0;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    .revers{
        flex-direction: column-reverse;
    }

    .content-box ul{
        list-style-position: inside;
        padding-left: 0;
    }
}

@media (max-width: 700px) {

    .intro {
        min-height: 100vh;
        justify-content: center;
    }

    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
    .header-box-logo {
        width: 120px;
    }
    .sign-cta {
        font-size: 13px;
        padding: 13px 20px;
    }
    .intro-box h1 {
        font-size: 35px;
    }
    .intro-box h2 {
        font-size: 20px;
    }
    .intro-box p {
        font-size: 15px;
    }


    .try-cta {
        padding: 15px 40px;
        margin-top: 20px;
        font-size: 13px;
        width: fit-content;
    }
    .intro-img {
        margin: 40px auto 0 auto;
        max-width: 300px;
    }

    .feat-box-text {
        padding: 50px 0;
    }
    .feat-box-text h2 {
        font-size: 25px;
    }
    .feat-box-text p {
        font-size: 15px;
    }
    .feat-box-img {
        padding: 0 20px;
        z-index: 1;
    }

    .service-cta:first-child {
        margin-right: 10px;
    }
    .try-cta {
        padding: 14px 20px;
        margin-top: 10px;
        font-size: 11px;
    }

    .try-dot {
        width: 27px;
        height: 25px;
    }
    .try-img {
        width: 20px;
        height: 20px;
        margin-right: 7px;
    }
    .bl-dot {
        width: 20px;
        height: 20px;
    }
}


/*animation*/
.fadein{
    opacity: 0;
}

.appear {
    opacity: 0;
    transform: translateY(50px);
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(300px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}










