/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background: #f8fafc;
}

a {
  text-decoration: none;
  transition: 0.5s;
  color: #111111;
}

a:hover,
a:focus {
  color: #1c2d58;
  text-decoration: none;
}

button {
  outline: 0 !important;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #606060;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

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

i {
  line-height: normal;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-50 {
  padding-bottom: 50px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111111;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}

.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

/*================================================
Default CSS
=================================================*/
.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background-color: #4f85bd;
  color: #ffffff;
  transition: 0.5s;
  border-radius: 5px;
  opacity: 1;
  font-weight: 400;
  font-size: 16px;
  padding-left: 45px;
  padding-right: 45px;
  padding-top: 12px;
  padding-bottom: 12px;
}

nav .default-btn {
  padding-left: 10px;
  padding-right: 28px;

}

.default-btn span {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #111111;
  color: #ffffff;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
  opacity: 1;
}

.default-btn:hover {
  color: #ffffff !important;
}

.default-btn:hover span {
  width: 225%;
  height: 562.5px;
}

.default-btn i {
  font-size: 12px;
  position: relative;
  top: -1px;
  margin-left: 10px;
}

/*================================================
Section Title CSS
=================================================*/
.section-title {
  text-align: center;
  margin-bottom: 45px;
  width: 70%;
  margin: auto;
}

.section-title span {
  color: #1c2d58;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 14px;
}

.section-title p {
  max-width: 570px;
  margin: auto;
}

/*================================================
Navbar Area CSS
=================================================*/
.main-responsive-nav {
  display: none;
}

.main-navbar {
  padding-top: 0;
}

.main-navbar .container-fluid {
  width: 96%;
  margin: auto;
}

.main-navbar .navbar {
  transition: 0.5s;
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.main-navbar .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.main-navbar .navbar .navbar-brand h1 {
  color: #ffffff;
  margin-bottom: 0;
}

.main-navbar .navbar .navbar-brand img {
  max-width: 240px !important;
}

.main-navbar .navbar .navbar-nav {
  margin: auto;
}

.navbar-expand-md .navbar-collapse {
  justify-content: space-between;

}

.main-navbar .navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}

.main-navbar .navbar .navbar-nav .nav-item a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  text-transform: capitalize;
  padding-left: 0;
  padding-right: 0;
  padding-top: 25px;
  padding-bottom: 25px;
}

.main-navbar .navbar .navbar-nav .nav-item a i {
  position: relative;
  top: 3px;
  display: inline-block;
  margin-left: -5px;
  margin-right: -3px;
}

.main-navbar .navbar .navbar-nav .nav-item a:hover,
.main-navbar .navbar .navbar-nav .nav-item a:focus,
.main-navbar .navbar .navbar-nav .nav-item a.active {
  color: #5893cd;
}

.main-navbar .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:hover a,
.main-navbar .navbar .navbar-nav .nav-item.active a {
  color: #5893cd;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
  border: none;
  top: 74px;
  left: 0;
  z-index: 99;
  opacity: 0;
  width: 250px;
  display: block;
  border-radius: 0;
  padding: 10px 0;
  margin-top: 15px;
  position: absolute;
  visibility: hidden;
  background: #ffffff;
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li {
  margin: 0;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
  padding: 10px 20px;
  position: relative;
  display: block;
  color: #111111 !important;
  text-transform: capitalize;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 500;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  margin: 0;
  position: absolute;
  top: 50%;
  font-size: 20px;
  transform: translateY(-50%);
  right: 15px;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #5893cd !important;
  letter-spacing: 1px;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -250px;
  margin-top: 15px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #111111 !important;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #1c2d58;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 250px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #111111 !important;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1c2d58;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -250px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #111111;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1c2d58;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 250px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #111111;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1c2d58;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -250px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #111111;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1c2d58;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 250px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #111111;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1c2d58;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #1c2d58;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #1c2d58;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #1c2d58;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #1c2d58;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: #1c2d58;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #1c2d58;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-navbar .navbar .others-options {
  margin-left: 30px;
}

.main-navbar .navbar .others-options .option-item {
  margin-right: 30px;
  position: relative;
}

.main-navbar .navbar .others-options .option-item:last-child {
  margin-right: 0;
}

.main-navbar .navbar .others-options .option-item:last-child::before {
  display: none;
}

/* .main-navbar .navbar .others-options .option-item::before {
  position: absolute;
  right: -15px;
  top: 0;
  width: 1px;
  content: "";
  height: 28px;
  background-color: #dadada;
} */

.main-navbar .navbar .others-options .option-item:nth-child(2)::before {
  display: none;
}

.main-navbar .navbar .others-options .option-item .search-btn {
  cursor: pointer;
  transition: 0.5s;
  color: #111111;
  font-size: 20px;
  font-weight: 600;
}

.main-navbar .navbar .others-options .option-item .close-btn {
  cursor: pointer;
  display: none;
  transition: 0.5s;
  width: 20px;
  color: #111111;
  font-size: 18px;
}

.main-navbar .navbar .others-options .option-item .close-btn.active {
  display: block;
}

.main-navbar .navbar .others-options .option-item .info {
  position: relative;
  padding-left: 45px;
}

.main-navbar .navbar .others-options .option-item .info i {
  font-size: 30px;
  color: #1c2d58;
  position: absolute;
  left: 0;
  top: 8px;
}

.main-navbar .navbar .others-options .option-item .info span {
  color: #606060;
}

.main-navbar .navbar .others-options .option-item .info p {
  font-weight: 500;
  margin-bottom: 0;
  font-family: "Rubik", sans-serif;
}

.main-navbar .navbar .others-options .option-item .info p a {
  color: #111111;
}

.main-navbar .navbar .others-options .option-item .default-btn {
  margin-top: 5px;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  /* background-color: #ffffff !important; */
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.search-overlay {
  display: none;
}

.search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  background: #ffffff;
  z-index: 2;
  right: 0;
  padding: 20px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-top: 25px;
}

.search-overlay.search-popup .search-form {
  position: relative;
}

.search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #eeeeee;
  color: #111111;
  outline: 0;
  transition: 0.5s;
  padding-top: 4px;
  padding-left: 10px;
}

.search-overlay.search-popup .search-form .search-input:focus {
  border-color: #1c2d58;
}

.search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: transparent;
  border: none;
  width: 50px;
  outline: 0;
  color: #606060;
  transition: 0.5s;
  padding: 0;
}

.search-overlay.search-popup .search-form .search-button:hover,
.search-overlay.search-popup .search-form .search-button:focus {
  color: #1c2d58;
}

@media only screen and (max-width: 991px) {
  .main-responsive-nav {
    display: block;
  }

  .main-responsive-nav .main-responsive-menu {
    position: relative;
  }

  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
  }

  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a.active {
    color: #1c2d58;
  }

  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }

  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 14px;
  }

  .main-responsive-nav .main-responsive-menu.mean-container .navbar-nav {
    overflow-y: scroll;
    height: 336px;
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }

  .main-responsive-nav .mean-container a.meanmenu-reveal {
    color: #ffffff;
  }

  .main-responsive-nav .mean-container a.meanmenu-reveal span {
    background: #ffffff;
  }

  .main-responsive-nav .logo {
    position: relative;
    width: 50%;
    z-index: 999;
  }

  .navbar-area {
    background-color: #ffffff;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .main-navbar {
    display: none;
  }
}

/*================================================
Main Banner Area CSS
=================================================*/
.main-banner-area {
  background-image: url(../../assets/img/main-banner.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
  padding-top: 200px;
}

.main-banner-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.5;
}

.main-banner-area .container-fluid {
  max-width: 1470px;
}

.main-banner-area.bg-two {
  background-image: url(../../assets/img/main-banner2.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 870px;
  padding-top: 0;
}

.main-banner-area.bg-two::before {
  display: none;
}

.main-banner-area.bg-two .main-banner-content {
  max-width: 720px;
}

.main-banner-area.bg-two .main-banner-content span {
  color: #1c2d58;
}

.main-banner-area.bg-two .main-banner-content h1 {
  color: #111111;
}

.main-banner-area.bg-two .main-banner-content p {
  color: #606060;
  max-width: 650px;
}

.main-banner-area.bg-two .main-banner-content .banner-btn {
  margin-top: 30px;
}

.main-banner-area.bg-two .banner-social-buttons {
  position: absolute;
  left: 45px;
  right: auto;
  top: unset;
  bottom: 50px;
  transform: translateY(-50px);
  transform: unset;
}

.main-banner-area.bg-two .banner-social-buttons ul li {
  color: #111111;
}

.main-banner-area.bg-two .banner-social-buttons ul li span {
  margin-right: 30px;
  position: relative;
}

.main-banner-area.bg-two .banner-social-buttons ul li span::before {
  position: absolute;
  right: -38px;
  top: 10px;
  width: 30px;
  content: "";
  height: 1px;
  background-color: #111111;
}

.main-banner-area.bg-two .banner-social-buttons ul a {
  color: #111111;
}

.main-banner-area.bg-two .banner-social-buttons ul a:hover {
  color: #1c2d58;
}

.main-banner-area.bg-three {
  background-image: url(../../assets/img/main-banner3.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 870px;
  padding-top: 0;
  background-attachment: unset;
}

.main-banner-area.bg-three::before {
  display: none;
}

.main-banner-area.bg-three .main-banner-content {
  max-width: 100%;
}

.main-banner-area.bg-three .main-banner-content span {
  color: #1c2d58;
}

.main-banner-area.bg-three .main-banner-content h1 {
  color: #111111;
  font-size: 60px;
  margin-top: 0;
}

.main-banner-area.bg-three .main-banner-content p {
  color: #606060;
  max-width: 650px;
}

.main-banner-area.bg-three .main-banner-content .banner-btn {
  margin-top: 30px;
}

.main-banner-area.main-banner-video-area {
  overflow: hidden;
  z-index: 1;
}

.main-banner-area.main-banner-video-area .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
}

.main-banner-area.main-banner-video-area.bg-two {
  background-image: none;
}

.main-banner-area.main-banner-video-area.bg-two::before {
  display: block;
}

.main-banner-area.main-banner-video-area.bg-two .banner-social-buttons ul li {
  color: #ffffff;
}

.main-banner-area.main-banner-video-area.bg-two .banner-social-buttons ul li span::before {
  background-color: #ffffff;
}

.main-banner-area.main-banner-video-area.bg-two .banner-social-buttons ul a {
  color: #fff;
}

.main-banner-area.main-banner-video-area .main-banner-content {
  position: relative;
  z-index: 3;
}

.main-banner-area.main-banner-video-area .main-banner-content span {
  color: #ffffff;
}

.main-banner-area.main-banner-video-area .main-banner-content h1 {
  color: #ffffff;
}

.main-banner-area.main-banner-video-area .main-banner-content p {
  color: #ffffff;
  max-width: 650px;
}

.main-banner-content {
  max-width: 635px;
}

.main-banner-content span {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
}

.main-banner-content h1 {
  font-size: 68px;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 16px;
}

.main-banner-content p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 0;
}

.main-banner-content .banner-btn {
  margin-top: 45px;
}

.banner-social-buttons {
  position: absolute;
  right: -80px;
  top: 40%;
  transform: translateY(-40%);
  transform: rotate(-90deg);
  z-index: 1;
}

.banner-social-buttons ul {
  padding-left: 0;
  margin-bottom: 0;
}

.banner-social-buttons ul li {
  color: #ffffff;
  list-style-type: none;
  display: inline-block;
  margin-right: 20px;
}

.banner-social-buttons ul li:last-child {
  margin-right: 0;
}

.banner-social-buttons ul li span {
  margin-right: 30px;
  position: relative;
}

.banner-social-buttons ul li span::before {
  position: absolute;
  right: -38px;
  top: 10px;
  width: 30px;
  content: "";
  height: 1px;
  background-color: #ffffff;
}

.banner-social-buttons ul a {
  color: #ffffff;
}

.banner-social-buttons ul a:hover {
  color: #1c2d58;
}

.banner-social-buttons ul i {
  transform-origin: 100% 100%;
  transform: translate(-50%, -50%) rotate(270deg);
}

/*================================================
Approvals Area CSS
=================================================*/
.approvals-area {
  position: relative;
  z-index: 1;
  border-top: 1px solid #9ca2a0;
  margin-top: 200px;
}

.approvals-area .container-fluid {
  max-width: 1470px;
}

.approvals-area.bg-color {
  border-top: none;
  margin-top: 0;
  background-color: #fdfdfb;
}

.approvals-area.bg-color .container {
  max-width: 1140px;
}

.col-lg-4:last-child .approvals-content::before {
  display: none;
}

.approvals-content {
  position: relative;
  padding: 35px 20px 35px 60px;
}

.approvals-content::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  content: "";
  height: 100%;
  background-color: #9ca2a0;
}

.approvals-content .icon {
  position: absolute;
  left: 0;
  top: 38px;
}

.approvals-content .icon i {
  font-size: 40px;
  color: #1c2d58;
}

.approvals-content span {
  font-size: 18px;
  color: #f5f7fa;
}

.approvals-content p {
  font-size: 18px;
  color: #f5f7fa;
  margin-bottom: 0;
}

.approvals-item {
  background-color: #f5f4ef;
  padding-left: 50px;
  padding-right: 50px;
}

.approvals-item .approvals-content {
  position: relative;
  padding: 20px 20px 20px 60px;
}

.approvals-item .approvals-content::before {
  right: 40px;
  top: 20px;
  height: 60%;
}

.approvals-item .approvals-content .icon {
  top: 22px;
}

.approvals-item .approvals-content span {
  color: #606060;
}

.approvals-item .approvals-content p {
  color: #606060;
}

/*================================================
About Area CSS
=================================================*/
.about-area.bg-color {
  background-color: #fdfdfb;
}

.about-image {
  position: relative;
  text-align: left;
  padding-right: 100px;
  padding-bottom: 100px;
}

