@import "https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&amp;family=Ubuntu:wght@300;400;500;700&amp;display=swap";

* {
  box-sizing: inherit;

  &:before, &:after {
    box-sizing: inherit;
  }

  scroll-behavior: inherit !important;
}

html {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: roboto,sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  color: #757f95;
  line-height: 1.8;
}

a {
  color: #14212b;
  display: inline-block;
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none;

  &:active, &:focus {
    outline: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-decoration: none;
  }

  &:hover {
    outline: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-decoration: none;
    color: #0049d0;
  }
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #002448;
  margin: 0;
  font-weight: 600;
  font-family: ubuntu,sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0;
}

.img, img {
  max-width: 100%;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}

::-moz-selection, ::selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

* {
  &::-moz-placeholder, &::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
  }
}

.preloader {
  background: #fff;
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
}

.loader {
  width: 80px;
  height: 80px;
  position: relative;
  top: calc(50% - 55px);
  left: calc(50% - 40px);

  &:before, &:after {
    content: '';
    border: 5px solid #4298ef;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 2s linear infinite;
    opacity: 0;
  }

  &:before {
    animation-delay: .5s;
  }
}

@keyframes loader {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.ovrflow-hidden {
  overflow: hidden;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background-color: #f4f9fe;
}

.site-heading {
  margin-bottom: 50px;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 18px;
  color: #4298ef;
  position: relative;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 40px;
  color: #002448;
  margin-top: 5px;
  margin-bottom: 0;

  span {
    color: #4298ef;
  }
}

.site-heading p {
  font-size: 16px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  height: 3px;
  border-bottom: 4px solid #4298ef;
  width: 90px;

  &:after {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    height: 8px;
    width: 8px;
    border-radius: 50px;
    border: 4px solid #4298ef;
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear;
  }
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(85px);
  }

  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(85px);
  }

  100% {
    transform: translateX(-1px);
  }
}

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.py-120 {
  padding: 120px 0;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-0 {
  padding-top: 0;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-0 {
  margin-top: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}

.pos-rel {
  position: relative;
  z-index: 1;
}

.theme-btn {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding: 12px 25px;
  border-radius: 5px;
  -webkit-transition: all .5s;
  transition: all .5s;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  text-align: center;
  border: none;
  background:  #344570;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);

  &:hover {
    background: #4298ef;
    color: #fff;
  }

  i {
    margin-left: 8px;
  }

  span {
    margin-right: 8px;
  }
}

.theme-btn-3 {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding: 12px 25px;
  border-radius: 5px;
  -webkit-transition: all .5s;
  transition: all .5s;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  text-align: center;
  border: none;
  background:  #319900;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);

  &:hover {
    background: #4CED00;
    color: #fff;
  }

  i {
    margin-left: 8px;
  }

  span {
    margin-right: 8px;
  }
}

.theme-btn2 {
  background: #319900;
  color: #fff;

  &:hover {
    background: #4CED00;
    color: #fff;
  }
}

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1185px;
  }
}

.grid-2 {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(6, 1fr);
}

.grid-px-2 {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.gap-0 {
  grid-gap: 0;
}

.cs-gap-1 {
  grid-gap: 1rem;
}

.cs-gap-2 {
  grid-gap: 2rem;
}

.shape-1 {
  position: absolute;
  width: 190px;
  height: 190px;
  top: -70px;
  left: -70px;
  border-radius: 50%;
  background: #da1d25;
  display: flex;
  justify-content: center;
  align-items: center;

  &::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 3px solid #da1d25;
  }
}

.shape-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  right: -100px;
  bottom: -100px;
  border-radius: 50%;
  background: #da1d25;
  display: flex;
  justify-content: center;
  align-items: center;

  &::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: #da1d25;
    opacity: .5;
  }
}

@media all and (max-width: 991px) {
  .shape-2 {
    width: 280px;
    height: 280px;
  }
}

#scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 22px;
  border: none;
  outline: none;
  border-radius: 50px;
  background: #4298ef;
  color: #fff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  transition: all .5s ease-in-out;
}

.header-top {
  padding: 8px 0;
  position: relative;
  background: #344570;
  z-index: 1000;
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 25px;

  li a {
    color: #fff;
    font-weight: 400;

    i {
      margin-right: 10px;
      color: #fff;
    }
  }
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 35px;
}

.header-top-social {
  span {
    color: #fff;
  }

  a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 4px;
    transition: all .5s ease-in-out;

    &:hover {
      opacity: .7;
    }
  }
}

@media all and (max-width: 991px) {
  .header-top {
    display: none;
  }
}

.main {
  margin-top: 0;
}

@media all and (min-width: 992px) {
  .navbar {
    .nav-item {
      .nav-link {
        margin-right: 30px;
        padding: 30px 0;
        font-size: 16px;
        font-weight: 600;
        color: #002448;
        text-transform: capitalize;
      }

      &:last-child .nav-link {
        margin-right: 0;
      }

      .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        width: 220px;
        background: #002245;
        box-shadow: 0 3px 24px rgb(0 0 0 / 10%);

        li {
          border-bottom: 1px dashed rgba(255, 255, 255, 0.2);

          &:last-child {
            margin-bottom: 0;
            border-bottom: none;
          }
        }

        .dropdown-item {
          font-size: 15px;
          font-weight: 500;
          padding: 8px 15px;
          color: #fff;
          position: relative;
          text-transform: capitalize;
          transition: all .5s ease-in-out;

          &:hover {
            background: 0 0;
            color: #4298ef;
            padding-left: 25px;
          }
        }
      }

      .nav-link {
        position: relative;

        &.active {
          color: #fff;
        }
      }

      &:hover {
        .nav-link {
          color: #4298ef;
        }

        .dropdown-menu {
          transition: .3s;
          opacity: 1;
          visibility: visible;
          top: 100%;
          transform: rotateX(0deg);
        }
      }
    }

    .dropdown-menu-end {
      right: 0;
      left: auto;
    }

    .dropdown-menu {
      &.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
      }

      &.fade-up {
        top: 140%;
      }
    }
  }

  .header-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 30px;
  }

  .header-phone {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .header-phone-content span {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: .6;
  }

  .header-phone-icon {
    font-size: 38px;
    color: #4298ef;
  }

  .header-phone-number {
    font-size: 18px;
    line-height: 1;

    a {
      color: #4298ef;
    }
  }

  .header-nav-search a {
    color: #002448;
    font-size: 18px;
    padding: 5px 10px;

    &:hover {
      color: #4298ef;
    }
  }

  #main_nav {
    justify-content: flex-end;
  }
}

