@charset "utf-8";

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css");

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* ------Scrollbar CSS Start----- */

/* Firefox */

/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 5px;
}
*::-webkit-scrollbar-track {
    background: var(--white);
}
*::-webkit-scrollbar-thumb {
    background-color: var(--black);
    border-radius: 5px;
   border: 0px;
}

/* ------Scrollbar CSS End----- */

/* font-family: "Quicksand", sans-serif; */

/*--- Common Style Start---*/

:root {
    --black: #101010;
    --dark: #101010;
    --white: #fff;
    --blue: #4777FB;
    --menu: #000000;
    --light-gray: #878787;
    --light-white: #F7F8FC;
    --body-font: 'Quicksand', sans-serif;
    --heading: 'Quicksand', serif;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 23px;
    color: var(--black);
    font-family: var(--body-font);
}
p {
    padding: 0;
    font-weight: 400;
}
p:last-child {
    margin-bottom: 0;
}

a {
    display: inline-block;
    text-decoration: none !important;
    -webkit-transition: all 300ms ease-in-out;
   -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a:hover,
a:focus {
    color: var(--color-black);
}

figure {
    margin: 0;
    padding: 0;
   display: block;
}

img {
    width: 100%;
    height: 100%;
}

h1,
h2,
.heading {
    line-height: normal;
   font-weight: 600;
  margin-bottom: 5px;
}

h3 {
    font-size: 22px;
}


h4 {

    font-size: 20px;

}



h5 {

    font-size: 18px;

}



h6 {

    font-size: 16px;

}



ul {

    padding-left: 0px;

    margin-bottom: 0px;

}



/*--- Common Style End---*/

/* ==========loader common css========== */
.loader-off.loaderWrap {
    opacity: 0;
    visibility: hidden;
}
.loader img {
    width: 50px;
}

.loaderWrap {
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 300ms ease-in-out; 
}
.loader{
    animation: loader 2s infinite linear;
}
/* ============Loader Two CSS Start=============== */

@keyframes loader {
    0% {
      transform: rotate(-45deg);
    }
    50% {
      transform: rotate(-135deg);
    }
    100% {
      transform: rotate(-225deg);
    }
  }


/*--- Bootstrap Form Start ---*/

.form-control {
    height: 40px;
    border: 1px solid var(--white);
    padding: 10px 15px;
    background-color: var(--white);
    font-size: 13px;
    color: var(--black);
    letter-spacing: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.form-control:focus {
    outline: none !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}

select.form-control:not([size]):not([multiple]) {
    height: 50px;
}

textarea.form-control {
    height: 100px;
    resize: none;
}

.form-control::placeholder {
    color: var(--color-gray);
}

.sec-space {
    padding: 60px 0;
}

.sec-space-bottom {
    padding: 0 0 60px;
}

.sec-space-top {
    padding: 60px 0 0;
}

/*- Bootstrap Form End -*/

/*-- Button Start --*/

.btn {
    border-radius: 5px;
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
    border: 1px solid transparent;
    text-transform: uppercase;
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

buton:focus,
.btn:focus,
buton:active,
.btn:active {
    outline: none;
    box-shadow: none !important;
    border: 1px solid transparent;
}

.btn-solid {
    background: #0D9B7A;
    color: var(--white);
    z-index: 9;
    position: relative;
    border: 1px solid transparent;
    transition: all .4s;
}

.btn-solid:hover {
    background: #5d0087;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    z-index: 9;
    position: relative;
    height: auto;
    line-height: normal;
    transition: all .4s;
    padding: 0px;
    font-weight: 600;
}
.btn-outline:before {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--black);
    height: 1px;
    width: 100%;
    content: '';
    z-index: -1;
    transition: all .4s;
}

.btn-outline:hover::before {
    border: 1px solid var(--black);
    border-top: 0px;
    height: 1px;
    width: calc(100% + 15px);
    transition: all .4s;
}

/*-- Button End --*/

/*--- TITLE Start---*/

.section-title h3 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
    margin-bottom: 0px;
    font-family: var(--heading);
}
.section-title h6 {
    font-size: 14px;
    color: var(--green-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.section-title {
    margin-bottom: 30px;
}

/*--- TITLE End---*/

/*----   HEADER  START  ----*/

.main-header {
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    z-index: 9;
    background: #f9edff00;
}
.main-header.innerheadersec {
    position: inherit;
    background: #f7f7f7;
    border-bottom: 1px solid #fff;
}

.navbar {
    padding: 0;
}
.navbar-brand {
    padding: 10px 0;
}

.navbar-brand img {
    height:70px;
    width: auto;
}
.navbar-collapse ul li {
    margin-right: 40px;
    position: relative;
}
.navbar-collapse ul li:last-child {
    margin-right: 0px;
}

.navbar-collapse ul li>a {
    color: var(--menu);
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 9;
    text-transform: uppercase;
}

.navbar-collapse ul li.active>a,
.navbar-collapse ul li:hover>a {
    color: #0D9B7A;
}

/* .navbar-collapse ul li>a:before {
    position: absolute;
    left: 0;
    top: 100%;
    background: #0D9B7A;
    content: '';
    height: 0px;
    width: 0px;
    z-index: -1;
    transition: all .4s;
} */
.navbar-collapse ul li>ul.dropdown-menu li a.dropdown-item::before {
    left: 95%;
    background: #3f74f573;
}

/* .navbar-collapse ul li.active>a:before,
.navbar-collapse ul li:hover>a:before {
    height: 2px;
    width: 100%;
    z-index: -1;
    transition: all .4s;
} */

.navbar-text {
    padding: 13px 0;
    margin-left: 90px;
}

.navbar-text ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.navbar-text ul li {
    margin-right: 9px;
    position: relative;
    z-index: 9;
}

.navbar-text ul li a {
    display: inline-block;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
}

.navbar-text ul li:hover a img {
    filter: brightness(0) invert(0);
    transition: all .3s;
}

.navbar-text ul li:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--blue);
    height: 0px;
    width: 0px;
    border-radius: 50%;
    content: '';
    z-index: -1;
    transition: all .4s;
}

.navbar-text ul li:hover::before {
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--blue);
    content: '';
    height: 0px;
    width: 0px;
    z-index: -1;
    transition: all .4s;
}