.about-image img {
  border-radius: 0;
}

.about-image img:nth-child(2) {
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 1;
}

.about-image .experience {
  background-color: #ffffff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  max-width: 470px;
  margin: auto;
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  padding: 40px;
  border-left: 2px solid #1c2d58;
}

.about-image .experience h4 {
  font-size: 80px;
  margin-bottom: 0;
  position: absolute;
  left: 50px;
  top: 35px;
  font-weight: 400;
}

.about-image .experience p {
  font-size: 28px;
  color: #111111;
  font-weight: 400;
  margin-bottom: 0;
  padding-left: 120px;
  line-height: 1.4;
  font-family: "Rubik", sans-serif;
}

.about-content span {
  color: #1c2d58;
}

.about-content h3 {
  font-size: 36px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 16px;
}

.about-content .section-title {
  width: 100%;
}

.about-content strong {
  font-size: 18px;
  color: #606060;
  font-weight: 400;
}

.about-content .about-list {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 25px;
}

.about-content .about-list li {
  list-style-type: none;
  color: #606060;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.about-content .about-list li:last-child {
  margin-bottom: 0;
}

.about-content .about-list li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #1c2d58;
  font-size: 20px;
}

.about-wrap {
  position: relative;
  width: 90%;
}

.about-wrap .about-shape {
  background-image: url(../../assets/img/about/shape.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: 0;
  right: 60px;
}

.about-wrap .about-shape .text {
  text-align: center !important;
  margin-top: 50px !important;
}

.about-wrap .about-shape .text h3 {
  font-size: 70px !important;
  color: #1c2d58;
  margin-bottom: 5px;
  line-height: 1;
}

.about-wrap .about-shape .text span {
  color: #111111;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
}

/*================================================
Process Area CSS
=================================================*/
.process-area {
  background-color: #f9fafb;
}

.process-area.bg-color {
  background-color: #fdfdfb;
}

.process-area.bg-color .container {
  max-width: 1140px;
}

.process-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
  margin-bottom: 30px;
}

.process-item::before {
  position: absolute;
  content: "";
  height: 65%;
  width: 90%;
  background-color: #fdebeb;
  left: 0;
  right: 0;
  margin: auto;
  top: -110px;
  z-index: -1;
  border-radius: 50%;
  transition: 0.5s;
}

.process-item .icon {
  margin-bottom: 20px;
  position: relative;
}

.process-item .icon i {
  display: inline-block;
  height: 90px;
  width: 90px;
  line-height: 90px;
  background-color: #ffffff;
  text-align: center;
  font-size: 50px;
  color: #1c2d58;
  border-radius: 50px;
  transition: 0.5s;
}

.process-item h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

.process-item:hover {
  transform: translateY(-10px);
}

.process-item:hover .icon i {
  background-color: #1c2d58;
  color: #ffffff;
}

.process-item.bg-top1 {
  margin-top: 30px;
}

.process-item.bg-top2 {
  margin-top: 0;
}

.process-item.bg-top3 {
  margin-top: 0;
}

.process-item.bg-top4 {
  margin-top: -30px;
}

.process-item-two {
  background-image: url(../../assets/img/process-shape.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  height: 290px;
  width: 290px;
  text-align: center;
  margin-bottom: 30px;
}

.process-item-two .text {
  position: absolute;
  top: 45px;
  padding-left: 35px;
  padding-right: 35px;
}

.process-item-two .text .icon img {
  height: 50px;
  color: #1c2d58;
}

.process-item-two .text h3 {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.process-item-two .text p {
  font-size: 15px;
  margin-bottom: 0;
}

/*================================================
Company Area CSS
=================================================*/
.company-area .container-fluid {
  padding-left: 0;
}

.company-area.bg-color .company-content {
  max-width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.company-image {
  background-image: url(../../assets/img/company.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.company-image img {
  display: none;
}

.company-content {
  max-width: 525px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.company-content h3 {
  font-size: 36px;
  margin-bottom: 50px;
}

.company-content .company-text {
  position: relative;
  padding-left: 70px;
  margin-bottom: 20px;
}

.company-content .company-text:last-child {
  margin-bottom: 0;
}

.company-content .company-text .icon {
  position: absolute;
  left: 0;
  top: 0;
}

.company-content .company-text .icon i {
  font-size: 50px;
  color: #1c2d58;
}

.company-content .company-text h4 {
  font-size: 25px;
  margin-bottom: 10px;
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
  background-color: #f9fafb;
}

.services-area.bg-color {
  background-color: #ffffff;
}

.services-area.bg-color .services-item {
  background-color: #f9fafb;
}

.services-item {
  text-align: center;
  background-color: #ffffff;
  padding: 20px 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 30px;
}

.services-item::before {
  position: absolute;
  content: "";
  height: 65%;
  width: 90%;
  background-color: #0d6efd29;
  left: 0;
  right: 0;
  margin: auto;
  top: -130px;
  z-index: -1;
  border-radius: 50%;
  transition: 0.5s;
}

.services-item .icon {
  margin-bottom: 20px;
  position: relative;
}

.services-item .icon i,
.services-item .icon img {
  display: inline-block;
  height: 90px;
  width: 90px;
  line-height: 90px;
  background-color: #ffffff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  text-align: center;
  font-size: 50px;
  color: #1c2d58;
  border-radius: 50px;
  transition: 0.5s;
}

.services-item .icon img {
  object-fit: contain;
  padding: 15px;
}

.services-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.services-item p {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.services-item .learn-btn {
  color: #1c2d58;
  background-color: transparent;
  border: 1px solid #1c2d58;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 5px;
}

.services-item .learn-btn i {
  transition: transform 0.3s ease;
  font-size: 16px;
  margin-top: 1px;
}

.services-item .learn-btn:hover {
  background-color: #1c2d58;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(28, 45, 88, 0.2);
}

.services-item .learn-btn:hover i {
  transform: translateX(4px);
}

.services-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.services-item:hover::before {
  background-color: #1c2d58;
}

.services-area.bg-color .services-item {
  background-color: #f9fafb;
  border: 1px solid #0d6efd29;
  border-radius: 12px;
}

/* Separate colors for each card's top design */
.services-area.bg-color .col-lg-3:nth-child(1) .services-item {
  border-color: #bfdbfe;
}

.services-area.bg-color .col-lg-3:nth-child(1) .services-item::before {
  background-color: #bfdbfe;
}

.services-area.bg-color .col-lg-3:nth-child(2) .services-item {
  border-color: #ddd6fe;
}

.services-area.bg-color .col-lg-3:nth-child(2) .services-item::before {
  background-color: #ddd6fe;
}

.services-area.bg-color .col-lg-3:nth-child(3) .services-item {
  border-color: #fed7aa;
}

.services-area.bg-color .col-lg-3:nth-child(3) .services-item::before {
  background-color: #fed7aa;
}

.services-area.bg-color .col-lg-3:nth-child(4) .services-item {
  border-color: #a7f3d0;
}

.services-area.bg-color .col-lg-3:nth-child(4) .services-item::before {
  background-color: #a7f3d0;
}

.services-area.bg-color .col-lg-3:nth-child(5) .services-item {
  border-color: #fbcfe8;
}

.services-area.bg-color .col-lg-3:nth-child(5) .services-item::before {
  background-color: #fbcfe8;
}

.services-area.bg-color .col-lg-3:nth-child(6) .services-item {
  border-color: #fef08a;
}

.services-area.bg-color .col-lg-3:nth-child(6) .services-item::before {
  background-color: #fef08a;
}

.services-area.bg-color .col-lg-3:nth-child(7) .services-item {
  border-color: #99f6e4;
}

.services-area.bg-color .col-lg-3:nth-child(7) .services-item::before {
  background-color: #99f6e4;
}

.services-area.bg-color .col-lg-3:nth-child(8) .services-item {
  border-color: #fecaca;
}

.services-area.bg-color .col-lg-3:nth-child(8) .services-item::before {
  background-color: #fecaca;
}

.services-area.bg-color .col-lg-3:nth-child(9) .services-item {
  border-color: #c7d2fe;
}

.services-area.bg-color .col-lg-3:nth-child(9) .services-item::before {
  background-color: #c7d2fe;
}

/* Separate icon colors for each card */
.services-area.bg-color .col-lg-3:nth-child(1) .services-item .icon i {
  color: #3b82f6;
}

.services-area.bg-color .col-lg-3:nth-child(2) .services-item .icon i {
  color: #8b5cf6;
}

.services-area.bg-color .col-lg-3:nth-child(3) .services-item .icon i {
  color: #f97316;
}

.services-area.bg-color .col-lg-3:nth-child(4) .services-item .icon i {
  color: #10b981;
}

.services-area.bg-color .col-lg-3:nth-child(5) .services-item .icon i {
  color: #ec4899;
}

.services-area.bg-color .col-lg-3:nth-child(6) .services-item .icon i {
  color: #eab308;
}

.services-area.bg-color .col-lg-3:nth-child(7) .services-item .icon i {
  color: #14b8a6;
}

.services-area.bg-color .col-lg-3:nth-child(8) .services-item .icon i {
  color: #ef4444;
}

.services-area.bg-color .col-lg-3:nth-child(9) .services-item .icon i {
  color: #6366f1;
}

/*================================================
Deserve Area CSS
=================================================*/
.deserve-item h3 {
  font-size: 36px;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.4;
}

.deserve-item .deserve-content {
  position: relative;
  padding-left: 80px;
  margin-top: 30px;
  background: #ffffff;
  padding-top: 25px;
  padding-right: 25px;
  padding-bottom: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.deserve-item .deserve-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.deserve-item .deserve-content::before {
  width: 2px;
  height: 100%;
  background-color: #e2e8f0;
  content: "";
  position: absolute;
  left: 35px;
  top: 50px;
  z-index: 1;
}

.deserve-item .deserve-content:last-of-type::before {
  display: none;
}

.deserve-item .deserve-content span {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: linear-gradient(135deg, #1c2d58 0%, #3a5b9e 100%);
  border: none;
  text-align: center;
  font-size: 20px;
  color: #ffffff;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 20px;
  box-shadow: 0 5px 15px rgba(28, 45, 88, 0.3);
  z-index: 2;
}

.deserve-item .deserve-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #1c2d58;
}

.deserve-item .deserve-content p {
  margin-bottom: 0;
  line-height: 1.8;
  color: #555;
}

.deserve-item .deserve-btn {
  margin-top: 25px;
}

.rate-form {
  padding: 50px 45px;
  background-color: #1c2d58;
}

.rate-form .rate-content {
  margin-bottom: 35px;
  text-align: center;
}

.rate-form .rate-content span {
  color: #ffffff;
}

.rate-form .rate-content h3 {
  font-size: 36px;
  color: #ffffff;
  margin-top: 10px;
}

.rate-form label {
  color: #ffffff;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 16px;
  margin-bottom: 5px;
}

.rate-form .form-group {
  margin-bottom: 15px;
}

.rate-form .form-group .form-control {
  background-color: #ffffff;
  border: none;
  box-shadow: unset;
  height: 50px;
  border-radius: 0;
  color: #606060;
  width: 100%;
  font-size: 16px;
}

.rate-form .form-group .nice-select {
  float: unset;
  line-height: 52px;
  color: #606060;
  text-transform: capitalize;
  font-weight: 400;
  padding-top: 0;
  padding-bottom: 0;
}

.rate-form .form-group .nice-select .list {
  background-color: #ffffff;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: -1px;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.rate-form .form-group .nice-select .list .option {
  transition: 0.6s;
  color: #606060;
  font-size: 14px;
  line-height: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 10px;
}

.rate-form .form-group .nice-select .list .option:hover {
  background-color: #1c2d58 !important;
  color: #ffffff;
}

.rate-form .form-group .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 500;
}

.rate-form .form-group .nice-select:after {
  right: 20px;
  border-bottom: 2px solid #111111;
  border-right: 2px solid #111111;
}

.rate-form .rate-btn {
  margin-top: 20px;
}

.rate-form .rate-btn .default-btn {
  background-color: #ffffff;
  color: #111111;
  width: 100%;
  padding: 15px 30px;
  cursor: pointer;
}

.rate-form.bg-fdebeb {
  background-color: #fdebeb;
}

.rate-form.bg-fdebeb .rate-content span {
  color: #606060;
}

.rate-form.bg-fdebeb .rate-content h3 {
  color: #111111;
}

.rate-form.bg-fdebeb label {
  color: #606060;
}

.rate-form.bg-fdebeb .rate-btn .default-btn {
  background-color: #1c2d58;
  color: #ffffff;
}

/*================================================
Projects Area CSS
=================================================*/
.projects-area {
  background-color: #f9fafb;
}

.projects-slider .projects-item .content {
  margin-top: 25px;
}

.projects-slider .projects-item .content h3 {
  font-size: 25px;
  margin-bottom: 0;
}

.projects-slider.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  left: -60px;
  top: 40%;
  transform: translateY(-40%);
  margin: 0;
  padding: 0;
  transition: 0.5s;
  font-size: 18px;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 0px;
  background-color: #ffffff;
  color: #111111;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  border-radius: 50px;
}

.projects-slider.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -60px;
}

.projects-slider.owl-theme .owl-nav [class*=owl-]:hover {
  color: #ffffff;
  background-color: #1c2d58;
}

.projects-slider.owl-theme .owl-nav {
  margin-top: 0;
}

/*================================================
Clients Area CSS
=================================================*/
.clients-area.bg-color {
  background-color: #1c2d58;
}

.clients-area.bg-color .clients-item {
  background-color: unset;
  margin-bottom: 0;
}

.clients-area.bg-color .clients-item .clients-image {
  position: relative;
}

.clients-area.bg-color .clients-item .clients-image img {
  width: auto;
  margin: auto;
}

.clients-area.bg-color .clients-item .clients-image .icon-1 {
  position: absolute;
  bottom: 0;
  right: 15px;
  left: auto;
}

.clients-area.bg-color .clients-item .clients-info-text {
  max-width: 720px;
}

.clients-area.bg-color .clients-item .clients-info-text p {
  color: #ffffff;
}

.clients-area.bg-color .clients-item .clients-info-text h3 {
  color: #ffffff;
}

.clients-area.bg-color .clients-item .clients-info-text span {
  color: #ffffff;
}

.clients-area.bg-color .container {
  max-width: 1140px !important;
}

.clients-area.bg-color .section-title span {
  color: #ffffff;
}

.clients-area.bg-color .section-title h2 {
  color: #ffffff;
}

.clients-area.bg-color .section-title p {
  color: #ffffff;
}

.clients-area.bg-color .clients-slider.owl-theme .owl-dots {
  right: 0;
}

.clients-area.bg-color .clients-slider.owl-theme .owl-dots .owl-dot span {
  border: 1px solid #ffffff;
}

.clients-area.bg-color .clients-slider.owl-theme .owl-dots .owl-dot span::before {
  background-color: #ffffff;
}

.clients-area.bg-color .clients-slider.owl-theme .owl-dots .owl-dot:hover span,
.clients-area.bg-color .clients-slider.owl-theme .owl-dots .owl-dot.active span {
  border: 1px solid #ffffff;
}

.clients-item {
  background-color: #ffffff;
  box-shadow: 1px 14px 20px 0 rgba(231, 60, 62, 0.09);
  padding: 40px;
  position: relative;
  margin-bottom: 30px;
}

.clients-item .info {
  position: relative;
  padding-left: 75px;
  margin-bottom: 30px;
}

.clients-item .info img {
  position: absolute;
  left: 0;
  top: 0;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
}

.clients-item .info h4 {
  font-size: 16px;
  color: #1c2d58;
  margin-bottom: 16px;
  position: relative;
  top: 10px;
}

.clients-item .info span {
  font-size: 15px;
}

.clients-item p {
  margin-bottom: 0;
  font-size: 17px;
}

.clients-item .icon {
  position: absolute;
  top: 20px;
  right: 25px;
}

.clients-item .icon i {
  color: #fdebeb;
  font-size: 100px;
}

.clients-slider .clients-item {
  padding: 0;
  box-shadow: unset;
}

.clients-slider .clients-item .clients-info-text p {
  font-size: 24px;
  color: #111111;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.5;
}

.clients-slider .clients-item .clients-info-text h3 {
  color: #1c2d58;
  font-size: 16px;
  margin-top: 20px;
}

.clients-slider .clients-item .clients-info-text span {
  color: #606060;
}

.clients-slider .clients-item .clients-image {
  position: relative;
}

.clients-slider .clients-item .clients-image img {
  width: auto;
}

.clients-slider .clients-item .clients-image .icon-1 {
  position: absolute;
  bottom: 55px;
  left: 80px;
}

.clients-slider .clients-item .clients-image .icon-1 i {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  background-color: #ffffff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  text-align: center;
  font-size: 50px;
  color: #1c2d58;
  border-radius: 50px;
  transition: 0.5s;
  cursor: pointer;
}

.clients-slider .clients-item .clients-image .icon-1 i:hover {
  background-color: #1c2d58;
  color: #ffffff;
}

.clients-slider.owl-theme .owl-dots {
  margin: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 80px;
  display: grid;
}

.clients-slider.owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  background-color: transparent;
  transition: 0.5s;
  border-radius: 50%;
  border: 1px solid #606060;
  position: relative;
}

.clients-slider.owl-theme .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #1c2d58;
  border-radius: 50%;
  margin: 4px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transform: scale(0);
}

.clients-slider.owl-theme .owl-dots .owl-dot:hover span,
.clients-slider.owl-theme .owl-dots .owl-dot.active span {
  border: 1px solid #1c2d58;
}

.clients-slider.owl-theme .owl-dots .owl-dot:hover span::before,
.clients-slider.owl-theme .owl-dots .owl-dot.active span::before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area {
  background-color: #fafbfc;
}

.partner-area.bg-color {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.partner-area.bg-f5f4ef {
  background-color: #f5f4ef;
}

.partner-item img {
  width: auto !important;
  margin: auto;
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area.bg-color {
  background-color: #fdfcf8;
}

.blog-item {
  transition: 0.5s;
  margin-bottom: 30px;
}

.blog-item .content {
  margin-top: 25px;
}

.blog-item .content span {
  font-size: 16px;
  color: #1c2d58;
  font-family: "Rubik", sans-serif;
}

.blog-item .content h3 {
  font-size: 25px;
  line-height: 1.4;
  transition: 0.5s;
  margin-top: 12px;
  margin-bottom: 14px;
}

.blog-item .content .blog-btn {
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  color: #111111;
  display: inline-block;
  font-weight: 500;
  transition: 0.5s;
}

.blog-item:hover .blog-btn {
  color: #1c2d58;
  letter-spacing: 1px;
}

.single-blog {
  margin-bottom: 30px;
}

.single-blog .post-meta {
  padding-left: 0;
  margin-top: 25px;
  margin-bottom: 16px;
}

.single-blog .post-meta li {
  list-style-type: none;
  color: #606060;
  font-weight: 500;
  display: inline-block;
  margin-right: 20px;
}

.single-blog .post-meta li:last-child {
  margin-right: 0;
}

.single-blog .post-meta li i {
  color: #1c2d58;
  margin-right: 5px;
}

.single-blog .post-meta li a {
  color: #606060;
}

.single-blog .content h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.single-blog .content p {
  margin-bottom: 0;
}

.single-blog .content .blog-btn {
  margin-top: 20px;
}

/*================================================
Choose Area CSS
=================================================*/
.choose-area {
  background-color: #f9fafb;
}

.choose-title span {
  color: #1c2d58;
}

.choose-title h2 {
  font-size: 36px;
  margin-top: 10px;
  margin-bottom: 14px;
}

.choose-image {
  position: relative;
  margin-top: 45px;
}

.choose-image .video-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 90px;
  background-color: #ffffff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  left: 45px;
  right: 0;
  margin: auto;
  bottom: -40px;
  transform: translateY(-135%);
  text-align: center;
}

.choose-image .video-btn i {
  font-size: 55px;
  position: relative;
  top: 10px;
  left: 0;
  color: #1c2d58;
  transition: 0.5s;
}

.choose-image .video-btn::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 80px;
  height: 80px;
  animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  border-radius: 50%;
  background: #1c2d58;
}

.choose-image .video-btn:hover,
.choose-image .video-btn .video-content .video-btn:focus {
  background-color: #1c2d58;
  color: #ffffff !important;
}

.choose-image .video-btn:hover i,
.choose-image .video-btn .video-content .video-btn:focus i {
  color: #ffffff;
}

@keyframes ripple {

  0%,
  35% {
    transform: scale(0);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/*================================================
Solution Area CSS
=================================================*/
.solution-area.bg-top {
  margin-bottom: -85px;
  position: relative;
  z-index: 1;
}

.solution-item {
  background: #f4f7f6;
  border-radius: 10px;
  padding-top: 65px;
  padding-bottom: 65px;
  padding-left: 50px;
  padding-right: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border-left: 5px solid #5484b7;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #e1edfb;
  border-left: 5px solid #5484b7;
}

.solution-item::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(0, 182, 122, 0.05);
  border-radius: 50%;
  z-index: -1;
}

.solution-item::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 30%;
  width: 150px;
  height: 150px;
  background: rgba(28, 45, 88, 0.03);
  border-radius: 50%;
  z-index: -1;
}

.solution-item .content {
  position: relative;
}

.solution-item .content::before {
  position: absolute;
  right: -35px;
  top: 0;
  width: 1px;
  content: "";
  height: 85px;
  background: #e0e0e0;
}

.solution-item .content h3 {
  font-size: 36px;
  color: #1c2d58;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.solution-item .solution-info {
  position: relative;
  padding-left: 85px;
  text-align: right;
}

.solution-item .solution-info i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  border-radius: 50px;
  background: #00b67a;
  color: #ffffff;
  font-size: 30px;
  position: absolute;
  left: 50px;
  top: -14px;
  box-shadow: 0 8px 15px rgba(0, 182, 122, 0.2);
  z-index: 1;
}

.solution-item .solution-info h3 {
  font-size: 36px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.solution-item .solution-info h3 a {
  color: #1c2d58;
  font-weight: 600;
  transition: all 0.3s ease;
}

.solution-item .solution-info h3 a:hover {
  color: #00b67a;
}

/*================================================
Best Services Area CSS
=================================================*/
.best-services-area {
  background-color: #f9fafb;
}

.best-services-area.bg-color {
  background-color: #ffffff;
}

.tab .tabs_item {
  display: none;
}

.tab .tabs_item:first-child {
  display: block;
}

.tabs-list {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 45px;
}

.tabs-list li {
  flex: 1 0 15.666667%;
  max-width: 20.666667%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  cursor: pointer;
  margin-right: 5px;
  margin-left: 5px;
}

.tabs-list li span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-size: 20px;
  color: #111111;
  transition: 0.5s;
}

.tabs-list li i {
  font-size: 60px;
  line-height: 1;
  color: #111111;
  transition: 0.5s;
}

.tabs-list li.current span {
  color: #1c2d58;
}

.tabs-list li.current i {
  color: #1c2d58;
}

.services-list-tab .tabs_item .services-tab-content {
  margin-bottom: 20px;
}

.services-list-tab .tabs_item .services-tab-content h3 {
  font-size: 25px;
  margin-bottom: 14px;
}

.services-list-tab .tabs_item .services-tab-content p {
  margin-bottom: 0;
}

.services-list-tab .tabs_item .services-tab-content.left {
  margin-bottom: 0;
}

.services-list-tab .tabs_item .list {
  padding-left: 0;
  margin-bottom: 20px;
}

.services-list-tab .tabs_item .list h3 {
  font-size: 25px;
  margin-bottom: 20px;
}

.services-list-tab .tabs_item .list li {
  color: #606060;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  list-style-type: none;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.services-list-tab .tabs_item .list li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 0;
  top: 5px;
  border-radius: 30px;
  background-color: #1c2d58;
}

.services-list-tab .tabs_item .list li:last-child {
  margin-bottom: 0;
}

.best-services-slider {
  position: relative;
}

.best-services-slider #thumbs {
  border-bottom: 1px solid #cbcbcc;
  margin-bottom: 40px;
}

.best-services-slider #thumbs .current .tabs-item {
  border-bottom: 1px solid #1c2d58;
}