.navbar {
  background: #fff;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;

  &.fixed-top {
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
    animation: slide-down .7s;

    .nav-item .nav-link::before {
      color: #00235a;
    }
  }

  .navbar-brand {
    .logo-display {
      display: block;
    }

    .logo-scrolled {
      display: none;
    }
  }

  &.fixed-top .navbar-brand {
    .logo-display {
      display: none;
    }

    .logo-scrolled {
      display: block;
    }
  }
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

button.navbar-toggler {
  font-size: 3.5rem;
  padding: 0;
  margin: 0;

  &:focus {
    outline: none;
    box-shadow: none;
  }
}

.navbar-toggler-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand img {
  width: 220px;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  font-family: 'font awesome 5 pro';
  content: "\f107";
  font-weight: 500;
  border: none;
  font-size: 16px;
}

.mobile-menu-right {
  display: flex;
  align-items: center;
}

@media all and (max-width: 1199px) {
  .navbar .header-btn {
    display: none;
    display: none;
  }

  .header-phone {
    display: none;
  }
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
  }

  .navbar-brand {
    padding-left: 10px;

    img {
      width: 190px;
    }
  }

  .navbar-collapse {
    max-height: 290px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: #fff;
  }

  .dropdown-toggle::after {
    float: right;
  }

  .navbar .nav-item .nav-link {
    color: #002448;
    font-weight: 700;
    transition: all .5s ease-in-out;

    &:hover {
      color: #4298ef !important;
    }
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler-icon {
    font-size: 32px;
    color: #002448;
    font-weight: 500;
    padding-right: 10px;
    margin-bottom: 10px;
    background: 0 0;
  }

  .navbar {
    .dropdown-menu {
      border-radius: 5px;
    }

    &.fixed-top .navbar-toggler-icon {
      color: #002448;
    }
  }

  .header-nav-right, .middle-header {
    display: none;
  }
}

.navbar .nav-item .dropdown-submenu {
  position: relative;

  a {
    &::after {
      transform: rotate(-90deg);
      position: absolute;
      right: 15px;
      top: 6px;
      font-weight: 400;
    }

    &:hover {
      background: 0 0;
      color: #4298ef;
    }
  }

  .dropdown-menu {
    top: 120%;
    left: 100%;
    opacity: 0;
    visibility: hidden;
  }

  &:hover .dropdown-menu {
    top: 0;
    opacity: 1;
    visibility: visible;
  }
}

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-video {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-single {
  padding-top: 120px;
  padding-bottom: 120px;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  
  .hero-video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;

    .hero-title {
      color: #fff;
      font-size: 65px;
      font-weight: 700;
      text-transform: capitalize;

      span {
        color: #4298ef;
      }
    }

    .hero-sub-title {
      color: #4298ef;
      font-size: 28px;
      font-weight: 600;
      position: relative;
      text-transform: capitalize;
    }

    p {
      color: #fff;
      line-height: 30px;
      font-weight: 400;
      margin-bottom: 20px;
    }

    .hero-btn {
      gap: 2rem;
      display: flex;
      margin-top: 1rem;
      justify-content: start;
    }
  }
}

.hero-single-2 {
  padding-top: 620px;
  padding-bottom: 120px;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  
  .hero-video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /*background: rgba(0, 0, 0, 0.5);*/
    z-index: -1;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;

    .hero-title {
      color: #fff;
      font-size: 65px;
      font-weight: 700;
      text-transform: capitalize;

      span {
        color: #4298ef;
      }
    }

    .hero-sub-title {
      color: #4298ef;
      font-size: 28px;
      font-weight: 600;
      position: relative;
      text-transform: capitalize;
    }

    p {
      color: #fff;
      line-height: 30px;
      font-weight: 400;
      margin-bottom: 20px;
    }

    .hero-btn {
      gap: 2rem;
      display: flex;
      margin-top: 1rem;
      justify-content: start;
    }
  }
}

.hero-title {
  font-weight: 700;
  margin: 20px 0;
}

.hero-sub-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.hero-section .owl-dots {
  position: absolute;
  text-align: center;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);

  .owl-dot {
    display: block;

    span {
      border: 4px solid rgba(66, 152, 239, 0.5);
      margin: 5px;
      border-radius: 50px;
      width: 18px;
      height: 18px;
      display: inline-block;
      background-color: transparent;
      transition: all .5s ease-in-out;
    }

    &.active span {
      background-color: transparent;
      border-color: #4298ef;
    }
  }
}

.hero-slider2.owl-theme .owl-nav {
  margin-top: 0;

  [class*=owl-] {
    color: #fff;
    font-size: 30px;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    cursor: pointer;
    height: 55px;
    width: 55px;
    border-radius: 50px;
    line-height: 55px;
    text-align: center;
    transition: all .5s ease-in-out;

    &:hover {
      background: #fff;
      color: #4298ef;
    }
  }

  .owl-prev {
    left: 40px;
  }

  .owl-next {
    right: 40px;
  }

  .owl-prev, .owl-next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
}

@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .hero-slider2.owl-theme .owl-nav {
    .owl-prev {
      top: unset;
      bottom: 5px !important;
    }

    .owl-next {
      top: unset;
      bottom: 5px !important;
      left: 120px;
    }
  }

  .hero-social-wrapper {
    display: none;
  }
}

@media all and (max-width: 991px) {
  .hero-single {
    .hero-content .hero-title {
      font-size: 35px;
    }

    padding-top: 150px;
  }

  .hero-img {
    display: none;
  }
}

@media all and (max-width: 767px) {
  .hero-single .hero-content {
    .hero-sub-title {
      font-size: 18px;
    }

    .hero-btn {
      gap: 2rem;
    }

    .theme-btn {
      padding: 10px 14px;
    }
  }

  .hero-section .owl-dots {
    top: unset;
    right: unset;
    left: 10px;
    bottom: 40px;

    .owl-dot {
      display: inline-block;
    }
  }
}

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: #4298ef;
  color: #fff !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;

  i::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #4298ef;
    border-radius: 50px;
    animation: ripple-wave 1s linear infinite;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .5 ease-in-out;
  }
}