.navbar-text ul li:last-child {
    margin-right: 0px;
}

.navbar-text ul li a img {
    width: auto;
    height: 14px;
}

.navbar-collapse ul li>ul {
    position: absolute;
    min-width: 200px;
    z-index: 99;
    background: #dedede;
    top: 100%;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all .4s
}

.navbar-collapse ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: all .4s;
}

.navbar-collapse ul li>ul>li>a {
    display: inline-block;
    padding: 5px 10px;
}

/*---   HEADER END   ---*/

/*---   BANNER START   ---*/

.bannerarea {
    position: relative;
}

.bannerinfo {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.bannertxt{

}

.bannertxt h2, .bannertxt h1, .bannertxt h3, .bannertxt h4 {
    color: #242424;
    font-size: 50px;
    line-height: 58px;
    margin-bottom: 20px;
    font-weight: 400;
}
.bannertxt p{
    font-size: 18px;
    line-height: 28px;
    color: #000;
}

.banner-home{
    position: relative;
}

.homebanner {
    position: relative;
    padding-top: 100vh;
}

.homebanner img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}


/*---   BANNER END   ---*/

.headicon{
    background: url(../images/lotus.png) no-repeat top center;
    padding-top: 125px;
    background-size: 150px;
}

.bluebg{
    background: #63cdf6;
}
.navbar-collapse ul li>ul.dropdown-menu li {
    margin: 0;
}
.navbar-collapse ul li>ul.dropdown-menu li a.dropdown-item {
   padding: 10px;
}

/*--  Footer Start  --*/

.footer-main {
    background: #fff;
    border-top: 1px solid #e9e9e9;
}
.footer-link-wrapper {
    padding: 50px 0 0;
}
.ft-logo a {
    background: #fff;
    padding: 15px;
}

.ft-logo a img {
    width: auto;
    height: 80px;
}
.ft-logo p {
    font-size: 13px;
    line-height: 20px;
    margin-top: 14px;
}

