/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap');

body{
    font-family: 'Bai Jamjuree', sans-serif;
    line-height: 1.7;
    /* background-color: aliceblue; */
}

.section-padding{
    padding-top: 120px;
    padding-bottom: 120px;
}

.divider{
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.bg_div{
    --bs-bg-opacity: 1;
  /* background-color: rgb(217, 227, 241); */
  /* background-color: rgb(200, 215, 230); */
  background-color: rgb(230, 242, 253);
}

a{
    text-decoration: none;
}

.border-hover{
    transition: all 0.4s ease-out;
    border: 2px solid transparent;
}

.border-hover:hover{
    border-color: var(--bs-info);
}

/* Navbar */
.navbar{
    transition: all 0.4s ease-out;
}

.navbar .navbar-nav .nav-link{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.navbar .navbar-nav .nav-link.active{
    color: var(--bs-info);
}

/* Herosection */
.content{
    padding-left: 40px;
}

/* #hero{
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(../images/_VD_1569.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 900px;
} */


/* Services */
.intro-section p{
    max-width: 575px;
}

.service .icon{
    display: grid;
    align-items: center;
    text-align: center;
    width: 80px;
    height: 80px;
    color: var(--bs-info);
    font-size: 34px;
    box-shadow: inset 2px 2px 8px rgba(55, 94, 148, 0.3), inset -3px -2px 5px rgba(255, 255, 255, 0.8);
}




/* Works */

.pills_btn{
    width: 150px;
    height: 50px;
    font-weight: 600;
}



/* footer */

.btn-icon{
    width: 44px;
    height: 44px;
    display: inline-grid;
    align-content: center;
    padding: 0;
    font-weight: normal;
}



@media(min-width: 992px){
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 16px;
        padding-left: 16px;
    }
}





.wave{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../images/wave.png);
    background-size: 1000px 100px;
}

.wave.wave1{
    animation: animate 30s linear infinite;
    z-index: 1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
}

.wave.wave2{
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;
}

.wave.wave3{
    animation: animate3 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15px;
}

.wave.wave4{
    animation: animate4 5s linear infinite;
    z-index: 997;
    opacity: 0.7;
    animation-delay: -2s;
    bottom: 20px;
}

@keyframes animate{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 1000px;
    }
}


@keyframes animate2{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: -1000px;
    }
}


@keyframes animate3{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 1000px;
    }
}

@keyframes animate4{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 1000px;
    }
}



/* Water Mouse Effect */

/* .full-landing-image
{
  width: 100%;
} */


/* Timeline */

.timeline{
    position: relative;
    max-width: 1200px;
    margin: 100px auto;
}

.timeline_content{
    padding: 10px 50px;
    position: relative;
    width: 50%;
    animation: movedown 1s linear forwards;
    opacity: 0;
}

@keyframes movedown{
    0%{
        opacity: 1;
        transform: translateY(-30px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.timeline_content:nth-child(1){
    animation-delay: 0s;
}

.timeline_content:nth-child(2){
    animation-delay: 1.5s;
}

.timeline_content:nth-child(3){
    animation-delay: 2.5s;
}

.timeline_content:nth-child(4){
    animation-delay: 3.5s;
}

.timeline_content:nth-child(5){
    animation-delay: 4.5s;
}

.timeline_content:nth-child(6){
    animation-delay: 5.5s;
}

.timeline_text_box{
    padding: 20px 30px;
    position: relative;
    font-size: 15px;
}

.left_content{
    left: 0;
}

.right_content{
    left: 50%;
}

.timeline_content i{
    position:absolute;
    background-color: #d9e3f1;
    color: var(--bs-info);
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    right: -25px;
    top: 32px;
    z-index: 10;
    width: 50px;
    height: 50px;
    box-shadow: inset 2px 2px 8px rgba(55, 94, 148, 0.3), inset -3px -2px 5px rgba(255, 255, 255, 0.8);
}

.right_content i{
    left: -25px;
}

.timeline::after{
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background:  var(--bs-info);
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1;
    animation: moveline 6s linear forwards;
    /* box-shadow: inset 2px 2px 8px rgba(55, 94, 148, 0.3), inset -3px -2px 5px rgba(255, 255, 255, 0.8); */
}

@keyframes moveline{
    0%{
        height: 0;
    }
    100%{
        height: 100%;
    }
}

.timeline_text_box h2{
    font-weight: 600;
    margin-bottom: 0px;
}

.timeline_text_box small{
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 15px;
}

/* .left_content_arrow{
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #d9e3f1;
    right: -15px;
    box-shadow: inset 2px 2px 8px rgba(55, 94, 148, 0.3), inset -3px -2px 5px rgba(255, 255, 255, 0.8);
}

.right_content_arrow{
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #d9e3f1;
    left: -15px;
    box-shadow: inset 2px 2px 8px rgba(55, 94, 148, 0.3), inset -3px -2px 5px rgba(255, 255, 255, 0.8);
} */


@media screen and (max-width: 600px){
    .timeline_content{
        margin: 50px 0px 50px 12px;
        width: 100%;
    }

    .timeline::after{
        left: 13px;
    }

    .timeline{
        width: 100%;
        /* padding-left: 80px; */
        /* padding-right: 25px; */
    }

    .timeline_text_box{
        font-size: 13px;
    }

    .timeline_text_box small{
        margin-bottom: 10px;
    }

    .right_content{
        left: 0;
    }
    
    .left_content i, .right_content i{
        left: -25px;
    }
    
    /* .left_content_arrow, .right_content_arrow{
        border-right: 15px solid #fff;
        border-left: 0;
        left: -15px;
    } */
    
}