@keyframes ripple-wave {
  0% {
    opacity: .8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

.about-area {
  position: relative;
  display: block;
}

.about-left {
  position: relative;
  display: block;
  margin-right: 30px;
}

.about-img {
  position: relative;

  img {
    border-radius: 5px;
  }

  &::before {
    content: "";
    position: absolute;
    right: -20px;
    top: -20px;
    width: 250px;
    height: 250px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    border-radius: 5px;
    z-index: -1;
  }

  &::after {
    content: "";
    position: absolute;
    left: -20px;
    bottom: -20px;
    width: 250px;
    height: 250px;
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    border-radius: 5px;
    z-index: -1;
  }
}

.about-img-poligon {
    position: relative;
  
    img {
      border-radius: 5px;
    }
  
    &::before {
      content: "";
      position: absolute;
      right: -20px;
      top: -20px;
      width: 250px;
      height: 250px;
      background: #4298ef;
      clip-path: polygon(0 0, 100% 100%, 100% 0);
      border-radius: 5px;
      z-index: -1;
    }
  
    &::after {
      content: "";
      position: absolute;
      left: -20px;
      bottom: -20px;
      width: 250px;
      height: 250px;
      background: #4298ef;
      clip-path: polygon(0 100%, 100% 100%, 0 0);
      border-radius: 5px;
      z-index: -1;
    }
  }

.about-right {
  position: relative;
  display: block;
  padding-left: 30px;
}

.about-experience {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  position: absolute;
  left: 10px;
  bottom: 80px;
  padding: 15px 20px 15px 15px;
  border-radius: 5px;

  span {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #4298ef;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    font-weight: 900;
  }
}

.about-list-wrapper {
  position: relative;
  display: block;
  margin-top: 32px;
  margin-bottom: 32px;
}

.about-list {
  position: relative;
  display: block;

  li {
    position: relative;
    display: flex;
    align-items: center;

    + li {
      margin-top: 8px;
    }

    .icon {
      position: relative;
      display: flex;
      align-items: center;

      i {
        font-size: 50px;
        color: #4298ef;
      }
    }

    .text {
      margin-left: 16px;

      p {
        margin-top: 10px;
      }
    }
  }
}

@media all and (max-width: 991px) {
  .about-right {
    margin-top: 80px;
    padding-left: 0;
  }

  .about-img img {
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  .about-title {
    font-size: 30px;
  }

  .about-left {
    margin-right: 0;
  }

  .about-left-content {
    bottom: -70px;
  }

  .about-img {
    width: 90%;
  }
}

.feature-item {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 25px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
}

.feature-icon {
  width: 70px;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 20px;
  color: #4298ef;
  transition: all .5s ease-in-out;
}

.feature-item {
  &:hover .feature-icon, &.active .feature-icon {
    color: #fff;
  }

  &:hover {
    .feature-icon {
      transform: scale(-1) rotate(180deg);
    }

    background: #4298ef;
  }

  &.active {
    background: #4298ef;
  }
}

.feature-content h4 {
  font-size: 25px;
  color: #002448;
  margin-bottom: 10px;
}

.feature-item {
  &:hover .feature-content h4, &.active .feature-content h4 {
    color: #fff;
  }
}

.feature-content p {
  color: #002448;
}

.feature-item {
  &:hover .feature-content p, &.active .feature-content p {
    color: #fff;
  }
}

.service-area {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-item {
  position: relative;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
  overflow: hidden;
  transition: all .5s ease-in-out;

  &:hover {
    transform: translateY(-10px);
  }
}

.service-content {
  padding: 25px;
  padding-top: 0;
  position: relative;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -70px;
  width: 90px;
  height: 90px;
  border: 5px solid #fff;
  color: #fff;
  background: #344570;
  margin-right: 20px;
  margin-left: auto;
  border-radius: 50px;
  position: relative;
  transition: all .5s ease-in-out;

  i {
    font-size: 45px;
    color: #fff;
  }
}

.service-item:hover .service-icon {
  transform: scale(-1) rotate(180deg);
}

.service-arrow {
  margin-top: 30px;

  .theme-btn {
    padding: 9px 25px;
  }
}

.service-title a {
  font-size: 23px;
  margin-top: 15px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #002448;

  &:hover {
    color: #4298ef;
  }
}

.service-area2 .service-icon {
  margin: 20px 0 0 20px;
}

.service-details img {
  border-radius: 5px;
}

.service-single-list i {
  color: #4298ef;
  margin-right: 10px;
}

.service-download a {
  border: 2px solid #4298ef;
  padding: 10px 20px;
  color: #002448;
  display: block;
  margin-bottom: 20px;
  border-radius: 5px;
  transition: all .5s ease-in-out;

  i {
    margin-right: 10px;
  }

  &:hover {
    background-color: #4298ef;
    color: #fff;
  }
}

.video-area {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  &::before {
    content: "";
    position: absolute;
    background: rgba(3, 2, 7, 0.2);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  height: 500px;
  z-index: 100;

  img {
    border-radius: 12px;
  }
}

.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  background: #4298ef;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media all and (max-width: 767px) {
  .video-wrapper {
    height: 250px;
  }
}

.choose-area {
  position: relative;
  background: #344570;
}

.choose-content {
  padding: 50px 0 50px 30px;
}

.choose-img {
  background-image: url(../img/choose/02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  margin-left: -200px;
}

.choose-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 30px;
}

.choose-item-icon i {
  width: 55px;
  height: 55px;
  border: 2px solid #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
}

.choose-item-info {
  h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 22px;
  }

  p {
    color: #fff;
  }
}

.choose-img .video-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.gallery-item {
  position: relative;
  margin-bottom: 25px;

  &::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: 10px;
    background: rgba(218, 29, 37, 0.7);
    transform: scaleY(0);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
  }

  &:hover::before {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  .popup-img {
    position: absolute;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50px;
    font-size: 20px;
    background: #fff;
    color: #da1d25;
    text-align: center;
    left: 50%;
    top: 50%;
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, -50%);
  }

  &:hover .popup-img {
    opacity: 1;
  }
}

.gallery-info {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease-in-out;

  h4 a {
    color: #fff;
    font-size: 28px;

    &:hover {
      color: #030207;
    }
  }

  span {
    color: #fff;
  }
}

.gallery-item:hover .gallery-info {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}

.testimonial-area {
  position: relative;
  overflow: hidden;
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    background-image: url(../img/testimonial/map.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 80%;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}

.testimonial-single {
  background: #fff;
  border-radius: 8px;
  padding: 35px;
}

.testimonial-quote p {
  font-size: 17px;
  color: #002448;
  font-style: italic;
}

.testimonial-content {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 30px;
}

.testimonial-author-img {
  margin-right: 20px;
  width: 80px;
  padding: 5px;
  border-radius: 50px;
  border: 2px dashed #4298ef;

  img {
    border-radius: 50%;
  }
}

.testimonial-author-info {
  h4 {
    font-size: 20px;
    color: #002448;
  }

  p {
    color: #002448;
  }
}

.testimonial-quote-icon {
  position: absolute;
  width: 80px;
  right: 70px;
  bottom: 50px;
}

.testimonial-area .owl-dots {
  text-align: center;
  margin-top: 70px;

  .owl-dot {
    span {
      background: #4298ef;
      margin: 5px;
      border-radius: 10px;
      width: 25px;
      height: 7px;
      display: inline-block;
      transition: all .5s ease-in-out;
    }

    &.active span {
      background-color: #4298ef;
      width: 7px;
      height: 7px;
    }
  }
}

.testimonial-rate {
  color: #f69323;
}

.counter-area {
  background: #4298ef;
  position: relative;
  z-index: 1;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;

  .icon {
    font-size: 60px;
    color: #fff;
  }

  .counter {
    display: block;
    line-height: 1;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
  }

  .title {
    color: #fff;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
  }
}

@media all and (max-width: 1199px) {
  .counter-area {
    &::before, &::after {
      width: 80px;
      height: 80px;
    }
  }
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin: 40px 0;
  }
}

.case-item {
  margin-bottom: 65px;
  position: relative;
}

.case-img {
  position: relative;

  img {
    border-radius: 5px;
  }

  &::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: 10px;
    opacity: 0;
    border-radius: 5px;
    background: rgba(66, 152, 239, 0.7);
    transform: scaleY(0);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
  }
}

.case-item:hover .case-img::before {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.case-link {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #4298ef !important;
  background: #fff;
  text-align: center;
  border-radius: 50px;
  left: 50%;
  top: 50%;
  font-size: 22px;
  margin-top: 50px;
  opacity: 0;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

.case-item:hover .case-link {
  margin-top: 0;
  opacity: 1;
}

.case-content {
  left: 20px;
  right: 20px;
  bottom: -40px;
  position: absolute;
  padding: 20px 10px 20px 20px;
  background: #fff;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.case-content-info {
  small {
    color: #4298ef;
    font-size: 18px;
  }

  a {
    font-size: 22px;

    &:hover {
      color: #4298ef;
    }
  }
}

.case-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(66, 152, 239, 0.7);

  i {
    font-size: 20px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50px;
    background: #4298ef;
  }
}

.case-slider {
  &.owl-theme .owl-nav {
    margin-top: 0;

    [class*=owl-] {
      color: #fff;
      font-size: 25px;
      margin: 0;
      padding: 0;
      background: #4298ef;
      display: inline-block;
      cursor: pointer;
      height: 50px;
      width: 50px;
      line-height: 47px;
      text-align: center;
      border-radius: 50%;
      transition: all .5s ease-in-out;
    }

    .owl-prev {
      left: 0;
      opacity: 0;
    }

    .owl-next {
      right: 0;
      opacity: 0;
    }

    .owl-prev, .owl-next {
      position: absolute;
      top: 50%;
      transform: translate(0, -50%);
    }
  }

  &:hover .owl-nav {
    .owl-prev {
      left: -50px;
      opacity: 1;
    }

    .owl-next {
      right: -50px;
      opacity: 1;
    }
  }
}

.filter-btns {
  text-align: center;
  margin-bottom: 30px;

  li {
    display: inline-block;
    text-transform: capitalize;
    margin: 10px;
    padding: 2px 15px;
    border-radius: 5px;
    border: 2px solid #4298ef;
    font-weight: 500;
    color: #4298ef;
    cursor: pointer;
    transition: all .5s ease-in-out;

    &.active, &:hover {
      color: #fff;
      background: #4298ef;
    }
  }
}

@media all and (max-width: 1199px) {
  .case-slider.owl-theme .owl-nav {
    display: none;
  }
}

.case-sidebar .case-sidebar-content ul li {
  border-bottom: 1px solid #e7e7e7;
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
  line-height: 33px;

  &:last-child {
    border-bottom: none;
  }
}

.case-sidebar-title {
  font-size: 28px;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.case-sidebar .case-sidebar-content {
  ul li span {
    display: block;
    font-weight: 400;
    margin: 0;
    text-transform: capitalize;
  }

  .rating a {
    color: #f69323;
  }
}

.case-new-project {
  background: #4298ef !important;

  h4 {
    color: #fff;
    margin-bottom: 30px;
  }
}

.new-project-btn {
  background: #fff;
  color: #191f30;
  border: none;
  border-radius: 5px;
  padding: 10px 25px;
  transition: all .5s ease-in-out;

  &:hover {
    background: #002448;
    color: #fff;
  }

  i {
    margin-left: 8px;
  }
}

.case-details img {
  border-radius: 5px;
}

.case-single-list i {
  color: #4298ef;
  margin-right: 10px;
}

.blog-item {
  border-radius: 5px;
  margin-bottom: 25px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;

  .blog-item-img {
    padding: 10px 10px 0;
  }

  img {
    border-radius: 8px;
  }

  &:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

.blog-item-info {
  padding: 23px 30px 30px;
}

.blog-item-meta ul {
  margin: 0;
  padding: 0;
  margin-bottom: 14px;
  border-bottom: 1px solid #e6e8eb;
  padding-bottom: 18px;

  li {
    display: inline-block;
    margin-right: 15px;
    position: relative;
    color: #002448;

    i {
      margin-right: 5px;
      color: #4298ef;
    }
  }
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.blog-item-info p {
  margin-bottom: 16px;
}

.blog-btn {
  margin-top: 20px;
  padding: 6px 25px;
  border: 2px solid #4298ef;
  background: #4298ef;
  border-radius: 5px;
  color: #fff;

  i {
    margin-left: 8px;
  }

  &:hover {
    background: 0 0;
    color: #4298ef;
  }
}

.blog-item-info a:hover {
  color: #4298ef;
}

@media all and (max-width: 991px) {
  .blog-item-info {
    padding: 23px 15px 30px;
  }
}

.blog-single-content img {
  border-radius: 5px;
}

.blog-thumb-img {
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;

  .blog-meta-left ul {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  i {
    margin-right: 5px;
    color: #4298ef;
  }

  a {
    color: #66788a;

    &:hover {
      color: #4298ef;
    }
  }
}

.blog-details-title {
  font-size: 34px;
}

.blockqoute {
  background: #e3f0fd;
  border-left: 5px solid #4298ef;
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
}

.blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 40px;
    background: #4298ef;
    left: 0;
    top: 10px;
  }
}

.blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;

  ul {
    display: flex;
    align-items: center;
    gap: 15px;

    a {
      background: #e3f0fd;
      color: #002448;
      padding: 2px 10px;
      border-radius: 5px;
      transition: all .5s ease-in-out;

      &:hover {
        background: #4298ef;
        color: #fff;
      }
    }
  }
}

.blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: #e3f0fd;
  border-radius: 8px;
  margin: 50px 0;
  padding: 20px;
}

.blog-author-img {
  border: 2px dashed #4298ef;
  padding: 5px;
  width: 250px;
  border-radius: 50%;

  img {
    border-radius: 50%;
  }
}

.author-name {
  font-size: 22px;
  color: #4298ef;
  margin: 8px 0;
}

.author-info {
  padding: 0 20px;
}

.author-social {
  margin-top: 10px;

  a {
    margin-right: 10px;
    color: #4298ef;
    transition: all .5s ease-in-out;

    &:hover {
      color: #002448;
    }
  }
}

.blog-comments {
  margin-bottom: 50px;
}

.blog-comments-wrapper {
  margin: 30px 0;
}

.blog-comments-single {
  display: flex;
  justify-content: start;
  align-items: center;

  img {
    border-radius: 50%;
  }
}

.blog-comments-content {
  padding: 20px 30px;

  span {
    font-size: 14px;
  }

  a {
    font-weight: 600;
    margin-top: 5px;
    color: #4298ef;

    &:hover {
      color: #002448;
    }
  }
}

.blog-comments-reply {
  margin-left: 50px;
}

.blog-comments-form {
  background: #e3f0fd;
  padding: 30px;
  border-radius: 8px;

  h3, .form-group {
    margin-bottom: 20px;
  }

  .form-control {
    padding: 12px 20px;
    border-radius: 5px;
    box-shadow: none;
    transition: all .5s ease-in-out;

    &:focus {
      border-color: #4298ef;
    }
  }

  .theme-btn i {
    margin-right: 5px;
    margin-left: 0;
  }
}

@media all and (max-width: 767px) {
  .blog-meta {
    flex-direction: column;
    font-size: 15px;

    .blog-meta-left ul {
      gap: 10px;
    }
  }

  .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px 0 0;
  }

  .blog-comments-single {
    flex-direction: column;
    text-align: center;
    padding: 30px 0;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .blog-comments-reply {
    margin-left: 0;
  }
}

.widget {
  background: #e3f0fd;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;

  .widget-title {
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
    font-size: 25px;

    &::before {
      position: absolute;
      content: '';
      width: 15px;
      border-bottom: 3px solid #4298ef;
      bottom: 0;
      left: 0;
    }

    &::after {
      position: absolute;
      content: '';
      width: 30px;
      border-bottom: 3px solid #4298ef;
      bottom: 0;
      left: 25px;
    }
  }

  .search-form {
    .form-control {
      padding: 10px 15px;
      border-radius: 5px;
      box-shadow: none;

      &:focus {
        border-color: #4298ef;
      }
    }

    position: relative;

    button {
      position: absolute;
      right: 0;
      top: 0;
      padding: 8px 18px 6px;
      background: 0 0;
      border: none;
      color: #4298ef;
    }
  }

  .category-list a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #ced4da;
    transition: all .5s ease-in-out;

    &:last-child {
      margin-bottom: 0;
      border-bottom: none;
    }

    &:hover {
      padding-left: 10px;
      color: #4298ef;
    }

    i {
      margin-right: 5px;
      color: #4298ef;
    }

    span {
      float: right;
    }
  }

  .recent-post-single {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 20px;
  }

  .recent-post-img {
    margin-right: 20px;

    img {
      width: 100px;
      border-radius: 5px;
    }
  }

  .recent-post-bio {
    h6 {
      font-size: 19px;
    }

    span {
      font-size: 14px;
      color: #4298ef;

      i {
        margin-right: 5px;
      }
    }

    h6 a:hover {
      color: #4298ef;
    }
  }

  .social-share-link a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border: 1px solid #4298ef;
    color: #4298ef;
    text-align: center;
    margin-right: 5px;
    border-radius: 50px;
    transition: all .5s ease-in-out;

    &:hover {
      background: #4298ef;
      color: #fff;
    }
  }

  .tag-list a {
    border: 1px solid #4298ef;
    color: #002448;
    padding: 3px 15px;
    margin-bottom: 10px;
    margin-right: 10px;
    border-radius: 5px;
    display: inline-block;
    transition: all .5s ease-in-out;

    &:hover {
      background-color: #4298ef;
      color: #fff;
    }
  }
}