.best-services-slider #thumbs .current .tabs-item i {
  color: #1c2d58;
}

.best-services-slider .tabs-item {
  transition: 0.5s;
}

.best-services-slider .tabs-item a {
  display: inline-block;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  transition: 0.5s;
  width: 100%;
  text-align: center;
  font-family: "Rubik", sans-serif;
}

.best-services-slider .tabs-item i {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  background-color: #ffffff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  text-align: center;
  font-size: 45px;
  color: #606060;
  border-radius: 50px;
  transition: 0.5s;
}

.best-services-slider .tabs-item span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 30px;
}

.best-services-slider .owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  left: 0;
  top: 95%;
  transform: translateY(-28%);
  margin: 0;
  padding: 0;
  transition: 0.5s;
  font-size: 18px;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 0px;
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #cbcbcc;
  border-radius: 50px;
  z-index: 1;
}

.best-services-slider .owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 0;
}

.best-services-slider .owl-theme .owl-nav [class*=owl-]:hover {
  color: #ffffff;
  background-color: #1c2d58;
  border: 1px solid #1c2d58;
}

.best-services-slider .owl-theme .owl-nav {
  margin-top: 0;
}

.best-services-slider .services-tabs-item .services-tab-content {
  margin-bottom: 20px;
}

.best-services-slider .services-tabs-item .services-tab-content h3 {
  font-size: 25px;
  margin-bottom: 14px;
  font-weight: 500;
}

.best-services-slider .services-tabs-item .services-tab-content p {
  margin-bottom: 0;
}

.best-services-slider .services-tabs-item .services-tab-content.left {
  margin-bottom: 0;
}

.best-services-slider .services-tabs-item .list {
  padding-left: 0;
  margin-bottom: 20px;
}

.best-services-slider .services-tabs-item .list h3 {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 500;
}

.best-services-slider .services-tabs-item .list li {
  color: #606060;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  list-style-type: none;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.best-services-slider .services-tabs-item .list li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 0;
  top: 5px;
  border-radius: 30px;
  background-color: #1c2d58;
}

.best-services-slider .services-tabs-item .list li:last-child {
  margin-bottom: 0;
}

/*================================================
Team Area CSS
=================================================*/


.team-area.bg-color {
  background-color: #ffffff;
}

.team-item {
  margin-bottom: 30px;
}

