/** Reset CSS **/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
}
*, :after, :before {
    box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
a,
a:hover {
    text-decoration: none;
    transition: 0.5s all;
    cursor: pointer;
    color: inherit;
}
a {
    text-decoration: none;
    outline: none;
    color: inherit;
}
body {
    margin: 0;
    padding: 0;
}
ol, ul, li {
    list-style: none;
}
button{
    cursor: pointer;
    all: unset;
    box-sizing: border-box;
    transition: 0.5s all;
}

/**====================================
font 
====================================**/
.font-poppins{
    font-family: "poppins", sans-serif;
}
.container{
    padding-left: 30px;
    padding-right: 30px;
}
.bg-white{
    background: #ffffff;
}
.bg-black{
    background: #000000;
}
.bg-grey{
    background: #F7F7FF;
}
.bg-blue{
    background: #162340;
}
.bg-ltblue{
    background: #3C2FC0;
}

/**====================================
Typography
====================================**/
h1{
    font-size: 80px;
    line-height: 1.1;
}
h2{
    font-size: 50px;
    color: #162340;
    font-weight: 600;
}
h5{
    font-size: 20px;
}
p{
    font-size: 14px;
    line-height: 1.6;
    color: #162340;
}
.font-50{
    font-size: 50px;
    line-height: 1;
}
.service02-titleHead{
    margin-bottom: 25px;
}
.service02-titleHead p{
    font-weight: 300;
}
.bg-blue .service02-titleHead :where(h2,p){
    color: #fff;
}

/**====================================
Button
====================================**/
.service02-light-btn{
    min-width: 180px;
    height: 44px;
    border-radius: 30px;
    background: #fff;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    padding: 0;
    padding-left: 20px;
    padding-right: 4px;
    transition: 0.5s all;
    overflow: hidden;
    position: relative;
}
.service02-light-btn::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    z-index: 1;
    background: rgb(35, 52, 90);
    transition: 0.5s all;
}
.service02-light-btn span{
    position: relative;
    z-index: 2;
    margin-right: 9px;
}
.service02-light-btn i{
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    background: #162340;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    position: relative;
    z-index: 2;
}
.service02-light-btn i img{
    max-width: 15px;
    display: block;
}
.service02-light-btn:hover::before{
    height: 100%;
}
.service02-light-btn:hover{
    background: #162340;
    color: #fff;
}
.service02-dark-btn{
    min-width: 180px;
    height: 44px;
    border-radius: 30px;
    background: #162340;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    padding: 0;
    padding-left: 20px;
    padding-right: 4px;
    transition: 0.5s all;
    overflow: hidden;
    position: relative;
}
.service02-dark-btn::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    z-index: 1;
    background: #3C2FC0;
    transition: 0.5s all;
}
.service02-dark-btn span{
    position: relative;
    z-index: 2;
    margin-right: 9px;
}
.service02-dark-btn i{
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    position: relative;
    z-index: 2;
}
.service02-dark-btn i img{
    max-width: 15px;
    display: block;
}
.service02-dark-btn:hover::before{
    height: 100%;
}
.service02-dark-btn:hover{
    background: #3C2FC0;
    color: #fff;
}
.service02-smbtn{
    min-width: 160px;
}

