@charset "utf-8";

:root {
  --color-main: #0440DB;
  --color-ylw: #0440DB;
  --color-black: #000;
  --color-dark: #0B0B46;
  --color-dark-blue: #0B0B46;
  --color-white: #fff;
  --color-gray: #393838;
  --body-font: 'Plus Jakarta Sans', sans-serif;
  --body-font: 'Plus Jakarta Sans', sans-serif;
  --heading-font: 'Plus Jakarta Sans', sans-serif;
  --subheading-font: 'Plus Jakarta Sans', sans-serif;
  --btn-font: 'Plus Jakarta Sans', sans-serif;
  --transition: all 300ms ease-in-out;

}
::-moz-selection { /* Code for Firefox */
  background: #d9d9d9;
  color: #003ad5;
}

::selection {
  background: #d9d9d9;
  color: #003ad5;
}
html {
  scroll-behavior: smooth;
}

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

/* ------Scrollbar CSS Start----- */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: var(--color-main) var(--color-white);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: var(--color-white);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--color-main);
  border-radius: 8px;
  border: 1px solid var(--color-white);
}

/* input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #23232329;
} */

/* ------Scrollbar CSS End----- */
body {
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 21px;
  color: #393838;
  font-weight: 500;
  font-family: var(--body-font);
}

.bglight {
  background-color: #F8FAFC;
}

.gap-bottom {
  grid-row-gap: 30px;
}

html,
body {
  overflow-x: hidden;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
  clear: initial;
}

p {
  margin: 0 0 15px;
  padding: 0;
  line-height: inherit;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-main);
  display: inline-block;
  outline: none !important;
  vertical-align: top;
  text-decoration: none;
  -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-ylw);
  text-decoration: none;
}

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

.error-404 {
  padding-top: 180px;
  padding-bottom: 120px;
}

img {
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
}

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

.sec-space-big {
  padding: 65px 0;
}

h1, h2, .heading {
  font-family: var(--body-font);
  color: var(--color-dark);
  font-size: 30px;
  line-height: normal;
  font-weight: 600;
  position: relative;
  margin-bottom: 20px;
  letter-spacing: 0;
}

h1 strong,
h2 strong,
.heading strong {
  font-weight: inherit;
  color: var(--color-main);
}

h1 {
  font-size: 40px;
  line-height: normal;
}

.sec-head {
  margin-bottom: 25px;
}

.sec-head h2 {
  margin-bottom: 5px;
}

