@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Heavy.otf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Bold.otf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-SemiBold.otf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Book.otf");
  font-weight: 400;
  font-style: normal;
}
* {
  font-family: "Mont";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  scroll-behavior: smooth;
}
body::-webkit-scrollbar {
  width: 4px;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(0deg, #FF5C2D, #FF4600);
}
body::-webkit-scrollbar-track {
  background-color: transparent;
}

img {
  pointer-events: none;
  user-select: none;
}

.wave {
  -webkit-animation-name: wave;
  animation-name: wave;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes wave {
  0% {
    -webkit-box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0);
  }
}
@keyframes wave {
  0% {
    -webkit-box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0);
  }
}
.playWave {
  -webkit-animation-name: playWave;
  animation-name: playWave;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.playWave.white {
  -webkit-animation-name: playWhiteWave;
  animation-name: playWhiteWave;
}

@-webkit-keyframes playWave {
  0% {
    -webkit-box-shadow: 0 0 0px 0px rgba(255, 87, 20, 0.5);
    box-shadow: 0 0 0px 0px rgba(255, 87, 20, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0px 10px rgba(255, 87, 20, 0);
    box-shadow: 0 0 0px 10px rgba(255, 87, 20, 0);
  }
}
@keyframes playWave {
  0% {
    -webkit-box-shadow: 0 0 0px 0px rgba(255, 87, 20, 0.5);
    box-shadow: 0 0 0px 0px rgba(255, 87, 20, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0px 10px rgba(255, 87, 20, 0);
    box-shadow: 0 0 0px 10px rgba(255, 87, 20, 0);
  }
}
@-webkit-keyframes playWhiteWave {
  0% {
    -webkit-box-shadow: 0 0 0px 0px rgba(255, 87, 20, 0.5);
    box-shadow: 0 0 0px 0px rgba(255, 87, 20, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0px 10px rgba(255, 87, 20, 0);
    box-shadow: 0 0 0px 10px rgba(255, 87, 20, 0);
  }
}
@keyframes playWhiteWave {
  0% {
    -webkit-box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.8);
  }
  100% {
    -webkit-box-shadow: 0 0 0px 10px rgba(255, 87, 20, 0);
    box-shadow: 0 0 0px 10px rgba(255, 87, 20, 0);
  }
}
.heading span.tag {
  text-transform: uppercase;
  color: #FF5C2D;
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
}
@media (min-width: 992px) {
  .heading span.tag {
    margin-bottom: 0px;
    font-size: 17px;
  }
}
@media (min-width: 1450px) {
  .heading span.tag {
    margin-bottom: 14px;
    font-size: 18px;
  }
}
.heading h1,
.heading h2 {
  text-transform: capitalize;
  color: #2C2726;
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 400;
}
@media (min-width: 576px) {
  .heading h1,
  .heading h2 {
    margin-bottom: 14px;
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .heading h1,
  .heading h2 {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .heading h1,
  .heading h2 {
    margin-bottom: 8px;
    font-size: 34px;
  }
}
@media (min-width: 1450px) {
  .heading h1,
  .heading h2 {
    margin-bottom: 14px;
    font-size: 38px;
  }
}
.heading h1 span,
.heading h2 span {
  font-weight: 600;
}
.heading h4 {
  text-transform: capitalize;
  color: #2C2726;
  font-size: 24px;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .heading h4 {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .heading h4 {
    font-size: 30px;
  }
}
.heading p {
  color: #767676;
  font-size: 15px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .heading p {
    font-size: 16px;
    line-height: 1.7;
  }
}
.heading.center {
  text-align: center;
}
.heading.white h1,
.heading.white h2,
.heading.white p,
.heading.white h4 {
  color: #fff;
}

a {
  text-decoration: none;
}

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

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  z-index: 1;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 150%;
  left: 50%;
  margin-left: -60px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  transition: 0.3s;
}
@media (min-width: 322px) {
  .tooltip:hover .tooltiptext {
    margin-top: -10px;
  }
}
@media (min-width: 1024px) {
  .tooltip:hover .tooltiptext {
    margin-top: -15px;
  }
}

.custom-btn {
  border-radius: 30px;
  border: 1px solid #fff;
  background-color: transparent;
  outline: 0;
  color: #fff;
  transition: 0.4s;
  font-size: 14px;
  padding: 6px 12px 7px;
}
@media (min-width: 322px) {
  .custom-btn {
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .custom-btn {
    gap: 13px;
  }
}
@media (min-width: 576px) {
  .custom-btn {
    padding: 10px 26px 11px;
  }
}
.custom-btn:hover {
  background-color: #FF5C2D;
  border: 1px solid #FF5C2D;
}
.custom-btn.register-btn:hover {
  color: #fff;
}
.custom-btn.filled {
  background-color: #fff;
  color: #FF5C2D;
}
.custom-btn.filled:hover {
  background-color: #FF5C2D;
  color: #fff;
  border: 1px solid #FF5C2D;
}
.custom-btn.white {
  background-color: #fff;
  color: #FF5C2D;
}
.custom-btn.white:hover {
  border: 1px solid #fff;
  color: #fff;
  background-color: #FF5C2D;
}
.custom-btn.gradient {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 12px 18px 14px;
}
@media (min-width: 576px) {
  .custom-btn.gradient {
    padding: 12px 28px 13px;
  }
}
.custom-btn.gradient::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  left: 0;
  top: 0;
  transform: translateX(-50%);
  background: rgb(255, 150, 103);
  background: linear-gradient(90deg, #fe510a 0%, #ff7537 50%, #fe510a 100%);
  transition: 0.4s;
  pointer-events: none;
  z-index: -1;
}
.custom-btn.gradient:hover::before {
  transform: translateX(0%);
}
.custom-btn.size-xl {
  padding: 10px 24px;
  font-size: 16px;
}
@media (min-width: 576px) {
  .custom-btn.size-xl {
    font-size: 18px;
    padding: 12px 40px;
  }
}

section {
  padding: 60px 0;
}
@media (min-width: 992px) {
  section {
    padding: 55px 0;
  }
}
@media (min-width: 1200px) {
  section {
    padding: 65px 0;
  }
}
section.light-bg {
  background-color: #FFF7F4;
}
section.dark-bg {
  background-color: #232d67;
}

header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  transition: 0.4s;
}
header .top-header-wrapper {
  width: 100%;
  background-color: #FF4600;
  color: #fff;
}
header .top-header-wrapper a:hover {
  color: #111b51;
}
header .top-header {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 322px) {
  header .top-header {
    padding: 6.5px 0;
  }
}
@media (min-width: 768px) {
  header .top-header {
    padding: 10px 0;
  }
}
@media (min-width: 1024px) {
  header .top-header {
    justify-content: space-between;
  }
}
header .top-header ul {
  display: flex;
  align-items: center;
  padding: 0;
}
header .top-header ul li a {
  text-decoration: none;
  color: #fff;
  transition: 0.4s;
  font-size: 14px;
}
@media (min-width: 576px) {
  header .top-header ul li a {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  header .top-header ul li a {
    font-size: 12px;
  }
}
@media (min-width: 1450px) {
  header .top-header ul li a {
    font-size: 14px;
  }
}
@media (min-width: 1700px) {
  header .top-header ul li a {
    font-size: 15px;
  }
}
@media (min-width: 322px) {
  header .top-header ul._left li a {
    padding: 5px;
    margin: 5px;
  }
}
@media (min-width: 768px) {
  header .top-header ul._left li a {
    padding-right: 15px;
    margin-right: 15px;
  }
}
@media (min-width: 992px) {
  header .top-header ul._right li a {
    margin-left: 12px;
  }
}
@media (min-width: 1450px) {
  header .top-header ul._right li a {
    margin-left: 15.5px;
  }
}
@media (min-width: 1700px) {
  header .top-header ul._right li a {
    margin-left: 17px;
  }
}
header .top-header .right-menu {
  display: none;
}
@media (min-width: 992px) {
  header .top-header .right-menu {
    display: block;
  }
}
header .main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.4s;
}
@media (min-width: 340px) {
  header .main-header {
    align-items: flex-start;
  }
}
@media (min-width: 322px) {
  header .main-header {
    padding-top: 10px;
  }
}
@media (min-width: 1200px) {
  header .main-header {
    padding-top: 20px;
  }
}
header .main-header .logo {
  width: 150px;
  pointer-events: none;
  transition: 0.4s;
}
@media (min-width: 576px) {
  header .main-header .logo {
    width: 200px;
  }
}
@media (min-width: 992px) {
  header .main-header .logo {
    width: 250px;
  }
}
header .main-header .logo img {
  width: 100%;
}
header .main-header .button-wrap .toggle-menu {
  background-color: transparent;
  border: 0;
  outline: 0;
  margin-left: 10px;
}
@media (min-width: 322px) {
  header .main-header .button-wrap .toggle-menu {
    padding-top: 4px;
  }
}
@media (min-width: 768px) {
  header .main-header .button-wrap .toggle-menu {
    padding: 6px;
  }
}
@media (min-width: 1024px) {
  header .main-header .button-wrap .toggle-menu {
    padding: 8px;
  }
}
@media (min-width: 992px) {
  header .main-header .button-wrap .toggle-menu {
    display: none;
  }
}
header .main-header .button-wrap .toggle-menu svg {
  color: #fff;
  font-size: 25px;
}
header .main-header .button-wrap button.filled {
  display: none;
}
@media (min-width: 768px) {
  header .main-header .button-wrap button.filled {
    display: inline-block;
  }
}
header .main-header .button-wrap .custom-btn:nth-child(1) {
  display: none;
}
@media (min-width: 340px) {
  header .main-header .button-wrap .custom-btn:nth-child(1) {
    display: inline-block;
  }
}
header .main-header .button-wrap .xs-invisible {
  display: none;
}
@media (min-width: 500px) {
  header .main-header .button-wrap .xs-invisible {
    display: inline-block;
  }
}
header.sticky {
  background: linear-gradient(90deg, rgba(35, 45, 103, 0.7921568627) 0%, rgba(17, 25, 69, 0.8078431373) 100%);
  padding-bottom: 3px;
  transition: 0.4s;
}
@media (min-width: 322px) {
  header.sticky .main-header {
    padding-top: 4px;
  }
}
@media (min-width: 768px) {
  header.sticky .main-header {
    padding-top: 6px;
  }
}
@media (min-width: 1024px) {
  header.sticky .main-header {
    padding-top: 8px;
  }
}
@media (min-width: 992px) {
  header.sticky .logo {
    width: 180px;
  }
}
@media (min-width: 322px) {
  header.sticky .button-wrap {
    padding-top: 6px;
  }
}
@media (min-width: 768px) {
  header.sticky .button-wrap {
    padding-top: 8px;
  }
}
@media (min-width: 1024px) {
  header.sticky .button-wrap {
    padding-top: 4px;
  }
}
header #mobile-nav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  transform: translateX(-100%);
  transition: 0.3s;
  background-color: rgb(22, 31, 76);
  color: #fff;
  overflow-y: auto;
}
header #mobile-nav .nav-wrap {
  position: relative;
  padding-top: 45px;
  z-index: 100;
}
header #mobile-nav .nav-wrap .nav-dummy-img {
  position: absolute;
  z-index: -1;
  top: -4%;
  opacity: 0.9;
  right: 0;
}
header #mobile-nav .nav-wrap .navbar-list-wrapper {
  margin-top: 2rem;
}
header #mobile-nav .nav-wrap .navbar-list-wrapper .navbar-list {
  display: flex;
  flex-direction: column;
  padding: 10px 0 0 5px;
}
header #mobile-nav .nav-wrap .navbar-list-wrapper .navbar-list .navbar-list-items {
  border-bottom: 0.5px solid rgba(98, 98, 98, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  padding: 0.6rem 1rem;
  width: 100%;
  position: relative;
  padding-left: 1.3rem;
}
header #mobile-nav .nav-wrap .navbar-list-wrapper .navbar-list .navbar-list-items a {
  width: 100%;
  height: 100%;
  color: #fff;
}
header #mobile-nav .nav-wrap .navbar-list-wrapper .navbar-list .navbar-list-items.active {
  background-color: rgba(252, 102, 20, 0.5);
}
header #mobile-nav .nav-wrap .navbar-list-wrapper .navbar-list .navbar-list-items.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5px;
  background-color: #FF4600;
}
header #mobile-nav .nav-wrap .navbar-list-wrapper .navbar-list .navbar-list-button {
  margin-top: 10px;
  text-align: center;
  padding: 10px;
}
header #mobile-nav .mobile-nav-logo {
  width: 150px;
}
header #mobile-nav .nav-close {
  background-color: transparent;
  border: 0;
  color: white;
  margin-right: 14px;
}
header #mobile-nav.active-nav {
  transform: translateX(0%);
}
header #mobile-nav.active-nav .nav-dummy-img {
  right: -70%;
  width: 150%;
}
@media (min-width: 376px) {
  header #mobile-nav.active-nav .nav-dummy-img {
    right: -95%;
    transform: rotate(12deg);
    width: 100vh;
  }
}
@media (min-width: 576px) {
  header #mobile-nav.active-nav .nav-dummy-img {
    right: -70%;
    width: 150%;
  }
}

