:root {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background: #011866;
}

body {
  font-family: 'Mulish', sans-serif;
  color: #444444;
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

.section-bg {
  background-color: #0e0e12;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #4154f1;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: #012970;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 50px 0;
  background-color: #00AEEF;
}

#header .logo {
  display: flex;
  justify-content: center;
}

.header.header-scrolled {
  background: #00aeef;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header.header-scrolled .logo {
  transition: all 0.5s;
  background: transparent;
  padding: 0px;
  box-shadow: none;
  border: none;
}

header .navbar {
  min-width: auto;
  padding: 0;
  justify-content: normal;
}

.f-right {
  display: flex;
  justify-content: flex-end!important;
}

/*.header .logo {
  transition: all 0.5s;
  line-height: 0;
  background-color: #fff;
  padding: 25px;
  border-radius: 30px;
  box-shadow: 21px 21px 28px 0px rgba(0,0,0,0.15);
-webkit-box-shadow: 21px 21px 28px 0px rgba(0,0,0,0.15);
-moz-box-shadow: 21px 21px 28px 0px rgba(0,0,0,0.15);
}*/

.header .logo img {
  width: 270px;
  height: auto !important;
  max-height: none !important;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: 'Mulish', sans-serif;
  margin-top: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/**
* Desktop Navigation 
*/

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #013289;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover>a {
  color: #4154f1;
}

.navbar .getstarted {
  background: #4154f1;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #5969f3;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

/* .navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
} */

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.navbar .btn-treat {
  background-color: #fff;
  color: #001866;
  padding: 5px 15px;
  border-radius: 50px;
  border: 3px solid #001866;
}

.navbar .btn-get {
  background-color: #001866;
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  border: 3px solid #001866;
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a {
  color: #4154f1;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# hero2 Section
--------------------------------------------------------------*/

.hero2 {
  width: 100%;
  /*background: url(../img/hero2-bg.png) top center no-repeat;
  */
  background-size: cover;
  background-color: #00aeef;
  padding: 60px 0;
}

.hero2 h1 {
  margin: 0;
  font-size: 45px;
  padding: 10px 0;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.hero2 p {
  margin: 0;
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.hero2 h2 {
  color: #fff;
  margin: 15px 0 0 0;
  font-size: 20px;
}

/* .hero2 img {
  width: 40%;
} */

.hero2 .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 18px 40px;
  border-radius: 30px;
  transition: 0.5s;
  color: #fff;
  background: #232c64;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.hero2 .btn-get-started span {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 1px;
}

.hero2 .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero2 .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero2 .hero2-img {
  text-align: right;
}

.hero2 .cont-box {
  background-color: #ffffff;
  color: #000000;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 21px 21px 28px 0px rgba(0, 0, 0, 0.15);
}

.hero2 .ser-box {
  background-color: #001866;
  border: 5px solid #001866;
  color: #fff;
  border-radius: 20px;
  padding: 15px;
  width: 100%;
  box-shadow: 21px 21px 28px 0px rgba(0, 0, 0, 0.15);
}

.hero2 .ser-box h5 {
  text-align: center;
  margin-bottom: 0;
}

.hero2 .start-box {
  display: inline-block;
  background-color: #ffffff;
  border: 5px solid #001866;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  box-shadow: 21px 21px 28px 0px rgba(0, 0, 0, 0.15);
}

.hero2 .start-box:hover {
  background-color: #001866;
  border: 5px solid #001866;
  color: #fff;
}

.hero2 .start-box h4 {
  color: #001866;
  margin-bottom: 0;
  text-align: center;
  font-weight: 700;
}

.hero2 .start-box:hover h4 {
  color: #fff;
}

.hero2 .cont-box.rev {
  padding: 20px;
}

.hero2 .cont-box.rev img {
  width: 100%;
  max-width: 100%;
}

.hero2 .cont-box.rev p {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
}

.hero2 .cont-box.rev a {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 800;
  color: #00aeef;
}

.hero2 .cont-box h2 {
  font-size: 20px;
  font-weight: 800;
  padding: 0 0 15px;
  margin-top: 0;
  color: #000;
}

.hero2 .cont-box p {
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

@media (min-width: 1024px) {
  .hero2 {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero2 {
    height: auto;
    padding: 120px 0 60px 0;
  }
  .hero2 .hero2-img {
    text-align: center;
    margin-top: 80px;
  }
  .hero2 .hero2-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero2 {
    text-align: center;
  }
  .hero2 h1 {
    font-size: 32px;
  }
  .hero2 h2 {
    font-size: 24px;
  }
  .hero2 .hero2-img img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {}

.footer .footer-top {
  background: url(../img/footer-bg.png) bottom center no-repeat;
  background-size: cover;
  border-top: 1px solid #e1ecff;
  border-bottom: 1px solid #e1ecff;
  padding: 60px 0 30px 0;
}

@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}

.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: 'Mulish', sans-serif;
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  width: 400px;
  margin-top: 50px;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 27px;
  font-family: 'Mulish', sans-serif;
}

.footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
  color: #012970;
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #012970;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-top .footer-links {
  margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #d0d4fc;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-top .footer-links ul a {
  color: #013289;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
  color: #4154f1;
}

.footer .footer-top .footer-contact p {
  margin-top: 50px;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 27px;
  font-family: 'Mulish', sans-serif;
}

.container-dd {
  max-width: 1560px;
}

.hero2 .main-img-top {
  margin-top: 100px;
}

span.phone {
  background-color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.phone svg {
  font-size: 16px;
  color: #012970;
}

.img-float img {
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}

.img-float {
  overflow: hidden;
  transform: translatey(0px);
  animation: float 3s ease-in-out infinite;
}

.col-lg-6.main-img-top.hero2-img.justify-content-center.aos-init.aos-animate {
  text-align: -webkit-center;
}

.black-shadow {
  width: 350px;
  height: 10px;
  border-radius: 50%;
  margin-top: 50px;
  background-color: #000;
  filter: blur(16px);
  -webkit-filter: blur(16px);
  opacity: .5;
}

.social-links {
  margin-top: 80px;
  color: #012970;
}

.box-service {
  background-color: #16161e;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  align-items: center;
  margin-bottom: 20px;
}

.box-service img {
  background-size: contain;
  width: 34px;
}

.services h3 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-transform: none;
}

.solution-header {
  text-align: center;
}

.solutions {
  margin-top: 95px;
}

.solution-header h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 35px;
  margin: 0;
  color: #fff;
}

.solution-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  color: #788ca0;
}

.solution-u {
  width: 35px;
  height: 10px;
  border-radius: 20px;
  background-color: #fff;
}

.quote-sec {
  padding-top: 100px;
}

.quote-sec h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 35px;
  margin: 0;
  color: #fff;
}

.quote-sec p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  color: #788ca0;
}