/* ===================== */
h3,
h4,
h5,
.subheading {
  font-family: var(--body-font);
  color: var(--color-main);
  font-size: 18px;
  line-height: normal;
  font-weight: 500;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
.site textarea,
.form-control {
  height: 46px;
  border: 1px solid #e9efff;
  padding: 10px 15px;
  background-color: rgb(255 255 255 / 60%);
  font-size: 12px !important;
  color: var(--color-black);
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 4px;
  box-shadow: none !important;
  font-family: var(--body-font);
}

.form-control:focus {
  background-color: #F6F8F9;
  outline: none !important;
}

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

.form-control::placeholder {
  color: var(--color-black);
  font-family: var(--body-font);
  text-transform: capitalize;
  font-size: 12px !important;
  opacity: 1;
}

.btn-center, .btn-left, .btn-right {
  margin-top: 30px;
} 
.btn {
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: capitalize;
  padding: 0 35px;
  outline: none;
  font-family: var(--body-font);
  position: relative;
  height: 42px;
  line-height: 38px;
  box-shadow: none !important;
  border: 1px solid transparent;
  z-index: 1;
  outline: none !important;
  overflow: hidden;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

button {
  outline: none !important;
  box-shadow: none !important;
}

.btn-primary {
  color: var(--color-white);
  background-color: var(--color-main);
  border-color: var(--color-main);
}

.btn-primary:where(:hover, :focus, :active) {
  color: var(--color-white) !important;
  background-color: var(--color-dark) !important;
  border-color: var(--color-main) !important;
}

.btn-outline-primary {
  color: var(--color-main);
  /* background-color: var(--color-white); */
  border-color: var(--color-main);
  font-weight: 500;
}

.btn-outline-primary:where(:hover, :focus, :active) {
  color: var(--color-white) !important;
  background-color: var(--color-main) !important;
  border-color: var(--color-main) !important;
}

.btn.btn-warning {
  color: #102746;
  background-color: var(--color-ylw);
  border-color: var(--color-ylw);
}

.btn.btn-warning:where(:hover, :focus, :active) {
  color: var(--color-white) !important;
  background-color: var(--color-main) !important;
  border-color: var(--color-main) !important;
}

.btn.btn-outline-dark {
  color: #102746 !important;
  background-color: transparent !important;
  border-color: #102746 !important;
}

.btn.btn-outline-dark:where(:hover, :focus, :active) {
  color: var(--color-white) !important;
  background-color: var(--color-main) !important;
  border-color: var(--color-main) !important;
}

.btn.btn-outline-white {
  color: #fff !important;
  background-color: transparent !important;
  border-color: #fff !important;
}

.btn.btn-outline-white:where(:hover, :focus, :active) {
  color: var(--color-main) !important;
  background-color: var(--color-white) !important;
  border-color: var(--color-main) !important;
}

.btn.btn-white {
  border-color: var(--color-white) !important;
  background-color: var(--color-white) !important;
  color: var(--color-main) !important;
}

.btn.btn-white:hover {
  border-color: var(--color-black) !important;
  background-color: var(--color-black) !important;
  color: var(--color-white) !important;
}

.btn.btn-sm {
  height: 36px;
  font-size: 12px;
  min-width: 90px;
  padding: 0 15px;
}

.btn .fa {
  margin-left: 8px;
  flex-shrink: 0;
}

.btn img {
  width: 16px !important;
  margin-left: 8px;
  display: inline-block !important;
  vertical-align: middle;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.btn:hover img {
  transform: rotate(45deg);
}

.btn.btn-lg {
  height: 50px;
}

/* ========================
        Owl Nav Style
=========================== */
/* .owl-carousel .owl-nav [class*="owl-"] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/left-i.png) no-repeat center var(--color-white) !important;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background: #E5EBF3 !important;
    left: -25px;
    font-size: 0 !important;
    background-size: 14px !important;
}  

 
.owl-carousel .owl-nav .owl-next{
  background: url(../images/right-i.png) no-repeat center var(--color-white) !important;
    background: #F8F8F8 !important;
    left: auto;
    right:  -25px;
} */
.owl-dots {
  margin-top: 15px;
  text-align: center;
}

.owl-dots .owl-dot {
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background: var(--color-white) !important;
  opacity: 0.5;
  display: inline-block;
  margin: 4px 6px;
}

/* OWL Arrow   start */ 
.owlnav-active .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: solid 1px #E5EBF3 !important;
  background: url(../images/left-i.png) no-repeat center var(--color-white) !important;
  border-radius: 50px;
  left: -20px;
  font-size: 0 !important;
  background-size: 14px !important;
}

.owlnav-active .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: solid 1px #E3E8F2 !important;
  right: -20px;
  background: url(../images/right-i.png) no-repeat center var(--color-white) !important;
  border-radius: 50px;
  font-size: 0 !important;
  background-size: 14px !important;
}

/* OWL Arrow End */

/* OWL Dots start  */ 
.owl-carousel button.owl-dot {
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  height: 5px;
  width: 5px;
  background: #dbe0e9 !important;
  margin: 4px;
}

.owl-dots .owl-dot.active {
  background: var(--color-black) !important;
  opacity: 1;
}

.owl-dot:focus {
  border: none;
  outline: none;
}


/* OWL Dots end  */
/* =================scroll top css start here================ */
.go-top {
  bottom: 80px;
  opacity: 0;
  visibility: visible;
  right: 10px;
  border-radius: 100%;
  z-index: 9;
  background: var(--color-main);
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  position: fixed;
  cursor: pointer;
}

.go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: -moz-linear-gradient(0deg, #0440db 0%, #0440db 100%);
  background-image: linear-gradient(to right, #0440db 0%, #0440db 100%);
  background-image: -ms-linear-gradient(0deg, #0440db 0%, #0440db 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  border-radius: 100%;
}

.go-top::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 35px;
  height: 35px;
  -webkit-animation: ripple 1.6s ease-out infinite;
  -moz-animation: ripple 1.6s ease-out infinite;
  -o-animation: ripple 1.6s ease-out infinite;
  animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  background-image: -webkit-linear-gradient(0deg, #0440db 0%, #0440db 100%);
  border-radius: 100%;
}

.go-top i {
  font-size: 20px;
  font-weight: 700;
  padding-left: 4px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: -4px;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top:focus i:last-child,
.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top:focus i:first-child,
.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

@keyframes ripple {

  0%,
  35% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
  }
}

/* =scroll top css start here=*/
/* ======================HEADER=================== */
/* HEADER TOP */
.headerMain{
  padding: 0;
  position: relative;
  width: 100%;
  left: 0; top: 0;
}

/* Sticky Header start */
.sticky .headerMain{
  position: fixed;
  -webkit-box-shadow: 0 0 50px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 50px rgb(0 0 0 / 10%);
  box-shadow: 0 0 50px rgb(0 0 0 / 10%);

  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 999;
  background-color: #fff;
}
.sticky .headerMain{
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
} 
@-webkit-keyframes fadeInDown {
  0% {
      opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); 
  }
  100% {
      opacity: 1; -webkit-transform: none; transform: none; 
  }
}
@keyframes fadeInDown {
  0% { 
      opacity: 0; -webkit-transform: translate3d(0, -100%, 0); -ms-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); 
  }
  100% { 
      opacity: 1; -webkit-transform: none; -ms-transform: none; transform: none; 
  }
} 

.htop {
  background-color: #fff;
}

.navbar-brand {
    max-width: 106px;
}
.htop ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.htop ul li {
  margin: 0;
  padding: 0 0 0 40px;
  position: relative;
}

.htop ul li p {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--color-gray);
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  font-family: var(--body-font);
}

.htop ul li a {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--color-black);
  font-weight: 500;
  font-size: 15px;
  line-height: normal;
  font-family: var(--body-font);
}

.htop ul li a:hover {
  color: var(--color-main);
}

.htop ul li .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: var(--color-ylw);
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

/* HEADER BOTTOM */
 
.contact-menu { 
  height: 40px;
  line-height: 36px;
  font-weight: 500;
}
 

/* ====== */
.navbar {

  padding: 0;

}