.contact-wrapper {
  position: relative;
}

.contact-form {
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.contact-form-header {
  margin-bottom: 30px;

  h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

.contact-form .form-group {
  margin-bottom: 25px;

  .form-control {
    padding: 12px 20px;
    border-radius: 5px;
    box-shadow: none;
    transition: all .5s ease-in-out;

    &:focus {
      border-color: #4298ef;
    }
  }
}

.contact-map {
  margin-top: 120px;

  iframe {
    width: 100%;
    height: 450px;
    border-radius: 5px;
  }
}

.contact-content {
  margin-bottom: 50px;
}

.contact-form .theme-btn i {
  margin-right: 5px;
  margin-left: 0;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  background: #fff;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.contact-info-icon {
  border: 2px solid #4298ef;
  border-radius: 50%;
  padding: 5px;

  i {
    font-size: 25px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50px;
    background: #4298ef;
  }
}

.contact-info h5 {
  margin-bottom: 5px;
}

@media all and (max-width: 991px) {
  .contact-wrapper {
    padding: 50px 20px;
  }

  .contact-form {
    padding: 0;
  }

  .contact-info {
    padding: 0;
    margin-bottom: 50px;
  }

  .contact-content {
    margin-top: 80px;
  }
}

.appointment-area {
  background: #c6e3fd;
  position: relative;
  z-index: 1;
}

.appointment-img {
  background-image: url(../img/appointment/04.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.appointment-content {
  max-width: 540px;
  margin-left: 30px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.appointment-form {
  margin-top: 30px;

  .form-group {
    margin-bottom: 20px;
  }

  .form-select, .form-control {
    border: none;
    padding: 15px;
    box-shadow: none;
    border-radius: 5px;
    color: #6c757d;
  }

  .theme-btn {
    margin-top: 25px;
  }
}

@media all and (max-width: 1199px) {
  .appointment-content {
    max-width: unset;
    padding-right: 40px;
  }
}

@media all and (max-width: 991px) {
  .appointment-img {
    display: none;
  }
}

.team-area {
  position: relative;
  overflow: hidden;
}

.team-item {
  margin-bottom: 80px;
  position: relative;
  transition: all .5s ease-in-out;
  z-index: 1;

  &::after {
    content: "";
    position: absolute;
    left: -10px;
    bottom: -10px;
    width: 250px;
    height: 250px;
    background: #4298ef;
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    border-radius: 0 0 0 8px;
    z-index: -1;
  }

  &:hover {
    transform: translateY(-10px);
  }

  img {
    padding: 5px;
    border-radius: 12px;
  }
}

.team-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -100px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.team-bio {
  padding-top: 15px;
  padding-bottom: 10px;

  h5 {
    font-size: 22px;
    margin-top: 5px;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: capitalize;

    a {
      color: #002448;
    }
  }

  span {
    color: #4298ef;
    text-transform: capitalize;
  }

  h5 a:hover {
    color: #4298ef;
  }
}

.team-social {
  position: absolute;
  margin-bottom: 10px;
  text-align: center;
  top: 15px;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.team-item:hover .team-social {
  opacity: 1;
  right: 15px;
}

.team-social {
  a {
    display: block;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 10px;
    background: #4298ef;
    border-radius: 50px;

    &:hover {
      background: #002245;
      color: #fff;
    }
  }

  h6 {
    margin-top: 28px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transform: rotate(-90deg);

    &::before {
      content: "";
      position: absolute;
      width: 40px;
      height: 3px;
      background: #fff;
      left: -50px;
      top: 7px;
    }
  }
}

.contenedor-tarjetas {
    display: flex;
    justify-content: space-between;
}

.tarjeta {
    width: 16.66%;
    margin: 10px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.tarjeta:hover {
    background-color: #4298ef; /* Color de fondo al pasar el cursor */
    transform: translateY(-10px); /* Elevar la tarjeta 10px */
    color: white; /* Cambiar el color de las letras a blanco */
}

.tarjeta h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.tarjeta p {
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contenedor-swipe {
        position: relative;
        overflow: hidden;
      overflow-x: scroll;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }

    .contenedor-flechas {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
      }
  
      .contenedor-tarjetas {
        flex: 1; /* Asignar flex-grow: 1 para que las tarjetas se expandan */
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
      }
  
      .tarjeta {
        flex: 0 0 100%;
        scroll-snap-align: center;
      }

    .flecha-izquierda,
  .flecha-derecha {
    position: relative; /* Cambiar a posición relativa */
    font-size: 24px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
  }

  .flecha-izquierda {
    left: 16px;
  }

  .flecha-derecha {
    right: 16px;
  }

  .contenedor-tarjetas {
    position: relative; /* Agregar posición relativa */
    z-index: 1; /* Asignar un valor de z-index menor que las flechas */
  }
  }

.process-single {
  position: relative;

  .icon {
    height: 100px;
    width: 100px;
    display: inline-block;
    position: relative;
    border-radius: 50%;
    font-size: 40px;
    border: 2px dashed #4298ef;
    padding: 5px;
    margin-bottom: 30px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);

    img {
      border-radius: 50%;
    }
  }

  span {
    position: absolute;
    height: 35px;
    width: 35px;
    font-size: 14px;
    background: #4298ef;
    line-height: 35px;
    border-radius: 50%;
    color: #fff;
    left: -3px;
    top: -13px;
    font-weight: 600;
  }

  h4 {
    margin-bottom: 10px;
  }

  &::before {
    content: url(../img/process/4.png);
    position: absolute;
    right: -65px;
    top: 34px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .process-single::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .process-single::before {
    display: none;
  }
}

.process-area .col-lg-3:last-child .process-single::before {
  display: none;
}

.pricing-item {
  background: #fff;
  text-align: center;
  margin-bottom: 25px;
  border-radius: 5px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;

  &:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

.pricing-header-wrapper {
  background-image: url(../img/pricing/3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 25px;
  border-radius: 5px 5px 0 0;
}

.pricing-header {
  h5 {
    font-size: 25px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    color: #fff;
  }

  p {
    color: #fff;
  }
}

.pricing-amount {
  margin: 15px 0;

  strong {
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
  }
}

.pricing-amount-type {
  position: relative;
  z-index: 1;
  color: #fff;
  text-transform: uppercase;
}

.pricing-feature {
  padding: 40px 0;
  text-align: center;

  li {
    margin-bottom: 15px;

    &:last-child {
      margin-bottom: 0;
    }

    i {
      color: #4298ef;
      margin-right: 5px;
    }
  }
}

.pricing-footer {
  padding-bottom: 30px;
}

@media all and (max-width: 991px) {
  .pricing-amount strong {
    font-size: 50px;
  }
}

/**/
.pricing-item {
  background: #fff;
  text-align: center;
  margin-bottom: 25px;
  border-radius: 5px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;

  &:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}

.pricing-header-wrapper-escolar {
  background-image: url(../img/pricing/5.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 25px;
  border-radius: 5px 5px 0 0;
}

.pricing-header-escolar {
  h5 {
    font-size: 25px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    color: #fff;
  }

  p {
    color: #fff;
  }
}

.pricing-amount-escolar {
  margin: 15px 0;

  strong {
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
  }
}

.pricing-amount-type-escolar {
  position: relative;
  z-index: 1;
  color: #fff;
  text-transform: uppercase;
}

.pricing-feature-escolar {
  padding: 40px 0;
  text-align: center;

  li {
    margin-bottom: 15px;

    &:last-child {
      margin-bottom: 0;
    }

    i {
      color: #4298ef;
      margin-right: 5px;
    }
  }
}

.pricing-footer-escolar {
  padding-bottom: 30px;
}

@media all and (max-width: 991px) {
  .pricing-amount-escolar strong {
    font-size: 50px;
  }
}
/**/

/**/
.pricing-item-domicilio {
    background: #fff;
    text-align: center;
    margin-bottom: 25px;
    border-radius: 5px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
  
    &:hover {
      -webkit-transform: translateY(-10px);
      transform: translateY(-10px);
    }
  }
  
  .pricing-header-wrapper-domicilio {
    background-image: url(../img/pricing/3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 25px;
    border-radius: 5px 5px 0 0;
  }
  
  .pricing-header-domicilio {
    h5 {
      font-size: 25px;
      text-transform: uppercase;
      display: inline-block;
      text-align: center;
      color: #000;
    }
  
    p {
      color: #000;
    }
  }
  
  .pricing-amount-domicilio {
    margin: 15px 0;
  
    strong {
      font-size: 50px;
      font-weight: 900;
      color: #000;
      line-height: 1;
    }
  }
  
  .pricing-amount-type-domicilio {
    position: relative;
    z-index: 1;
    color: #000;
    text-transform: uppercase;
  }
  
  .pricing-feature-domicilio {
    padding: 40px 0;
    text-align: center;
  
    li {
      margin-bottom: 15px;
  
      &:last-child {
        margin-bottom: 0;
      }
  
      i {
        color: #4298ef;
        margin-right: 5px;
      }
    }
  }
  
  .pricing-footer-domicilio {
    padding-bottom: 30px;
  }
  
  @media all and (max-width: 991px) {
    .pricing-amount-domicilio strong {
      font-size: 50px;
    }
  }
/**/

.faq-area {
  .accordion-item {
    border: none;
    margin-bottom: 30px;
    border-radius: 8px !important;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);

    span {
      width: 45px;
      height: 45px;
      margin-right: 15px;
    }

    i {
      width: 45px;
      height: 45px;
      line-height: 45px;
      border-radius: 50px;
      background: #4298ef;
      text-align: center;
      color: #fff;
    }
  }

  .accordion-button:not(.collapsed) {
    color: #4298ef;
    background-color: transparent;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
  }
}

.accordion-button {
  border-radius: 0 !important;
  background: 0 0;
  font-weight: 700;
  font-size: 18px;
  color: #002448;
  box-shadow: none !important;

  &:not(.collapsed) {
    border-bottom: 1px solid #4298ef;

    &::after {
      background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNicgZmlsbD0nIzIxMjUyOSc+PHBhdGggZmlsbC1ydWxlPSdldmVub2RkJyBkPSdNMS42NDYgNC42NDZhLjUuNSAwIDAgMSAuNzA4IDBMOCAxMC4yOTNsNS42NDYtNS42NDdhLjUuNSAwIDAgMSAuNzA4LjcwOGwtNiA2YS41LjUgMCAwIDEtLjcwOCAwbC02LTZhLjUuNSAwIDAgMSAwLS43MDh6Jy8+PC9zdmc+);
    }
  }
}

.faq-area .theme-btn {
  margin-left: 10px;
}

@media all and (max-width: 991px) {
  .faq-right {
    margin-bottom: 50px;
  }

  .accordion-button {
    font-size: 16px;
  }
}

.partner-area .partner-wrapper img {
  padding: 20px;
}

.site-breadcrumb {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  z-index: 1;

  &::before {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background: rgba(3, 2, 7, 0.7);
    content: '';
  }

  .breadcrumb-title {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
  }

  .breadcrumb-menu {
    position: relative;
    z-index: 1;

    li {
      position: relative;
      display: inline-block;
      margin-left: 25px;
      color: #fff;
      font-weight: 400;
      text-transform: capitalize;

      a {
        color: #fff;
        -moz-transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
      }

      &.active {
        color: #4298ef;
      }

      &::before {
        position: absolute;
        content: '//';
        right: -21px;
        top: 1px;
        text-align: center;
        font-size: 16px;
        color: #fff;
      }

      &:first-child {
        margin-left: 0;
      }

      &:last-child:before {
        display: none;
      }

      a:hover {
        color: #4298ef;
      }
    }
  }
}

@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 190px;
    padding-bottom: 120px;
  }
}

/**/
.site-breadcrumb-domicilio {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px;
    z-index: 1;
  
    &::before {
      height: 100%;
      width: 100%;
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      content: '';
    }
  
    .breadcrumb-title-domicilio {
      font-size: 40px;
      color: #fff;
      font-weight: 700;
      margin-bottom: 10px;
      text-transform: capitalize;
    }
  
    .breadcrumb-menu-domicilio {
      position: relative;
      z-index: 1;
  
      li {
        position: relative;
        display: inline-block;
        margin-left: 25px;
        color: #fff;
        font-weight: 400;
        text-transform: capitalize;
  
        a {
          color: #fff;
          -moz-transition: all .5s ease-in-out;
          -webkit-transition: all .5s ease-in-out;
          -ms-transition: all .5s ease-in-out;
          transition: all .5s ease-in-out;
        }
  
        &.active {
          color: #4298ef;
        }
  
        &::before {
          position: absolute;
          content: '//';
          right: -21px;
          top: 1px;
          text-align: center;
          font-size: 16px;
          color: #fff;
        }
  
        &:first-child {
          margin-left: 0;
        }
  
        &:last-child:before {
          display: none;
        }
  
        a:hover {
          color: #4298ef;
        }
      }
    }
  }
  
  @media (max-width: 991px) {
    .site-breadcrumb-domicilio {
      padding-top: 190px;
      padding-bottom: 120px;
    }
  }
/**/

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;

  .page-link {
    border: none;
    background: #002245;
    color: #fff;
    margin: 0 10px;
    border-radius: 50px !important;
    width: 40px;
    height: 40px;
    line-height: 27px;
    text-align: center;
    transition: all .5s ease-in-out;

    &:hover {
      background: #4298ef;
    }
  }

  .page-item.active .page-link {
    background: #4298ef;
  }
}

body.rtl-mode {
  direction: rtl;

  .item-area {
    direction: ltr;
  }

  .price-wrapper {
    direction: rtl;
  }
}

@media (min-width: 992px) {
  body.rtl-mode {
    .navbar-brand {
      margin-left: 3rem;
    }

    .navbar .nav-item .nav-link {
      margin-left: 3rem;
      margin-right: 0;
    }
  }
}

.login-form {
  padding: 50px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);

  .login-header {
    text-align: center;
    margin-bottom: 50px;

    img {
      width: 200px;
      margin-bottom: 10px;
    }

    h3 {
      color: #4298ef;
      margin-bottom: 5px;
      font-weight: 800;
    }

    p {
      font-size: 20px;
    }
  }

  .login-footer {
    margin-top: 40px;

    p {
      text-align: center;
    }

    a {
      color: #4298ef;
      transition: .5s;

      &:hover {
        color: #002448;
      }
    }
  }

  .form-group {
    margin-bottom: 20px;
  }

  label {
    color: #002448;
    margin-bottom: 5px;
  }

  .form-group .form-control {
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    padding: 12px 18px;
    box-shadow: none;
    transition: .5s;

    &:focus {
      border-color: #4298ef;
    }
  }

  .form-check-input {
    box-shadow: none;
  }

  .forgot-pass {
    color: #4298ef;
    transition: .5s;

    &:hover {
      color: #002448;
    }
  }

  .theme-btn {
    width: 100%;

    i {
      margin-right: 5px;
    }
  }

  .form-check-input {
    margin-top: 6.3px;
  }

  .form-check-label a {
    color: #4298ef;
    transition: .5s;

    &:hover {
      color: #4298ef;
    }
  }
}

.form-check-input:checked {
  background-color: #4298ef;
  border-color: #4298ef;
}

@media only screen and (max-width: 991px) {
  .login-form {
    padding: 40px 20px;
  }
}

.coming-soon {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  position: relative;

  .container {
    position: relative;
  }

  &:before {
    position: absolute;
    content: '';
    background: rgba(66, 152, 239, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .newsletter-form {
    position: relative;
    margin-top: 30px;

    .input-newsletter {
      height: 55px;
      display: block;
      width: 100%;
      border: none;
      border-radius: 5px;
      font-size: 14px;
      padding-top: 0;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 25px;
    }

    button {
      position: absolute;
      right: 4px;
      top: 4px;
      bottom: 4px;
      height: auto;
      border: none;
      border-radius: 5px;
      background: #4298ef;
      display: inline-block;
      color: #fff;
      padding-left: 30px;
      padding-right: 30px;
      transition: .5s;

      &:hover {
        background-color: #002448;
        color: #fff;
      }
    }
  }
}

.coming-social {
  margin-top: 30px;
  text-align: center;

  a {
    color: #fff;
    margin: 5px;
    width: 40px;
    height: 40px;
    line-height: 37px;
    text-align: center;
    border-radius: 50px;
    border: 2px solid #fff;
    display: inline-block;
    transition: .5s;

    &:hover {
      background: #4298ef;
      border-color: #4298ef;
    }
  }
}

.countdown-wrap {
  margin-top: 30px;
}

.countdown-single {
  background: #fff;
  padding: 20px;
  margin: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);

  h2, h5 {
    color: #4298ef;
  }
}

.error-wrapper {
  text-align: center;

  h1 {
    font-size: 250px;
    letter-spacing: 5px;
    font-weight: 700;
    color: #4298ef;

    span {
      color: #002448;
    }
  }

  h2 {
    margin-top: 30px;
    margin-bottom: 10px;
  }

  img {
    width: 100%;
  }

  .theme-btn {
    margin-top: 30px;

    i {
      margin-right: 5px;
      margin-left: 0;
    }
  }
}

@media all and (max-width: 767px) {
  .error-wrapper h1 {
    font-size: 160px;
  }
}

.terms-content {
  &:not(:last-child) {
    margin-bottom: 54px;
  }

  &:first-child {
    margin-top: -3px;
  }

  .terms-list {
    margin-top: 37px;
  }

  h3 {
    margin-bottom: 23px;
    position: relative;
  }

  p:not(:last-child) {
    margin-bottom: 26px;
  }
}

.terms-list li:not(:last-child) {
  margin-bottom: 16px;
}

.footer-area {
  background: #002245;
  position: relative;
  z-index: 1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 240px;
  margin-bottom: 30px;
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  .footer-menu {
    margin: 0;
    padding: 0;
    text-align: right;

    li {
      display: inline-block;
      margin-left: 25px;
      font-size: 16px;

      a {
        color: #f5faff;
        transition: all .5s ease-in-out;

        &:hover {
          color: #4298ef;
        }
      }
    }
  }

  .copyright-text {
    color: #f5faff;
    margin-bottom: 0;
    font-size: 16px;

    a {
      color: #4298ef;
      font-weight: 500;
    }
  }
}

.footer-widget-title {
  color: #fff;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 22px;
  letter-spacing: 1.5px;
  z-index: 1;

  &::before {
    position: absolute;
    content: '';
    z-index: -1;
    width: 15px;
    height: 2px;
    background-color: #4298ef;
    bottom: 0;
    left: 0;
  }

  &::after {
    position: absolute;
    content: '';
    z-index: -1;
    width: 30px;
    height: 2px;
    background-color: #4298ef;
    bottom: 0;
    left: 20px;
  }
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  li a {
    color: #fff;
    transition: all .5s ease-in-out;

    i {
      margin-right: 5px;
      color: #4298ef;
    }

    &:hover {
      padding-left: 10px;
      color: #4298ef;
    }
  }
}

.footer-widget-box p {
  color: #fff;
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 40px;

  li a i {
    height: 40px;
    width: 40px;
    line-height: 35px;
    text-align: center;
    border-radius: 50px;
    background: #344570;
    border: 2px solid #344570;
    color: #fff;
    transition: all .5s ease-in-out;

    &:hover {
      background: 0 0;
      color: #fff;
    }
  }
}

.footer-newsletter .subscribe-form {
  .form-control {
    border: 2px solid #e8e8e8;
    height: 55px;
    padding: 0 15px;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    box-shadow: none;
    background-color: transparent;

    &::placeholder {
      color: #f2f3f5;
      opacity: 1;
    }

    &:-ms-input-placeholder, &::-ms-input-placeholder {
      color: #f2f3f5;
    }
  }

  .theme-btn {
    margin-top: 20px;
    width: 100%;

    &:hover {
      background: #fff;
      color: #4298ef;
    }
  }
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #f5faff;
  font-size: 16px;
  margin-bottom: 20px;

  a {
    color: #f5faff;
    -webkit-transition: .3s;
    transition: .3s;
  }

  i {
    width: 12px;
    height: 30px;
    font-size: 18px;
    margin-right: 15px;
    border-radius: 5px;
    line-height: 31px;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
    color: #4298ef;
  }
}

@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;

    li {
      margin-left: 0;
      margin-right: 15px;
    }
  }
}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0;
  }
}

.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.sidenav-bar-visible .search-popup {
  width: 80%;
}

.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  border: none;
  margin: 0 auto;
  margin-top: -200px;
  border-radius: 5px;
  text-align: center;
  background: #4298ef;
  text-align: center;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  transition-delay: 1500ms;
}

.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 300ms ease;
}