.quote-box {
  height: 400px;
  width: 450px;
  border-radius: 30px;
  background: rgb(16, 155, 216);
  background: linear-gradient(0deg, rgba(16, 155, 216, 1) 0%, rgba(35, 44, 100, 1) 100%);
}

.quote-box-cont {
  position: relative;
  height: 350px;
  width: 350px;
  border-radius: 23px;
  background-color: #1b1926;
  left: 30px;
  top: 75px;
}

.quote-box-cont h2 {
  padding: 40px;
}

.quote-box-cont form {
  padding-left: 40px;
  width: 260px;
}

.quote-box-cont input {
  background-color: #989bb3;
  border-radius: 10px;
  outline: none;
  border: none;
  height: 40px;
  margin-bottom: 5px;
  width: 220px;
}

.quote-box-cont input[type="text"] {
  padding-left: 10px;
  font-size: 15px;
}

.quote-box-cont input::placeholder {
  font-style: italic;
  font-size: 13px;
}

.quote-box-cont button {
  position: absolute;
  background-color: #000;
  border-radius: 10px;
  outline: none;
  border: none;
  height: 130px;
  width: 121px;
  left: 266px;
  background: rgb(16, 155, 216);
  background: linear-gradient(180deg, rgba(16, 155, 216, 1) 0%, rgba(35, 44, 100, 1) 100%);
}

.tech-img {
  margin-top: 100px;
}

.tech-img img {
  width: 80px;
  padding: 0 10px 0 10px;
}

section.features-sec {
  padding: 0;
  background-color: #fff;
}

.features-sec {
  height: auto;
  position: relative;
}

.features-sec:after {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-image: url('../img/banner/features.jpg');
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  z-index: 1;
}

.features-header h2 {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  padding: 120px;
  color: #fff;
}

.features-sec h1 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 15px;
  color: #fff;
}