.sub-menu-toggle {
  display: none;
}

.nav-menu ul {

  list-style: none;

  margin: 0;

  padding: 0;

  display: flex;

  flex-wrap: wrap;

}

.navbar-collapse ul li a {

  color: var(--color-black) !important;
  padding: 25px 2px !important;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  letter-spacing: 0px;
  position: relative;
  text-transform: capitalize;
  font-family: var(--body-font);

}

.navbar-collapse ul li a::after{
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  bottom: -3px;
  height: 2px;
  z-index: 1;
  background-color: var(--color-main);
  transition: all 300ms ease-in-out; 
}

.navbar-collapse ul li:not(:last-child) {

  margin-right: 43px;

}

.navbar-collapse ul li.active a, .navbar-collapse ul li a:hover {

  color: var(--color-main) !important;

}

.navbar-collapse ul li.current-menu-item a::after,
.navbar-collapse ul li a:hover::after {

  width: 100%;

}

.navbar-collapse ul li {

  position: relative;

}





.navbar-light .navbar-nav .active>.nav-link,

.navbar-light .navbar-nav .nav-link.active,

.navbar-light .navbar-nav .nav-link.show,

.navbar-light .navbar-nav .show>.nav-link {

  color: #fff;

}

/* ======dropdown menu design======== */

.navbar-collapse ul li.menu-item-has-children .fa { 

  position: absolute;

    font-size: 16px;

    top: 18px;

    right: -3px;

    pointer-events: none;

    color: var(--color-white);

}

/* .navbar-collapse ul li.current-menu-item a::after,
.navbar-collapse ul li a:hover::after {
  width: 0;
}
 */
.navbar-collapse ul li.menu-item-has-children a {
  padding-right: 10px !important;
}

.sub-menu {
  background: #008c97;
  z-index: 1;
  list-style: none;
  padding: 10px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 200px;
}

.navbar-collapse ul li .sub-menu li {
  margin: 0 !important;
  padding: 0 !important;
}

.navbar-collapse ul li .sub-menu li a {
  display: block;
  padding: 7px 0 !important;
  color: var(--color-black);
  font-size: 13px;
  font-weight: 400;
}

.navbar-collapse ul li .sub-menu li a::before {
  width: 0;
  left: 0;
  right: auto;
}

.navbar-collapse ul li .sub-menu li a:hover::before {
  width: 100%;
}

@media screen and (min-width:992px) {



  .navbar-collapse ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 9;
    top: 100%;
  }

  .sticky .navbar-collapse ul li:hover .sub-menu {
    top: calc(100% + 5px)
  }

  /* .sub-menu{

        opacity: 0; visibility: hidden; position: absolute; top: 100%;

        transition: all 300ms ease-in-out;

        left: 0; padding: 10px 15px;

        width:220px;

    }  */

  .navbar-nav .dropdown-menu {

    background: var(--color-main);

    top: 42px !important;

    display: block !important;

    opacity: 0;
    padding: 15px;

    visibility: hidden;

    transition: all 300ms ease-in-out;

    transform: scale(0.5);

    transform-origin: left top;

  }

  .dropdown-menu.show {

    display: block;

    top: 50px !important;

    opacity: 1;

    visibility: visible;

    transform: scale(1);

  }

  .navbar-nav .dropdown-menu::before {

    content: "";

    position: absolute;

    top: -13px;

    left: 15px;

    width: 0;

    height: 0;

    border-style: solid;

    border-width: 0 12px 13px 12px;

    border-color: transparent transparent var(--color-main) transparent;

  }

  .navbar-collapse ul li .dropdown-menu .dropdown-item {
    padding: 8px !important;
    color: var(--color-white);
    width: 240px;
    font-size: 14px;
    text-wrap: wrap;
  }

  .dropdown-menu.show {
    top: 98% !important;
  }

  .navbar-collapse ul li .dropdown-menu .dropdown-item:focus,
  .navbar-collapse ul li .dropdown-menu .dropdown-item:hover,
  .navbar-collapse ul li .dropdown-menu .dropdown-item:active {
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .navbar-collapse ul li .dropdown-menu li:not(:last-child) {
    margin-right: 0px;
  }

}

/* =======HOME BANNER========= */
.home-slider .owl-nav .owl-prev {
  left: 5%;
  background-color: rgba(255, 255, 255, 0.5) !important;
  z-index: 2;
}

.home-slider .owl-nav .owl-next {
  right: 5%;
  background-color: rgba(255, 255, 255, 0.5) !important;
  z-index: 2;
}

.home-slider .owl-nav .owl-next:hover,
.home-slider .owl-nav .owl-prev:hover {
  background-color: #fff !important;
}

.bannerbox {
  position: relative;
}

.banner-text {
  position: absolute;
  left: 0;
  top: 12%; 
  width: 100%;
  text-align: center;
  z-index: 1;
}

.banner-text h3 {
  color: #102746;
  font-size: 22px;
  line-height: normal;
  font-weight: 400;
}

.banner-text :where(h1, h2) {
  color: var(--color-dark);
  font-size: 56px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 0;
}

.bannertextwrap {
  max-width: 780px;
  color: var(--color-gray);
  font-size: 13px;
  line-height: 21px;
  margin: 0 auto;
}

.bannerimg {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 40%;
}

.bannerimg img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 2s ease-in-out;
}

