@import "theme.css";
@import "base.css";

.bg-banner {
  background-image: url('../images/header/banner-bg.svg');
}

.primary-text {
  color: var(--primary);
}

body {
  font-family: "Lato", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: var(--font-color);
  overflow-x: hidden;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--primary);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--font-color-dark);
  margin: 0px;
  font-size: 48px;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--font-color-dark);
  margin: 0px;
  font-size: 36px;
}

h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--font-color-dark);
  margin: 0px;
  font-size: 28px;
}

h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--font-color-dark);
  margin: 0px;
  font-size: 22px;
}

h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--font-color-dark);
  margin: 0px;
  font-size: 18px;
}

h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--font-color-dark);
  margin: 0px;
  font-size: 16px;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--font-color);
  margin: 0px;
}

.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 25px;
  font-size: 16px;
  line-height: 48px;
  border-radius: 8px;
  border: 0;
  color: white;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: var(--primary);
  background: -webkit-gradient(linear, left top, right top, from(var(--primary)), color-stop(50%, var(--secondary)), to(var(--primary)));
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
  background-size: 200%;
}

.main-btn:hover {
  color: white;
  background-position: right center;
}

.section-title .line {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--primary)), to(var(--secondary)));
  background: linear-gradient(var(--primary) 0%, var(--secondary) 100%);
  width: 150px;
  height: 5px;
  margin-bottom: 10px !important;
}

.section-title .sub-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--secondary);
  text-transform: uppercase;
}

.section-title .title {
  font-size: 32px;
  padding-top: 10px;
}

.section-title .title span {
  font-weight: 400;
  display: contents;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  background: white;
  z-index: 99999;
}

.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.preloader .loader .spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}

.preloader .loader .spinner .spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  -webkit-animation: spinner-linspin 1568.2353ms linear infinite;
  animation: spinner-linspin 1568.2353ms linear infinite;
}

.preloader .loader .spinner .spinner-container .spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 50%;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 50%;
}

.preloader .loader .spinner-circle {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  border-color: var(--primary) var(--primary) #e1e1e1;
  border-radius: 50%;
  border-width: 6px;
}

.preloader .loader .spinner-left .spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: #e1e1e1;
  -webkit-animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .spinner-right .spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: #e1e1e1;
  -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.navbar-nav .nav-item {
  margin-right: 45px;
  position: relative;
}