.team-item .image {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

.team-item .image .social {
  padding-left: 0;
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.team-item .image .social li {
  display: inline-block;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  margin-left: 1px;
  margin-right: 1px;
}

.team-item .image .social li a {
  display: block;
  width: 35px;
  height: 35px;
  background-color: #f4f5fe;
  text-align: center;
  position: relative;
  font-size: 20px;
  color: #111111;
  border-radius: 30px;
  transition: 0.5s;
}

.team-item .image .social li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
}

.team-item .image .social li a:hover {
  color: #ffffff;
  background-color: #1c2d58;
}

.team-item .image .social li:nth-child(1) {
  transition-delay: 0.2s;
}

.team-item .image .social li:nth-child(2) {
  transition-delay: 0.3s;
}

.team-item .image .social li:nth-child(3) {
  transition-delay: 0.4s;
}

.team-item .image .social li:nth-child(4) {
  transition-delay: 0.5s;
}

.team-item .content {
  margin-top: 25px;
}

.team-item .content h3 {
  font-size: 20px;
  color: #1c2d58;
  margin-bottom: 8px;
}

.team-item .content span {
  font-size: 16px;
  color: #606060;
}

.team-item:hover .image .social li {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/*================================================
Fun Facts Area CSS
=================================================*/
.fun-facts-area {
  background-color: #1c2d58;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
  background-size: 25px 25px;
  position: relative;
  z-index: 1;
}

.col-lg-3:last-child .single-fun-fact {
  border-right: none;
}

.single-fun-fact {
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.single-fun-fact h3 {
  position: relative;
  margin-bottom: 5px;
  line-height: 1;
  color: #ffffff;
  font-size: 48px;
}

.single-fun-fact h3 .sign-icon {
  display: inline-block;
  font-size: 48px;
  margin-left: -10px;
  position: relative;
  top: 2px;
  color: #5893cd;
}

.single-fun-fact h3 .odometer {
  font-family: "Roboto", sans-serif;
}

.single-fun-fact p {
  line-height: initial;
  color: #aab4c9;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 500;
  font-size: 20px;
  font-family: "Rubik", sans-serif;
}

/*================================================
Value Area CSS
=================================================*/
.value-content span {
  color: #1c2d58;
}

.value-content h3 {
  font-size: 36px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 14px;
}

.value-content .text {
  margin-bottom: 0;
}

.value-features {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-left: -10px;
  margin-right: -10px;
}

.value-features li {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 25px;
  font-size: 20px;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  padding-left: 10px;
  padding-right: 10px;
}

.value-features li i {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  background-color: #1c2d58;
  text-align: center;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 500;
  font-size: 20px;
  margin-right: 10px;
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #f6f8fd 0%, #e9edf3 100%);
  height: 120px;
  border-bottom: 1px solid #e2e8f0;
}


.page-title-area.item-bg-2 {
  background-image: url(../../assets/img/page-title/bg-2.jpg);
}

.page-title-area.item-bg-3 {
  background-image: url(../../assets/img/page-title/bg-3.jpg);
}

.page-title-area.item-bg-4 {
  background-image: url(../../assets/img/page-title/bg-4.jpg);
}

.page-title-area.item-bg-5 {
  background-image: url(../../assets/img/page-title/bg-5.jpg);
}

.page-title-area.item-bg-6 {
  background-image: url(../../assets/img/page-title/bg-6.jpg);
}

.page-title-area.item-bg-7 {
  background-image: url(../../assets/img/page-title/bg-7.jpg);
}

.page-title-area.item-bg-8 {
  background-image: url(../../assets/img/page-title/bg-8.jpg);
}

.page-title-area.item-bg-9 {
  background-image: url(../../assets/img/page-title/bg-9.jpg);
}

.page-title-area::before {
  display: none;
}

.page-title-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  text-align: left;
  height: 120px;
}

.page-title-content h2 {
  margin-bottom: 0;
  color: #1c2d58;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 0;
  background: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-title-content ul li {
  color: #5693cc;
  display: inline-flex;
  align-items: center;
  position: relative;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 17px;
  margin-left: 10px;
  margin-right: 10px;
}

.page-title-content ul li a {
  display: inline-flex;
  align-items: center;
  color: #1c2d58;
  transition: 0.5s;
}

.page-title-content ul li a i {
  margin-right: 6px;
  font-size: 18px;
}

.page-title-content ul li a:hover {
  color: #1c2d58;
}

.page-title-content ul li::before {
  position: absolute;
  right: -14px;
  top: 5px;
  width: 1px;
  content: "";
  height: 18px;
  background-color: #606060;
  transform: rotate(20deg);
}

.page-title-content ul li:last-child::before {
  display: none;
}

/*================================================
Gallery Area CSS
=================================================*/
.gallery-item {
  margin-bottom: 30px;
}

.gallery-item .content {
  margin-top: 25px;
}

.gallery-item .content h3 {
  font-size: 25px;
  margin-bottom: 0;
}

.gallery-btn {
  text-align: center;
  margin-top: 20px;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-area .section-title h2 {
  margin-top: 0;
  margin-bottom: 14px;
}

.faq-area .section-title b {
  font-size: 18px;
  color: #606060;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
}

.faq-area .container {
  max-width: 1140px;
}

.faq-list-tab .tabs-list {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.faq-list-tab .tabs-list li {
  flex: 1 0 32.3333333333%;
  max-width: 33.3333333333%;
  text-align: center;
}

.faq-list-tab .tabs-list li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  color: #ffffff;
  transition: 0.5s;
  width: 100%;
  text-align: center;
  background-color: #111111;
  padding: 14px 30px;
  border-radius: 50px;
}

.faq-list-tab .tabs-list li.current a {
  color: #ffffff;
  background-color: #1c2d58;
}

.faq-list-tab .tab_content .tabs_item .faq-accordion {
  max-width: 960px;
  margin: auto;
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-item {
  display: block;
  background: #ffffff;
  margin-bottom: 10px;
  border: none;
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-title {
  padding: 10px 0 10px 0;
  color: #111111;
  position: relative;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: -1px;
  display: inline-block;
  width: 100%;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-title i {
  font-size: 18px;
  margin-right: 10px;
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-title.active i::before {
  content: "\f12d";
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 25px 0 0 0;
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-content.show {
  display: block;
}

.faq-contact {
  margin-top: 100px;
}

.faq-contact .section-title {
  max-width: 100%;
}

.faq-contact .section-title h2 {
  font-size: 36px;
}

.faq-contact-form {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.faq-contact-form form .form-group {
  margin-bottom: 15px;
}

.faq-contact-form form .form-control {
  background-color: #ffffff;
  border: 1px solid #b7b7b7;
  box-shadow: unset;
  height: 50px;
  border-radius: 2px;
  font-size: 16px;
}

.faq-contact-form form .row {
  margin-left: -7px;
  margin-right: -7px;
}

.faq-contact-form form .row .col-lg-12,
.faq-contact-form form .row .col-lg-6 {
  padding-left: 7px;
  padding-right: 7px;
}

.faq-contact-form form textarea.form-control {
  height: 200px !important;
  padding-top: 15px;
}

.faq-contact-form form .help-block ul {
  padding-left: 0;
  list-style-type: none;
  text-align: left;
  margin-top: 5px;
  margin-bottom: 0;
}

.faq-contact-form form .help-block ul li {
  color: red;
}

.faq-contact-form form #msgSubmit {
  margin-bottom: 0;
}

.faq-contact-form form #msgSubmit.text-danger,
.faq-contact-form form #msgSubmit.text-success {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 700;
}

/*================================================
Loan Calculator Area CSS
=================================================*/
.calculator-form {
  background-color: #1c2d58;
  padding: 50px;
  max-width: 600px;
  margin: auto;
}

.calculator-form .text {
  text-align: center;
  margin-bottom: 35px;
}

.calculator-form .text span {
  color: #ffffff;
}

.calculator-form .text h3 {
  font-size: 36px;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 400;
}

.calculator-form .form-group {
  margin-bottom: 15px;
}

.calculator-form .form-group label {
  color: #ffffff !important;
  margin-bottom: 5px;
}

.calculator-form .form-group .form-control {
  background-color: transparent;
  border: 1px solid #f39e9f;
  box-shadow: unset;
  height: 50px;
  border-radius: 0;
  color: #f39e9f;
  font-size: 16px;
}

.calculator-form .calculator-btn {
  text-align: center;
  margin-top: 25px;
}

.calculator-form .calculator-btn .btn-one {
  display: inline-block;
  padding: 12px 60px;
  background-color: #ffffff;
  color: #111111;
  border-radius: 5px;
  font-family: "Rubik", sans-serif;
  transition: 0.5s;
  margin-right: 15px;
}

.calculator-form .calculator-btn .btn-one:hover {
  background-color: #111111;
  color: #ffffff;
}

.calculator-form .calculator-btn .btn-two {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffffff;
  color: #111111;
  border-radius: 5px;
  font-family: "Rubik", sans-serif;
  transition: 0.5s;
}

.calculator-form .calculator-btn .btn-two:hover {
  background-color: #111111;
  color: #ffffff;
}

/*================================================
Table Area CSS
=================================================*/
.table-area .container {
  max-width: 1140px;
}

.table {
  margin-bottom: 0;
  --bs-table-bg: transparent;
}

.table thead th {
  border: none;
  background-color: #f9fafb;
  color: #111111;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.table-bordered td,
.table-bordered th {
  border: 1px solid #f0f0f0;
  font-weight: 400;
  color: #606060;
  overflow-x: auto;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: unset;
}

.text-nowrap {
  font-weight: 400;
  color: #606060;
}

.table-responsive {
  overflow-x: unset;
}

/*================================================
Apply Area CSS
=================================================*/
.apply-area .container {
  max-width: 1140px;
}

.apply-title {
  margin-bottom: 45px;
  text-align: center;
}

.apply-title h3 {
  font-size: 36px;
  margin-bottom: 0;
}

.apply-form .form-group {
  margin-bottom: 15px;
}

.apply-form .form-group label {
  color: #606060 !important;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  margin-bottom: 5px;
}

.apply-form .form-group .form-control {
  background-color: transparent;
  border: 1px solid #cfcfcf;
  box-shadow: unset;
  height: 55px;
  border-radius: 0;
  color: #cfcfcf;
  font-size: 16px;
}

.apply-form .form-group .nice-select {
  float: unset;
  line-height: 53px;
  color: #666666;
  font-weight: 500;
  padding-top: 0;
  padding-bottom: 0;
}

.apply-form .form-group .nice-select .list {
  background-color: #ffffff;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.apply-form .form-group .nice-select .list .option {
  transition: 0.6s;
  padding-left: 20px;
  padding-right: 20px;
}

.apply-form .form-group .nice-select .list .option:hover {
  background-color: #1c2d58 !important;
  color: #ffffff;
}

.apply-form .form-group .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.apply-form .form-group .nice-select:after {
  right: 20px;
}

.apply-btn {
  text-align: center;
  margin-top: 15px;
}

.apply-btn .default-btn {
  padding: 14px 50px;
}

/*================================================
Projects Details CSS
=================================================*/
.projects-details-image {
  margin-bottom: 30px;
}

.projects-details-content {
  margin-top: 5px;
}

.projects-details-content h3 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

.projects-details-content h4 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

.projects-details-content ul,
.projects-details-content ol {
  padding-left: 17px;
}

.projects-details-content ul li,
.projects-details-content ol li {
  line-height: 1.7;
  margin-bottom: 5px;
}

.projects-details-content ul li:last-child,
.projects-details-content ol li:last-child {
  margin-bottom: 0;
}

.projects-details-content .projects-details-info {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  background: #f4f5fe;
  padding: 40px 20px 30px;
  border-radius: 10px;
}

.projects-details-content .projects-details-info .single-info-box {
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: 15px;
  padding-right: 15px;
}

.projects-details-content .projects-details-info .single-info-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.projects-details-content .projects-details-info .single-info-box span {
  display: block;
  color: #606060;
  font-size: 15px;
}

.projects-details-content .projects-details-info .single-info-box .social {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.projects-details-content .projects-details-info .single-info-box .social li {
  display: inline-block;
  margin-right: 5px;
}

.projects-details-content .projects-details-info .single-info-box .social li a {
  background-color: #ffffff;
  color: #606060;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 30px;
  line-height: 32px;
  font-size: 14px;
}

.projects-details-content .projects-details-info .single-info-box .social li a:hover {
  color: #1c2d58;
  transform: translateY(-2px);
}

.projects-details-content .projects-details-info .single-info-box:last-child {
  text-align: center;
}

/*================================================
Sign In CSS
=================================================*/
.sign-in-form {
  background: #ffffff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  padding: 40px;
  border-radius: 5px;
  max-width: 600px;
  margin: auto;
}

.sign-in-form .sign-in-title {
  text-align: center;
  margin-bottom: 30px;
}

.sign-in-form .sign-in-title h3 {
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 8px;
}

.sign-in-form .sign-in-title p {
  margin-bottom: 30px;
}

.sign-in-form form .form-group {
  margin-bottom: 15px;
}

.sign-in-form form .form-control {
  height: 60px;
  border: 1px solid #eeeeee;
  border-radius: 3px;
  color: #111111;
  padding-left: 20px;
  background: transparent;
}

.sign-in-form form .form-control:focus {
  border-color: #1c2d58;
  outline: 0;
  box-shadow: none;
}

.sign-in-form form .form-control::-moz-placeholder {
  color: #666666;
}

.sign-in-form form .form-control::placeholder {
  color: #666666;
}

.sign-in-form form .form-check {
  margin-top: 10px;
  margin-bottom: 0;
}

.sign-in-form form .form-check .form-check-label {
  color: #666666;
  position: relative;
  top: -2px;
  z-index: 1;
}

.sign-in-form form .form-check-input {
  margin-top: 3px;
}

.sign-in-form form .send-btn {
  margin-top: 15px;
}

.sign-in-form form .send-btn .default-btn {
  color: #ffffff;
  cursor: pointer;
}

.sign-in-form form span {
  display: block;
  color: #777777;
}

.sign-in-form form span a {
  color: #1c2d58;
}

.sign-in-form .forgot-password {
  margin-bottom: 0;
  margin-top: -25px;
  text-align: right;
}

.sign-in-form .forgot-password a {
  color: #777777;
}

.sign-in-form .forgot-password a:hover {
  color: #1c2d58;
}

/*================================================
Sign Up CSS
=================================================*/
.signup-form {
  background: #ffffff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  padding: 40px;
  border-radius: 5px;
  max-width: 600px;
  margin: auto;
}

.signup-form h3 {
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 30px;
  text-align: center;
}

.signup-form form .form-group {
  margin-bottom: 15px;
}

.signup-form form .form-control {
  height: 60px;
  border: 1px solid #eeeeee;
  border-radius: 3px;
  color: #111111;
  padding-left: 20px;
  background: transparent;
}

.signup-form form .form-control:focus {
  border-color: #1c2d58;
  outline: 0;
  box-shadow: none;
}

.signup-form form .form-control::-moz-placeholder {
  color: #666666;
}

.signup-form form .form-control::placeholder {
  color: #666666;
}

.signup-form form .form-check {
  margin-top: 10px;
}

.signup-form form .form-check .form-check-label {
  color: #666666;
  position: relative;
  top: 0;
}

.signup-form form .form-check-input {
  margin-top: 4px;
}

.signup-form form .send-btn {
  margin-top: 20px;
}

.signup-form form .send-btn .default-btn {
  color: #ffffff;
  cursor: pointer;
}

.signup-form form span {
  display: block;
  color: #666666;
}

.signup-form form span a {
  color: #1c2d58;
}

/*================================================
404 Error Area CSS
=================================================*/
.error-area {
  height: 100vh;
}

.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

.error-content h3 {
  font-size: 50px;
  font-weight: 500;
  margin-top: 45px;
  margin-bottom: 15px;
}

.error-content p {
  max-width: 520px;
  margin: 0 auto 20px;
}

.error-content .default-btn {
  display: inline-block;
  background-color: #1c2d58;
  padding: 14px 30px;
  border-radius: 30px;
  color: #ffffff;
  transition: 0.5s;
}

.error-content .default-btn:hover {
  background-color: #1c2d58;
}

/*================================================
Terms of Service Area CSS
=================================================*/
.terms-of-condition-area .container {
  max-width: 1140px;
}

.terms-of-condition-content h3 {
  margin-bottom: 15px;
  margin-top: 30px;
  font-size: 25px;
}

.terms-of-condition-content p {
  margin-bottom: 0;
}

.terms-of-condition-content img {
  width: 100%;
}

.terms-of-condition-sidebar {
  background-color: #ffffff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  padding: 25px;
}

.terms-of-condition-sidebar ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.terms-of-condition-sidebar ul li {
  margin-bottom: -1px;
}

.terms-of-condition-sidebar ul li a {
  position: relative;
  display: block;
  padding: 15px 25px 15px 40px;
  color: #111111;
  border: 1px solid #eeeeee;
  font-weight: 500;
  font-size: 18px;
}

.terms-of-condition-sidebar ul li a::before {
  width: 5px;
  height: 5px;
  transition: 0.5s;
  background-color: #1c2d58;
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.terms-of-condition-sidebar ul li a:hover,
.terms-of-condition-sidebar ul li a.active {
  border-color: #1c2d58;
  background-color: #1c2d58;
  color: #ffffff;
}

.terms-of-condition-sidebar ul li a:hover::before,
.terms-of-condition-sidebar ul li a.active::before {
  background-color: #ffffff;
}

.terms-of-condition-sidebar ul li.active a {
  border-color: #1c2d58;
  background-color: #1c2d58;
  color: #ffffff;
}

.terms-of-condition-sidebar ul li.active a::before {
  background-color: #ffffff;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-area .container {
  max-width: 1140px;
}

.contact-area .section-title {
  max-width: 530px;
  margin: 0 auto 40px;
}

.contact-area .section-title h2 {
  line-height: 1.4;
  margin-bottom: 0;
}

.contact-form .title {
  margin-bottom: 30px;
}

.contact-form .title h3 {
  font-size: 25px;
  margin-bottom: 0;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form .form-group label {
  font-size: 16px;
  color: #606060;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
}

.contact-form .form-group .form-control {
  background-color: transparent;
  border: 1px solid #cfcfcf;
  box-shadow: unset;
  height: 60px;
  border-radius: 0;
  color: #111111;
  font-size: 16px;
}

.contact-form .form-group textarea {
  height: 150px !important;
}

.contact-form .form-group .list-unstyled {
  color: red;
  margin-top: 5px;
}

.contact-form .text-danger {
  color: #dc3545 !important;
  margin-bottom: 0 !important;
  margin-top: 16px !important;
}

.contact-side-box .title {
  margin-bottom: 30px;
}

.contact-side-box .title h3 {
  font-size: 25px;
  margin-bottom: 0;
}

.contact-side-box .info-box {
  position: relative;
  margin-bottom: 20px;
  padding-left: 50px;
}

.contact-side-box .info-box:last-child {
  margin-bottom: 0;
}

.contact-side-box .info-box .icon {
  position: absolute;
  left: 0;
  top: 0;
}

.contact-side-box .info-box .icon i {
  font-size: 30px;
  color: #1c2d58;
}

.contact-side-box .info-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-side-box .info-box .list {
  padding-left: 0;
  margin-bottom: 0;
}

.contact-side-box .info-box .list li {
  color: #606060;
  margin-bottom: 5px;
  list-style-type: none;
}

.contact-side-box .info-box .list li:last-child {
  margin-bottom: 0;
}

.contact-side-box .info-box .list li span {
  float: right;
}

.contact-side-box .info-box span {
  font-size: 16px;
  color: #606060;
}

.contact-side-box .info-box a {
  color: #606060;
  display: block;
}

.contact-side-box .info-box a:hover {
  color: #1c2d58;
}

.map iframe {
  border: none;
  height: 485px;
  width: 100%;
  margin-bottom: -8px;
}

.map .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

/*================================================
Sidebar Widget Area CSS
=================================================*/
.widget-area {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}

.widget-area .widget {
  margin-top: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  border: none;
}

.widget-area .widget:first-child {
  margin-top: 0;
}

.widget-area .widget .widget-title {
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 15px;
  margin-bottom: 25px;
  text-transform: capitalize;
  position: relative;
  font-size: 22px;
  font-weight: 700;
  color: #1c2d58;
}

.widget-area .widget .widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background-color: #1c2d58;
}

.widget-area .widget_search {
  padding: 0;
  box-shadow: none;
  background-color: transparent;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  width: 100%;
  display: block;
  outline: 0;
  transition: 0.5s;
}

.widget-area .widget_search form .search-field:focus {
  border-color: #1c2d58;
  background-color: transparent;
}

.widget-area .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  line-height: 50px;
  z-index: 1;
  border: none;
  color: #ffffff;
  background-color: #1c2d58;
  transition: 0.5s;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

.widget-area .widget_search form button:hover {
  background-color: #111111;
  color: #ffffff;
}

.widget-area .widget_search form button i {
  font-size: 20px;
}

.widget-area .widget_categories {
  /* Styled in .widget */
}

.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_categories ul li {
  position: relative;
  margin-bottom: 12px;
  color: #606060;
  text-transform: capitalize;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
}

.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget-area .widget_categories ul li a {
  color: #444;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.widget-area .widget_categories ul li a::before {
  content: '\eb71';
  /* bx-chevron-right */
  font-family: 'boxicons';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: #1c2d58;
  transition: all 0.3s ease;
}

.widget-area .widget_categories ul li a:hover {
  color: #1c2d58;
  padding-left: 20px;
}

.widget-area .widget_categories ul li a:hover::before {
  opacity: 1;
}

.widget-area .widget_hours {
  /* Styled in .widget */
}

.widget-area .widget_hours ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_hours ul li {
  position: relative;
  margin-bottom: 12px;
  color: #606060;
  text-transform: capitalize;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
}

.widget-area .widget_hours ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget-area .widget_hours ul li a {
  color: #111111;
  display: block;
}

.widget-area .widget_hours ul li a:hover {
  color: #1c2d58;
  letter-spacing: 1px;
}

.widget-area .widget_hours ul li span {
  float: right;
}

.widget-area .widget_appointment {
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: #ffffff;
  padding: 25px;
}

.widget-area .widget_appointment .form-group {
  margin-bottom: 15px;
}

.widget-area .widget_appointment .form-group .form-control {
  background-color: #ffffff;
  border: 1px solid #e7e7e7;
  box-shadow: unset;
  height: 50px;
  border-radius: 2px;
  font-size: 16px;
  color: #333333;
}

.widget-area .widget_appointment .form-group .list-unstyled {
  color: red;
  margin-top: 5px;
}

.widget-area .widget_appointment .text-danger {
  color: #dc3545 !important;
  font-size: 14px !important;
  margin-top: 15px !important;
}

.widget-area .widget_finix_posts_thumb {
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: #ffffff;
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.widget-area .widget_finix_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 20px;
}

.widget-area .widget_finix_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_finix_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}

.widget-area .widget_finix_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.widget-area .widget_finix_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../../assets/img/blog/image1.jpg);
}

.widget-area .widget_finix_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../../assets/img/blog/image2.jpg);
}

.widget-area .widget_finix_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../../assets/img/blog/image3.jpg);
}

.widget-area .widget_finix_posts_thumb .item .info {
  overflow: hidden;
  margin-top: 5px;
}

.widget-area .widget_finix_posts_thumb .item .info time {
  display: block;
  color: #606060;
  text-transform: capitalize;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
}

.widget-area .widget_finix_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 16px;
  font-weight: bold;
}

.widget-area .widget_finix_posts_thumb .item .info .title a {
  display: inline-block;
}

.widget-area .widget_tag_cloud {
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: #ffffff;
  padding: 25px;
}

.widget-area .tagcloud a {
  display: inline-block;
  color: #111111;
  font-weight: 400;
  font-size: 14.5px !important;
  padding: 6px 12px;
  border: 1px solid #d7d7d7;
  background-color: transparent;
  color: #606060;
  margin-top: 8px;
  margin-right: 4px;
}

.widget-area .tagcloud a:hover,
.widget-area .tagcloud a:focus {
  color: #ffffff;
  background-color: #1c2d58;
  border-color: #1c2d58;
  border: 1px solid #1c2d58;
}

.widget-area .widget_archives {
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: #ffffff;
  padding: 25px;
}

.widget-area .widget_archives ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_archives ul li {
  position: relative;
  margin-bottom: 12px;
  color: #606060;
  text-transform: capitalize;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
}

.widget-area .widget_archives ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget-area .widget_archives ul li a {
  color: #111111;
  display: block;
}

.widget-area .widget_archives ul li a:hover {
  color: #1c2d58;
  letter-spacing: 1px;
}

.widget-area .widget_call_now {
  background: linear-gradient(135deg, #1c2d58 0%, #3a5b9e 100%);
  padding: 40px 30px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(28, 45, 88, 0.2);
  color: #ffffff;
  margin-top: 35px;
}

.widget-area .widget_call_now .call-now-content i {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 20px;
  display: inline-block;
}

.widget-area .widget_call_now .call-now-content h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.widget-area .widget_call_now .call-now-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.widget-area .widget_call_now .call-now-content a {
  display: inline-block;
  background-color: #ffffff;
  color: #1c2d58;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
}

.widget-area .widget_call_now .call-now-content a:hover {
  background-color: #f9fafb;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*================================================
Services Details Area CSS
=================================================*/
.services-details-desc .image {
  margin-bottom: 30px;
}

.services-details-desc .image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: auto;
  display: block;
}

.services-details-desc .content h3 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #1c2d58;
}

.services-details-desc .content p {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.services-details-desc .content .text {
  margin-bottom: 0;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
}

.services-details-desc .deserve-item h3 {
  font-size: 30px;
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #1c2d58;
}

.services-details-features {
  padding: 50px;
  background-color: #eeeeee;
  margin-top: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.services-details-features .content {
  margin-bottom: 40px;
}

.services-details-features .content h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #1c2d58;
}

.services-details-features .content p {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.8;
  color: #555;
}

.services-details-features .features-item {
  text-align: center;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.services-details-features .features-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.services-details-features .features-item .icon {
  margin-bottom: 20px;
}

.services-details-features .features-item .icon i {
  display: inline-block;
  height: 90px;
  width: 90px;
  line-height: 90px;
  background: linear-gradient(135deg, rgba(28, 45, 88, 0.05) 0%, rgba(58, 91, 158, 0.1) 100%);
  font-size: 40px;
  color: #1c2d58;
  text-align: center;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.services-details-features .features-item:hover .icon i {
  background: linear-gradient(135deg, #1c2d58 0%, #3a5b9e 100%);
  color: #ffffff;
  transform: rotateY(180deg);
}

.services-details-features .features-item h3 {
  font-size: 22px;
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 700;
  color: #1c2d58;
}

.services-details-others {
  margin-top: 40px;
  margin-bottom: 40px;
}

.services-details-others h3 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #1c2d58;
}

.services-details-others p {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
}

.services-details-list {
  margin-top: 50px;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.services-details-list .content h3 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #1c2d58;
}

.services-details-list .content p {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.8;
  color: #555;
}

.services-details-list .content .list {
  padding-left: 0;
  margin-top: 16px;
  margin-bottom: 0;
}

.services-details-list .content .list li {
  list-style-type: none;
  color: #555;
  font-weight: 500;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.services-details-list .content .list li:last-child {
  margin-bottom: 0;
}

.services-details-list .content .list li i {
  color: #1c2d58;
  margin-right: 12px;
  font-size: 24px;
}

/*================================================
Funding Area CSS
=================================================*/
.funding-content span {
  color: #1c2d58;
}

.funding-content h3 {
  font-size: 36px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 16px;
}

.funding-content strong {
  font-size: 18px;
  color: #111111;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
}

.funding-content .funding-list {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.funding-content .funding-list li {
  list-style-type: none;
  color: #606060;
  margin-bottom: 10px;
  position: relative;
  font-family: "Rubik", sans-serif;
}

.funding-content .funding-list li:last-child {
  margin-bottom: 0;
}

.funding-content .funding-list li span {
  color: #1c2d58;
}

.funding-content .funding-list li b {
  color: #111111;
}

.funding-image img {
  height: 100%;
}

/*================================================
Works Area CSS
=================================================*/
.works-area {
  position: relative;
  z-index: 1;
}

.works-area .section-title {
  max-width: 570px;
  margin: 0 auto 45px;
}

.works-area .section-title h {
  margin-bottom: 0;
  line-height: 1.4;
}

.works-area .container {
  max-width: 1140px;
}

.works-item {
  text-align: center;
  margin-bottom: 30px;
}

.works-item .icon {
  margin-bottom: 20px;
}

.works-item .icon i {
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  font-size: 50px;
  color: #1c2d58;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  text-align: center;
  border-radius: 50px;
}

.works-item h3 {
  font-size: 25px;
  margin-bottom: 0;
  line-height: 1.4;
}

.works-shape .shape {
  position: absolute;
  left: 31%;
  top: 60%;
  transform: translateY(-60%);
}

.works-shape .shape2 {
  position: absolute;
  right: 31%;
  top: 55%;
  transform: translateY(-55%);
}

/*================================================
Funding Form Area CSS
=================================================*/
.funding-form-area {
  background-color: #f9fafb;
}

.funding-form-area .container {
  max-width: 870px;
}

.funding-form-area .section-title {
  max-width: 540px;
  margin: 0 auto 45px;
}

.funding-form-area .section-title h {
  margin-bottom: 0;
  line-height: 1.4;
}

.funding-form .form-group {
  margin-bottom: 15px;
}

.funding-form .form-group label {
  color: #606060 !important;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  margin-bottom: 5px;
}

.funding-form .form-group .form-control {
  background-color: transparent;
  border: 1px solid #cbcbcc;
  box-shadow: unset;
  height: 60px;
  border-radius: 0;
  color: #111111;
  font-size: 16px;
}

.buy-checkbox-btn {
  margin-top: 10px;
}

.buy-checkbox-btn input {
  display: none;
}

.buy-checkbox-btn .cbx {
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
}

.buy-checkbox-btn .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.buy-checkbox-btn .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #606060;
  transition: all 0.2s ease;
  transition: 0.6s;
}

.buy-checkbox-btn .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
  transition: 0.6s;
}

.buy-checkbox-btn .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #111111;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
  transition: 0.6s;
}

.buy-checkbox-btn .cbx span:last-child {
  position: relative;
  top: 2px;
  padding-left: 4px;
  color: #606060;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
}

.buy-checkbox-btn .cbx span:last-child a {
  color: #1c2d58;
}

.buy-checkbox-btn .cbx:hover span:first-child {
  border-color: #1c2d58;
}

.buy-checkbox-btn .inp-cbx:checked+.cbx span:first-child {
  background: #1c2d58;
  border-color: #1c2d58;
  animation: wave 0.4s ease;
}

.buy-checkbox-btn .inp-cbx:checked+.cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.buy-checkbox-btn .inp-cbx:checked+.cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

.buy-checkbox-btn .item:not(:first-child) {
  margin-top: 15px;
}

.funding-btn {
  margin-top: 25px;
}

/*================================================
Loan Area CSS
=================================================*/
.loan-area .container {
  max-width: 1140px;
}

.loan-image {
  position: relative;
}

.loan-image .loan-shape {
  background-image: url(../../assets/img/about/shape.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: 0;
  right: 60px;
}

.loan-image .loan-shape .text {
  text-align: center;
  margin-top: 50px;
}

.loan-image .loan-shape .text img {
  display: block;
  margin: auto;
  margin-bottom: 8px;
}

.loan-image .loan-shape .text span {
  color: #111111;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
}

.loan-content h3 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}

.loan-content p {
  margin-bottom: 0;
}

.loan-content .list {
  padding-left: 0;
  margin-top: 16px;
  margin-bottom: 18px;
}

.loan-content .list li {
  position: relative;
  margin-bottom: 12px;
  color: #606060;
  padding-left: 18px;
  text-transform: capitalize;
  list-style-type: none;
  font-size: 16px;
  font-weight: 500;
}

.loan-content .list li:last-child {
  margin-bottom: 0;
}

.loan-content .list li::before {
  background: #1c2d58;
  height: 8px;
  width: 8px;
  content: "";
  left: 0;
  top: 7px;
  position: absolute;
  border-radius: 30px;
}

.loan-content .list li a {
  color: #111111;
  display: block;
}

.loan-content .list li a:hover {
  color: #1c2d58;
  letter-spacing: 1px;
}

.loan-content h4 {
  font-size: 18px;
  margin-bottom: 0;
}

.loan-content .loan-list {
  padding-left: 0;
  margin-top: 16px;
  margin-bottom: 25px;
}

.loan-content .loan-list li {
  list-style-type: none;
  color: #606060;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.loan-content .loan-list li:last-child {
  margin-bottom: 0;
}

.loan-content .loan-list li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #1c2d58;
  font-size: 20px;
}

/*================================================
Overview Area CSS
=================================================*/
.overview-area {
  background-color: #f9fafb;
  position: relative;
  z-index: 1;
}

.overview-area .section-title {
  max-width: 570px;
  margin: 0 auto 45px;
}

.overview-area .section-title h2 {
  margin-bottom: 0;
  line-height: 1.4;
}

.overview-item {
  text-align: center;
  margin-bottom: 20px;
}

.overview-item .number {
  margin-bottom: 15px;
  position: relative;
}

.overview-item .number span {
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  font-size: 20px;
  color: #111111;
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  text-align: center;
  border-radius: 50px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  position: relative;
  z-index: 1;
}

.overview-item .number strong {
  font-size: 70px;
  color: #fad8d8;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  line-height: 0;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
}

.overview-item h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
}

.overview-shape .shape {
  position: absolute;
  left: 30%;
  top: 60%;
  transform: translateY(-60%);
}

.overview-shape .shape2 {
  position: absolute;
  right: 30%;
  top: 55%;
  transform: translateY(-55%);
}

/*================================================
Check Area CSS
=================================================*/
.check-area {
  background-color: #f9fafb;
}

.check-content {
  margin-bottom: 30px;
}

.check-content h3 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}

.check-content p {
  margin-bottom: 0;
}

.check-text h3 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}

.check-text p {
  margin-bottom: 0;
}

.check-text .list {
  padding-left: 0;
  margin-top: 12px;
  margin-bottom: 0;
}

.check-text .list li {
  position: relative;
  margin-bottom: 12px;
  color: #606060;
  padding-left: 18px;
  text-transform: capitalize;
  list-style-type: none;
  font-size: 16px;
  font-weight: 500;
}

.check-text .list li:last-child {
  margin-bottom: 0;
}

.check-text .list li::before {
  background: #1c2d58;
  height: 8px;
  width: 8px;
  content: "";
  left: 0;
  top: 7px;
  position: absolute;
  border-radius: 30px;
}

.check-text .list li a {
  color: #111111;
  display: block;
}

.check-text .list li a:hover {
  color: #1c2d58;
  letter-spacing: 1px;
}

/*================================================
Inquiry Area CSS
=================================================*/
.inquiry-content {
  margin-bottom: 30px;
}

.inquiry-content h3 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}