/* .bannerimg::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: all 2s ease-in-out;
    z-index: 1;
    opacity: 0.4;
}  */
/* ===INNER BANNER==== */
.innerBanner {
  position: relative;
}

.innerBannerImg {
  height: 300px;
  position: relative;
}

.innerBannerImg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-color: #000000;
}

.innerBannerImg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.innerBannerTxt {
  position: absolute;
  bottom: 40%;
  transform: translateY(50%);
  left: 0;
  width: 100%;
  text-align: center;
}

.innerBannerWrap {
  display: inline-block;
  background: var(--color-white);
  padding: 10px 20px;
  border-radius: 5px;
  position: relative;
}

.innerBannerWrap h1 {
  color: var(--color-dark-blue);
  margin-bottom: 0;
}

.separator {
  margin: 0 4px;
}

.breadcrumbs {
  background-color: transparent;
  display: flex;
  padding: 0;
  margin-bottom: 0;
  justify-content: center;
  color: var(--color-dark);
  font-size: 12px;
  font-weight: 400;
  list-style: none;
}

.breadcrumbs a {
  color: var(--color-gray);
}

.breadcrumbs a:hover {
  color: var(--color-black);
}

/* ======SOCIAL====== */
footer .social a i {
  color: var(--color-black);
  background: #fff !important;
  font-size: 14px;
  width: 30px;
  height: 30px;
}

footer .social a i:hover {
  color: var(--color-black);
}

footer .social {
  margin-left: -6px;
}

footer .social a {
  padding: 0 6px;
}

.social a {
  flex-shrink: 0;
  padding: 0 4px;
  display: inline-flex;
}

.social a i {
  background-color: #101010;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 100%;
  transition: all 300ms ease-in-out;
}

.social a:hover .fa {
  color: #101010;
  background-color: #fff;
}

/* ==========loader common css========== */
.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-off.loaderWrap {
  opacity: 0;
  visibility: hidden;
}

/* ============Loader One CSS Start=============== */
.loader:after, .loader {
  color:var(--color-main);
}

.loader {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 68px;
  height: 68px;
}

.loader:before,
.loader:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}

.loader:after {
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes spin {

  0%,
  100% {
    box-shadow: 0.5em 0px 0 0px currentcolor;
  }

  12% {
    box-shadow: 0.5em 0.5em 0 0 currentcolor;
  }

  25% {
    box-shadow: 0 0.5em 0 0px currentcolor;
  }

  37% {
    box-shadow: -0.5em 0.5em 0 0 currentcolor;
  }

  50% {
    box-shadow: -0.5em 0 0 0 currentcolor;
  }

  62% {
    box-shadow: -0.5em -0.5em 0 0 currentcolor;
  }

  75% {
    box-shadow: 0px -0.5em 0 0 currentcolor;
  }

  87% {
    box-shadow: 0.5em -0.5em 0 0 currentcolor;
  }
}

/* ============Loader One CSS End=============== */


/* ============Loader Two CSS Start=============== */
@keyframes loader {
  0% {
    transform: rotate(-45deg);
  }

  50% {
    transform: rotate(-135deg);
  }

  100% {
    transform: rotate(-225deg);
  }
}

@keyframes span-1 {
  0% {
    transform: translate(0);
  }

  50% {
    transform: translate(-50px, 0);
    border-color: #ee4d68;
  }

  100% {
    transform: translate(0);
  }
}

@keyframes span-2 {
  0% {
    transform: translate(0);
  }

  50% {
    transform: translate(50px, 0);
    border-color: #875678;
  }

  100% {
    transform: translate(0);
  }
}

@keyframes span-3 {
  0% {
    transform: translate(0);
  }

  50% {
    transform: translate(0, -50px);
    border-color: #ff9900;
  }

  100% {
    transform: translate(0);
  }
}

@keyframes span-4 {
  0% {
    transform: translate(0);
  }

  50% {
    transform: translate(0, 50px);
    border-color: #00e4f6;
  }

  100% {
    transform: translate(0);
  }
}

.loader2 {
  width: 50px;
  height: 50px;
  position: relative;
  animation: loader 2s infinite ease-in-out;
}

.loader2 span {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 0;
  border: 4px solid #0b1b48;
}

.loader2 span:nth-child(1) {
  animation: span-1 2s ease-in-out infinite;
}

.loader2 span:nth-child(2) {
  animation: span-2 2s ease-in-out infinite;
}

.loader2 span:nth-child(3) {
  animation: span-3 2s ease-in-out infinite;
}

.loader2 span:nth-child(4) {
  animation: span-4 2s ease-in-out infinite;
}

/* ============Loader Two CSS End=============== */
/* New section  */

.section-title {
  max-width: 484px;
  margin: 0 auto 40px;
}

.section-title h2 {
  font-size: 28px;
  color: var(--color-black);
  font-family: var(--body-font);
  margin-bottom: 12px;
}

/* Story start  */
.story {
  background: url(../images/story-bg.jpg) no-repeat center;
  width: 100%;
  height: 100%;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #417EFA;
  z-index: -1;
  opacity: 94%;
}

.story-box {
  background: var(--color-white);
  padding: 28px;
  border-radius: 4px;
  height: 350px;
}

.story-logo img {
  height: 50px;
  width: auto !important;
}

.story .section-title h2 {
  color: var(--color-white);
}

.story .section-title p {
  color: #D1DBEE;
}

.story-box h4 {
  font-size: 18px;
  line-height: normal;
  margin: 18px 0;
  font-weight: 600;
  color: var(--color-black);
}

.story-box .para {
  color: #2A2C31;
  line-height: 24px;
}

/* Story End  */

/* service */
.service-wrapper {
  padding: 20px;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  height: 100%;
}

.service-wrapper h4 {
  font-size: 16px;
  color: var(--color-black);
  padding-left: 10px;
  font-weight: 600;
}

.service-icon {
  flex: 0 0 20%;
}

.service-icon img {
  height: 36px;
  width: 36px !important;
  object-fit: contain;
}

.service-slide.owlnav-active .owl-nav .owl-next {
  top: -34%;
  right: 0;
}

.service-slide.owlnav-active .owl-nav .owl-prev {
  right: 60px;
  left: auto;
  top: -34%;
}

/* ====== */
.package-box {
  min-height: 100%;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #DDE2E8;
  border-radius: 16px;
  padding: 30px 80px;
}

.packageimg-text h4 {
  color: #102746;
  font-size: 15px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 0;
  font-family: var(--body-font);
  transition: all 300ms ease-in-out;
}

.left-col-gap {
  padding-left: 80px;
}

.package-box h3 {
  font-size: 20px;
  line-height: normal;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 15px;
}

.packageimgcol:nth-child(1),
.packageimgcol:nth-child(4) {
  width: 58%;
}

.packageimgcol:nth-child(2),
.packageimgcol:nth-child(3) {
  width: 42%;
}

.packageimgcol {
  padding: 5px;
}

.packageimgrow {
  margin: -5px;
}

.packageimg-box {
  height: 100%;
  border: 1px solid #E7ECF2;
  border-radius: 4px;
  text-align: center;
  padding: 10px;
  transition: all 300ms ease-in-out;
}

.packageimg-box:hover h4 {
  color: var(--color-main);
}

.packageimg-box:hover {
  border-color: var(--color-main);
}

.packageimg-box .packageimg img {
  height: 180px;
  object-fit: contain;
}

.price-top {
  color: var(--color-main);
  font-weight: 600;
  font-family: var(--body-font);
  font-size: 18px;
  line-height: normal;
  margin-bottom: 12px;
}

.package-box h2 {
  margin-bottom: 12px;
}

.price-shortdesc {
  color: #102746;
  font-size: 14px;
  line-height: 23px;
  font-family: var(--body-font);
  font-weight: 400;
  margin-bottom: 14px;
}

.price-box {
  background-color: var(--color-ylw);
  color: #fff;
  border-radius: 8px;
  position: relative;
  padding: 14px 20px;
  height: 75px;
  transition: all 300ms ease-in-out;
}

.price-box:hover::before {
  border-color: #102746;
}

.price-box::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  bottom: 3px;
  right: 3px;
  border-radius: 8px;
  border: 1px dashed #FFFFFF;
  transition: all 300ms ease-in-out;
}

