/* =========== GOOGLE FONTS ========= */
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700;800;900&family=Heebo:wght@300;400;500;600;700;800;900&display=swap");
/* ============================= 
    COMMON CSS
================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Heebo", sans-serif;
  color: #585978;
}

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

a {
  text-decoration: none;
  transition: all 0.3s ease-out 0s;
}

a:hover {
  text-decoration: none;
}

button {
  transition: all 0.3s ease-out 0s;
}



/* ============================= 
    TYPOGRAPHY CSS
================================ */
h1, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
  font-weight: 700;
  color: #323450;
  margin-bottom: 0;
  font-family: "Fira Sans", sans-serif;
}

h1, .h1 {
  font-size: 80px;
  letter-spacing: .7px;
}


h3, .h3 {
  font-size: 40px;
  letter-spacing: .4px;
}

h4, .h4 {
  font-size: 30px;
  letter-spacing: .35px;
}

h5, .h5 {
  font-size: 24px;
}

.font-weight-bold {
  font-weight: 700;
}

.font-weight-semi-bold {
  font-weight: 600;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-regular {
  font-weight: 400;
}

.font-weight-light {
  font-weight: 300;
}

.body-font-size {
  font-size: 16px;
}

.font-size-sm {
  font-size: 14px;
}

.font-size-xs {
  font-size: 12px;
}

.caption-font-size {
  font-size: 14px;
}

p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0px;
}



/* ============================= 
    BUTTONS CSS
================================ */
.button {
  height: 44px;
  font-size: 18px;
  font-weight: 500;
  box-sizing: border-box;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #2F80ED;
  color: #ffffff;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
  padding: 0 25px;
  overflow: hidden;
}

.button i {
  padding-left: 20px;
}

.button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  padding: 50%;
  border-radius: 50%;
  margin: auto;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
  transition: all .4s linear;
  transform: translate3d(-50%, -50%, 0) scale(0);
}

.button:hover {
  color: #ffffff;
}

.button:hover::before {
  transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.button.border-button {
  background: transparent;
  color: #2F80ED;
  border-color: #2F80ED;
}

.button.border-button::before {
  background: rgba(47, 128, 237, 0.16);
}

.button-lg {
  height: 64px;
}

.button-sm {
  height: 34px;
  font-size: 16px;
  font-weight: 400;
}

/* ============================= 
    HEADER-2 CSS
================================ */
.header {
  background: #ffffff;
}

.header.header-2 .navbar {
  padding: 20px 0;
  border-radius: 0px;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

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

@media (max-width: 767px) {
  .header.header-2 .navbar {
    padding: 17px 0;
  }
}

.header.header-2 .navbar-brand {
  padding: 0;
}

.header.header-2 .navbar-brand img {
  max-width: 180px;
}

.header.header-2 .navbar-toggler {
  padding: 0;
}

.header.header-2 .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.header.header-2 .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #323450;
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.header.header-2 .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}

.header.header-2 .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.header.header-2 .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-2 .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}

@media (max-width: 767px) {
  .header.header-2 .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(50, 52, 80, 0.1);
    padding: 5px 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-2 .navbar-nav {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .header.header-2 .navbar-nav {
    margin-bottom: 15px;
  }
}

.header.header-2 .navbar-nav .nav-item {
  position: relative;
  margin-right: 40px;
}

.header.header-2 .navbar-nav .nav-item a {
  font-size: 16px;
  font-weight: 500;
  color: #585978;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0px;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.header.header-2 .navbar-nav .nav-item a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #2F80ED;
  transition: all 0.3s ease-out 0s;
  left: 0;
  top: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-2 .navbar-nav .nav-item a::after {
    top: auto;
    bottom: 5px;
  }
}

@media (max-width: 767px) {
  .header.header-2 .navbar-nav .nav-item a::after {
    top: auto;
    bottom: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-2 .navbar-nav .nav-item a {
    display: inline-block;
    padding: 10px 0px;
    color: #323450;
  }
}

@media (max-width: 767px) {
  .header.header-2 .navbar-nav .nav-item a {
    display: inline-block;
    padding: 10px 0px;
    color: #323450;
  }
}

.header.header-2 .navbar-nav .nav-item a:hover, .header.header-2 .navbar-nav .nav-item a.active {
  color: #2F80ED;
}

.header.header-2 .navbar-nav .nav-item a:hover::after, .header.header-2 .navbar-nav .nav-item a.active::after {
  width: 100%;
}

.header.header-2 .navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-2 .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media (max-width: 767px) {
  .header.header-2 .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

.header.header-2 .navbar-nav .nav-item .sub-menu {
  width: 200px;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-2 .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .header.header-2 .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

.header.header-2 .navbar-nav .nav-item .sub-menu li {
  display: block;
}

.header.header-2 .navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #000000;
}

.header.header-2 .navbar-nav .nav-item .sub-menu li a.active, .header.header-2 .navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: #2F80ED;
}

.header.header-2 .navbar-nav .sub-nav-toggler {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-2 .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #000000;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767px) {
  .header.header-2 .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #000000;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

.header.header-2 .navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}


/* ============================= 
    HERO-2 CSS
================================ */
.hero-section-wrapper-2 {
  background: #ffffff;
  position: relative;
}

.hero-section-wrapper-2 .header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: transparent;
}

.hero-section-wrapper-2 .header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: #ffffff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.hero-section-wrapper-2 .hero-style-2 {
  position: relative;
  z-index: 1;
}