/**====================================
slider animation
====================================**/
.animation {
    opacity: 0;
    transition: opacity .5s ease-in-out;
}
.animation-visible {
    opacity: 1;
}
.mfp-fade.mfp-bg {
	opacity: 0;
	transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

/**====================================
Common css 
====================================**/
.service02-section-smpadding{
    padding: 65px 0;
}
.service02-section-padding{
    padding: 100px 0;
}
.service02-section-lgpadding{
    padding: 120px 0;
}
.service02-section-paddingtop{
    padding-top: 100px;
}
.service02-section-paddingbottom{
    padding-bottom: 100px;
}

.service02-cmnsliderwhite .slick-arrow,
.service02-cmnslider .slick-arrow{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    max-width: 26px;
    max-height: 45px;
}
.service02-cmnsliderwhite .prev-arrow,
.service02-cmnslider .prev-arrow{
    left: -30px;
}
.service02-cmnsliderwhite .next-arrow,
.service02-cmnslider .next-arrow{
    right: -30px;
}
.service02-cmnsliderwhite .slick-arrow img,
.service02-cmnslider .slick-arrow img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.poweredby{
    display: flex;
    align-items: center;
}
.poweredby span{
    display: block;
    font-size: 13px;
    color: #ffffff;
    line-height: 1;
    margin-right: 6px;
    font-weight: 300;
}
.poweredby img{
    display: block;
    max-width: 62px;
}
.navtab-wrapper{
    overflow-y: visible;
    overflow-x: auto;
    max-width: max-content;
    margin: 0 auto;
    margin-bottom: 30px;
}
.navtab-wrapper .nav-tabs{
    flex-wrap: nowrap;
}
.service02-cmnsliderwhite .slick-dots,
.service02-cmnslider .slick-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.service02-cmnsliderwhite .slick-dots li,
.service02-cmnslider .slick-dots li{
    margin: 0 4px;
    line-height: 0;
}
.service02-cmnsliderwhite .slick-dots li button,
.service02-cmnslider .slick-dots li button{
    font-size: 0;
    width: 10px;
    height: 10px;
    border: 0;
    background-color: #162340;
    border-radius: 50%;
    position: relative;
}
.service02-cmnsliderwhite .slick-dots li button{
    background-color: #fff;
}
.service02-cmnsliderwhite .slick-dots li.slick-active button{
    background-color: #3C2FC0;
}
.service02-cmnslider .slick-dots li.slick-active button{
    background-color: #3C2FC0;
}

.topborder::before {
    content: '';
    display: block;
    margin-bottom: 20px;
    width: 40px;
    height: 4px;
    background: #3C2FC0;
}
.centertopbg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    overflow: hidden;
    width: 60%;
    height: 95%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end
}
.centertopbg img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}
.service02-sidehead h2 {
    margin-bottom: 20px;
}
.service02-sidehead p {
    font-weight: 500;
    margin-bottom: 35px;
}