.price-box h3 {
  color: #102746;
  font-size: 23px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
  font-family: var(--body-font);
}

.price-box h3 span {
  font-weight: 400;
  color: #102746;
  font-size: 14px;
  line-height: normal;
}

.price-row {
  margin: -10px;
  max-width: 360px;
}

.price-row [class*="col"] {
  padding: 10px;
}

.price-bottomtxt {
  color: #102746;
  font-size: 14px;
  line-height: 23px;
  font-family: var(--body-font);
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 15px;
}

.readmore {
  font-weight: 500;
  font-size: 14px;
  font-family: var(--body-font);
  line-height: normal;
  padding: 0 0 3px;
  border-bottom: 1px solid var(--color-main);
  margin-top: 15px;
}

.readmore:hover {
  color: var(--color-ylw);
}

/* WHY CHOOSE US */
.why-choose .gap-bottom{
  grid-row-gap: 20px;
}
.wc-icon {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 100%;
  margin: 0 auto 4px;
}

.wc-box { 
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 40px #9C98981A;
  border-radius: 12px;
  padding: 10px 20px 20px;
  height: 100%;
}

.wc-text h4 {
  font-size: 16px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--color-dark);
}

.wc-text {
  font-family: var(--body-font);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 19px;
  text-align: center;
}

  

/* TESTIMONIAL */
.star .fa{
  color: #F8B84E;
  margin-right: 2px;
}
.tslider .owl-dots{margin-top: -20px;}
.tbox {
  padding: 20px;
  position: relative;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 40px #9C98981F;
  border-radius: 12px;

}
.tslider .tbox{
  margin-bottom: 50px;
}
.timg {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 10px;
}

.timg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcontent {
  color: #101010;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--body-font);
}

.tstmnlhead {
  border-bottom: 1px solid #f4f9ff;
  padding-bottom: 15px;
  margin-bottom: 13px;
}
.thead{
  color: #000000;
  font-size: 15px;
  font-weight: 500; 
  line-height: normal;
  margin-bottom: 0;
}
.tstmnlhead span {
  display: block;
  font-weight: 400;
  color: #575757;
  font-size: 12px;
  margin-top: 2px;
}
 
.gap-small{grid-row-gap: 10px;} 

