/* Version: 1.0.0 */

body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, p, a, button, span, strong{
    font-family: 'poppins',sans-serif;
}

h1{
    font-size: 65px;
    font-weight: 600;
}

h2{
    font-size: 40px;
    font-weight: 600;
}

p{
    font-size: 14px;
}

/* hide stikyButton */
.stikyButton{
    display: none;
}

/* ---------------------------reusable classes --------------------------------*/
.height-100{
    min-height: 100vh;
}

.height-75{
    min-height: 75vh;
}

.height-50{
    min-height: 50vh;
}

.height-25 {
    min-height: 25vh;
}

.margin-t-100{
    margin-top: 100px;
}

.margin-t-75{
    margin-top: 75px;
}


.margin-t-50{
    margin-top: 50px;
}

.padding-y-100{
    padding: 100px 0;
}

.padding-t-100{
    padding-top: 100px;
}

.padding-b-100{
    padding-bottom: 100px;
}

.background-overlay{
    background-color: #00000080;
    color: #ffffff;
}

.align-middle{
    display: flex;
    align-items: center;
}

/* sections */

.sub-sec .side-image-wraper .side-image{
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.sub-sec .side-content .colored-text{
    color: #0569bd;
}

.sub-sec .side-content .source-hyperlink a{
    text-transform: capitalize;
    font-style: italic;
}

.sub-sec .side-content .source-hyperlink a:hover{
    text-decoration: none;
}

.sec-image-left .side-image-wraper{
   padding-right: 50px;
}

.sec-image-right .side-image-wraper{
    padding-left: 50px;
 }

.sec-image-left .side-image-wraper .side-image{
    border-radius: 0 25% 0 25%;
}

.sec-image-right .side-image-wraper .side-image{
    border-radius: 25% 0 25% 0;
}


/* featurebox */
.sub-sec .feature-box {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 4px 4px 12px 0 rgba(0,0,0,0.15);
}

.sub-sec .feature-box p {
    font-size: 14px;
    margin: 0;
}

.sub-sec .feature-box.border-left-primary{
    border-left: 8px solid #0569bd;
}

.sub-sec .feature-box.border-left-secondary{
    border-left: 8px solid #562478;
}


/* info circle */
.info-circles-wraper .info-circle{
    padding: 12px;
    box-shadow: 4px 4px 12px 0 rgba(0,0,0,0.15);
    border-radius: 50%;
}

.info-circles-wraper .info-circle .info-circle-content{
    width: 11rem;
    height: 11rem;
    background-color: #ffffff;
    border-radius: 50%;
    justify-content: center;
    text-align: center;
}

.info-circles-wraper .info-circle .info-circle-content p{
    margin: 0;
}

.info-circles-wraper .info-circle.blue-bordered{
    background: linear-gradient(145deg, rgba(5,105,189,1) 0%, rgb(225, 225, 225) 100%);
}

.info-circles-wraper .info-circle.purple-bordered{    
    background: linear-gradient(145deg, rgb(86, 36, 120) 0%, rgba(214,214,214,1) 100%);
}


/* buttons */
.btn-bordered{
    border: 2px solid #ffffff;
    background-color: transparent;
    border-radius: 25px 25px 25px 10px;
    padding: 12px 40px;
    color: #ffffff;
    text-decoration: none;
    transition: .3s ease-in-out all !important;
}

.btn-filled{
    border: 2px solid #0569bd;
    background-color: #0569bd;
    border-radius: 25px 25px 25px 10px;
    padding: 12px 40px;
    color: #ffffff;
    text-decoration: none;
    transition: .3s ease-in-out all !important;
}

.btn-bordered:hover{
    border-color: #035394;
    background-color: #035394;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

.btn-filled:hover{
    border-color: #035394;
    background-color: #035394;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}


/* modal */
#genContactModal{
    backdrop-filter: blur(10px);
    z-index: 10001;
}

#genContactModal .modal-content{
    background-color: transparent;
    border: none;
}

#genContactModal .modal-dialog{
    z-index: 10002;
}

#genContactModal .modal-body {
    background-color: transparent;
    /* border-radius: 25px; */
    border: none;
}

#genContactModal .modal-body .modal-title {
    font-size: 36px !important;
    color: #ffffff;
}

#genContactModal .btn-close{
    transform: translateX(2.5rem);
}

#genContactModal .modal-header{
    border: none;
}

#genContactModal .modal-body{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    box-shadow: 4px 4px 12px #00000048;
}

#genContactModal .modal-details-wraper{
    width: 50%;
    background-color: rgba(0, 0, 0, 0.545);
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.282) 0px 0px 30px;
    border-radius: 25px;
}