figure img {
  width: 100%;
  pointer-events: none;
}

section.banner {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(35, 45, 103);
  background: linear-gradient(90deg, rgba(35, 45, 103, 0.537254902) 0%, rgba(17, 25, 69, 0.4941176471) 100%);
  z-index: 1;
  pointer-events: none;
}
section.banner .splide__pagination {
  bottom: -5rem;
}
@media (min-width: 992px) {
  section.banner .splide__pagination {
    transform: rotate(90deg);
    right: -100%;
    bottom: 50%;
  }
}
section.banner .splide__pagination li {
  margin: 0 7px;
}
@media (min-width: 992px) {
  section.banner .splide__pagination li {
    margin: 0 20px;
  }
}
section.banner .splide__pagination li button {
  width: 7px;
  height: 7px;
}
section.banner .banner-bg-video video {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  transform: scale(1.2);
}
@media (min-width: 322px) {
  section.banner .banner-bg-video video {
    width: 205%;
    transform: scale(1.5);
  }
}
@media (min-width: 768px) {
  section.banner .banner-bg-video video {
    transform: scale(1.2);
    width: auto;
  }
}
section.banner .banner-bg-shape-1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0.25;
}
@media (min-width: 992px) {
  section.banner .banner-bg-shape-1 {
    width: 75%;
  }
}
@media (min-width: 1200px) {
  section.banner .banner-bg-shape-1 {
    height: 100%;
  }
}
section.banner .banner-bg-shape-1 img {
  position: absolute;
  top: 0;
  width: 145%;
  right: -210px;
}
@media (min-width: 340px) {
  section.banner .banner-bg-shape-1 img {
    right: -240px;
  }
}
@media (min-width: 376px) {
  section.banner .banner-bg-shape-1 img {
    width: 130%;
    right: -220px;
  }
}
@media (min-width: 576px) {
  section.banner .banner-bg-shape-1 img {
    width: 100%;
    right: -230px;
  }
}
@media (min-width: 768px) {
  section.banner .banner-bg-shape-1 img {
    right: -250px;
  }
}
@media (min-width: 992px) {
  section.banner .banner-bg-shape-1 img {
    width: 97%;
    right: 0;
  }
}
@media (min-width: 1200px) {
  section.banner .banner-bg-shape-1 img {
    height: 130%;
    width: unset;
  }
}
@media (min-width: 1700px) {
  section.banner .banner-bg-shape-1 img {
    height: 150%;
  }
}
section.banner .banner-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 90px;
  pointer-events: none;
  opacity: 0.2;
}
@media (min-width: 576px) {
  section.banner .banner-shape-2 {
    right: -30px;
    width: 120px;
  }
}
@media (min-width: 768px) {
  section.banner .banner-shape-2 {
    right: 0;
  }
}
@media (min-width: 992px) {
  section.banner .banner-shape-2 {
    width: 200px;
  }
}
@media (min-width: 1700px) {
  section.banner .banner-shape-2 {
    width: 250px;
  }
}
section.banner .banner-shape-2 img {
  width: 100%;
}
section.banner .banner-shape-3 {
  position: absolute;
  z-index: 0.4;
  width: 250%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  section.banner .banner-shape-3 {
    width: 100%;
  }
}
section.banner .banner-shape-3 img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
@media (min-width: 1200px) {
  section.banner .banner-shape-3 img {
    width: 85%;
  }
}
section.banner .banner-shape-bottom {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 6;
  bottom: 0px;
  pointer-events: none;
}
@media (min-width: 768px) {
  section.banner .banner-shape-bottom {
    bottom: -80px;
  }
}
@media (min-width: 992px) {
  section.banner .banner-shape-bottom {
    bottom: -100px;
  }
}
@media (min-width: 1200px) {
  section.banner .banner-shape-bottom {
    bottom: -130px;
  }
}
@media (min-width: 1700px) {
  section.banner .banner-shape-bottom {
    bottom: -160px;
  }
}
section.banner .banner-shape-bottom img {
  width: 100%;
}
section.banner .scroll-down {
  position: absolute;
  left: -45px;
  bottom: 30%;
  transform: rotate(-90deg);
  z-index: 100;
  padding: 10px 20px;
  background-color: #111945;
}
@media (min-width: 1024px) {
  section.banner .scroll-down {
    bottom: 50%;
  }
}
section.banner .scroll-down a {
  color: #fff;
  text-decoration: none;
}
section.banner .container {
  position: relative;
  z-index: 8;
  padding: 150px 0px 200px;
}
@media (min-width: 322px) {
  section.banner .container {
    padding: 135px 0px 150px;
  }
}
@media (min-width: 340px) {
  section.banner .container {
    padding: 150px 0px 150px;
  }
}
@media (min-width: 576px) {
  section.banner .container {
    padding: 185px 0px 185px;
  }
}
@media (min-width: 768px) {
  section.banner .container {
    padding: 210px 0 180px;
  }
}
@media (min-width: 1450px) {
  section.banner .container {
    padding: 250px 0 350px;
  }
}
section.banner .container .banner-slider .banner-content {
  text-align: center;
}
section.banner .container .banner-slider .banner-content h2 {
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
  font-size: 21px;
}
@media (min-width: 576px) {
  section.banner .container .banner-slider .banner-content h2 {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  section.banner .container .banner-slider .banner-content h2 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  section.banner .container .banner-slider .banner-content h2 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  section.banner .container .banner-slider .banner-content h2 {
    font-size: 30px;
  }
}
@media (min-width: 1200px) {
  section.banner .container .banner-slider .banner-content h2 {
    font-size: 36px;
  }
}
section.banner .container .banner-slider .banner-content h1 {
  margin: 22px 0;
  color: #fff;
  font-weight: 600;
  font-size: 30px;
}
@media (min-width: 576px) {
  section.banner .container .banner-slider .banner-content h1 {
    font-size: 34px;
  }
}
@media (min-width: 768px) {
  section.banner .container .banner-slider .banner-content h1 {
    font-size: 38px;
    margin: 28px 0;
  }
}
@media (min-width: 992px) {
  section.banner .container .banner-slider .banner-content h1 {
    font-size: 44px;
  }
}
@media (min-width: 1024px) {
  section.banner .container .banner-slider .banner-content h1 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  section.banner .container .banner-slider .banner-content h1 {
    font-size: 45px;
  }
}
section.banner .container .banner-slider .banner-content p {
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
}
@media (min-width: 576px) {
  section.banner .container .banner-slider .banner-content p {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  section.banner .container .banner-slider .banner-content p {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  section.banner .container .banner-slider .banner-content p {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  section.banner .container .banner-slider .banner-content p {
    font-size: 21px;
  }
}
@media (min-width: 1200px) {
  section.banner .container .banner-slider .banner-content p {
    font-size: 24px;
  }
}
section.banner .container .banner-slider .banner-content button {
  display: inline-flex;
  align-items: center;
}
section.banner .container .banner-slider .banner-content button img {
  width: 15px;
  margin-left: 10px;
  pointer-events: none;
}

section.walkthrough {
  padding-top: 25px;
  padding-bottom: 0;
  background-color: #f4f7fe;
}
section.walkthrough .heading p {
  text-align: flex-start;
}
@media (min-width: 1024px) {
  section.walkthrough {
    padding-top: 0;
  }
}
section.walkthrough .video-img {
  position: relative;
  margin: 20px 0;
}
@media (min-width: 992px) {
  section.walkthrough .video-img {
    margin: 0px;
    width: 100%;
  }
}
section.walkthrough .video-img img {
  width: 100%;
}
@media (min-width: 992px) {
  section.walkthrough .video-img img {
    height: 325px;
  }
}
@media (min-width: 1024px) {
  section.walkthrough .video-img img {
    height: 340px;
  }
}
@media (min-width: 1200px) {
  section.walkthrough .video-img img {
    height: 450px;
  }
}
section.walkthrough .video-img .play-video-img {
  color: #FF5C2D;
  position: absolute;
  height: 70px;
  width: 70px;
  bottom: 40%;
  left: 40%;
  z-index: 5;
  border: 0;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.walkthrough .video-img .play-video-img figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.walkthrough .video-img .play-video-img img {
  width: 100%;
  transition: transform 0.9s;
}
@media (min-width: 768px) {
  section.walkthrough .video-img .play-video-img {
    width: 85px;
    height: 85px;
  }
}
@media (min-width: 1024px) {
  section.walkthrough .video-img .play-video-img {
    left: 45%;
  }
}

section.product-category {
  background-color: #f4f7fe;
}
@media (min-width: 992px) {
  section.product-category {
    padding-top: 25px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1450px) {
  section.product-category {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}
section.product-category .splide__track {
  padding-top: 20px;
}
section.product-category .product-cat-bottom-slider .splide__track {
  padding-bottom: 25px;
}
@media (min-width: 992px) {
  section.product-category .splide__pagination {
    bottom: -1.5rem;
  }
}
section.product-category .splide__pagination .splide__pagination__page {
  background-color: #FF5C2D;
  opacity: 0.5;
}
section.product-category .splide__pagination .splide__pagination__page.is-active {
  opacity: 1;
}
section.product-category .splide__slide {
  height: 180px;
}
section.product-category .product-cat-card {
  background-color: #fff;
  min-height: 165px;
  aspect-ratio: 1/1;
  height: 100%;
  color: black;
  padding: 20px 10px;
  max-height: 2000px;
  max-width: 200px;
  transition: 0.4s;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
  position: relative;
}
@media (min-width: 768px) {
  section.product-category .product-cat-card {
    min-height: 155px;
    min-width: 155px;
    padding: 10px;
  }
}
@media (min-width: 1024px) {
  section.product-category .product-cat-card {
    min-height: 165px;
    min-width: 165px;
    padding: 20px 10px;
  }
}
@media (min-width: 1700px) {
  section.product-category .product-cat-card {
    min-height: 180px;
    min-width: 180px;
  }
}
section.product-category .product-cat-card figure {
  width: 40px;
  height: 40px;
}
section.product-category .product-cat-card h3 {
  text-align: center;
  font-size: 16px;
}
section.product-category .product-cat-card p {
  text-align: center;
  color: #909090;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
section.product-category .product-cat-card .dummy-dots {
  display: none;
}
section.product-category .product-cat-card:hover {
  cursor: pointer;
  background: linear-gradient(120deg, #ff7234, #fd5322);
}
@media (min-width: 322px) {
  section.product-category .product-cat-card:hover {
    transform: translate(-10px, -10px);
  }
}
@media (min-width: 1700px) {
  section.product-category .product-cat-card:hover {
    transform: translate(-20px, -20px);
  }
}
section.product-category .product-cat-card:hover h3,
section.product-category .product-cat-card:hover p {
  color: #fff;
  z-index: 10;
}
section.product-category .product-cat-card:hover figure {
  background-color: #fff;
  border-radius: 5px;
  padding: 7px;
  z-index: 10;
}
section.product-category .product-cat-card:hover .dummy-dots {
  display: block;
  transform: translate(14px, 28px);
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: transparent;
}
@media (min-width: 1700px) {
  section.product-category .product-cat-card:hover .dummy-dots {
    transform: translate(20px, 20px);
  }
}
section.product-category .product-cat-card.marine-paints figure {
  height: 45px !important;
  width: 45px !important;
}

section.stats {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-image: url("../../assets/images/homepage/stats/stats-bg.jpg");
}
section.stats h2,
section.stats h3,
section.stats p,
section.stats span {
  color: #fff;
}
@media (min-width: 1700px) {
  section.stats .heading.center {
    width: 75%;
  }
}
section.stats .stats-cards-wrap {
  height: 100%;
  padding: 20px 0;
}
@media (min-width: 1024px) {
  section.stats .stats-cards-wrap {
    width: 80%;
  }
}
section.stats .stats-card {
  padding: 25px 0;
  position: relative;
}
section.stats .stats-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 70px;
  height: 3px;
  background-color: #FF5C2D;
}
section.stats .stats-card h3 {
  font-weight: 600;
  font-size: 35px;
}
@media (min-width: 768px) {
  section.stats .stats-card h3 {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  section.stats .stats-card h3 {
    font-size: 44px;
  }
}
@media (min-width: 1700px) {
  section.stats .stats-card h3 {
    font-size: 48px;
  }
}
section.stats .stats-card span {
  color: #FF5C2D;
  text-transform: uppercase;
  font-weight: 500;
}

section.features {
  scroll-margin: 4rem;
}
section.features .feature-slider-wrap .feature-slider .splide__track {
  padding-top: 30px;
  padding-bottom: 30px;
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide {
  position: relative;
  min-height: 450px;
  transform: scale(1);
  transition: 0.4s;
}
@media (min-width: 2000px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide {
    min-height: 600px;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-bg-img {
  position: absolute;
  width: 100%;
  height: 78%;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: -2;
  border-radius: 18px;
  border-bottom-right-radius: 40px;
}
@media (min-width: 322px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-bg-img {
    height: 75%;
  }
}
@media (min-width: 768px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-bg-img {
    height: 78%;
  }
}
@media (min-width: 768px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-bg-img {
    border-radius: 30px;
    height: 65%;
  }
}
@media (min-width: 1024px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-bg-img {
    border-bottom-right-radius: 60px;
    height: 80%;
  }
}
@media (min-width: 1200px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-bg-img {
    height: 90%;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .view-services {
  position: absolute;
  border-radius: 25px;
  z-index: 100;
  background-color: rgba(70, 62, 62, 0.7);
}
@media (min-width: 322px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .view-services {
    top: 20px;
    right: 18px;
    padding: 5px 15px;
  }
}
@media (min-width: 768px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .view-services {
    top: 25px;
    right: 20px;
    padding: 10px 20px;
  }
}
@media (min-width: 1024px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .view-services {
    right: 25px;
  }
}
@media (min-width: 1200px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .view-services {
    right: 40px;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .view-services a {
  color: white;
  font-size: 12px;
}
@media (min-width: 768px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .view-services a {
    font-size: 14px;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap {
  background: linear-gradient(90deg, #ff7537 0%, #fe510a 30%);
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 10;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 5fr;
  align-items: center;
  padding: 20px 18px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 40px;
}
@media (min-width: 768px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 60px;
    z-index: 100;
  }
}
@media (min-width: 992px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap {
    z-index: auto;
    padding: 14px;
  }
}
@media (min-width: 1450px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap {
    padding: 20px;
    grid-template-columns: 1fr 3fr;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  grid-column: 1/3;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .slider-nav {
    align-items: center;
    margin-right: 10px;
    grid-column: 3/4;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .slider-nav p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 2px;
}
@media (min-width: 1024px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .slider-nav p {
    text-align: center;
  }
}
@media (min-width: 1450px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .slider-nav p {
    margin-bottom: 16px;
    font-size: 22px;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .slider-nav p span {
  margin: 0 10px;
}
@media (min-width: 768px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .slider-nav p span {
    margin: 0 15px;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .slider-nav .arrow-wrap {
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .slider-nav .arrow-wrap {
    justify-content: center;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .slider-nav .arrow-wrap button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 0;
  background-color: transparent;
  border: 0;
  outline: 0;
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .slider-nav .arrow-wrap button:first-child {
  margin-left: 0;
  margin-right: 10px;
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .slider-nav .arrow-wrap button img {
  width: 21px;
}
@media (min-width: 768px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .slider-nav .arrow-wrap button img {
    width: 26px;
  }
}
@media (min-width: 1450px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .slider-nav .arrow-wrap button img {
    width: 30px;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap ._content-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr;
  grid-column: 1/3;
  margin-top: 15px;
}
@media (min-width: 1024px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap ._content-wrap {
    grid-column: 4/4;
    margin-top: 0;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap ._content-wrap .feature-content {
  grid-column: 1/3;
}
@media (min-width: 1200px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap ._content-wrap .feature-content {
    grid-column: 3/4;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap ._content-wrap .feature-content h4 {
  color: #fff;
  font-size: 18px;
}
@media (min-width: 576px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap ._content-wrap .feature-content h4 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap ._content-wrap .feature-content h4 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap ._content-wrap .feature-content h4 {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap ._content-wrap .feature-content h4 {
    margin: 0 8px;
  }
}
@media (min-width: 1450px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap ._content-wrap .feature-content h4 {
    margin: 0 0 0 10px;
    font-size: 23px;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap ._content-wrap .action-btn {
  display: flex;
  grid-column: 1/3;
  margin-top: 10px;
  z-index: 3;
  position: relative;
}
@media (min-width: 1200px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap ._content-wrap .action-btn {
    justify-content: center;
    margin-top: 0;
    grid-column: 4/4;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .feature-bg-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .feature-bg-shape img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
}
@media (min-width: 992px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .feature-bg-shape img {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .feature-bg-shape img {
    width: 40%;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-content-wrap .feature-bg-shape::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 25%;
  bottom: 50px;
  background-color: #ff733d;
  border-radius: 50%;
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide .feature-dots {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 40px;
  left: -50px;
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide::before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 10;
  transition: 0.4s;
  pointer-events: none;
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  box-shadow: 2px 2px 29px 4px rgba(114, 65, 45, 0.3019607843);
  border-radius: 18px;
  border-bottom-right-radius: 40px;
  opacity: 0.2;
}
@media (min-width: 768px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide::after {
    border-radius: 30px;
  }
}
@media (min-width: 1024px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide::after {
    border-radius: 30px;
    border-bottom-right-radius: 60px;
  }
}
@media (min-width: 992px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide.fadedSlide, section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide.is-next, section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide.is-prev {
    transform: scale(0.9);
  }
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide.fadedSlide::before, section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide.is-next::before, section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide.is-prev::before {
    opacity: 0.8;
  }
}
@media (min-width: 992px) {
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide.is-active.is-visible:not(.splide__slide--clone.is-next, .splide__slide--clone.is-next) {
    transform: scale(1);
  }
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide.is-active.is-visible:not(.splide__slide--clone.is-next, .splide__slide--clone.is-next)::before {
    opacity: 0;
  }
  section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide.is-active.is-visible:not(.splide__slide--clone.is-next, .splide__slide--clone.is-next)::after {
    opacity: 1;
  }
}
section.features .feature-slider-wrap .feature-slider .splide__track .splide__list .splide__slide.is-active.is-visible:not(.splide__slide--clone.is-next, .splide__slide--clone.is-next) .feature-content-wrap {
  z-index: 1000;
}
section.features .splide__pagination {
  bottom: -7rem;
}
section.features .splide__pagination__page {
  background-color: #FF5C2D;
  opacity: 50%;
}
section.features .splide__pagination__page.is-active {
  opacity: 100%;
}
section.features .slider-mini-nav {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
section.features .slider-mini-nav button {
  background-color: transparent;
  border: 0;
}
section.features .slider-mini-nav p {
  font-size: 16px;
  margin-bottom: 2px;
}
@media (min-width: 322px) {
  section.features .slider-mini-nav p {
    margin: 0 1rem;
  }
}
@media (min-width: 768px) {
  section.features .slider-mini-nav p {
    margin: 0;
  }
}
@media (min-width: 1450px) {
  section.features .slider-mini-nav p {
    margin-bottom: 16px;
    font-size: 22px;
  }
}
section.features .slider-mini-nav p span {
  margin: 0 10px;
}
@media (min-width: 768px) {
  section.features .slider-mini-nav p span {
    margin: 0 15px;
  }
}
section.features .slider-mini-nav .arrow-wrap {
  display: flex;
  align-items: center;
}
section.features .slider-mini-nav .arrow-wrap button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 0;
  background-color: transparent;
  border: 0;
  outline: 0;
}
@media (min-width: 322px) {
  section.features .slider-mini-nav .arrow-wrap button {
    margin-top: -4px;
    transform: scale(1.3);
  }
}
@media (min-width: 768px) {
  section.features .slider-mini-nav .arrow-wrap button {
    margin-top: 0;
    transform: scale(1);
  }
}
section.features .slider-mini-nav .arrow-wrap button:first-child {
  margin-left: 0;
  margin-right: 10px;
}
section.features .slider-mini-nav .arrow-wrap button img {
  width: 21px;
}
@media (min-width: 768px) {
  section.features .slider-mini-nav .arrow-wrap button img {
    width: 26px;
  }
}
@media (min-width: 1450px) {
  section.features .slider-mini-nav .arrow-wrap button img {
    width: 30px;
  }
}

.splide__pagination {
  bottom: -0.5rem;
}
@media (min-width: 576px) {
  .splide__pagination {
    bottom: -2.5rem;
  }
}
.splide__pagination li {
  margin: 0 15px;
}

.splide__pagination__page {
  background-color: white;
  opacity: 50%;
}
.splide__pagination__page.is-active {
  opacity: 100%;
}

section.why-choose-us {
  position: relative;
}
section.why-choose-us .splide__pagination {
  bottom: -3.5rem;
}
section.why-choose-us::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 45%;
  background-color: #FF5C2D;
  left: 0;
  bottom: 0;
  z-index: -2;
}
section.why-choose-us::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("../../assets/images/homepage/why-choose-us/why-choose-dot.svg");
  z-index: -1;
  pointer-events: none;
  height: 40%;
  width: 200px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  section.why-choose-us::after {
    height: 400px;
    width: 350px;
  }
}
@media (min-width: 1200px) {
  section.why-choose-us::after {
    width: 400px;
  }
}
@media (min-width: 1450px) {
  section.why-choose-us::after {
    width: 600px;
  }
}
section.why-choose-us .feature-card {
  background-color: #fff;
  border-radius: 20px;
  min-height: 100%;
}
section.why-choose-us .feature-card figure {
  position: relative;
  margin: 0;
}
section.why-choose-us .feature-card figure img {
  width: 100%;
  transition: transform 0.9s;
  border-radius: 20px 20px 0 0;
}
section.why-choose-us .feature-card figure .play-video-img {
  color: #FF5C2D;
  position: absolute;
  z-index: 5;
  border: 0;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.why-choose-us .feature-card figure .play-video-img figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 322px) {
  section.why-choose-us .feature-card figure .play-video-img {
    height: 50px;
    width: 50px;
    bottom: 40%;
    left: 45%;
  }
}
@media (min-width: 768px) {
  section.why-choose-us .feature-card figure .play-video-img {
    bottom: 40%;
    left: 40%;
    width: 45px;
    height: 45px;
  }
}
section.why-choose-us .feature-card .feature-card-content-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  box-shadow: 0 0 30px 15px rgba(35, 45, 103, 0.0196078431);
  position: relative;
  z-index: 5;
}
section.why-choose-us .feature-card .feature-card-content-wrap h4 {
  color: #2C2726;
  font-size: 21px;
  font-weight: 500;
}
@media (min-width: 768px) {
  section.why-choose-us .feature-card .feature-card-content-wrap h4 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  section.why-choose-us .feature-card .feature-card-content-wrap h4 {
    font-size: 18px;
  }
}
@media (min-width: 1450px) {
  section.why-choose-us .feature-card .feature-card-content-wrap h4 {
    font-size: 22px;
  }
}
section.why-choose-us .feature-card .feature-card-content-wrap p {
  color: #767676;
  font-size: 14px;
  margin-bottom: 0;
}
section.why-choose-us button {
  display: inline-flex;
  align-items: center;
  justify-self: end;
}
section.why-choose-us button img {
  width: 15px;
  margin-left: 10px;
  pointer-events: none;
}
@media (min-width: 576px) {
  section.why-choose-us .cards-wrapper {
    margin-top: 2.5rem;
  }
}
section.why-choose-us .bottom-content {
  position: relative;
  padding-top: 70px;
}
@media (min-width: 768px) {
  section.why-choose-us .bottom-content {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  section.why-choose-us .bottom-content {
    padding-top: 60px;
  }
}
@media (min-width: 1450px) {
  section.why-choose-us .bottom-content {
    padding-top: 90px;
  }
}

#services {
  scroll-margin-top: 100px;
}

section.services .splide__pagination {
  bottom: 0.5rem;
}
section.services .splide__pagination__page {
  background-color: #FF5C2D;
  opacity: 50%;
  bottom: -3rem;
}
section.services .splide__pagination__page.is-active {
  opacity: 100%;
}
section.services .services-cards-wrapper {
  margin: 4.5rem 0;
}
section.services .service-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
section.services .service-card h5 {
  margin-bottom: 1rem;
  color: black;
  text-align: center;
}
section.services .service-card a {
  width: 100%;
}
section.services .service-card figure {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  z-index: 1;
}
section.services .service-card figure img {
  transition: transform 0.9s;
  width: 100%;
}
section.services .service-card .service-card-content {
  width: 90%;
  border-radius: 15px;
  margin-top: -45px;
  z-index: 5;
  margin-bottom: 35px;
  background-color: #fff;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: margin-top 0.2s;
}
section.services .service-card .service-card-content .arrow-btn {
  padding: 20px;
  border-radius: 50%;
  max-height: 60px;
  max-width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FF5C2D;
  border: 2px solid #FF5C2D;
  background-color: transparent;
  position: absolute;
  bottom: 5px;
  transition: all 0.4s;
}
section.services .service-card:hover img {
  transform: scale(1.3);
}
section.services .service-card:hover .service-card-content {
  margin-top: -3.5rem;
  box-shadow: 0px 10px 25px 2px rgba(159, 159, 159, 0.2);
}
section.services .service-card:hover .arrow-btn {
  color: #fff;
  background-color: #FF5C2D;
  transform: rotate(-45deg);
}

section.partners {
  background-color: #021956;
}
@media (min-width: 322px) {
  section.partners {
    padding-bottom: 5rem;
  }
}
@media (min-width: 576px) {
  section.partners {
    padding-bottom: 9rem;
  }
}
@media (min-width: 1200px) {
  section.partners {
    padding-bottom: 12rem;
  }
}
section.partners .partners-cards-wrapper {
  z-index: 5;
  position: relative;
}
section.partners .partners-cards-wrapper {
  margin: 4.5rem 0;
}
section.partners .partners-cards-wrapper .partners-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 50px;
  max-height: 100px;
  max-width: 220px;
  min-width: 180px;
  border-radius: 10px;
}
@media (min-width: 322px) {
  section.partners .partners-cards-wrapper .partners-card {
    min-width: auto;
  }
}
section.partners .partners-cards-wrapper .partners-card figure {
  margin: 0;
  width: 100%;
  height: 100%;
  max-width: 95%;
}
@media (min-width: 1700px) {
  section.partners .partners-cards-wrapper .partners-card figure {
    max-width: 80%;
  }
}
section.partners .partners-cards-wrapper .partners-card figure img {
  max-height: 90px;
}
section.partners .splide__pagination {
  bottom: -4rem;
}

section.clients {
  background-color: #F4F7FE;
}
section.clients .view-brands {
  color: #fff;
}
section.clients .clients-cards-wrapper {
  margin: 4.5rem 0;
}
section.clients .clients-cards-wrapper .clients-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 0 5px 1px rgba(35, 45, 103, 0.0509803922);
}
@media (min-width: 1700px) {
  section.clients .clients-cards-wrapper .clients-card {
    aspect-ratio: 1/1;
    max-height: 140px;
  }
}
section.clients .clients-cards-wrapper .clients-card span {
  text-align: center;
  padding: 5px 5px 15px 5px;
  font-size: 12px;
}
@media (min-width: 1700px) {
  section.clients .clients-cards-wrapper .clients-card span {
    padding: 5px;
  }
}
section.clients .clients-cards-wrapper .clients-card figure {
  padding: 5px;
  margin: 0;
}
@media (min-width: 322px) {
  section.clients .clients-cards-wrapper .clients-card figure {
    height: 45px;
    width: 75px;
  }
}
@media (min-width: 768px) {
  section.clients .clients-cards-wrapper .clients-card figure {
    height: 55px;
    width: 85px;
  }
}
@media (min-width: 1024px) {
  section.clients .clients-cards-wrapper .clients-card figure {
    height: 70px;
    width: 100px;
  }
}
@media (min-width: 1700px) {
  section.clients .clients-cards-wrapper .clients-card figure {
    height: 65px;
    width: 95px;
  }
}
section.clients .clients-cards-wrapper .clients-card figure img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
section.clients .splide__pagination {
  bottom: -4rem;
}

section.testimonials {
  position: relative;
  padding-top: 0;
}
section.testimonials .top-img {
  position: absolute;
  right: 0;
  width: 100%;
}
@media (min-width: 322px) {
  section.testimonials .top-img {
    top: -3rem;
  }
}
@media (min-width: 500px) {
  section.testimonials .top-img {
    top: -4rem;
  }
}
@media (min-width: 576px) {
  section.testimonials .top-img {
    top: -7rem;
  }
}
@media (min-width: 768px) {
  section.testimonials .top-img {
    top: -18%;
  }
}
@media (min-width: 992px) {
  section.testimonials .top-img {
    top: -12.5rem;
  }
}
@media (min-width: 1200px) {
  section.testimonials .top-img {
    top: -14rem;
  }
}
@media (min-width: 1450px) {
  section.testimonials .top-img {
    top: -15rem;
  }
}
@media (min-width: 1700px) {
  section.testimonials .top-img {
    top: -18.5rem;
  }
}
section.testimonials .play-video-img {
  color: #fff;
  z-index: 5;
  border: 0;
  background-color: #FF5C2D;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.testimonials .play-video-img figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.testimonials .play-video-img img {
  width: 100%;
  transition: transform 0.9s;
}
@media (min-width: 322px) {
  section.testimonials .play-video-img {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 768px) {
  section.testimonials .play-video-img {
    width: 65px;
    height: 65px;
  }
}
section.testimonials .testimonials-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
section.testimonials .testimonials-img-wrapper:hover img {
  transform: scale(1.3);
}
section.testimonials .testimonials-img-wrapper img {
  transition: transform 0.9s;
  width: 100%;
}
section.testimonials .testimonials-img-wrapper .play-video-img {
  color: #fff;
  z-index: 5;
  border: 0;
  background-color: #FF5C2D;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.testimonials .testimonials-img-wrapper .play-video-img figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.testimonials .testimonials-img-wrapper .play-video-img img {
  width: 100%;
  transition: transform 0.9s;
}
@media (min-width: 322px) {
  section.testimonials .testimonials-img-wrapper .play-video-img {
    height: 70px;
    width: 70px;
  }
}
@media (min-width: 768px) {
  section.testimonials .testimonials-img-wrapper .play-video-img {
    width: 85px;
    height: 85px;
  }
}
section.testimonials .splide__pagination {
  bottom: -3rem;
}
section.testimonials .splide__pagination__page {
  background-color: #FF5C2D;
  opacity: 50%;
}
section.testimonials .splide__pagination__page.is-active {
  opacity: 100%;
}
section.testimonials .testimonials-top-img figure {
  width: 320px;
  margin-left: 10%;
}
section.testimonials .testimonials-quotes-icon {
  position: absolute;
  width: 100px;
}
@media (min-width: 322px) {
  section.testimonials .testimonials-quotes-icon {
    top: 16%;
    width: 80px;
    right: 15%;
  }
}
@media (min-width: 992px) {
  section.testimonials .testimonials-quotes-icon {
    right: 30px;
  }
}
@media (min-width: 1024px) {
  section.testimonials .testimonials-quotes-icon {
    top: 15%;
  }
}
@media (min-width: 1200px) {
  section.testimonials .testimonials-quotes-icon {
    right: 50px;
  }
}
section.testimonials .testimonials-top-content {
  z-index: 10;
  position: relative;
}
@media (min-width: 322px) {
  section.testimonials .testimonials-top-content {
    padding-top: 2rem;
    margin-top: -115px;
  }
}
@media (min-width: 500px) {
  section.testimonials .testimonials-top-content {
    margin-top: -65px;
  }
}
@media (min-width: 576px) {
  section.testimonials .testimonials-top-content {
    margin-top: -80px;
  }
}
@media (min-width: 768px) {
  section.testimonials .testimonials-top-content {
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  section.testimonials .testimonials-top-content {
    margin-top: -120px;
  }
}
@media (min-width: 1200px) {
  section.testimonials .testimonials-top-content {
    margin-top: -170px;
  }
}
section.testimonials .testimonials-cards-wrapper {
  position: relative;
  padding-bottom: 2rem;
}
section.testimonials .testimonials-cards-wrapper .testimonials-cards-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 120%;
  background-color: #fff;
  display: none;
}
section.testimonials .testimonials-cards-wrapper .testimonials-card {
  margin-top: 1.5rem;
  background-color: #fff;
  padding: 30px;
  padding-top: 60px;
}
@media (min-width: 768px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card {
    padding: 35px;
    padding-top: 70px;
  }
}
@media (min-width: 992px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card {
    padding: 30px;
    padding-top: 60px;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card {
    padding: 50px;
    padding-top: 70px;
  }
}
section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: space-around;
  flex-direction: column;
  padding-bottom: 1rem;
}
section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content p:not(.author p) {
  margin-top: 25px;
}
@media (min-width: 322px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content p:not(.author p) {
    font-size: 15px;
  }
}
@media (min-width: 576px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content p:not(.author p) {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content p:not(.author p) {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content p:not(.author p) {
    font-size: 20px;
    width: 95%;
  }
}
section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content p span {
  font-weight: 600;
}
section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content .author {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  position: relative;
}
@media (min-width: 322px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content .author {
    font-size: 17px;
  }
}
@media (min-width: 576px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content .author {
    font-size: 19px;
  }
}
@media (min-width: 992px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content .author {
    font-size: 21px;
  }
}
section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content .author span {
  color: #FF5C2D;
  font-weight: 600;
}
section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content .author p {
  font-size: 15px;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content .author p {
    font-size: 17px;
  }
}
@media (min-width: 992px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content .author p {
    font-size: 19px;
  }
}
section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content .author::after {
  position: absolute;
  width: 80%;
  height: 2px;
  left: 0;
  bottom: -15px;
  background-color: rgb(201, 201, 201);
  opacity: 50%;
}
@media (min-width: 1024px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonials-card-content .author::after {
    width: 90%;
  }
}
section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonial-brand-logo {
  width: 90px;
}
@media (min-width: 322px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonial-brand-logo {
    position: absolute;
    top: 0%;
    left: 10%;
  }
}
@media (min-width: 768px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonial-brand-logo {
    top: 5%;
    left: 10%;
  }
}
@media (min-width: 1024px) {
  section.testimonials .testimonials-cards-wrapper .testimonials-card .testimonial-brand-logo {
    margin-top: -2.5rem;
    position: static;
  }
}
@media (min-width: 322px) {
  section.testimonials svg:not(:root).svg-inline--fa {
    margin-left: 3px;
  }
}
@media (min-width: 1024px) {
  section.testimonials svg:not(:root).svg-inline--fa {
    margin-left: 5px;
  }
}

section.cta {
  background-color: #FF5C2D;
}
section.cta.mega {
  padding-bottom: 6rem;
  background-color: #fc6614;
  position: relative;
}
section.cta.mega .container {
  z-index: 10;
  position: relative;
}
section.cta.mega::before {
  content: "";
  position: absolute;
  bottom: -90px;
  border-radius: 0 100% 30% 0;
  left: -97px;
  background-color: #fd5322;
}
@media (min-width: 322px) {
  section.cta.mega::before {
    width: 25rem;
    height: 18rem;
  }
}
@media (min-width: 992px) {
  section.cta.mega::before {
    width: 30rem;
    height: 23rem;
  }
}
section.cta.mega .cta-shape-1 {
  position: absolute;
  top: 0;
  right: 1px;
  border-radius: 0% 0 0 100%;
  background-color: #fd5322;
}
@media (min-width: 322px) {
  section.cta.mega .cta-shape-1 {
    height: 70%;
    width: 100px;
  }
}
@media (min-width: 992px) {
  section.cta.mega .cta-shape-1 {
    width: 230px;
    height: 100%;
  }
}
section.cta.mega button {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.cta.mega button figure {
  margin: 0;
  width: 30px;
  margin-top: -3px;
}
section.cta.mega button figure img {
  width: 100%;
}

section.network {
  background-image: url("../../assets/images/homepage/network/network-bg.jpg");
  background-size: cover;
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}
section.network::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.0470588235) 0%, #ffffff 100%);
}
section.network .heading {
  position: relative;
  z-index: 1;
}
section.network .network-map-wrap {
  padding: 20px 0;
}
section.network .network-map-wrap .tab-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-direction: column;
}
@media (min-width: 576px) {
  section.network .network-map-wrap .tab-wrap {
    flex-direction: row;
  }
}
section.network .network-map-wrap .tab-wrap button {
  display: flex;
  align-items: center;
  background-color: #232d67;
  border: 0;
  outline: 0;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  width: 230px;
  justify-content: space-between;
}
@media (min-width: 576px) {
  section.network .network-map-wrap .tab-wrap button {
    justify-content: unset;
    padding: 10px 20px;
    font-size: 16px;
    width: auto;
  }
}
section.network .network-map-wrap .tab-wrap button:first-child {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  section.network .network-map-wrap .tab-wrap button:first-child {
    margin-right: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  section.network .network-map-wrap .tab-wrap button:first-child {
    margin-right: 80px;
  }
}
section.network .network-map-wrap .tab-wrap button:first-child span.tab-active-toggle::before {
  background-color: #2c92e9;
}
section.network .network-map-wrap .tab-wrap button span.tab-active-toggle {
  width: 18px;
  height: 18px;
  border: 1px solid red;
  margin-left: 15px;
  border: 3px solid #a4a8bd;
  border-radius: 50%;
  position: relative;
  transition: 0.4s;
  background-color: #fff;
}
section.network .network-map-wrap .tab-wrap button span.tab-active-toggle::before {
  transition: 0.4s;
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #a4a8bd;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
section.network .network-map-wrap .tab-wrap button.active {
  background-color: #FF5C2D;
}
section.network .network-map-wrap .map-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap {
  position: relative;
  width: 100%;
}
@media (min-width: 576px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap {
    width: 80%;
  }
}
section.network .network-map-wrap .map-wrap .map-dot-wrap svg {
  width: 100%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #fff;
  width: 10px;
  height: 10px;
}
@media (min-width: 768px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin {
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 992px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin {
    width: 14px;
    height: 14px;
  }
}
@media (min-width: 1200px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin {
    width: 16px;
    height: 16px;
  }
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.global {
  background-color: #2c91e8;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.local {
  background-color: #6788a0;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.n-america-1 {
  left: 9%;
  top: 28%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.n-america-1 .location-content {
  left: 5px;
  transform: unset;
}
@media (min-width: 768px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.n-america-1 .location-content {
    left: 14px;
  }
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.n-america-2 {
  left: 12.5%;
  top: 22%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.n-america-2 .location-content {
  left: 5px;
  transform: unset;
}
@media (min-width: 768px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.n-america-2 .location-content {
    left: 14px;
  }
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.n-america-3 {
  left: 16.5%;
  top: 32.5%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.n-america-3 .location-content {
  left: 5px;
  transform: unset;
}
@media (min-width: 768px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.n-america-3 .location-content {
    left: 14px;
  }
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.s-america-1 {
  left: 28%;
  bottom: 39%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.s-america-2 {
  left: 26.5%;
  bottom: 31%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.s-america-3 {
  left: 21%;
  bottom: 32%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.s-africa-1 {
  left: 40.5%;
  bottom: 49.5%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.s-africa-2 {
  left: 47.5%;
  bottom: 37%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.m-east-1 {
  right: 44%;
  bottom: 56%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.india-1 {
  right: 35.9%;
  bottom: 56%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.india-2 {
  right: 35.4%;
  bottom: 51%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.india-3 {
  right: 33.7%;
  bottom: 59%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.asia-1 {
  right: 27%;
  top: 29%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin.australia-1 {
  right: 22%;
  bottom: 26%;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content {
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  top: 3px;
  pointer-events: none;
  opacity: 0;
  transition: 0.4s;
  padding: 10px;
  width: 140px;
  box-shadow: 0 0 19px 18px rgba(35, 45, 103, 0.0509803922);
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content > div {
  overflow-y: auto;
  max-height: 160px;
}
@media (min-width: 992px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content > div {
    max-height: 140px;
  }
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content > div::-webkit-scrollbar {
  width: 2px;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content > div::-webkit-scrollbar-thumb {
  background: linear-gradient(0deg, #FF5C2D, #FF4600);
  border-radius: 8px;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content > div::-webkit-scrollbar-track {
  background-color: transparent;
}
@media (min-width: 576px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content {
    width: 150px;
    top: 4px;
  }
}
@media (min-width: 768px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content {
    padding: 15px;
    left: 14px;
    top: 5px;
    transform: unset;
    width: 165px;
  }
}
@media (min-width: 992px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content {
    width: 200px;
  }
}
@media (min-width: 1200px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content {
    width: 240px;
  }
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content::before {
  content: "";
  position: absolute;
  left: -18px;
  top: -10px;
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content::before {
    left: -23px;
    top: -14px;
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 992px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content::before {
    left: -28px;
    top: -18px;
    width: 38px;
    height: 38px;
  }
}
@media (min-width: 1200px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content::before {
    left: -36px;
    top: -26px;
    width: 50px;
    height: 50px;
  }
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content h4 {
  color: #2C2726;
  font-size: 15px;
}
@media (min-width: 576px) {
  section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content h4 {
    font-size: 16px;
  }
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content p {
  font-size: 12px;
  color: #767676;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin .location-content a {
  padding-top: 6px;
  display: inline-block;
  border-top: 2px solid #FF5C2D;
  font-size: 12px;
  color: #FF5C2D;
  font-weight: 500;
}
section.network .network-map-wrap .map-wrap .map-dot-wrap .location-pin:hover .location-content {
  pointer-events: all;
  opacity: 1;
}
section.network .india-map-wrap {
  position: relative;
  margin-top: -2rem;
  margin-bottom: 2rem;
  width: 320px;
}
@media (min-width: 768px) {
  section.network .india-map-wrap {
    width: 520px;
  }
}
@media (min-width: 1024px) {
  section.network .india-map-wrap {
    width: 650px;
  }
}
section.network .india-map-wrap .india-map {
  width: 100%;
}
section.network .india-map-wrap .location-info-wrap {
  z-index: 10;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: 0.4s;
  padding: 10px;
  width: 140px;
  box-shadow: 0 0 19px 18px rgba(35, 45, 103, 0.0509803922);
}
@media (min-width: 322px) {
  section.network .india-map-wrap .location-info-wrap {
    transform: translateX(-35%);
    width: 180px;
  }
}
@media (min-width: 576px) {
  section.network .india-map-wrap .location-info-wrap {
    width: 300px;
  }
}
@media (min-width: 768px) {
  section.network .india-map-wrap .location-info-wrap {
    transform: translateX(-50%);
    padding: 15px;
    left: -10%;
    transform: unset;
    width: 180px;
  }
}
@media (min-width: 992px) {
  section.network .india-map-wrap .location-info-wrap {
    width: 200px;
  }
}
@media (min-width: 1200px) {
  section.network .india-map-wrap .location-info-wrap {
    width: 240px;
  }
}
section.network .india-map-wrap .location-info-wrap a {
  padding-top: 6px;
  display: inline-block;
  border-top: 2px solid #FF5C2D;
  font-size: 12px;
  color: #FF5C2D;
  font-weight: 500;
}
section.network .india-map-wrap .location-data-wrap {
  position: absolute;
  width: 0;
  height: 0;
  margin-left: -5px;
}
@media (min-width: 768px) {
  section.network .india-map-wrap .location-data-wrap {
    padding: 15px;
    padding-bottom: 25px;
    padding-right: 25px;
  }
}
section.network .india-map-wrap .location-data-wrap:hover .location-info-wrap {
  opacity: 1;
  pointer-events: all;
}
section.network .india-map-wrap .location-dots {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #2c91e8;
  z-index: 2;
}
section.network .india-map-wrap .location-dot-1 {
  top: 50%;
  left: 10%;
}
section.network .india-map-wrap .location-dot-2 {
  top: 49.5%;
  left: 16%;
}
section.network .india-map-wrap .location-dot-3 {
  top: 40%;
  left: 14%;
}
section.network .india-map-wrap .location-dot-4 {
  top: 31%;
  left: 19%;
}
section.network .india-map-wrap .location-dot-5 {
  bottom: 40.5%;
  left: 23%;
}
section.network .india-map-wrap .location-dot-6 {
  bottom: 39%;
  left: 17%;
}
@media (min-width: 768px) {
  section.network .india-map-wrap .location-dot-6 {
    bottom: 35%;
    left: 14%;
  }
}
section.network .india-map-wrap .location-dot-7 {
  bottom: 16%;
  left: 38%;
}
section.network .india-map-wrap .location-dot-8 {
  bottom: 42%;
  left: 34%;
}
section.network .india-map-wrap .location-dot-9 {
  bottom: 32%;
  right: 51%;
}
@media (min-width: 768px) {
  section.network .india-map-wrap .location-dot-9 {
    bottom: 28%;
    right: 47%;
  }
}
section.network .india-map-wrap .location-dot-10 {
  bottom: 42%;
  right: 40%;
}
section.network .india-map-wrap .location-dot-11 {
  bottom: 49%;
  right: 32%;
}
@media (min-width: 768px) {
  section.network .india-map-wrap .location-dot-11 {
    bottom: 45%;
    right: 28%;
  }
}
section.network .india-map-wrap .location-dot-12 {
  bottom: 51.5%;
  right: 15%;
}
section.network .india-map-wrap .location-dot-13 {
  top: 41%;
  right: 18%;
}
section.network .india-map-wrap .location-dot-14 {
  top: 34%;
  right: 8%;
}
@media (min-width: 322px) {
  section.network .india-map-wrap .location-dot-11 .location-info-wrap, section.network .india-map-wrap .location-dot-12 .location-info-wrap, section.network .india-map-wrap .location-dot-13 .location-info-wrap, section.network .india-map-wrap .location-dot-14 .location-info-wrap {
    transform: translateX(-100%);
  }
}

footer {
  position: relative;
}
footer h4 {
  color: #fff;
}
footer #top-footer {
  background-color: #111b51;
}
@media (min-width: 322px) {
  footer #top-footer {
    padding: 3rem 1rem;
  }
}
@media (min-width: 768px) {
  footer #top-footer {
    padding: 4rem 2rem;
  }
}
@media (min-width: 1024px) {
  footer #top-footer {
    padding: 1rem 5rem;
  }
}
@media (min-width: 1450px) {
  footer #top-footer {
    padding: 2rem 5rem;
    padding-bottom: 15px;
  }
}
footer #bottom-footer {
  padding: 3rem 0;
  overflow-y: hidden;
  background-color: #0b1443;
  padding-top: 2rem !important;
  position: relative;
}
@media (min-width: 322px) {
  footer #bottom-footer {
    padding: 3rem 0rem 0 1rem;
  }
}
@media (min-width: 768px) {
  footer #bottom-footer {
    padding: 4rem 0rem 0 1rem;
  }
}
@media (min-width: 1024px) {
  footer #bottom-footer {
    padding: 5rem 0rem 0 1rem;
  }
}
footer #bottom-footer .dummy-img {
  pointer-events: none;
  position: absolute;
  left: 0;
}
@media (min-width: 322px) {
  footer #bottom-footer .dummy-img {
    transform: scaleY(1.5);
    width: 100%;
    bottom: -30px;
  }
}
@media (min-width: 768px) {
  footer #bottom-footer .dummy-img {
    transform: scaleX(1.1);
    width: 85%;
    bottom: -60px;
  }
}
@media (min-width: 992px) {
  footer #bottom-footer .dummy-img {
    height: 250px;
  }
}
@media (min-width: 1200px) {
  footer #bottom-footer .dummy-img {
    height: 275px;
    bottom: -80px;
    transform: scaleX(1.3);
    left: 6%;
    width: 50%;
  }
}
footer .top-image {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
@media (min-width: 322px) {
  footer .top-image {
    width: 100%;
    transform: rotateY(180deg);
  }
}
@media (min-width: 576px) {
  footer .top-image {
    width: 70%;
  }
}
@media (min-width: 768px) {
  footer .top-image {
    width: 85%;
  }
}
@media (min-width: 1024px) {
  footer .top-image {
    width: 90%;
  }
}
@media (min-width: 1450px) {
  footer .top-image {
    width: 60%;
    left: 20%;
  }
}
footer p,
footer span,
footer li,
footer a {
  color: #FFF7F4;
}
footer .footer-list-items a {
  color: #FFF7F4;
  opacity: 90%;
  width: 100%;
}
footer .footer-list-items a:hover {
  opacity: 100%;
  color: #FF5C2D;
  transition: 0.4s;
}
footer .icon-wrapper {
  color: #FF5C2D;
}
footer ul {
  margin-top: 25px;
  padding-left: 0;
  width: 100%;
}
@media (min-width: 1450px) {
  footer ul {
    margin-top: 5px;
  }
}
footer ul span.footer-list-header {
  position: relative;
}
@media (min-width: 322px) {
  footer ul span.footer-list-header {
    font-size: large;
  }
}
@media (min-width: 1024px) {
  footer ul span.footer-list-header {
    font-size: x-large;
  }
}
footer ul span.footer-list-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 1px;
  opacity: 35%;
  background-color: #767676;
}
footer ul li {
  padding: 10px 0;
}
@media (min-width: 322px) {
  footer ul li {
    font-size: 13px;
  }
}
@media (min-width: 1024px) {
  footer ul li {
    font-size: 16px;
  }
}
footer .footer-list-header {
  font-weight: 500;
  font-size: 20px;
}
@media (min-width: 322px) {
  footer .footer-list-header {
    margin-bottom: 13px;
  }
}
@media (min-width: 1024px) {
  footer .footer-list-header {
    margin-bottom: 15px;
  }
}
footer .copywrites p,
footer .copywrites a {
  font-size: 14px;
}
footer .footer-socials-card {
  background-color: #fff;
  border-radius: 20px 20% 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 322px) {
  footer .footer-socials-card {
    max-width: 95%;
    margin-left: 2.5%;
    margin-left: 0;
    margin-top: -6rem;
    padding: 2rem 1rem;
  }
}
@media (min-width: 500px) {
  footer .footer-socials-card {
    max-width: 20rem;
    margin-top: -7rem;
    padding: 2.5rem 1.5rem;
  }
}
@media (min-width: 992px) {
  footer .footer-socials-card {
    padding: 1.5rem;
  }
}
@media (min-width: 1450px) {
  footer .footer-socials-card {
    max-width: 23rem;
    margin-top: -8.5rem;
    padding: 1.75rem;
  }
}
footer .footer-socials-card figure {
  margin: 0;
}
@media (min-width: 322px) {
  footer .footer-socials-card .footer-logo {
    width: 78%;
  }
}
@media (min-width: 768px) {
  footer .footer-socials-card .footer-logo {
    width: 80%;
  }
}
footer .footer-socials-card .divider {
  width: 90%;
  margin-left: 5%;
  background-color: black;
  height: 2px;
  position: relative;
}
@media (min-width: 322px) {
  footer .footer-socials-card .divider {
    margin: 1rem 0;
  }
}
@media (min-width: 576px) {
  footer .footer-socials-card .divider {
    margin: 3rem;
  }
}
@media (min-width: 1024px) {
  footer .footer-socials-card .divider {
    margin: 1rem 0;
  }
}
footer .footer-socials-card .divider::after {
  content: "";
  position: absolute;
  width: 35%;
  margin-left: 33%;
  height: 10px;
  margin-top: -4px;
  border-radius: 10px;
  background-color: #FF5C2D;
}
footer .footer-socials-card p,
footer .footer-socials-card span {
  color: #2C2726;
}
footer .footer-socials-card p {
  margin-top: 8px;
}
footer .footer-socials-card .tagline {
  margin-bottom: 5px;
  font-weight: 500;
}
footer .footer-socials-card .socials-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (min-width: 322px) {
  footer .footer-socials-card .socials-wrapper {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  footer .footer-socials-card .socials-wrapper {
    gap: 1rem;
    margin-top: 1rem;
  }
}
@media (min-width: 992px) {
  footer .footer-socials-card .socials-wrapper {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  footer .footer-socials-card .socials-wrapper {
    gap: 10px;
  }
}
footer .footer-socials-card .socials-wrapper .socials {
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #FF5C2D;
  color: #FF5C2D;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
@media (min-width: 322px) {
  footer .footer-socials-card .socials-wrapper .socials {
    height: 40.5px;
    width: 40.5px;
  }
}
@media (min-width: 992px) {
  footer .footer-socials-card .socials-wrapper .socials {
    height: 40px;
    width: 40px;
  }
}
@media (min-width: 1200px) {
  footer .footer-socials-card .socials-wrapper .socials {
    height: 47px;
    width: 47px;
  }
}
footer .footer-socials-card .socials-wrapper .socials:hover {
  background-color: #FF5C2D;
}
footer .footer-socials-card .socials-wrapper .socials:hover > * {
  transition: 0.4s;
  color: #fff;
}
footer li i {
  color: #FF5C2D;
}
footer .footer-dummy-element {
  margin-top: 25px;
  border-radius: 20px 20px 0 0;
  z-index: 10;
  position: relative;
  background-image: linear-gradient(to right, #e84316, #e84316);
}
@media (min-width: 992px) {
  footer .footer-dummy-element {
    margin-top: 0;
  }
}
@media (min-width: 1450px) {
  footer .footer-dummy-element {
    margin-top: 25px;
  }
}
@media (min-width: 322px) {
  footer .footer-dummy-element {
    height: 10px;
    width: 100%;
  }
}
@media (min-width: 1450px) {
  footer .footer-dummy-element {
    width: 100%;
    height: 12.5px;
    margin: 0;
  }
}
footer .bottom-footer-content {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  footer .bottom-footer-content {
    margin-bottom: 0;
  }
}
@media (min-width: 1450px) {
  footer .bottom-footer-content {
    margin-bottom: 25px;
  }
}
footer .bottom-footer-content span {
  font-weight: 600;
}
@media (min-width: 322px) {
  footer .bottom-footer-content span {
    font-size: 19px;
  }
}
@media (min-width: 1024px) {
  footer .bottom-footer-content span {
    font-size: 24px;
  }
}
footer .bottom-footer-content p {
  color: #fff;
  opacity: 70%;
}
@media (min-width: 322px) {
  footer .bottom-footer-content p {
    font-size: 12px;
  }
}
@media (min-width: 1024px) {
  footer .bottom-footer-content p {
    font-size: 15px;
  }
}
footer .bottom-footer-content h3 {
  color: #fff;
  opacity: 85%;
  font-weight: lighter;
}
@media (min-width: 322px) {
  footer .bottom-footer-content h3 {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  footer .bottom-footer-content h3 {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  footer .newsletter {
    width: 28rem;
  }
}
footer .newsletter span {
  font-weight: 500;
}
@media (min-width: 322px) {
  footer .newsletter span {
    font-size: 15px;
  }
}
@media (min-width: 1024px) {
  footer .newsletter span {
    font-size: 18px;
  }
}
footer .newsletter input {
  width: 100%;
  background-color: transparent;
  border: 1px solid #2f3a7c;
  color: #767676;
  border-radius: 50px;
}
@media (min-width: 322px) {
  footer .newsletter input {
    padding: 12px 25px;
  }
}
@media (min-width: 768px) {
  footer .newsletter input {
    padding: 15px 25px;
  }
}
footer .newsletter input:focus {
  outline: none;
}
footer .newsletter .input-wrapper {
  margin-top: 1.5rem;
  position: relative;
}
@media (min-width: 992px) {
  footer .newsletter .input-wrapper {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1450px) {
  footer .newsletter .input-wrapper {
    margin-top: 1.5rem;
  }
}
footer .newsletter .input-wrapper button {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 80%;
  padding: 5px 15px;
  background-color: #FF5C2D;
  color: #fff;
  border-radius: 30px;
  border: 1px solid #FF5C2D;
}
footer .newsletter .input-wrapper button:hover {
  background-color: transparent;
  transition: 0.4s;
  color: #FF5C2D;
  border: 1px solid #FF5C2D;
}
footer a {
  color: #FFF7F4;
  opacity: 90%;
}
footer a:hover {
  opacity: 100%;
  color: #FF5C2D;
  transition: 0.4s;
}
footer .links-wrapper {
  display: flex;
}
@media (min-width: 322px) {
  footer .links-wrapper {
    order: 1;
  }
}
@media (min-width: 1024px) {
  footer .links-wrapper {
    order: 3;
  }
}
footer .copywrite-wrapper {
  display: flex;
}
@media (min-width: 322px) {
  footer .copywrite-wrapper {
    order: 2;
  }
}
@media (min-width: 1024px) {
  footer .copywrite-wrapper {
    order: 1;
  }
}
footer .copywrite-wrapper p {
  color: #fff;
}
footer .copywrite-wrapper p a {
  transition: 0.4s;
}
footer .copywrite-wrapper p a:hover {
  color: #FF5C2D;
}

@media (min-width: 322px) {
  .footer-socials-card .svg-inline--fa {
    font-size: 18px;
  }
}
@media (min-width: 576px) {
  .footer-socials-card .svg-inline--fa {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .footer-socials-card .svg-inline--fa {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .footer-socials-card .svg-inline--fa {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */