/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Raleway:wght@300;400;500;600;800;900&display=swap");

/* Default */
body {
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  padding: 0;
  margin: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1 {
  font-size: 60px;
  line-height: 70px;
  color: #000000;
  font-weight: 900;
}

.section-heading h2 {
  font-size: 52px;
  font-weight: bold;
  color: #000;
}

.section-heading h3 {
  font-size: 28px;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-weight: bold;
}

a,
a:focus,
a:hover {
  outline: 0 !important;
  box-shadow: none !important;
  text-decoration: none;
}

a:hover,
a:focus,
header .navbar .navbar-nav .current_page_item.nav-link a {
  color: #0ab2fc !important;
}

.max-width-1540 {
  max-width: 1540px;
}

.spacing {
  padding: 100px 0px;
}

.spacing-tf-bh {
  padding: 100px 0px 50px;
}

.spacing-th-bf {
  padding: 50px 0px 100px;
}

.as-button {
  display: inline-block;
  padding: 12px 48px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #0ab2fc, #0284c7);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.as-button:hover {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  transform: translateY(-1px);
}

.as-button:active {
  transform: translateY(0);
}

.section {
  overflow: hidden;
}

.blue-clr {
  color: #0ab2fc;
}

.grayish-blue-clr {
  color: #40465e;
}

.bg-bluish-white-clr {
  background-color: #f9f9fc;
}

.bg-blue-clr {
  background-color: #0ab2fc;
}

.as-badge {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  background-color: #0ab2fc;
  border-radius: 3px;
  display: inline-flex;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* scrollbar */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f9f9fc;
  border-radius: 6px;
}

::-webkit-scrollbar {
  width: 4px;
  background-color: #f9f9fc;
}

::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #0ab2fc;
}

/* Header */
header {
  padding: 30px 0;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1111;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background: transparent;
}

header .navbar .navbar-nav .nav-link a {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #40465e;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 20px;
  padding: 0;
  position: relative;
  transition: all 0.6s;
}

.nav-link a::after {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0ab2fc;
  content: "";
  opacity: 0;
  -webkit-transition:
    opacity 0.6s,
    -webkit-transform 0.6s;
  -moz-transition:
    opacity 0.6s,
    -moz-transform 0.6s;
  transition:
    opacity 0.6s,
    transform 0.6s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}

.nav-link a:hover::after,
.nav-link a:focus::after,
header .navbar .navbar-nav .current_page_item.nav-link a:after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

button.navbar-toggler {
  outline: 0;
}

/* Footer */
.as-footer-contact-section {
  background-color: #000000;
  padding-top: 65px;
}

.as-footer-contact-section .section-title {
  max-width: 546px;
  width: 100%;
  margin-bottom: 56px;
}

.as-footer-contact-section .section-title h2 {
  color: #ffffff;
  font-size: 49px;
  font-weight: 600;
  line-height: 65px;
}

.as-footer-contact-section .section-title p {
  color: #ffffff99;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  padding-top: 15px;
}

.as-footer-contact-section .contact-area {
  margin-bottom: 90px;
}

.as-footer-contact-section .contact-area .single-contact {
  display: flex;
  gap: 22px;
  margin-bottom: 36px;
  position: relative;
}

.as-footer-contact-section .contact-area .single-contact .content span {
  color: #cacaca;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 14px;
}

.as-footer-contact-section .contact-area .single-contact .content a {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  transition: all 0.5s;
}

.as-footer-contact-section .contact-form-wrap {
  padding: 45px 45px 50px 45px;
  background-color: #f9f9fc;
  border-radius: 20px 20px 0 0;
  margin-bottom: -1px;
}

.as-footer-contact-section .contact-form-wrap h4 {
  color: #000000;
  font-weight: 500;
  font-size: 25px;
  line-height: 1;
  padding-bottom: 15px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.as-footer-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #f9f9fc;
  position: relative;
}

.as-footer-section .as-footer-bottom-wrap .footer-bottom ul li a,
.as-footer-section .as-footer-menu .footer-widget .widget-list li a,
.as-footer-section .as-footer-bottom-wrap .footer-bottom .copyright-area p a {
  color: #40465eb3;
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  transition: 0.5s;
}

.as-footer-section .as-footer-bottom-wrap {
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.as-footer-section .as-footer-bottom-wrap .footer-bottom {
  display: flex;
  justify-content: space-between;
}

.as-footer-section .as-footer-bottom-wrap .footer-bottom .copyright-area p {
  color: #40465e;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}

.as-footer-section .as-footer-bottom-wrap .footer-bottom ul,
.as-footer-section .as-footer-menu .social-area .social-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 45px;
}

.as-footer-section .as-footer-bottom-wrap .footer-bottom ul li {
  line-height: 1;
}

.as-footer-section .as-footer-menu .logo-and-download-wrap {
  max-width: 361px;
  width: 100%;
}

.as-footer-section .as-footer-menu .logo-and-download-wrap .footer-logo {
  display: block;
  margin-bottom: 20px;
}

.as-footer-section .as-footer-menu .logo-and-download-wrap .footer-logo img {
  max-width: 50%;
  height: auto;
}

.as-footer-section .as-footer-menu .social-area h4 {
  color: #40465e;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 1px;
  border-bottom: 1px solid #40465e;
  display: inline-block;
  margin-bottom: 15px;
}

.as-footer-section .as-footer-menu .social-area .social-list {
  gap: 15px !important;
}

.as-footer-section .as-footer-menu .footer-widget .widget-title h3 {
  color: #000000;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 10px;
}

.as-footer-section .as-footer-menu .footer-widget .widget-title h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 85px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(
    90.01deg,
    #0ab2fc 0.01%,
    rgba(1, 14, 208, 0) 102.8%
  );
}

.as-footer-section .as-footer-menu .footer-widget .widget-list li {
  margin-bottom: 22px;
  line-height: 1;
  transition: 0.5s;
  position: relative;
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  background-color: #f7f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap svg.progress-circle path {
  fill: none;
  stroke: #212529;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.progress-wrap .arrow-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  fill: #212529;
  transition: all 200ms linear;
  z-index: 2;
}

.progress-wrap:hover .arrow-icon {
  fill: #0ab2fc;
}

@media screen and (max-width: 1480px) {
  /* Default */
  .max-width-1540 {
    max-width: 90%;
  }

  .section-heading h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .section-heading h3 {
    font-size: 22px;
  }

  /* Header */
  header {
    padding: 15px 0;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  /* footer */
  .as-footer-contact-section .section-title h2 {
    font-size: 45px;
    line-height: 60px;
  }
}

@media screen and (min-width: 981px) and (max-width: 1200px) {
  /* Default */
  .max-width-1540 {
    max-width: 90%;
    padding: 0;
  }

  /* Header */
  header {
    padding: 15px 0;
  }
}

@media (max-width: 1199px) {
  /* footer */
  .as-footer-section .as-footer-menu .logo-and-download-wrap {
    max-width: unset;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* footer */
  .as-footer-section .as-footer-menu {
    padding-top: 100px;
  }

  .as-footer-contact-section .section-title h2 {
    font-size: 40px;
    line-height: 55px;
  }

  .as-footer-contact-section .contact-area .single-contact .content a {
    font-size: 16px;
  }

  .as-footer-contact-section .contact-form-wrap {
    padding: 45px 25px 45px 25px;
  }

  .as-footer-contact-section .section-title {
    margin-bottom: 14px;
  }

  .as-footer-contact-section .contact-area {
    margin-bottom: 36px;
  }
}

@media (max-width: 1024px) {
  /* footer */
  .progress-wrap {
    right: 20px;
    bottom: 60px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  /* Header */
  header .navbar .navbar-nav .nav-link a {
    margin: 0 0 15px;
  }

  /* footer */
  .as-footer-section .as-footer-bottom-wrap .footer-bottom .copyright-area p {
    font-size: 13px;
  }

  .as-footer-section .as-footer-bottom-wrap .footer-bottom ul li a {
    font-size: 13px;
  }
}

@media screen and (max-width: 980px) {
  /* Default */
  .max-width-1540 {
    max-width: 90%;
    padding: 0;
  }

  /* Header */
  nav.navbar.navbar-expand-lg,
  button.navbar-toggler {
    position: absolute;
    right: 0;
  }
}

@media (max-width: 991px) {
  /* Header */
  .navbar-nav .d-flex {
    display: inline-block !important;
  }

  .nav-link a::after {
    content: unset;
  }

  .navbar-collapse {
    position: fixed;
    right: -100%;
    width: 100%;
    top: 0px;
    background: #f7f7fb;
    bottom: 0;
    top: 0;
    box-shadow: none;
    border-radius: 0;
    display: block;
    transition: all 0.5s ease;
    height: 100%;
  }

  body.menu-active .navbar-collapse {
    right: 0;
    transition: all 0.5s ease;
  }

  header .navbar .navbar-nav ul {
    padding: 0 20px;
  }

  header .navbar .navbar-nav .nav-link {
    padding: 15px 20px;
    border-bottom: 1px #524d4d solid;
  }

  header .navbar .navbar-nav .nav-link a {
    margin: 0 !important;
  }

  header .navbar .navbar-nav .current_page_item.nav-link,
  header .navbar .navbar-nav .nav-link:hover,
  header .navbar .navbar-nav .nav-link:focus {
    border-bottom: 4px solid #0ab2fc;
  }

  /* footer */
  .as-footer-section .as-footer-menu .logo-and-download-wrap p {
    margin-bottom: 35px;
  }

  .as-footer-contact-section .section-title {
    margin-bottom: 50px;
  }

  .as-footer-contact-section .section-title h2 {
    font-size: 37px;
    line-height: 50px;
  }

  .as-footer-contact-section .contact-area {
    margin-bottom: 70px;
  }

  .as-footer-contact-section .contact-area li {
    margin-bottom: 45px;
  }

  .as-footer-contact-section .contact-form-wrap {
    border-radius: 15px 15px 0 0;
  }
}

@media screen and (max-width: 767px) {
  /* default */
  html {
    scroll-behavior: smooth;
  }

  .section-heading h2 {
    font-size: 34px;
    line-height: 42px;
  }

  .section-heading h3 {
    font-size: 20px;
  }

  /* Header */
  .Header {
    background: #fff;

    padding: 10px 0;

    top: 0;
  }

  /* footer */
  .as-footer-section .as-footer-menu .row {
    row-gap: 30px;
  }

  .as-footer-contact-section .section-title p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  /* footer */
  .as-footer-section .as-footer-menu .logo-and-download-wrap p {
    font-size: 15px;
  }

  .as-footer-contact-section .section-title h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .as-footer-contact-section .contact-area {
    margin-bottom: 50px;
  }

  .as-footer-contact-section .contact-area li {
    margin-bottom: 35px;
  }

  .as-footer-contact-section .contact-form-wrap {
    padding: 40px 20px 40px 20px;
    border-radius: 10px 10px 0 0;
  }

  .as-footer-contact-section .contact-form-wrap h4 {
    font-size: 22px;
  }
}