#genContactModal form input[type="submit"]{
    margin-top: 0.5rem;
    font-size: 16px;
    font-family: 'poppins',sans-serif;
    font-weight: 600;
    border: 2px solid #0569bd;
    background-color: #0569bd;
    border-radius: 25px 25px 25px 10px;
    padding: 12px 40px;
    color: #ffffff;
    text-decoration: none;
    transition: .3s ease-in-out all !important;
}

#genContactModal form input[type="submit"]:hover{
    border-color: #035394;
    background-color: #035394;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

#genContactModal form input, textarea{
    background-color: #ffffff20;
    outline: none;
    border: 2px solid #ffffff59;
    color: #ffffff;
    
}

#genContactModal form textarea{
    background-color: #ffffff20 !important;
    outline: none !important;
    border: 2px solid #ffffff59 !important;
    color: #ffffff !important;
    
}

#genContactModal form input:focus, textarea:focus{
    border-color: #0569bd;
}

#genContactModal form input::placeholder, textarea::placeholder{
    color: #d5d5d5 !important;
}

#genContactModal form input{
    font-family: 'poppins',sans-serif;
    padding: 10px 15px;
    border-radius: 50px;
    width: 100%;
}

#genContactModal form textarea{
    font-family: 'poppins',sans-serif;
    padding: 10px 15px;
    border-radius: 20px;
    width: 100%;
    resize: none;
}

/* scroll bar */

body::-webkit-scrollbar {
    width: 10px;
    background-color: #ababab4f;
}

body::-webkit-scrollbar-thumb {
    border-radius: 20px;
    border: none;
    border: 8px solid #0569bd; 
    background-clip: content-box;
    transition: .3s ease-in-out all;
}

body::-webkit-scrollbar-thumb:hover{
    border-color: #035394;
}


/* jumbotron */
.jumbotron{
    background-color: #0569bd;
    color: #ffffff;
    padding: 50px 0;
}

.jumbotron .container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.jumbotron .container h2{
    margin-right: 50px;
}

.jumbotron .container .btn-bordered:hover{
    background-color: #ffffff;
    color: #0569bd;
}



/* -------------------------------banner section------------------------------------- */

.main-banner{
    position: relative;
    overflow: hidden;
}

.main-banner .banner-description p{
    width: fit-content;
    text-align: center;
    font-size: 18px;
    overflow: hidden;
    border-right: .15em solid #ffffff;
    white-space: nowrap;
    animation: typing 4s steps(40, end), blink-caret .75s step-end infinite;
}

.main-banner .banner-description{
    width: fit-content;
    margin: 0 auto;
}

#background_video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.btn-wrapper{
    margin-top: 80px;
}

.btn-wrapper button:first-child{
    margin-right: 15px;
}


/* ------------------------------section 2------------------------------------ */

.sec-two{
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}

.sec-two .side-image-wraper{
    position: relative;
}

.sec-two .side-image-wraper .dot-pattern{
    position: absolute;
    top: 0;
    right: 9rem;
    transform: translateY(-60px);
}

.sec-two .side-content{
    position: relative;
}

.sec-two .side-content .dot-pattern{
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(100px) translateX(-50px);
}

/* --------------------------section 3------------------------------------- */
.sub-sec.sec-three {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.sub-sec.sec-three .small-card-wraper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.sub-sec.sec-three .small-card-wraper .small-card{
    width: 12rem;
    height: 12rem;
    text-align: center;
    color: #ffffff;
    border-radius: 25px;
    box-shadow: 4px 4px 12px 0 rgba(0,0,0,0.15);
    background: linear-gradient(180deg, rgba(5,105,189,0.7) 0%, rgba(5,59,104,0.7) 100%);
    backdrop-filter: blur(10px);
}

.sub-sec.sec-three .small-card-wraper .small-card p{
    font-size: 14px;
    margin: 0;
}

.sub-sec.sec-three .side-content {
    padding-left: 50px;
}

.sub-sec.sec-three .background-gradient-overlay{
    background: linear-gradient(130deg, rgba(114,51,152,0.36) 0%, rgba(0,0,0,0) 50%, rgba(5,105,189,0.3612301610097164) 100%);
}


/* -------------------------------------------section 4------------------------------------------- */

.sub-sec.sec-four{
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}

.sub-sec.sec-four .side-image-wraper{
    position: relative;
}
.sub-sec.sec-four .side-image{
    position: absolute;
    width: calc(100% - 50px);
    top: 0;
    right: 0;
    background-position: center right;
    z-index: 5;
}

.sub-sec.sec-four .info-circles-background{
    position: relative;
    min-height: 40vh;
    margin-top: 13.5rem;
    background-color: #EDF7FF;
    display: flex;
    align-items: last baseline;
}

.sub-sec.sec-four .info-circles-wraper{
    position: absolute;
    width: 80%;
    transform: translateY(-120px) translateX(-50%);
    left: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    z-index: 5;
}

.sub-sec.sec-four .side-content{
    position: relative;
}
.sub-sec.sec-four .side-content .dot-pattern{
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(100px) translateX(-200px);
}

/* -----------------------------------section 5-------------------------------- */

.sec-five {
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}
.sec-five .feature-box{
    min-height: 7rem;
}

.sec-five .side-image-wraper{
    position: relative;
}

.sec-five .side-image-wraper .dot-pattern.color-purple{
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50px) translateX(10px);
}