.features-sec h3 {
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 3px;
  color: #fff;
}

.features-sec p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  width: 60%;
}

.features-sec img {
  width: 20%;
  margin-bottom: 20px;
}

.features-row {
  background-color: #011866;
  /* padding: 50px; */
   padding: 20px;

  border-radius: 25px;
  z-index: 20;
}

.treatment-bg {
  background-color: #fff;
  box-shadow: 21px 21px 28px 0px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  border: 1px solid #808080;
  width: 100%;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
  position: relative;
}

.treatment-bg img:before {
  background: rgba(255, 255, 255, 0);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.treatment-bg img {
  width: 100%;
  border-radius: 20px;
}

.treatment-txt {
  position: absolute;
  padding: 10px;
  padding-top: 15px;
  z-index: 1;
  text-shadow: none;
}

.treatment-txt-details {
  margin: 0;
  width: 100%;
  float: left;
  color: #000;
  padding-left: 30px;
  padding-right: 30px;

  font-size: 22px;
  text-align: left;
}

.treatment-txt-heading {
  color: #000;
  font-size: 35px;
  font-weight: 700;
  padding-left: 30px;
  text-align: left;
}

.btn-get-started {
  padding: 18px 40px;
  border-radius: 30px;
  transition: 0.5s;
  color: #fff;
  background: #232c64;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
  text-align: center;
}

.btn-get-started.small-btn {
  padding: 8px 30px;
  font-size: 21px;
  font-weight: 500;
}

.pro-sec .flex-column {
  /* margin-bottom: 25px; */
}

.how-bg {
  background-color: #0055F0;
  box-shadow: 21px 21px 28px 0px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  width: 100%;
  height: auto;
  color: #fff;
  height: 354px;
  padding-left: 40px;
  padding-top: 50px;
  padding-right: 85px;
}

.how-bg h3 {
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 13px;
}

.how-bg ul li {
  font-size: 24px;
  font-weight: 400;
  list-style: disclosure-closed;
}

.treat-bg {
  background-color: #22B67C;
  box-shadow: 21px 21px 28px 0px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  width: 100%;
  height: auto;
  color: #fff;
  height: 354px;
  padding-left: 40px;
  padding-top: 50px;
  padding-right: 30px;
}

.treat-bg h3 {
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 14px;
}

.treat-bg a {
  color: #fff;
}

.treat-bg span {
  float: right;
  font-size: 24px;
}

.treat-bg span svg {
  color: #000d69;
  background: #fff;
  border-radius: 100%;
}

.pack-bg {
  background-color: #03C797;
  box-shadow: 21px 21px 28px 0px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  width: 100%;
  height: auto;
  color: #fff;
  padding: 40px;
}

.pack-bg img {
  width: 170px;
  margin-right: 15px;
}

.pack-bg h3 {
  font-size: 28px;
  font-weight: 600;
}

.pack-bg span {
  font-size: 22px;
  font-weight: 400;
}

.box-features {
  border-color: #000;
  border: 4px solid;
  width: 65px;
  height: 65px;
  border-radius: 20%;
  align-items: center;
  margin-bottom: 12px;
}

.box-features path, .box-features img {
  color: #444444;
  width: 24px;
}

.getquote-sec {
  background-color: #e4e4e4;
  padding: 80px;
}

.footer-sec {
  background-color: #00AEEF;
  padding: 80px;
}

.freedel {
  padding: 40px;
  background-color: #fff;
}

.freedel p {
  font-size: 25px;
  font-weight: 400;
  margin-left: 20px;
}

.freedel img {
  width: 120px;
}

.getquote-header h2 {
  color: #fff;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
}

.getquote-header h1 {
  color: #fff;
  text-align: center;
  font-size: 23px;
}

.getquote-sec .btn-get-getquote {
  margin-top: 30px;
  line-height: 0;
  padding: 23px 40px;
  border-radius: 30px;
  transition: 0.5s;
  color: #232c64;
  background: #fff;
}

.getquote-sec .btn-get-getquote span {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 1px;
}

.getquote-sec .btn-get-getquote i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.getquote-sec .btn-get-getquote:hover i {
  transform: translateX(5px);
}

.polygon {
  background-color: #121218;
  padding: 160px 0px 80px;
  position: relative;
  clip-path: polygon(0px 0px, 100% 14%, 100% 100%, 0% 100%);
}

.polygon-top {
  background-color: #121218;
  clip-path: polygon(0px 0px, 100% 14%, 100% 100%, 0% 100%);
}

.footer .logo {
  transition: all 0.5s;
  line-height: 0;
  width: 285px;
  min-width: 285px;
  background-color: #fff;
  padding: 25px;
  border-radius: 30px;
  box-shadow: 21px 21px 28px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 21px 21px 28px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 21px 21px 28px 0px rgba(0, 0, 0, 0.15);
}

.footer .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.btn-get-talk {
  transition: all 0.5s;
  line-height: 0;
  width: 285px;
  min-width: 285px;
  color: #fff;
  background-color: #232c64;
  padding: 27px 25px;
  border-radius: 30px;
  box-shadow: 21px 21px 28px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 21px 21px 28px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 21px 21px 28px 0px rgba(0, 0, 0, 0.15);
}

.btn-get-talk span {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 1px;
}

.btn-get-talk i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.btn-get-talk:hover i {
  transform: translateX(5px);
}

.footer-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.footer-menu li {
  position: relative;
  padding: 0 25px;
  font-size: 16px;
  font-weight: 800;
}

.footer-menu li a {
  color: #444444;
}

.footer .copyright {
  text-align: left;
  color: #444444;
}

.footer .mail-us {
  text-align: right;
  color: #444444;
}

.footer .social-links {
  margin-top: 0px !important;
  color: #444444;
}

.footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
  color: #444444;
}