.hero-section-wrapper-2 .hero-style-2::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 90%;
  background: rgba(47, 128, 237, 0.2);
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section-wrapper-2 .hero-style-2::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-section-wrapper-2 .hero-style-2::after {
    display: none;
  }
}

.hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper {
  padding: 300px 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper {
    padding: 250px 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper {
    padding: 200px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper {
    padding: 200px 0 50px;
  }
}

@media (max-width: 767px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper {
    padding: 150px 0 50px;
  }
}

.hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper h4 {
  font-weight: 600;
  color: #2F80ED;
  margin-bottom: 30px;
}

.hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper h2 {
  margin-bottom: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper h2 {
    font-size: 55px;
    line-height: 65px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper h2 {
    font-size: 47px;
    line-height: 58px;
  }
}

@media (max-width: 767px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media only screen and (min-width: 575px) and (max-width: 767px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper h2 {
    font-size: 47px;
    line-height: 58px;
  }
}

.hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper p {
  font-size: 20px;
  line-height: 30px;
}

@media only screen and (min-width: 1400px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper p {
    padding-right: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper p {
    padding-right: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper p {
    padding-right: 100px;
  }
}

.hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper .buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper .buttons .button {
  margin-right: 60px;
}

@media (max-width: 767px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper .buttons .button {
    margin-right: 35px;
  }
}

.hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper .buttons .video-button {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #323450;
}

.hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper .buttons .video-button .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid #2F80ED;
  color: #2F80ED;
  border-radius: 50%;
  margin-right: 20px;
}

.hero-section-wrapper-2 .hero-style-2 .hero-image {
  margin-bottom: 100px;
  position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-image img {
    max-width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-image img {
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-image img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-image img {
    max-width: 100%;
  }
}

.hero-section-wrapper-2 .hero-style-2 .hero-image .shape {
  position: absolute;
}

.hero-section-wrapper-2 .hero-style-2 .hero-image .shape.shape-1 {
  left: -70px;
  bottom: 120px;
}



/* ============================= 
    FEATURE-2 CSS
================================ */
.feature-style-2 {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.feature-style-2 .single-feature {
  margin-bottom: 40px;
  margin-right: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-style-2 .single-feature {
    margin-right: 0;
  }
}

.feature-style-2 .single-feature .icon {
  margin-bottom: 30px;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #2F80ED;
  color: #ffffff;
  font-size: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-style-2 .single-feature .content h5 {
  font-weight: 600;
}

@media (max-width: 767px) {
  .feature-style-2 .single-feature .content p {
    padding-right: 5px;
  }
}

.feature-style-2 .feature-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .feature-style-2 .feature-img {
    width: 35%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-style-2 .feature-img {
    width: 35%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .feature-style-2 .feature-img {
    position: static;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 50px;
    padding: 0 30px;
  }
}

.feature-style-2 .feature-img img {
  max-width: 100%;
}


/* ============================= 
    PRICING-1 CSS
================================ */
.pricing-style-1 {
  padding: 100px 0 60px;
  background: #F3F3F3;
}

.pricing-style-1 .single-pricing {
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
  margin-bottom: 40px;
  padding: 45px 40px;
  border: 1px solid transparent;
  transition: all 0.3s ease-out 0s;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-style-1 .single-pricing {
    padding: 45px 25px;
  }
}

.pricing-style-1 .single-pricing .popular-badge {
  position: absolute;
  top: 45px;
  right: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-style-1 .single-pricing .popular-badge {
    right: 20px;
  }
}

.pricing-style-1 .single-pricing.active, .pricing-style-1 .single-pricing:hover {
  border-color: #2F80ED;
}

.pricing-style-1 .single-pricing .image {
  width: 120px;
  height: 120px;
  background: #EBF4FF;
  border-radius: 50%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-style-1 .single-pricing .image img {
  max-width: 100%;
}

.pricing-style-1 .single-pricing h6 {
  color: #585978;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-style-1 .single-pricing h6 {
    font-size: 16px;
  }
}

.pricing-style-1 .single-pricing h4 {
  margin-bottom: 20px;
  font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-style-1 .single-pricing h4 {
    font-size: 24px;
  }
}

.pricing-style-1 .single-pricing h3 {
  margin-bottom: 18px;
  color: #2F80ED;
}

.pricing-style-1 .single-pricing ul {
  margin-bottom: 30px;
}

.pricing-style-1 .single-pricing ul li {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 34px;
  margin-bottom: 12px;
}

.pricing-style-1 .single-pricing ul li i {
  color: #2F80ED;
  margin-right: 10px;
}



.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}