/* News start  */
.sideimg a{display: block;}
.sideimg img{height: 70px; width: 100%; object-fit: cover;}
.news-box {
  padding: 10px 10px 15px;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  color: var(--color-black);
  height: 100%;
  transition: var(--transition);
  position: relative;
} 
.sidebar-col:nth-child(1){
  flex-shrink: 0;
  margin-right: 15px;
  width: 70px;
}
.news-box h3{
  margin: 10px 0 10px;
  color: var(--color-black);
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
}

.news-box:hover {
  border-color: var(--color-main);
}

.bimg {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 72%;
}

.bimg img {
  position: absolute;
  left: 0;
  top: 0;
  transition: var(--transition);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-box:hover .bimg img {
  transform: scale(1.1);
}
.blog-date{
  padding: 5px;
  background: var(--color-ylw);
  color: var(--color-black);
  line-height: normal;
  font-size: 10px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
}

/* News End  */

/* Partner start  */
.partner-logo {
  max-width: 80%;
}

.partners {
  background: #F5F5F5;
}

/* Our Partner end  */ 

/* Footer start  */
.footer-main{overflow: hidden;}
.ft-logo {   
  display: block;
  max-width:160px;
}

.footer-top {
  padding: 60px 0 50px 0;
}

.footer-top ul {
  margin: 0;
  padding: 0;
}

.footer-top h3{
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--color-dark);
}
.footer-top ul li {
  list-style: none;
  margin: 8px 0;
  font-size: 13px;
  color: #393838;
  font-family: var(--body-font);
  font-weight: 400;
}
.footer-top ul li:last-child{margin-bottom: 0;}

.footer-top ul li a {
  color: inherit;
  display: block;
  margin: 0;
}
.footer-top ul li a:hover{color: var(--color-main);}
ul.social-icon li{margin: 0 !important; padding: 3px !important;}
ul.social-icon li a .fa{
  width: 30px;
  font-size: 12px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  border-radius: 100%;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #E9E9E9;
  transition: all 300ms ease-in-out;
}
ul.social-icon li a:hover .fa{
  color: #fff;
  background-color: var(--color-main);
}

.contact-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-footer ul li {
  margin: 0;
  padding: 0 0 0 40px;
  position: relative;
}

.contact-footer ul li .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: var(--color-ylw);
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.contact-footer ul li p {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--color-gray);
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
}

.contact-footer ul li a {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--color-black);
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
}


.footer-bottom {
  padding: 0 0 18px 0;  
}

.footer-bottom p {
  color: #393838;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
}

.footer-bottom p a {
  color: var(--color-black);
}
hr{opacity: 0.7;}
.footer-bottom p a:hover {
  text-decoration: underline;
}

.social-icon li {
  list-style: none;
  padding-right: 16px;
}

.social-icon li {
  list-style: none;
  padding-right: 24px;
}

.social-icon a {
  color: var(--color-black);
}

.social-icon img {
  height: 12px;
  width: 12px;
  object-fit: contain;
  vertical-align: baseline;
}

/* Footer end  */
.sameheight.owl-carousel .owl-stage {
  display: flex;
  justify-content: center;
}

.sameheight .item {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  padding: 1px;
}

/* =====contact page===== */
.contact-wrap {
  background-color: #fff;
  padding: 30px;
}


.map {

  background: #000;

  height: 420px;

}

.map iframe {

  width: 100%;

  margin-bottom: 35px;

  opacity: 0.7;

  height: 100%;

}
 

.left-contact iframe {

  width: 100%;

  height: 100%;

}

.right-contact img {

  height: 100%;

  object-fit: cover;

  -webkit-transition: all 600ms ease-in-out;

  -moz-transition: all 600ms ease-in-out;

  transition: all 600ms ease-in-out;

}

.right-contact {

  overflow: hidden;

}

.right-contact:hover img {

  transform: scale(1.1) rotate(3deg);

}

.contact-wrap {

  padding: 40px 30px 40px 40px;

  background-color: #fff;

}

.contact-wrap .form-control {

  color: #000000;

  font-size: 15px;

  font-weight: 600;

  border-bottom: 2px solid #ccc;

}

.contact-wrap .form-control::placeholder {

  font-size: 15px;

  font-weight: 600;

  opacity: 1;

}

.wpcf7 form.invalid .wpcf7-response-output {
  display: none;
}



.contact-box {

  font-size: 20px;

  display: flex;

  border-radius: 10px;

  line-height: normal;

  flex-direction: column;

  align-items: center;

  text-align: center;

  padding: 20px;

  height: 100%;

  background: #fff;

}

.contact-box a {
  color: inherit;
}

.contact-box a:hover {
  color: var(--color-main);
}

.contact-box span {

  flex-shrink: 0;

  margin-bottom: 15px;

  width: 50px;

  height: 50px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: var(--color-main);

  color: #fff;

  font-size: 23px;

  border-radius: 100%;

}

/* ========================

    CONTACT PAGE DESIGN

=========================== */

.contact-form {

  padding: 50px 40px;
  background: #f3f6ff;
  background-size: cover;
  position: relative;
  border-radius: 16px;

}
/* .contact-form::before{
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  border-radius: 16px;
  border: 1px dashed #FFFFFF;
  transition: all 300ms ease-in-out;
} */
.contact-form h2 { 
  font-size: 24px; 
  line-height: normal; 
}