.inquiry-content p {
  margin-bottom: 0;
}

.inquiry-form .form-group {
  margin-bottom: 15px;
}

.inquiry-form .form-group label {
  color: #606060 !important;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  margin-bottom: 5px;
}

.inquiry-form .form-group .form-control {
  background-color: transparent;
  border: 1px solid #cbcbcc;
  box-shadow: unset;
  height: 50px;
  border-radius: 0;
  color: #cbcbcc;
  font-size: 16px;
}

.inquiry-btn {
  margin-top: 20px;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 20px;
}

.pagination-area .page-numbers {
  width: 45px;
  height: 45px;
  margin: 0 3px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 48px;
  color: #111111;
  box-shadow: 0 2px 10px 0 #d8dde6;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.pagination-area .page-numbers.current,
.pagination-area .page-numbers:hover,
.pagination-area .page-numbers:focus {
  background: #1c2d58;
  color: #ffffff;
  box-shadow: 0 2px 10px 0 #d8dde6;
}

.pagination-area .page-numbers i {
  font-size: 30px;
  position: relative;
  top: 5px;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .post-meta {
  padding-left: 0;
  margin-top: 25px;
  margin-bottom: 16px;
}

.blog-details-desc .post-meta li {
  list-style-type: none;
  color: #606060;
  font-weight: 500;
  display: inline-block;
  margin-right: 20px;
}

.blog-details-desc .post-meta li:last-child {
  margin-right: 0;
}

.blog-details-desc .post-meta li i {
  color: #1c2d58;
  margin-right: 5px;
}

.blog-details-desc .post-meta li a {
  color: #606060;
}

.blog-details-desc .content h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.blog-details-desc .content .blog-btn {
  margin-top: 20px;
}

.blog-details-desc .desc-text {
  margin-top: 20px;
}

.blog-details-desc .desc-text h3 {
  font-size: 25px;
  margin-bottom: 14px;
}

.blog-details-desc .desc-text-one {
  margin-top: 20px;
}

.blog-details-desc .desc-text-one h3 {
  font-size: 25px;
  margin-bottom: 14px;
}

.blog-details-desc .article-share {
  margin-top: 30px;
}

.blog-details-desc .article-share .social {
  padding-left: 0;
  list-style-type: none;
  background-color: #f9fafb;
  padding: 12px 25px;
  line-height: 1;
  margin-bottom: 0;
}

.blog-details-desc .article-share .social li {
  display: inline-block;
  margin-right: 5px;
}

.blog-details-desc .article-share .social li:last-child {
  margin-right: 0;
}

.blog-details-desc .article-share .social li span {
  display: inline-block;
  margin-right: 2px;
  font-weight: 600;
  color: #333333;
  position: relative;
  top: -5px;
}

.blog-details-desc .article-share .social li a {
  font-size: 20px;
  color: #333333;
}

blockquote,
.blockquote {
  overflow: hidden;
  background-color: #f9fafb;
  padding: 35px !important;
  position: relative;
  z-index: 1;
  margin-top: 30px;
  margin-bottom: 30px;
}

blockquote p,
.blockquote p {
  color: #111111 !important;
  line-height: 1.6;
  text-align: center;
  max-width: 630px;
  margin: auto;
  font-weight: 700;
  font-size: 16px !important;
}

blockquote i,
.blockquote i {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px !important;
  background-color: #1c2d58;
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  position: absolute;
  margin-top: 5px;
}

.comment-reply {
  margin-top: 30px;
}

.comment-reply .comment-reply-title {
  border-bottom: 1px solid #1c2d58;
  padding-bottom: 10px;
  margin-bottom: 12px;
  text-transform: capitalize;
  position: relative;
  font-size: 24px;
}

.comment-reply .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}

.comment-reply .comment-form {
  overflow: hidden;
}

.comment-reply .comment-notes {
  margin-bottom: 20px;
  margin-top: 10px;
}

.comment-reply .comment-form-comment {
  margin-top: 15px;
  float: left;
  width: 100%;
}

.comment-reply label {
  display: block;
  font-weight: 400;
  color: #111111;
  margin-bottom: 5px;
}

.comment-reply input[type=date],
.comment-reply input[type=time],
.comment-reply input[type=datetime-local],
.comment-reply input[type=week],
.comment-reply input[type=month],
.comment-reply input[type=text],
.comment-reply input[type=email],
.comment-reply input[type=url],
.comment-reply input[type=password],
.comment-reply input[type=search],
.comment-reply input[type=tel],
.comment-reply input[type=number],
.comment-reply textarea {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 0.625em 0.7375em;
  outline: 0;
  transition: 0.5s;
}

.comment-reply input[type=date]:focus,
.comment-reply input[type=time]:focus,
.comment-reply input[type=datetime-local]:focus,
.comment-reply input[type=week]:focus,
.comment-reply input[type=month]:focus,
.comment-reply input[type=text]:focus,
.comment-reply input[type=email]:focus,
.comment-reply input[type=url]:focus,
.comment-reply input[type=password]:focus,
.comment-reply input[type=search]:focus,
.comment-reply input[type=tel]:focus,
.comment-reply input[type=number]:focus,
.comment-reply textarea:focus {
  border-color: #1c2d58;
}

.comment-reply .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.comment-reply .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}