.sec-five .side-image-wraper .dot-pattern.color-blue{
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(60px);
}

/* -------------------------------------section 6---------------------------------- */

.sec-six {
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.sec-six .sec-background{
    position: relative;
    background-color: #252525;
    color: #ffffff;
    /* border-top-right-radius: 50%; */
}

.sec-six .colored-text{
    color: #0569bd;
}

.sec-six .sec-background-image{
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
}

.sec-six .sec-content{
    padding-right: 50px;
}

.sec-six .side-image-wraper {
    position: relative;
}

.sec-six .side-image-wraper .side-image{
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    transform: translateY(-160px) translateX(75px);
    min-height: 100vh;
    border-radius: 0 25% 0 25%;
}



.sec-six  .feature-box-wraper{
    width: 40%;
    transform: translateY(-50px) translateX(25px);
}

.sec-six  .feature-box-wraper .feature-box{
    min-height: 6rem;
}

.sec-six  .feature-box-wraper .feature-box:not(:first-child){
    margin-top: 30px;
}

.sec-six .bottom-description{
    position: relative;
}

.sec-six .bottom-description .dot-pattern{
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-120px) translateX(-150px);
}



/* ------------------------------------------------animations------------------------------------------------------- */

@keyframes typing {
    from { 
        width: 0 
    }
    to { 
        width: 100% 
    }
}
  
@keyframes blink-caret {
    from, to { 
        border-color: transparent 
    }
    50% { 
        border-color: #ffffff; 
    }
}




/* -------------------------------------------------------------resposive---------------------------------------------------------------- */


/* ----------------------Tablets in portrait -----------------*/
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    #genContactModal .modal-details-wraper{
        width: 100%;
        text-align: center;
    }

    .jumbotron .container{
        display: block;
    }
    
    .jumbotron .container h2{
        margin-right: 0;
        margin-bottom: 40px;
    }

    .sec-image-right .side-image-wraper{
        padding-left: 0;
    }

    .sec-image-left .side-image-wraper{
        padding-right: 0;
    }


    /* sec 2 */

    .sec-two .side-image-wraper{
        width: 75%;
        padding: 0;
        margin: 0 auto;
    }

    .sec-two .side-image-wraper .side-image{
        height: 50vh;
        background-position: bottom center;
    }

    .sec-two .side-content{
        margin-top: 75px;
    }

    .sec-two .feature-box{
        margin-bottom: 30px;
        width: 75%;
    }


    /* sec 3 */
    .sub-sec.sec-three .side-content{
        padding-left: 0;
    }


    /* sec 4 */
    .sub-sec.sec-four .side-image-wraper{
        position: static;
    }

    .sub-sec.sec-four .side-image-wraper .side-image {
        position: static;
        width: 75%;
        height: 50vh;
        display: block;
        margin: 0 auto 50px auto;
    }

    .sub-sec.sec-four .info-circles-background{
        position: static;
        display: block;
        min-height: 40vh;
        margin-top: 50px;
        align-items: normal;
    }

    .sub-sec.sec-four .info-circles-wraper{
        position: static;
        width: 100%;
        transform: none;
        margin-bottom: 60px;
    }

    .sub-sec.sec-four .side-content .dot-pattern{
        position: absolute;
        top: 0;
        right: 0;
        transform: translateY(-39rem) translateX(-200px);
    }



    /* sec 5 */

    .sec-five .side-image-wraper .side-image{
        width: 75%;
        height: 50vh;
        margin: 0 auto 50px auto;
    }

    .sec-five .side-image-wraper .dot-pattern.color-blue{
        transform: translateY(10px);
    }

    .sec-five .side-image-wraper .dot-pattern.color-purple{
        transform: translateY(-50px) translateX(-10px);
    }

    .sec-five .feature-box{
        width: 75%;
    }

    .sec-five .for-mobile{
        margin-top: 50px;
    }


    /* sec 6 */
    
    .sec-six .side-image-wraper{
        position: static;
    }

    .sec-six .side-image-wraper .side-image{
        position: static;
        width: 75%;
        min-height: 0;
        height: 50vh;
        margin: 0 auto;
        transform: translateY(-150px);
    }

    .sec-six .sec-background{
        border-radius: 0;
    }

    .sec-six .sec-content{
        padding: 0 15px;
        transform: translateY(-50px);
    }

    .sec-six .feature-box-wraper{
        width: 75%;
        margin: 0 auto;
    }

    .sec-six .bottom-description .dot-pattern{
        transform: translateY(-90px) translateX(0);
        z-index: -1;
    }

}