.contact-form label {
  margin-bottom: 15px;
  display: block;
}

.submit-btn:hover {

  background-color: var(--color-white) !important;
  color: var(--color-main) !important;

}

.contact-form .submit-btn {
  background-color: var(--color-main) !important;
  color: var(--color-white) !important;
  border: none !important;
  padding: 0 25px !important;
  outline: none !important;
  height: 42px;
  font-weight: 400;
  font-size: 14px !important;
  line-height: 40px !important;
  border-radius: 30px !important;
  cursor: pointer !important;
  -webkit-transition: all 300ms ease-in-out !important;
  -moz-transition: all 300ms ease-in-out !important;
  transition: all 300ms ease-in-out !important;
}

.contact-form-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
}

.contact-form-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
}

/* BLOG PAGE SINGLE */
.navigation.post-navigation {
  display: none;
}

.singleimg {
  float: left;
  margin: 0 30px 15px 0;
  max-width: 350px;
}
.singleimg img{
  border-radius: 8px;
  box-shadow: 5px -5px 1px #ffcd62;
}
.newdetails h1,
.newdetails h2 {
  font-size: 22px;
  line-height: normal;
  margin-bottom: 8px;
}

.comments-title,
.comment-reply-title {
  font-size: 22px;
}
.reply .comment-reply-link{
  padding: 3px 6px;
  background: #fff;
  line-height: normal;
  color: #00b5c3;
  border-radius: 4px;
  font-size: 12px;
  margin-top: 5px;
}

.comments-area {
  padding: 30px;
  margin: 0;
  border-radius: 8px;
  background-color: var(--color-main);
}
.comments-area p label{font-size: 13px; line-height: normal; margin-bottom: 2px;}

.recent_blog h3 {
  font-size: 13px;
  line-height: 15px;
}

.recent_blog h3 a {
  color: inherit;
}

.post_date {
  font-size: 12px;
  margin-bottom: 4px;
}

.recent_carousel {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
}

.recent_blog {
  background-color: #f3f7ff !important;
}

.form-submit .submit {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid var(--color-ylw) !important;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 0 20px;
  outline: none !important;
  font-family: var(--btn-font);
  letter-spacing: 0;
  color: var(--color-black) !important;
  position: relative;
  height: 40px;
  line-height: 38px;
  min-width: 110px;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--color-ylw) !important;
}

.form-submit .submit:where(:hover, :focus, :active) {
  background-color: var(--color-white) !important;
  color: var(--color-main) !important;
  border-color: var(--color-white) !important;
}

.wpcf7-not-valid-tip {
  font-size: 13px;
}

.wpcf7-not-valid-tip+.wpcf7-not-valid-tip {
  display: none;
}

.comment-form>p {
  margin-bottom: 12px;
}
.comment-form>p a{color: #ffcd62;  }
.comment-form>p textarea {
  border: 1px solid #ccc;
  background-color: #99e1e7 !important;
  outline: none !important;
  padding: 10px !important;
  border-radius: 4px !important;
  border-color: #99e1e7 !important;
  font-size: 12px !important;
}

.breadcrumb_bottom {
  display: flex;
  margin-top: 8px;
  justify-content: center;
}

.site-main {
  margin: 0;
  padding: 0;
}

.error-404 a {
  padding: 12px 15px;
  border-radius: 4px;
  background-color: var(--color-white);
}

.error-404 h1.page-title {
  color: var(--color-white);
}

.others-section {
  background-color: #F3F7FF;
}

/* .others-section .item>div {
  background-color: #fff;
} */

.form-wrap {
  padding: 20px;
  background-color: #f3f7ff;
}
 
.repeat-sec .bglight:nth-child(odd) {
  background-color: #fff;
}

.repeat-sec .bglight:nth-child(odd) .row {
  flex-direction: row-reverse;
}

.repeat-sec .bglight:nth-child(odd) .about-img {
  text-align: right;
}

/* =================== */
.order-form h3{
  font-size: 22px;
  line-height: normal;
  margin-bottom: 0;
  color: #000;
}
.order-form label, .order-form label span{width: 100%; margin: 0;}
.order-img{width: 100%; height: 100%; object-fit: cover; position: absolute;left: 0; top: 0;}
.order-form a{position: relative; color: var(--color-ylw);}
.order-form h4{
  font-size: 14px;
  line-height: normal;
  color: #000;
  margin-bottom: 5px;
  margin-top: 5px;
}
.order-form .form-row{
  grid-row-gap: 10px;
}
input[type=submit]{outline: none !important;}
.order-form input[type=submit]{
  color: var(--color-white) !important;
  background-color: var(--color-main) !important;
  border: 1px solid var(--color-main) !important;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--body-font);
  height: 46px;
  line-height: 44px;
  padding: 0 22px;
  min-width: 150px;
  text-transform: capitalize;
  border-radius: 30px;
  margin-left: auto;
  margin-top: 10px;
}
.order-form input[type=submit]:hover{
  color: var(--color-main) !important;
  background-color: var(--color-white) !important;
  border: 1px solid var(--color-main) !important;
}
.order-form{
  padding: 40px; 
  background:#f3f6ff;
  background-size: 100%;
  position: relative;
  border-radius: 16px;
}
.order-form h2{color: var(--color-main);}
/* .order-form::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  border-radius: 16px;
  border: 1px dashed #FFFFFF;
  transition: all 300ms ease-in-out;
} */
.order-form input[type=radio]{
  border: 1px solid #ccc;
  outline: none !important;
  width: 18px;
  height: 18px;
}
.order-form input[type=radio]:after{ 
  left: 3px;
  top: 3px; 
  width: 10px;
  height: 10px; 
  background: #05747c;
}
.order-form .wpcf7-list-item{
  align-items: center;
  display: inline-flex; 
  grid-gap: 3px;
  font-size: 14px;
}
.order-form .wpcf7-list-item:first-child{margin-left: 0;}
 