.quick-link-box h5 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 10px;
}
.quick-link-box p{
    font-size: 13px;
    line-height: 20px;
}
.contact-book .headsocial {
    margin-top: 30px;
}

.quick-link-box ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.quick-link-box ul li {  
    font-size: 12px;
}
.quick-link-box ul li+li{
    margin-left: 20px;
}

.quick-link-box ul li a {
    color: var(--dark);
    text-transform: uppercase;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}

.ft-social {
    margin-top: 15px;
}

.footer-main .row [class*="col-"] {
    position: relative;
}

.ft-social ul {
    list-style: none;
}

.ft-social ul li {
    margin-right: 12px;
    position: relative;
    z-index: 9;
}

.ft-social ul li:last-child {
    margin-right: 0px;
}

.ft-social ul li a {
    height: 28px;
    width: 28px;
    line-height: 26px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    transition: all .4s;
    -webkit-transition: all .4s;
   -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.ft-social ul li a img {
    height: 16px;
}

.ft-social ul li a:before {
    position: absolute;
    background: var(--blue);
    width: 0px;
    height: 0px;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.ft-social ul li a:hover::before {
    width: 32px;
    height: 32px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.copy-right {
    border-top: 1px solid #c3c3c3;
    padding: 15px 0;
    margin-top:40px;
}

.copy-right p {
    line-height: 20px;
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.copy-right p a {
    color: #213438;
}

.contact-book ul li {
    position: relative;    
    color: var(--dark);
    font-weight: 500;
}

.contact-book ul li a i {
    background: #0c4778;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
    font-size: 15px;
}

.contact-book ul li a {
    text-transform: none;
    position: relative;
    padding-left: 38px;
}

/*--  Footer End  --*/

.boxsec {
    border: 1px solid #003b2d;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #f5f5f5;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
}
/*.boxsec:after{
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    transition: 0.5s;
}
 .boxsec:hover:after{
    background: #0c4778;
    height: 100%;
} */

.boxsec img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: 0.5s;
}

.boxsec h2 {
    margin: 0 0 0 0;
    font-weight: 300;
    font-size: 25px;
    line-height: 30px;
    transition: 0.5s;
}
.boxzr{position: relative; z-index: 9;}
.boxsec:hover img{filter: invert(1);}
/* .boxsec:hover h2{color: #fff; font-weight: 500;} */

.bg {
    background: #e0e8f0;
}
.bg2 {
    background: #f7f7f7;
}
.inner_con.headicon {
    background-position: 90px 0;
    background-size: 80px;
    padding-top: 80px;
}
.rgtconplr {
    padding-left: 100px;
    padding-right: 100px;
    margin: 80px 0;
}
.sideimg{
    height: 100%;
}
.sideimg img{object-fit: cover;}
.inner_con.headicon.txtlft {
    background-position: 0 0;
}
.serviceimg {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.serviceimg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.servicecon {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    padding: 20px;
    margin: -10px 20px 0 20px;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.servicecon h2 {
    margin: 0;
    font-weight: 400;
    font-size: 33px;
    text-align: center;
}

.servicebox {
    padding: 20px 0;
}
.servicebox:hover .serviceimg img{
    transform: scale(1.1);
}
.servicebox:hover .servicecon{
    background: #0c4778;
}
.servicebox:hover .servicecon h2{
    color: #fff;
}

.emailtemplate img {
    width: 60px;
    margin-bottom: 30px;
}

.emailbox .es-form-field-container {
    display: flex;
    justify-content: center;
}

.emailbox .es-form-field-container .gjs-row {
    margin: 0 !important;
}

.emailbox .es-form-field-container .gjs-row input[type="email"] {
    width: 400px;
    height: 60px;
    border-radius: 50px;
    padding: 0 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: 0;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.07);
}
.emailbox .es-form-field-container .gjs-row input[type="email"]:focus-visible{
    outline: none;
}

.emailbox .es-form-field-container .gjs-row input[type="submit"] {
    height: 60px;
    padding: 0 40px;
    border-radius: 50px;
    border: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: #0c4778;
    color: #fff;
    text-transform: uppercase;
}

.emailbox {
    margin-top: 30px;
}

.emailbg {
    margin-top: -300px;
}

.qualisec {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}