.comment-reply .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comment-reply .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.comment-reply .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 4px;
}

.comment-reply .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #606060;
  font-weight: normal;
  position: relative;
  top: -2px;
}

.comment-reply .form-submit {
  float: left;
  width: 100%;
}

.comment-reply .form-submit input {
  background: #1c2d58;
  border: none;
  color: #ffffff;
  padding: 12px 30px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  border-radius: 2px;
  transition: 0.5s;
  font-weight: 500;
  font-size: 16px;
}

.comment-reply .form-submit input:hover,
.comment-reply .form-submit input:focus {
  color: #ffffff;
  background-color: #111111;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-color: #111111;
}

.footer-area.bg-top .single-footer-widget {
  margin-top: 80px;
}

.single-footer-widget {
  margin-bottom: 25px;
}

.single-footer-widget .logo img {
  margin-bottom: 25px;
}

.single-footer-widget p {
  color: #ffffff;
  margin-bottom: 0;
}

.single-footer-widget .social {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.single-footer-widget .social li {
  list-style-type: none;
  display: inline-block;
  color: #ffffff;
  margin-right: 10px;
}

.single-footer-widget .social li:last-child {
  margin-right: 0;
}

.single-footer-widget .social li a {
  color: #ffffff;
}

.single-footer-widget .social li a:hover {
  color: #1c2d58;
}

.single-footer-widget h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333535;
}

.single-footer-widget .quick-links {
  padding-left: 0;
  margin-bottom: 0;
}

.single-footer-widget .quick-links li {
  list-style-type: none;
  margin-bottom: 18px;
  color: #ffffff;
  transition: 0.5s;
}

.single-footer-widget .quick-links li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .quick-links li a {
  color: #ffffff;
  transition: 0.5s;
}

.single-footer-widget .quick-links li:hover a {
  color: #5893cd;
  letter-spacing: 1px;
}

.single-footer-widget .info-contact {
  position: relative;
  padding-left: 40px;
  margin-bottom: 22px;
}

.single-footer-widget .info-contact:last-child {
  margin-bottom: 0;
}

.single-footer-widget .info-contact i {
  position: absolute;
  left: 0;
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;
  top: 5px;
}

.single-footer-widget .info-contact span {
  font-size: 16px;
  color: #ffffff;
}