.cms-img img{position: relative; width: 330px; height: 330px; border-radius: 100%; object-fit: cover; box-shadow: 5px -5px 1px #ccc;}
 
/* .cms-img img{
  border-radius: 8px;
  box-shadow: 5px -5px 1px #ffcd62;
} */
.cms-text ul, .single-content ul{
  padding: 0;
  list-style: none;
}
.cms-text ul li, .single-content ul li{
  padding-left: 24px;
  background: url(../images/check-mark.png) no-repeat left top 3px / 18px;
  margin-bottom: 6px;
}

.video-wrap{
  position: relative;
  padding-top: 72%;
  width: 100%;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.video-wrap iframe{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100% !important;
}
.video-box{
  padding: 10px;
  background-color: #f5f5f5;
  text-align: center;
  height: 100%;
  border-radius: 8px;
}
.video-box h3{
  color: #3e3e3e;
  margin: 0;
  padding: 10px;
  line-height: 21px;
  font-size: 17px;

}
.image-sec img{
  border: 5px solid var(--color-ylw);
  border-radius: 6px;
}
select.form-control{padding-right: 25px !important;}

.comment-meta{
  color: #fff;
}
.comments-area.show-avatars .comment-metadata{
  color: #fff;
  font-size: 12px;
  padding-top: 3px;
}
.comments-area.show-avatars .comment-metadata a{color: inherit;}
.comments-area.show-avatars .comment-metadata a.comment-edit-link{
  padding: 3px 6px;
  background: #fff;
  line-height: normal;
  color: #00b5c3;
  border-radius: 4px;
}
.comment-body{margin-bottom: 20px;}
.comment-meta{padding: 0; margin: 0;}
.comment-content{
  padding: 10px;
  margin: 0;
  border-radius: 6px;
  background: #06c6d5;
  margin-left: 85px;
  font-size: 14px;
  line-height: 20px;
}
.comment-content a{color: var(--color-ylw);}
.comment-meta .comment-author .fn{
  font-size: 18px;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #01ab01;
  color: #01ab01;
  background: #fff;
  text-align: center;
}
.bnrpara ul{
  padding: 0; list-style: none;
  margin: 0;
}
/* ======================= */
.loan-content{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 40px #9C989829;
  border-radius: 12px;
  padding: 15px;
  max-width: 90%;
  margin-top: -80px;
  position: relative;
  font-size: 14px;
  line-height: 20px;
}
.loan-content h3{
  color: var(--color-dark);
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.loan-img{
  position: relative;
  padding-top: 120%;
  overflow: hidden;
  border-radius: 16px;
}
.loan-img img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loan-content .para{
  font-size: 13px;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}
/* =================== */
.home-about{
  background-color: #F8FAFC;
}
.home-about h3{font-size: 16px;font-weight: 500; color: var(--color-main);}
.home-about h2{
  max-width: 440px; 
}
.home-about h2, .sec-head h2, .apply-loan h2{ 
  font-size: 40px;
  line-height: normal;
  margin-bottom: 15px;
}
.about-img img{
  width: 100%;
  height: 100%;
  border-radius: 50px;
  box-shadow: -20px 20px 0 #EFF2F8;
  object-fit: cover;
}
.why-img {
    border-radius: 50px;
    overflow: hidden;
}
.why-choose .sec-head h2{max-width: 400px;}
.apply-loan{
  background: var(--color-main) url(../images/bg-blue.png) no-repeat center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  padding: 85px 0;
}
.apply-loan h2{color: #fff; max-width: 440px;}
.home-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}
.apply-loan p{
  color: #B4BED6;
}
@media screen and (min-width:1466px) {
  .home-img {
    position: absolute;
    right: 0;
    bottom: -80px;
    width: 60%;
    height: 570px;
    object-fit: contain;
    object-position: right bottom;
}
}
@media screen and (min-width:1800px) {
  .home-img { 
    bottom: -180px;
    width: 45%;
    height: 710px;
    object-position: right bottom;
}
}


.bd_applyform .form-row label {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 10px;
}

.bd_applyform .wpcf7-radio.form-control {
  border: 0;
  background: transparent;
  padding: 0;
}

.bd_applyform .wpcf7-radio.form-control label {
  margin: 0;
}

.bd_applyform .wpcf7-radio.form-control label input[type="radio"] {
  top: 4px;
  position: relative;
  margin-right: 5px;
}
.bd_applyform .property > p {
  margin-bottom: 0;
}

.contact-box h3 {
  font-size: 30px;
  line-height: 36px;
}

.contact-box p a {
  color: #fff;
}
.contact-box ul.social-icon li a .fa {
  width: 40px;
  height: 40px;
  line-height: 40px;
}