/*.bottom-gradient{
  height: 242px;
  position: relative;
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}*/

.btn-get-more {
  width: 400px;
  margin-top: 30px;
  line-height: 0;
  padding: 30px 40px;
  border-radius: 30px;
  transition: 0.5s;
  color: #fff;
  background: #232c64;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.btn-get-more:hover {
  color: #fff;
}

.btn-get-more span {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 1px;
}

.btn-get-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.testi-header {
  text-align: center;
  color: #fff;
}

}

.testi-header h2 {
  font-size: 32px;
  font-weight: 700;
}

.testimonial .container {
  max-width: 960px;
}

.testimonial {
  background-color: #0e0e12;
}

.testimonial .w-100 {
  border-radius: 10px 50px 50px 50px;
  background-color: #24242c;
}

.testimonial p {
  padding: 30px;
  color: #74889b;
  margin: 0px;
}

.testi-head {
  padding: 0 30px 30px 30px;
}

.testi-head h3 {
  font-size: 18px;
  color: #fff;
  padding: 0 0 0 10px;
}

.testi-head-img {
  background-color: #000;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  align-items: center;
}

.testi-viewmore {
  background-color: #24242c;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  align-items: center;
}

.testi-viewmore svg {
  color: #fff;
  font-size: 18px;
}

.img-fluid {
  padding: 20px;
}

.hero2 img {
  max-width: 210px;
}

@media (max-width: 1270px) and (min-width: 991px) {
  .hero2 h1 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .footer .mail-us {
    text-align: center!important;
  }
  .footer .copyright {
    text-align: center!important;
  }
  .footer-menu ul {
    display: block;
  }
  .footer .footer-top .footer-info {
    text-align: center;
    align-items: center !important;
  }
  .footer .footer-top .footer-info .logo {
    display: inline-block !important;
  }
  .footer .footer-top .footer-info p {
    width: 100%;
  }
  .footer .footer-top .footer-contact {
    text-align: center;
    align-items: center !important;
  }
  .footer .footer-top .footer-contact p {
    width: 100%;
    text-align: center;
  }
  .bottom-gradient {
    height: 100px;
  }
  .quote-sec {
    padding-top: 20px;
  }
}

