/* --------------------------------------------------------------
# Hero Section
-------------------------------------------------------------- */

.hero {
  width: 100%;
  background: linear-gradient(10deg, rgba(255, 255, 255, 0.7) 0%, rgba(3, 143, 231, 0.5) 60%, rgba(0, 72, 205, 0.9) 90%),
    url("../../img/hero-bg-alt.jpg") center left;
  background-size: cover;
  position: relative;
  padding: 120px 0;
  z-index: 3;
  outline: 10px solid transparent;
  overflow: visible;
}

@media (min-width: 768px) {
  .hero:after {
    position: absolute;
    content: "";
    width: 50%;
    background: rgb(0 41 85 / 90%);
    box-shadow: 2px 2px 28px 1px rgba(9, 21, 51, 0.81);
    top: 0;
    bottom: 0;
    left: -110px;
    transform: skewX(-15deg);
    margin-bottom: -70px;
  }
}

@media (max-width: 1199px) {
  .hero:after {
    width: 75%;
  }
  .hero .col-xl-4 {
    width: 60%;
  }
}

@media (max-width: 1034px) {
  .hero:before {
    background: rgba(27, 47, 69, 0.7);
  }
}

@media screen and (max-width: 767px) {
  .hero {
    background-position-x: right;
    background-image: linear-gradient(10deg, rgba(27, 47, 69, 0.8) 0%, rgba(27, 47, 69, 0.9) 90%),
    url(../../img/hero-bg-alt.jpg);
  }
  .hero .col-xl-4 {
    width: 100%;
  }
}

.hero .container {
  z-index: 1;
  padding-top: 80px;
}

.hero h2 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-family: var(--font-secondary);
}
.hero h2.typing_wrap {
  min-height: 125px;
}

.hero h2 .typed {
  color: #fff;
  transition: 0.3s;
  border-bottom: 2px solid var(--color-primary);
}

.hero h2 .typed-cursor {
  font-weight: 100;
}

.hero blockquote {
  color: #fff;
  padding-left: 20px;
  font-size: 15px;
  font-family: var(--font-default);
  border-left: 2px solid var(--color-primary);
  margin: 40px 0;
}

.hero blockquote p {
  color: #fff;
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
  transform: skewX(-15deg);
}

.hero .btn-get-started > span {
  transform: skew(15deg);
  display: inline-block;
}

.hero .btn-get-started:hover {
  background: rgba(86, 184, 230, 0.8);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #fff;
}

.hero .btn-watch-video:hover i {
  color: #82cbed;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.about {
  padding-top: 120px;
  padding-bottom: 0;
}

.about .section-heading {
  text-align: end;
}

.about .img-bg {
  min-height: 500px;
  background-size: cover;
}

.about .slides {
  background-color: #f7f9fc;
}

.about h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  padding-bottom: 20px;
}

.about h4 {
  font-size: 18px;
  font-weight: 400;
  color: #29486a;
  font-family: var(--font-secondary);
}

.about .swiper {
  margin: 100px 140px;
  overflow: hidden;
}

.about .swiper-button-prev:after,
.about .swiper-button-next:after {
  font-size: 24px;
  color: var(--color-secondary);
}

.about .swiper-button-prev {
  left: 80px;
}

.about .swiper-button-next {
  right: 80px;
}

.about .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.about .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color-secondary);
}

.about .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 1200px) {
  .about .swiper {
    margin: 60px 60px 40px 60px;
  }

  .about .swiper-button-prev,
  .about .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .about .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.page-about .about {
  padding: 0 0 80px 0;
}

/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 1px 1px 15px 0 rgba(68, 88, 144, 0.3);
  transition: all 0.3s ease-in-out;
  z-index: 1;
  transform: skewX(-10deg);
}
.services .section-heading {
  padding-bottom: 5px;
}

.services-description {
  text-align: center;
  padding-bottom: 40px;
}

.services .icon-box > div {
  transform: skewX(10deg);
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: var(--color-primary);
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: var(--color-primary);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #425451;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: var(--color-primary);
}

@media (max-width: 570px) {
  .services .icon-box {
    margin: 0 auto;
    max-width: 350px;
  }
}

@media (max-width: 420px) {
  .services .icon-box {
    margin: 0 auto;
    max-width: 280px;
  }
}

/*--------------------------------------------------------------
# Mission, Vision, Goals
--------------------------------------------------------------*/

.mission {
  padding: 50px 0;
}
.mission .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.mission .content p {
  font-size: 15px;
  color: #848484;
}

.mission h3 {
  font-weight: 500;
  font-size: 24px;
}

.mission .accordion-list .section-heading {
  text-align: left;
  padding: 0;
}

.mission .accordion-list .section-heading em {
  background-color: #1391ff1d;
  padding: 5px 20px;
}

.mission .accordion-list .section-heading em span {
  font-size: 26px;
  color: var(--color-primary);
}

.mission .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 80px;
}

.mission .accordion-list ul {
  padding: 0;
  list-style: none;
}

.mission .accordion-list li {
  padding: 10px 40px;
  background: #fff;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .mission .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .about .section-heading {
    text-align: center;
  }
  .services .col-md-8 {
    max-width: 100%;
    margin: 0 auto;
  }
  .services {
    padding: 40px 15px;
  }
  .mission {
    padding: 0 5px;
    padding-bottom: 70px;
  }
  .mission .content {
    padding-top: 30px;
  }
  .mission .accordion-list {
    padding-bottom: 30px;
  }
  .mission .accordion-list li {
    padding: 10px;
  }
  .mission .img {
    margin: 0;
    padding: 0;
    min-height: 400px;
  }
}

@media screen and (max-width: 767px) {
  .about {
    padding-top: 20px;
  }
}

@media (max-width: 575px) {
  .mission .img {
    min-height: 200px;
  }
}