.single-footer-widget .info-contact a {
  color: #ffffff;
  display: block;
}

.single-footer-widget .info-contact a:hover {
  color: #1c2d58;
}

/*================================================
Copy Right Area CSS
=================================================*/
.copy-right-area {
  background-color: #111111;
  border-top: 1px solid #292929;
  padding-top: 10px;
  padding-bottom: 10px;
}

.copy-right-content {
  text-align: center;
}

.copy-right-content p a {
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
}

.copy-right-content p a:hover {
  color: #1c2d58;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: #ffffff;
  background-color: #111111;
  z-index: 4;
  width: 35px;
  text-align: center;
  height: 35px;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 22px;
  transition: 0.9s;
  overflow: hidden;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.go-top:hover {
  background-color: #1c2d58;
  color: #ffffff;
  transition: 0.5s;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

/*=================================
Buy Now Btn
====================================*/
.buy-now-btn {
  right: 30px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: #ffffff !important;
  background-color: #82b440;
  padding: 3.5px 10px;
  font-size: 12px;
  font-weight: 600;
  animation-name: tada;
  animation-duration: 5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

.buy-now-btn:hover {
  background-color: #1c2d58;
  color: #ffffff !important;
}

@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

/*=================================
Main Banner Slider Area CSS
====================================*/
.main-banner-slider-area {
  overflow: hidden;
}

.banner-item {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .banner-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: 0;
  }

  .banner-item .main-banner-content h1,
  .banner-item .main-banner-content p,
  .banner-item .main-banner-content span {
    color: #ffffff !important;
  }
}

.banner-item .container-fluid {
  max-width: 94%;
  margin: auto;
  position: relative;
  z-index: 2;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 94%;
  margin: auto;
}

.banner-item .main-banner-content {
  max-width: 620px;
}

.banner-item .main-banner-content span {
  color: #1c2d58;
}

.banner-item .main-banner-content h1 {
  color: #111111;
}

.banner-item .main-banner-content p {
  color: #606060;
  max-width: 650px;
}

.banner-item .main-banner-content .banner-btn {
  margin-top: 30px;
  margin-bottom: 0;
}

.banner-item .banner-social-buttons {
  position: absolute;
      left: 16px;
    right: auto;
    top: unset;
    bottom: -56px;
  transform: translateY(-50px);
  transform: unset;
  z-index: 99;
}

.banner-item .banner-social-buttons ul li {
  color: #111111;
}

.banner-item .banner-social-buttons ul li span {
  margin-right: 30px;
  position: relative;
}

.banner-item .banner-social-buttons ul li span::before {
  position: absolute;
  right: -38px;
  top: 10px;
  width: 30px;
  content: "";
  height: 1px;
  background-color: #111111;
}

.banner-item .banner-social-buttons ul a {
  color: #111111;
}

.banner-item .banner-social-buttons ul a:hover {
  color: #1c2d58;
}

.banner-item .banner-social-buttons ul i {
  transform: none;
}

.banner-slider.owl-theme .owl-nav [class*=owl-] {
  margin: 0;
  padding: 0;
  transition: 0.5s;
  font-size: 18px;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 0px;
  background-color: #ffffff;
  color: #111111;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  border-radius: 50px;
}

.banner-slider.owl-theme .owl-nav [class*=owl-]:hover {
  color: #ffffff;
  background-color: #1c2d58;
}

.banner-slider.owl-theme .owl-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 0;
  position: absolute;
  right: 50px;
  bottom: 50px;
}

/*# sourceMappingURL=style.css.map */

/* Custom Header Colors Override */
.navbar-area,
.main-navbar,
.is-sticky .main-navbar {
  background-color: #1c2d58 !important;
}

.navbar-area .main-navbar .navbar .navbar-nav .nav-item .nav-link,
.navbar-area .main-navbar .navbar .others-options .option-item .info span,
.navbar-area .main-navbar .navbar .others-options .option-item .info p a,
.navbar-area .main-navbar .navbar .others-options .option-item i,
.is-sticky .main-navbar .navbar .navbar-nav .nav-item .nav-link,
.is-sticky .main-navbar .navbar .others-options .option-item i {
  color: #ffffff;
}

/* Hover effects for nav links */
.navbar-area .main-navbar .navbar .navbar-nav .nav-item .nav-link:hover,
.navbar-area .main-navbar .navbar .navbar-nav .nav-item .nav-link.active {
  color: #5893cd !important;
  /* Keep a contrast hover color if needed, or white with opacity. Let's use opacity */
  opacity: 0.8;
}

/* Make sure the Apply Now button is visible (white background, blue text) */
.navbar-area .main-navbar .navbar .others-options .option-item .default-btn {
  background-color: #ffffff;
  color: #1c2d58;
  font-weight: 600;
}

.navbar-area .main-navbar .navbar .others-options .option-item .default-btn i {
  color: #1c2d58;
  transition: all 0.3s ease;
}

.navbar-area .main-navbar .navbar .others-options .option-item .default-btn:hover i {
  color: #ffffff;
}

.navbar-area .main-navbar .navbar .others-options .option-item .default-btn::before {
  background-color: #f4f4f4;
  color: #ffffff;
}




.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #000000 !important;
}

/* Mega Menu Styles */
@media (min-width: 992px) {
  .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu.mega-menu {
    display: flex;
    flex-direction: row;
    width: 1000px;
    left: 50%;
    transform: translateX(-40%);
    /* Adjust centering slightly to account for screen edges */
    padding: 30px 15px;
  }

  .mega-menu-column {
    flex: 1;
    padding: 0 15px;
    list-style: none;
  }
}

.mega-menu-title {
  display: block;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1c2d58 !important;
  text-transform: uppercase;
  font-size: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  text-decoration: none;
}

.mega-menu-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-sublist li a {
  color: #111111 !important;
  display: block;
  padding: 8px 0;
  transition: 0.3s;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
}

.mega-menu-sublist li a:hover {
  color: #5893cd !important;
  letter-spacing: 1px;
}

/* Sticky Cards */

/* .services {
  background-color: #0b132b;
  padding-top: 100px;
} */

.service-card {
  position: sticky;
  top: 90px;
  min-height: 60vh;
  margin-bottom: 20px;
  border-radius: 30px;
  overflow: hidden;
  background: #f4f6f9;
  border: 1px solid #dee2e6;
  width: 80%;
  margin: auto;
}


.service-content {
  padding: 30px;
}

.service-number {

  font-size: 60px;

  color: #4f85bd;

  font-weight: bold;

  opacity: .5;

  line-height: 1;
}

.service-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 35px;
  background-color: #4f85bd;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background-color: #1c2d58;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 133, 189, 0.4);
}

.service-content h2 {

  font-size: 34px;

  font-weight: 600;

  margin: 15px 0;

  color: #212529;
}

.service-content p {

  color: #495057;

  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-content ul {

  padding-left: 20px;

  margin-top: 25px;

  color: #b0b0b0;
}

.service-content li {

  margin-bottom: 12px;

  color: #b0b0b0;
}

.service-image {

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 40px;
}

.service-image img {

  width: 100%;

  border-radius: 20px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
  /* height: 400px; */
}

@media only screen and (max-width: 767px) {}

/* Watch Listen Area */
.watch-listen-area {
  background-color: #fdfdfd;
}



.wl-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  height: 100%;
  transition: 0.3s ease;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.wl-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.wl-image {
  position: relative;
  height: 200px;
  width: 100%;
  padding: 15px;
}

.wl-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.wl-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.wl-youtube {
  color: #ff0000;
}

.wl-podcast {
  color: #9b51e0;
}

.wl-instagram {
  color: #e1306c;
}

.wl-content {
  padding: 0 25px 30px;
}

.wl-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.tag-youtube {
  background: #fff0f0;
  color: #ff3333;
}

.tag-podcast {
  background: #f6edff;
  color: #9b51e0;
}

.tag-instagram {
  background: #ffe6f0;
  color: #e1306c;
}

.wl-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a254a;
  line-height: 1.4;
}

.wl-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}

.wl-link {
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.link-youtube {
  color: #ff3333;
}

.link-podcast {
  color: #9b51e0;
}

.link-instagram {
  color: #e1306c;
}

.wl-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border: 1px solid #e0e0e0;
  border-radius: 40px;
  background: #fff;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.wl-review-btn:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
  color: #333;
}

.wl-review-btn i {
  font-size: 20px;
}

/*================================================
Testimonial Area CSS
=================================================*/
.testimonial-area {
  overflow: hidden;
}

.testimonial-header h2 {
  font-size: 32px;
  letter-spacing: 1px;
  color: #1a254a;
}

.rating-badge {
  display: inline-block;
  background-color: #eaf1f8;
  color: #4f85bd;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 15px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.testimonial-cards-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0px;
}

.testi-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  width: 100%;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.testi-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.testi-card .review-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Owl Carousel Nav Styling */
.testimonial-slider .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.testimonial-slider .owl-nav button {
  width: 45px;
  height: 45px;
  background: #fff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 50%;
  color: #1a254a !important;
  font-size: 24px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonial-slider .owl-nav button:hover {
  background: #4f85bd !important;
  color: #fff !important;
  border-color: #4f85bd !important;
}

.testimonial-slider .owl-dots {
  margin-top: 20px;
}

/* Carousel Center Mode Styling */
.testimonial-slider .owl-item {
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transform: scale(0.85) rotate(-4deg);
}

.testimonial-slider .owl-item.active {
  opacity: 0.6;
  pointer-events: auto;
}

.testimonial-slider .owl-item.center~.owl-item.active {
  transform: scale(0.85) rotate(4deg);
}

.testimonial-slider .owl-item.center {
  transform: scale(1.05) rotate(0deg) !important;
  opacity: 1;
  z-index: 3;
}

.testimonial-slider .owl-item.center .testi-card {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

@media only screen and (max-width: 991px) {
  .testimonial-slider .owl-item {
    transform: scale(1) rotate(0deg) !important;
    opacity: 1;
  }
}

/*================================================
Process Area CSS
=================================================*/
.process-area {
  background-color: #fff;
}

.process-area .section-title p {
  color: #666;
}

.process-area {
  background-color: #fff;
}

.process-area .section-title p {
  color: #666;
}

.clean-process-card {
  position: relative;
  background: #fff;
  border: 1px solid #ebebeb;
  padding: 35px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  height: 100%;
}

.clean-process-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #4f85bd;
  transform: translateY(-5px);
}

.clean-process-icon {
  width: 55px;
  height: 55px;
  background: #eaf1f8;
  color: #4f85bd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.clean-process-card:hover .clean-process-icon {
  background: #4f85bd;
  color: #fff;
}

.clean-process-card h3 {
  color: #1a254a;
  font-weight: 700;
}

.clean-process-card p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Connecting Line for Process */
@media only screen and (min-width: 992px) {
  .process-area .col-lg-4:not(:last-child) .clean-process-card::after {
    content: '';
    position: absolute;
    top: 62px;
    right: -24px;
    width: 24px;
    height: 2px;
    background-image: linear-gradient(to right, #4f85bd 50%, transparent 50%);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    z-index: 1;
    opacity: 0.5;
    transition: all 0.3s ease;
  }

  .process-area .col-lg-4:not(:last-child) .clean-process-card:hover::after {
    opacity: 1;
    animation: dashMarch 0.5s linear infinite;
  }
}

@keyframes dashMarch {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 10px 0;
  }
}

.clean-process-card:hover .clean-process-icon i {
  animation: iconBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes iconBounce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}



/* =========================
   WHO WE ARE
========================= */

.wingate-about {
  padding: 50px 0;
  overflow: hidden;
}

.wingate-container {
  width: min(1180px, 90%);
  margin: auto;
}


/* =========================
   TOP LABEL
========================= */

.wingate-about .about-label {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #4f85bd;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;

  margin-bottom: 18px;
}

.wingate-about .about-label span {
  display: block;

  width: 35px;
  height: 2px;

  background: #4f85bd;
}


/* =========================
   HEADING
========================= */

.wingate-about .about-heading {
  max-width: 900px;
}

.wingate-about .about-heading h2 {
  font-size: 36px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.wingate-about .about-heading h2 strong {
  color: #4f85bd;
}


/* =========================
   CONTENT
========================= */

.wingate-about .about-content {
  display: grid;

  grid-template-columns: 1.15fr .85fr;

  gap: 70px;

  align-items: center;

  margin-top: 25px;
}



/* =========================
   FEATURES
========================= */

.wingate-about .about-features {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 15px;

  margin-top: 40px;
}

.wingate-about .feature {
  padding: 20px 18px;

  background: #fff;

  border: 1px solid #e6ebf2;

  border-radius: 12px;

  transition: .35s ease;
}

.wingate-about .feature:hover {
  transform: translateY(-6px);

  box-shadow:
    0 15px 35px rgba(28, 45, 88, .08);
}

.wingate-about .feature-icon {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 15px;

  background: #edf5fc;

  color: #4f85bd;

  border-radius: 9px;

  font-size: 26px;
}

.wingate-about .feature h4 {
  color: #1c2d58;

  font-size: 13px;

  font-weight: 700;

  line-height: 1.5;
}


/* =========================
   STATS PANEL
========================= */

.wingate-about .about-stats {
  position: relative;

  padding: 35px;

  background: #1c2d58;

  border-radius: 20px;

  overflow: hidden;
}

.wingate-about .about-stats::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -100px;
  top: -100px;

  border: 1px solid rgba(255, 255, 255, .12);

  border-radius: 50%;
}

.wingate-about .about-stats::after {
  content: "";

  position: absolute;

  width: 140px;
  height: 140px;

  right: -60px;
  top: -60px;

  border: 1px solid rgba(255, 255, 255, .08);

  border-radius: 50%;
}


/* Stat */

.wingate-about .stat {
  position: relative;

  padding: 25px 0;

  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.wingate-about .stat:last-child {
  border-bottom: 0;
}

.wingate-about .stat-top {
  display: flex;

  align-items: end;

  justify-content: space-between;
}

.wingate-about .stat-number {
  color: #fff;

  font-size: 46px;

  font-weight: 800;

  line-height: 1;
}

.wingate-about .stat-number span {
  color: #7eb1df;
}

.wingate-about .stat-title {
  color: #aebbd0;

  font-size: 11px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.wingate-about .stat-line {
  width: 100%;
  height: 4px;

  margin-top: 18px;

  background: rgba(255, 255, 255, .1);

  border-radius: 10px;

  overflow: hidden;
}

.wingate-about .stat-line span {
  display: block;

  height: 100%;

  background: #4f85bd;

  border-radius: 10px;
}

.wingate-about .stat-90 .stat-line span {
  width: 90%;
}

.wingate-about .stat-94 .stat-line span {
  width: 94%;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px) {

  .wingate-about .about-content {
    grid-template-columns: 1fr;

    gap: 40px;
  }

}

@media(max-width:600px) {

  .wingate-about {
    padding: 70px 0;
  }

  .wingate-about .about-features {
    grid-template-columns: 1fr;
  }

  .wingate-about .about-heading h2 {
    font-size: 24px;
  }

  .wingate-about .about-stats {
    padding: 25px;
  }

  .wingate-about .stat-number {
    font-size: 38px;
  }

}

/*================================================
Page Banner (Breadcrumb) CSS
=================================================*/
.page-banner-area {
  background-color: #f8f9fa;
  padding: 50px 0;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
}

.page-banner-content h2 {
  font-size: 38px;
  font-weight: 600;
  color: #1c2d58;
  margin-bottom: 15px;
}

.page-banner-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.page-banner-content ul li {
  font-size: 16px;
  color: #606060;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.page-banner-content ul li a {
  color: #1c2d58;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.page-banner-content ul li a:hover {
  color: #e73c3e;
}

.page-banner-content ul li::after {
  content: "/";
  margin: 0 12px;
  font-size: 14px;
  color: #999;
}

.page-banner-content ul li:last-child::after {
  display: none;
}

#aboutpage .about-wrap .about-shape {
  width: 140px;
  height: 140px;
  position: absolute;
  bottom: -15px;
  right: -50px;
}

#aboutpage .about-wrap .about-shape .text {
  text-align: center;
  margin-top: 20px;
}

#aboutpage .about-wrap .about-shape .text h3 {
  font-size: 40px;
}