.navbar-nav .nav-item a {
  font-size: 16px;
  font-weight: 400;
  color: white;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.navbar-nav .nav-item a:hover {
  color: var(--secondary);
}

.navbar-nav .nav-item a.active {
  color: var(--secondary);
}

.navbar-btn .main-btn {
  line-height: 45px;
  background-size: 200%;
}

.navbar-btn .main-btn:hover {
  color: white;
  background-position: right center;
}

.header-hero-content {
  padding-top: 180px;
}

.header-hero-content .header-sub-title {
  font-size: 38px;
  font-weight: 300;
  color: white;
}

.header-hero-content .header-title {
  font-size: 38px;
  font-weight: 700;
  color: white;
}

.header-hero-content .text {
  color: white;
  margin-top: 30px;
}

.header-hero-content .main-btn {
  margin-top: 40px;
}

.single-services {
  background-color: white;
  -webkit-box-shadow: 0px 5px 30px 0px rgba(167, 167, 167, 0.16);
  box-shadow: 0px 5px 30px 0px rgba(167, 167, 167, 0.16);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 50px 30px;
  border: 2px solid transparent;
  border-radius: 8px;
}

.single-services .services-icon {
  display: inline-block;
  position: relative;
}

.single-services .services-icon img {
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.single-services .services-icon .shape-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.single-services .services-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 34px;
  color: white;
}

.single-services .services-content .services-title a {
  font-size: 26px;
  font-weight: 700;
  color: var(--font-color-dark);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-services .services-content .services-title a:hover {
  color: var(--primary);
}

.single-services .services-content .text {
  margin-top: 30px;
}

.single-services .services-content .more {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-services .services-content .more i {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 700;
}

.single-services .services-content .more:hover {
  letter-spacing: 2px;
}

.single-services:hover {
  border-color: var(--primary);
}

.single-services:hover .services-icon .shape {
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}

.counter-wrapper {
  padding-left: 70px;
}

.counter-wrapper .counter-content .text {
  margin-top: 35px;
}

.counter-wrapper .single-counter {
  max-width: 155px;
  height: 120px;
  border-radius: 60px;
  position: relative;
  z-index: 5;
  margin-top: 60px;
}

.counter-wrapper .single-counter::before {
  position: absolute;
  content: "";
  width: 155px;
  height: 120px;
  border-radius: 60px;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: -1;
}

.counter-wrapper .single-counter .count {
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.counter-wrapper .single-counter .text {
  font-size: 16px;
  color: white;
}

.counter-wrapper .single-counter.counter-color-1::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#33c8c1), to(#119bd2));
  background: linear-gradient(#33c8c1 0%, #119bd2 100%);
}

.counter-wrapper .single-counter.counter-color-2::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#fe8464), to(#fe6e9a));
  background: linear-gradient(#fe8464 0%, #fe6e9a 100%);
}

.counter-wrapper .single-counter.counter-color-3::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#361cc1), to(#2e82ef));
  background: linear-gradient(#361cc1 0%, #2e82ef 100%);
}

.subscribe-area {
  padding: 40px 50px 90px;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(50, 77, 215, 0.14);
  box-shadow: 0px 0px 18px 0px rgba(50, 77, 215, 0.14);
  border-radius: 10px;
  background-color: white;
}

.subscribe-form {
  position: relative;
}

.subscribe-form input {
  border: 2px solid #e1e1e1;
  height: 65px;
  padding: 0 30px;
  border-radius: 5px;
  width: 100%;
  color: var(--font-color-dark);
}

.subscribe-form input::-webkit-input-placeholder {
  opacity: 1;
  color: var(--font-placeholder-color);
  opacity: 1;
  color: var(--font-placeholder-color);
}

.subscribe-form input:-ms-input-placeholder {
  opacity: 1;
  color: var(--font-placeholder-color);
}

.subscribe-form input::-ms-input-placeholder {
  opacity: 1;
  color: var(--font-placeholder-color);
}

.subscribe-form input::placeholder {
  opacity: 1;
  color: var(--font-placeholder-color);
}

.subscribe-form input::-moz-placeholder {
  opacity: 1;
  color: var(--font-placeholder-color);
  opacity: 1;
  color: var(--font-placeholder-color);
}

.subscribe-form input:focus {
  border-color: var(--primary);
}

.subscribe-form button {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 65px;
  line-height: 65px;
  background: -webkit-gradient(linear, left top, right top, from(var(--primary)), color-stop(50%, var(--primary-dark)), to(var(--primary)));
  background: linear-gradient(to right, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  background-size: 200%;
}

.subscribe-form button:hover {
  color: white;
  background-position: right center;
}

.footer-area {
  background-position: top center;
  position: relative;
  z-index: 5;
}

.footer-area::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('../images/footer/footer-bg.svg');
  background-position: top center;
  z-index: -1;
  background-size: cover;
}

.footer-about .logo img {
  width: 160px;
}

.footer-about .text {
  color: white;
  line-height: 30px;
  margin-top: 30px;
}

.footer-about .social {
  margin-top: 40px;
}

.footer-about .social li {
  display: inline-block;
  margin-right: 30px;
}

.footer-about .social li a {
  font-size: 22px;
  color: white;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer-about .social li a:hover {
  color: var(--secondary);
}

.footer-title .title {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.link-wrapper {
  padding: 0 35px;
}

.link-wrapper .link {
  padding-top: 20px;
}

.link-wrapper .link li {
  margin-top: 20px;
}

.link-wrapper .link li a {
  font-size: 16px;
  color: white;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.link-wrapper .link li a:hover {
  color: var(--secondary);
}

.footer-contact .contact {
  padding-top: 20px;
}

.footer-contact .contact li {
  margin-top: 20px;
  font-size: 16px;
  color: white;
}

.copyright-content {
  padding-top: 15px;
  text-align: center;
}

.copyright-content p {
  color: white;
}

.copyright-content a {
  font-size: 16px;
  color: white;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.copyright-content a:hover {
  color: var(--secondary);
}

.back-to-top {
  font-size: 20px;
  color: white;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, right top, from(var(--primary)), color-stop(50%, var(--primary-dark)), to(var(--primary)));
  background: linear-gradient(to right, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  background-size: 200%;
  text-align: center;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.back-to-top:hover {
  color: white;
  background-position: right center;
}

@media (max-width: 767px) {
  .navbar-area {
    position: sticky;
    position: -webkit-sticky;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-title .sub-title {
    font-size: 16px;
  }

  .section-title .title {
    font-size: 24px;
  }

  .sticky .navbar {
    padding: 15px 0;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
  }

  .navbar-nav {
    padding: 20px 30px;
  }

  .navbar-nav .nav-item {
    margin: 0;
  }

  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 8px 0;
    color: var(--font-color-dark);
  }

  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .header-hero-content {
    padding-top: 130px;
  }

  .header-hero-content .header-sub-title {
    font-size: 24px;
  }

  .header-hero-content .header-title {
    font-size: 24px;
  }

  .header-hero-image {
    padding-top: 30px;
  }

  .header-hero-image img {
    max-width: 100%;
  }

  .brand-logo {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .single-logo {
    padding: 15px 30px;
    width: 50%;
  }

  .single-services {
    padding: 20px 20px 30px;
  }

  .single-services .services-content .services-title a {
    font-size: 20px;
  }

  .single-services .services-content .text {
    margin-top: 20px;
  }

  .about-shape-1 {
    display: none;
  }

  .about-shape-2 {
    display: none;
  }

  .video-wrapper {
    margin-right: 0;
  }

  .counter-wrapper {
    padding-left: 0;
  }

  .counter-wrapper .single-counter {
    max-width: 100px;
    height: 80px;
  }

  .counter-wrapper .single-counter::before {
    max-width: 100px;
    height: 80px;
  }

  .counter-wrapper .single-counter .count {
    font-size: 18px;
  }

  .counter-wrapper .single-counter .text {
    font-size: 14px;
  }

  .subscribe-area {
    padding: 10px 30px 60px;
  }

  .subscribe-content .subscribe-title {
    font-size: 24px;
  }

  .subscribe-form button {
    position: relative;
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
  }

  .link-wrapper {
    padding: 0;
    padding-right: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title .title {
    font-size: 30px;
  }

  .navbar-nav .nav-item {
    margin-right: 30px;
  }

  .single-services .services-content .services-title a {
    font-size: 24px;
  }

  .counter-wrapper {
    padding-left: 0;
  }

  .subscribe-content .subscribe-title {
    font-size: 30px;
  }

  .link-wrapper {
    padding: 0px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sticky .navbar {
    padding: 15px 0;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
  }

  .navbar-nav {
    padding: 20px 30px;
  }

  .navbar-nav .nav-item {
    margin: 0;
  }

  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 8px 0;
    color: var(--font-color-dark);
  }

  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .single-logo {
    padding: 15px 15px;
  }

  .counter-wrapper {
    padding-left: 0;
  }

  .link-wrapper {
    padding: 0;
    padding-right: 50px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .navbar-area {
    position: sticky;
    position: -webkit-sticky;
  }

  .header-hero-content .header-sub-title {
    font-size: 30px;
  }

  .header-hero-content .header-title {
    font-size: 30px;
  }

  .single-logo {
    width: 33.33%;
  }

  .counter-wrapper .single-counter {
    max-width: 155px;
    height: 120px;
  }

  .counter-wrapper .single-counter::before {
    max-width: 155px;
    height: 120px;
  }

  .counter-wrapper .single-counter .count {
    font-size: 22px;
  }

  .counter-wrapper .single-counter .text {
    font-size: 16px;
  }

  .subscribe-form button {
    position: absolute;
    width: auto;
    margin-top: 0;
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}

@media only screen and (min-width: 1921px) {
  .footer-area::before {
    height: 1120px;
  }
}