@media (max-width: 920px) {
  .hero2 .btn-get-started {
    padding: 10px 35px;
    margin-bottom: 15px;
  }
  .hero2 .btn-get-started span {
    font-size: 14px;
    line-height: 1;
  }
  .features-header h2 {
    padding: 50px 0 20px;
  }
  .header {
    padding: 25px 0;
  }
  .header .logo img {
    max-width: 140px;
  }
  .navbar .btn-treat, .navbar .btn-get {
    padding: 3px 8px;
  }
  .navbar a {
    font-size: 12px;
  }
  .hero2 {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .hero2 img {
    width: 100%;
    margin-bottom: 20px;
  }
  .hero2 h1 {
    font-size: 24px;
    padding-top: 0px;
  }
  .hero2 .cont-box {
    padding: 20px;
  }
  .hero2 .cont-box h2 {
    text-align: left;
  }
  .features-row {
    padding: 10px 10px;
  }
  .features-sec p {
    width: 100%;
  }
  .treatment-sec {
    padding: 20px 0;
  }
  .treatment-txt {
    padding-top: 10px;
  }
  .static-txt {
    position: static;
    float: left;
    width: 100%;
  }
  .treatment-bg {
    /* margin-bottom: 20px; */
    position: relative;
    z-index: 1;
  }
  .treatment-txt-heading, .treatment-txt-details {
    padding-left: 0px;
  }
  .treatment-bg img.absolute {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    width: auto;
  }
  .pro-sec {
    padding: 0;
  }
  .how-bg, .treat-bg {
    padding: 15px 15px;
    height: auto;
  }
  .how-bg h3 {
    padding-bottom: 10px;
  }
  .pack-bg {
    padding: 10px;
    height: 100%;
  }
  .pack-bg img {
    max-width: 100%;
  }
  .pack-bg h3 {
    font-size: 18px;
    text-align: -webkit-center;
  }
  .pack-bg span {
    font-size: 16px;
    line-height: 1;
  }
  .freedel {
    padding: 10px 0;
  }
  .freedel img {
    max-width: 60px;
  }
  .freedel p {
    font-size: 18px;
  }
  #footer .footer-top {
    padding: 10px 0 10px 0;
  }
}

@media (max-width: 575px) {
  .header {
    transition: all 0.1s;
    /*padding: 25px 0 0 0;*/
  }
  .header .logo {
    transition: all 0.1s;
    padding: 14px;
    border-radius: 15px;
  }
  .header .logo img {
    max-height: 30px;
  }
  .header.header-scrolled .logo {
    transition: all 0.1s;
  }
  .hero2 .main-img-top {
    margin-top: 70px;
  }
  .features-sec .col-lg-3 {
    padding: 0 50px;
  }
  .getquote-sec {
    height: 600px;
    padding-top: 85px;
  }
  .btn-get-more {
    width: 220px;
  }
  .quote-box-cont {
    height: 350px;
    width: 320px;
    left: 15px;
  }
  .quote-box-cont input {
    width: 200px;
  }
  .quote-box-cont button {
    width: 62px;
    left: 245px;
  }
}

.flex-rev {
  flex-direction: row-reverse!important;
}

@media (max-width: 375px) {
  .quote-box {
    width: 277px;
  }
  .quote-box-cont h2 {
    padding: 20px;
  }
  .quote-box-cont form {
    padding-left: 20px;
  }
  .quote-box-cont {
    height: 402px;
    width: 247px;
    left: 10px;
  }
  .quote-box-cont input {
    width: 175px;
  }
  .quote-box-cont button {
    width: 62px;
    left: 200px;
  }
  .tech-img img {
    width: 53px;
  }
  .section-bg {
    padding-bottom: 10px;
  }
  .features-sec .col-lg-3 {
    padding: 0 30px;
  }
}

@media (max-width: 1350px) and (min-width: 950px) and (max-height: 830px) {
  .social-links {
    margin-top: 0;
  }
  .hero2 h1 {
    font-size: 48px;
  }
  .hero2 .main-cont-top {
    margin-top: 100px;
  }
}

.treat-bg p{
  text-align: justify!important;
  font-size: 20px;
}

.how-bg span{
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  float: right;
}

.treat-bg span {
  float: right;
  font-size: 24px;
  font-weight: 600;
}

@media only screen and (max-width: 1300px) {
.how-bg ul li{
  font-size: 18px;
}

.treat-bg p{
  font-size: 18px;

}

.how-bg span{
  font-size: 19px;
}

.treat-bg span{
  font-size: 20px;
}
}
@media only screen and (max-width: 800px) {

.hero2 .ser-box{
  min-height: 114px;

}

.treatment-bg {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.pro-sec .flex-column {
  margin-bottom: 25px;
}


}

.pa-b-0{
  padding-bottom: 0px;
}

.mg-4{
  margin-top: 3rem;
  margin-bottom: 3rem;

}

.pa-t-0{
padding-top: 0px;
}

.mg-b-25{
  margin-bottom: 25px;
}