.search-active .search-popup form {
  transform: scaleX(1);
  transition-delay: 1200ms;
}

.search-popup {
  .form-group {
    position: relative;
    margin: 0;
    overflow: hidden;

    input {
      &[type=text], &[type=search] {
        position: relative;
        width: 100%;
        height: 60px;
        outline: none;
        border-radius: 5px;
        border: none;
        padding: 0 100px 0 35px;
        transition: all 500ms ease;
        text-transform: capitalize;
      }

      &[type=submit] {
        position: absolute;
        right: 5px;
        top: 5px;
        border-radius: 5px;
        background: #4298ef;
        text-align: center;
        font-size: 20px;
        color: #fff !important;
        height: 50px;
        width: 50px;
        border: none;
        cursor: pointer;
        transition: all 500ms ease;
      }
    }

    button {
      position: absolute;
      right: 5px;
      top: 5px;
      border-radius: 5px;
      background: #4298ef;
      text-align: center;
      font-size: 20px;
      color: #fff !important;
      height: 50px;
      width: 50px;
      border: none;
      cursor: pointer;
      transition: all 500ms ease;
    }

    input[type=submit]:hover, button:hover {
      background: #002245;
    }
  }

  input::placeholder, textarea::placeholder {
    color: #51668a;
  }
}

.mobile-search-btn {
  display: none;
}

@media all and (max-width: 991px) {
  .mobile-search-btn {
    display: block;
    position: absolute;
    right: 15%;
    color: #002448;
    font-size: 20px;

    &:hover {
      color: #4298ef;
    }
  }
}

@media all and (max-width: 767px) {
  .mobile-search-btn {
    right: 20%;
  }
}

.home-3 .hero-single {
  padding-top: 150px;
  padding-bottom: 150px;
}