/**====================================
Aside css 
====================================**/
.service02-aside{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.service02-aside > div{
    width: 54px;
    height: 54px;
    border-radius: 30px 0 0 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin-bottom: 10px;
    transition: 0.5s all;
}
.service02-aside > div:hover{
    width: 60px;
}
.service02-aside > div:hover a{
    margin-right: auto;
}
.service02-aside a{
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service02-aside a img{
    display: block;
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

/** Modal **/
.service02-modals .modal-dialog{
    border: 0;
}
.service02-modals .modal-content{
    border: 0;
    border-radius: 20px;
}
.service02-modals .modal-body{
    padding: 40px 30px;
    position: relative;
}
.service02-modals .btn-close{
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 1;
    color: #162340;
}
.service02-modals .modal-body h3{
    font-size: 26px;
    color: #162340;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
.bookingform .form-label{
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #162340;
}
.bookingform .form-group{
    margin-bottom: 15px;
}
.bookingform .form-control{
    background: #fff;
    border: 1px solid #D8D8D8;
    border-radius: 30px;
    padding: 8px 20px;
    color: #162340;
    font-size: 14px;
    height: 42px;
}
.bookingform .form-control:focus{
    box-shadow: none;
    outline: 0;
    border: 1px solid #162340;
}
.bookingform .checkboxbox{
    position: relative;
    padding-left: 28px;
}
.bookingform .checkboxbox input{
    position: absolute;
    display: none;
}
.bookingform .checkboxbox span{
    font-size: 14px;
    color: #162340;
}
.bookingform .checkboxbox span::before{
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid #D8D8D8;
    border-radius: 3px;
}
.bookingform .checkboxbox span::after{
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 9px;
    height: 5px;
    border: 1px solid #162340;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    transition: 0.5s all;
    opacity: 0;
}
.bookingform .checkboxbox input:checked ~ span::after{
    opacity: 1;
}
.bookingform .service02-count{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #fff;
    border: 1px solid #D8D8D8;
    border-radius: 30px;
    padding: 8px 20px;
    height: 42px;
}
.bookingform .service02-count input{
    height: 100%;
    width: 60px;
    padding: 0;
    border: none;
    text-align: center;
    color: #162340;
    font-size: 14px;
}
.bookingform .service02-count input:focus{
    outline: 0;
}
.bookingform .service02-count button{
    width: 16px;
    height: 16px;
    border: 0;
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bookingform .service02-count button img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

/**====================================
Responsive 
====================================**/
@media (max-width: 1399px){

}
@media (max-width: 1199px){
    h1{
        font-size: 60px;
    }
    h2{
        font-size: 34px;
    }
}
@media (max-width: 991px){
    .container{
        max-width: 100%;
    }
    .max-lg-none{
        display: none !important;
    }
    h1{
        font-size: 50px;
    }
    h2{
        font-size: 30px;
    }
    h5{
        font-size: 18px;
    }
    .modal.show .modal-dialog{
        max-width: 100%;
        padding: 0 30px;
    }
}
@media (max-width: 767px){
    h1{
        font-size: 38px;
    }
    .service02-sec1-data h2{
        font-size: 26px;
    }
    h5{
        font-size: 14px;
    }
    .service02-section-smpadding{
        padding: 30px 0;
    }
    .service02-section-padding{
        padding: 50px 0;
    }
    .service02-section-lgpadding{
        padding: 70px 0;
    }
    .service02-section-paddingtop{
        padding-top: 50px;
    }
    .service02-section-paddingbottom{
        padding-bottom: 50px;
    }
    .service02-aside > div{
        width: 34px;
        height: 34px;
        margin-bottom: 7px;
    }
    .service02-aside a{
        width: 28px;
        height: 28px;
    }
    .service02-light-btn,
    .service02-dark-btn{
        min-width: 150px;
        font-size: 14px;
    }
    .topborder:not(.showall):before{
        display: none;
    }
    .text-mob-center{
        text-align: center;
    }
    .bookingform .service02-count{
        margin-bottom: 15px;
    }
    .modal.show .modal-dialog{
        padding: 0;
    }
    .showmorebtn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #162340;
        font-weight: 500;
    }
    .showmorebtn img{
        display: block;
        max-width: 14px;
        margin-left: 10px;
    }
}
@media (max-width: 575px){
    .container{
        padding-left: 20px;
        padding-right: 20px;
    }
    .service02-section-smpadding{
        padding: 30px 0;
    }
    .service02-section-padding{
        padding: 30px 0;
    }
    .service02-section-lgpadding{
        padding: 40px 0;
    }
    .service02-section-paddingtop{
        padding-top: 30px;
    }
    .service02-section-paddingbottom{
        padding-bottom: 30px;
    }
    .navtab-wrapper{
        margin-bottom: 20px;
    }
    .service02-home-banner h5{
        line-height: 1.4;
    }
    h1{
        font-size: 30px;
    }
    .service02-light-btn,
    .service02-dark-btn{
        padding-left: 15px;
        min-width: 120px;
        white-space: nowrap;
        height: 34px;
        padding-right: 2px;
    }
    .service02-dark-btn i,
    .service02-light-btn i{
        width: 30px;
        height: 30px;
    }

    .service02-modals .modal-body{
        padding: 25px 20px;
    }
    .service02-modals .modal-body h3{
        font-size: 22px;
        margin-bottom: 20px;
    }
    .bookingform .service02-count input{
        width: 40px;
    }
    .bookingform .form-control,
    .bookingform .service02-count{
        padding: 8px 16px;
        height: 40px;
    }
}