/*================================================
Mission & Vision Area CSS (Split Screen)
=================================================*/
.mission-vision-split {
  overflow: hidden;
}

.mission-vision-split .mission-box {
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 50px;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
}

.mission-vision-split .mission-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111111;
  opacity: 0.7;
  z-index: -1;
}

.mission-vision-split .vision-box {
  background-color: #346fb1;
  padding: 100px 50px;
  height: 100%;
  display: flex;
  align-items: center;
}

.mission-vision-split .content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.mission-vision-split .content i {
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 20px;
}

.mission-vision-split .content h3 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 300;
}

.mission-vision-split .content p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

/*================================================
Premium Timeline CSS
=================================================*/
.our-story-premium {
  overflow: hidden;
}

.premium-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 0;
}

.premium-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #346fb1 0%, #1c2d58 100%);
  left: 50%;
  margin-left: -2px;
  border-radius: 4px;
}

.pt-item {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  opacity: 0;
  transition: all 0.8s ease-out;
}

.pt-item.left {
  transform: translateX(-50px);
}

.pt-item.right {
  transform: translateX(50px);
}

.pt-item.show {
  opacity: 1;
  transform: translateX(0);
}

.pt-item::after {
  content: "";
  display: table;
  clear: both;
}

/*================================================
Team Area CSS
=================================================*/
.single-team-member {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.5s;
  overflow: hidden;
  text-align: center;
}

.single-team-member .team-image {
  position: relative;
  overflow: hidden;
}

.single-team-member .team-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px 10px 0 0;
  transition: all 0.5s;
}

.single-team-member:hover .team-image img {
  transform: scale(1.1);
}

.single-team-member .team-image .team-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(28, 45, 88, 0.85); */
  background-color: #5b94cdd1;
  padding: 30px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  z-index: 1;
}

.single-team-member:hover .team-image .team-overlay-content {
  opacity: 1;
  visibility: visible;
}

.single-team-member .team-image .team-overlay-content p {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
  transform: translateY(20px);
  transition: all 0.5s;
}

.single-team-member:hover .team-image .team-overlay-content p {
  transform: translateY(0);
}

.single-team-member .team-image .social {
  position: absolute;
  /* bottom: -60px; */
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(28, 45, 88, 0.9);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 2;
  display: none;
}

.single-team-member:hover .team-image .social {
  bottom: 0;
}

.single-team-member .team-image .social li {
  display: inline-block;
  margin: 0 5px;
}

.single-team-member .team-image .social li a {
  display: block;
  width: 35px;
  height: 35px;
  background: #ffffff;
  color: #1c2d58;
  line-height: 35px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.5s;
}

.single-team-member .team-image .social li a:hover {
  background: #346fb1;
  color: #ffffff;
}

.single-team-member .team-content {
  padding: 10px 15px;
}

.single-team-member .team-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #1c2d58;
}

.single-team-member .team-content span {
  color: #346fb1;
  font-size: 14px;
  font-weight: 500;
}

/* Team Slider Navigation */
.team-slider.owl-theme .owl-nav {
  margin-top: 30px;
}

.team-slider.owl-theme .owl-nav [class*="owl-"] {
  background: #1c2d58;
  color: #ffffff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  padding: 0;
  transition: all 0.3s;
}

.team-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #346fb1;
}

.team-slider.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #cccccc;
  transition: all 0.3s;
}

.team-slider.owl-theme .owl-dots .owl-dot.active span,
.team-slider.owl-theme .owl-dots .owl-dot:hover span {
  background: #346fb1;
  width: 20px;
}

.pt-dot {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  background: #ffffff;
  border: 4px solid #346fb1;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(52, 111, 177, 0.2);
}

.pt-item:last-child .pt-dot {
  border-color: #1c2d58;
  box-shadow: 0 0 0 4px rgba(28, 45, 88, 0.2);
}

.pt-item.left .pt-content {
  float: left;
  width: 45%;
  text-align: right;
  padding-right: 40px;
}

.pt-item.right .pt-content {
  float: right;
  width: 45%;
  text-align: left;
  padding-left: 40px;
}

.pt-content {
  position: relative;
  background: transparent;
  transition: all 0.3s ease;
}

.pt-year {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #346fb1;
  background: #eef4fb;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.pt-item:last-child .pt-year {
  color: #1c2d58;
  background: #e9ecf2;
}

.pt-icon {
  font-size: 40px;
  color: #1c2d58;
  margin-bottom: 15px;
  opacity: 0.1;
  position: absolute;
  top: -10px;
}

.pt-item.left .pt-icon {
  right: 40px;
}

.pt-item.right .pt-icon {
  left: 40px;
}

.pt-content h3 {
  font-size: 26px;
  color: #1c2d58;
  margin-bottom: 15px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.pt-content p {
  color: #606060;
  line-height: 1.8;
  font-size: 15px;
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  border-left: 4px solid #346fb1;
}

.pt-item.right .pt-content p {
  border-left: none;
  border-right: 4px solid #346fb1;
}

.pt-item:last-child .pt-content p {
  border-color: #1c2d58;
}

@media screen and (max-width: 768px) {
  .ptb-50 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .service-card {
    width: 100%;
  }

  .wingate-about .feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .section-title {
    text-align: center;
    margin-bottom: 45px;
    width: 100%;
    margin: auto;
  }

  .premium-timeline::before {
    left: 20px;
  }

  .pt-dot {
    left: 20px;
  }

  .pt-item.left .pt-content,
  .pt-item.right .pt-content {
    float: none;
    width: calc(100% - 50px);
    margin-left: 50px;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }

  .pt-item.left .pt-icon,
  .pt-item.right .pt-icon {
    left: 0;
    right: auto;
  }

  .pt-item.left .pt-content p,
  .pt-item.right .pt-content p {
    border-left: 4px solid #346fb1;
    border-right: none;
  }

  .pt-item:last-child .pt-content p {
    border-left-color: #1c2d58;
  }
}

/* Premium FAQ Accordion Styles Override */
.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-title {
  padding: 14px 24px;
  border-bottom: none;
  font-size: 18px;
  font-weight: 600;
  color: #1c2d58;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  text-transform: none;
  text-align: left;
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-title i {
  margin-right: 0;
  margin-left: 15px;
  font-size: 24px;
  color: #1c2d58;
  transition: transform 0.3s ease;
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-title.active {
  color: #1c2d58;
  /* border-bottom: 1px solid #f0f0f0; */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-title.active i {
  color: #5693cc;
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-title.active i::before {
  content: "\eb8b" !important;
  /* bx-minus */
}

/* Disable the old flaticon overrides */
.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-title i::before,
.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-title.active i::before {
  font-family: boxicons !important;
}

.faq-list-tab .tab_content .tabs_item .faq-accordion .accordion .accordion-content {
  padding: 14px 24px;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  border-top: 1px solid #eeeeee;
}

/* ==========================================================================
   Careers Page Custom Styles
   ========================================================================== */

.careers-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.careers-content p {
  margin-bottom: 15px;
  color: #666;
}

.careers-features {
  list-style: none;
  padding: 0;
}

.careers-features li {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
}

.careers-features li i {
  color: #198754;
  font-size: 22px;
  margin-right: 10px;
}

.single-job-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.single-job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 106, 0, 0.2);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.job-header h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #212529;
}

.job-type {
  background: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.job-meta {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.job-meta li {
  font-size: 15px;
  color: #777;
  display: flex;
  align-items: center;
}

.job-meta li i {
  margin-right: 5px;
  color: #ff6a00;
}

.careers-cta {
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  margin-top: 20px;
}

.careers-cta h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.careers-cta p {
  color: #666;
  max-width: 600px;
  margin: 0 auto 20px;
}

/* ==========================================================================
   Apply Modal Custom Styles
   ========================================================================== */

#applyModal .modal-content {
  border: none;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

#applyModal .modal-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eeeeee;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#applyModal .modal-title {
  font-weight: 700;
  color: #212529;
  font-size: 20px;
}

#applyModal .modal-body {
  padding: 20px;
}

#applyModal form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  font-size: 14px;
}

#applyModal form .form-control,
#applyModal form .form-control-file {
  background-color: #fcfcfc;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
}

#applyModal form .form-control:focus {
  background-color: #ffffff;
  border-color: #1c2d58;
  box-shadow: 0 0 0 3px rgba(28, 45, 88, 0.15);
  outline: none;
}

#applyModal form textarea.form-control {
  resize: vertical;
  min-height: 60px;
}

#applyModal form .default-btn {
  margin-top: 10px !important;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  background-color: #1c2d58;
  color: #ffffff;
  transition: 0.3s;
}

#applyModal form .default-btn:hover {
  background-color: #131e3d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(28, 45, 88, 0.3);
}

#applyModal .close {
  opacity: 0.5;
  transition: opacity 0.3s;
  outline: none;
  margin-left: auto;
  cursor: pointer;
}

#applyModal .close:hover {
  opacity: 1;
  color: #1c2d58;
}

@media screen and (max-width: 768px) {
  .service-image img {
    border-radius: 0;
  }

  .service-number {
    font-size: 30px;
  }

  .service-content h2 {
    font-size: 20px;
  }

  .service-content p {
    -webkit-line-clamp: 4;
  }

  .service-btn {
    font-size: 14px;
    margin-top: 0;
    padding: 4px 10px;
  }

  .service-image {
    padding: 0px;
  }

  .service-content {
    padding: 10px 20px;
  }

  .service-content h2 {
    margin: 10px 0;
  }

  .service-card {
    top: 80px;
  }

  .page-title-content {
    height: 100px;
  }

  .page-title-content h2 {
    font-size: 20px !important;
  }

  .page-title-content ul {
    padding: 8px 8px;
    display: flex;
  }

  .page-title-area {
    height: auto !important;
  }

  /* Fix for Mega Menu on mobile (MeanMenu) */
  .mean-container .mean-nav ul li .dropdown-menu.mega-menu {
    display: none;
  }

  .mean-container .mean-nav ul li.mean-last .dropdown-menu.mega-menu,
  .mean-container .mean-nav ul li .dropdown-menu.mega-menu[style*="block"] {
    display: block !important;
  }

  .mean-container .mean-nav ul li .mega-menu-column {
    display: block !important;
    border-bottom: none !important;
    padding: 0;
    margin: 0;
  }

  .mean-container .mean-nav ul li .mega-menu-column>a.mean-expand {
    display: none !important;
  }

  .mean-container .mean-nav ul li .mega-menu-column .mega-menu-sublist {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
  }

  .mission-vision-split .vision-box {
    padding: 40px 50px;
  }

  .single-fun-fact h3 .sign-icon {
    display: inline-block;
    font-size: 40px;
    margin-left: 0px;
    position: relative;
  }

  .fun-facts-area.pt-70 {
    padding-top: 18px;
  }

  .fun-facts-area.pb-70 {
    padding-bottom: 0px;
  }

  .about-wrap .about-shape .text h3 {
    font-size: 33px !important;
  }

  .about-wrap .about-shape {
    width: 120px;
    height: 200px;
    position: absolute;
    bottom: -84px;
    right: -60px !important;
  }
}

/* Preloader CSS */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preloader .spinner {
    width: 50px;
    height: 50px;
    position: relative;
}
.preloader .double-bounce1, .preloader .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #1c2d58;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-bounce 2.0s infinite ease-in-out;
}
.preloader .double-bounce2 {
    animation-delay: -1.0s;
}
@keyframes sk-bounce {
    0%, 100% { transform: scale(0.0) }
    50% { transform: scale(1.0) }
}