/* ----------------------Tablets in landscape---------------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
}



/* ----------------------Mobile in portrait -------------------*/
@media only screen and (max-width: 767px) and (orientation: portrait) {
    #genContactModal .modal-details-wraper{
        width: 100%;
        text-align: center;
    }

    #genContactModal .btn-close{
        color: #ffffff;
        transform: translateX(0);
    }
    
    
    .jumbotron{
        padding-bottom: 50px;
    }
    .jumbotron .container{
        display: block;
    }
    
    .jumbotron .container h2{
        margin-right: 0;
        margin-bottom: 40px;
    }
    .sec-image-right .side-image-wraper{
        padding-left: 0;
    }

    .sec-image-left .side-image-wraper{
        padding-right: 0;
    }


    /* banner */

    .main-banner .btn-wrapper button:first-child{
        margin-right: 0;
        margin-bottom: 15px;
    }

    .main-banner .btn-wrapper button{
        display: block;
    }
    .main-banner .btn-wrapper button{
        width: 100%;
    }

    /* sec 2 */
    .sec-two .side-image-wraper{
        width: 75%;
        padding: 0;
        margin: 0 auto;
    }

    .sec-two .side-image-wraper .side-image{
        height: 50vh;
        background-position: bottom center;
    }

    .sec-two .side-content{
        margin-top: 75px;
    }

    .sec-two .side-content h2{
        text-align: center;
    }

    .sec-two .feature-box{
        margin-bottom: 30px;
        width: 75%;
    }


    /* sec 3 */
    .sec-three .small-card-wraper {
        margin-top: 50px;
    }

    .sec-three .side-content h2{
        text-align: center;
    }

    .sub-sec.sec-three .side-content{
        padding-left: 0;
    }


    /* sec 4 */
    .sub-sec.sec-four .side-image-wraper{
        position: static;
    }

    .sub-sec.sec-four .side-image-wraper .side-image {
        position: static;
        width: 75%;
        height: 50vh;
        display: block;
        margin: 0 auto 50px auto;
    }

    .sub-sec.sec-four .info-circles-background{
        position: static;
        display: block;
        min-height: 40vh;
        margin-top: 50px;
        align-items: normal;
    }

    .sub-sec.sec-four .info-circles-wraper{
        position: static;
        width: 100%;
        transform: none;
        margin-bottom: 60px;
    }

    .sub-sec.sec-four .side-content .dot-pattern{
        position: absolute;
        top: 0;
        right: 0;
        transform: translateY(-36.5rem) translateX(-20px);
        z-index: -1;
    }

    .sub-sec.sec-four .side-content h2{
        text-align: center;
    }



    /* sec 5 */

    .sec-five .side-image-wraper .side-image{
        width: 75%;
        height: 50vh;
        margin: 0 auto 50px auto;
    }

    .sec-five .side-image-wraper .dot-pattern.color-blue{
        transform: translateY(10px);
    }

    .sec-five .side-image-wraper .dot-pattern.color-purple{
        transform: translateY(-50px) translateX(-10px);
    }

    .sec-five .feature-box{
        width: 75%;
        margin-bottom: 25px;
    }

    .sec-five .for-mobile{
        margin-top: 50px;
    }

    .sec-five .side-content h2{
        text-align: center;
    }


    /* sec 6 */
    
    .sec-six .side-image-wraper{
        position: static;
    }

    .sec-six .side-image-wraper .side-image{
        position: static;
        width: 75%;
        min-height: 0;
        height: 50vh;
        margin: 0 auto;
        transform: translateY(-150px);
    }

    .sec-six .sec-background{
        border-radius: 0;
    }

    .sec-six .sec-content{
        padding: 0 15px;
        transform: translateY(-50px);
    }

    .sec-six .sec-content h2{
        text-align: center;
    }

    .sec-six .feature-box-wraper{
        width: 75%;
        margin: 0 auto;
        transform: translateY(-50px) translateX(0);
    }

    .sec-six .bottom-description .dot-pattern{
        transform: translateY(-90px) translateX(0);
        z-index: -1;
    }
}