@font-face {
  font-family: "Metropolis";
  src: url("../font/metropolis/Metropolis-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("../font/metropolis/Metropolis-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("../font/metropolis/Metropolis-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("../font/metropolis/Metropolis-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("../font/metropolis/Metropolis-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("../font/metropolis/Metropolis-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("../font/metropolis/Metropolis-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("../font/metropolis/Metropolis-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("../font/metropolis/Metropolis-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
.header-menu {
  font-family: "Metropolis";
  background: #ffffff;
  z-index: 999;
  position: relative;
  position: sticky;
  top: 0;
  transition: all 0.3s ease-in-out;
  transform: translate3d(0, 0, 0);
}
@media only screen and (max-width: 576px) {
  .header-menu {
    background-color: #FAFAFA;
  }
}
.header-menu .header-padding {
  padding: 24px 0;
  box-shadow: 0px 3px 12px 0px rgba(18, 18, 18, 0.06);
  will-change: transform, opacity;
}
@media only screen and (max-width: 576px) {
  .header-menu .header-padding {
    padding: 12px 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-menu .header-padding .logo-container {
  max-width: 200px;
}
@media only screen and (max-width: 576px) {
  .header-menu .header-padding .logo-container {
    max-width: 130px;
  }
}
.header-menu .header-padding .logo-container img {
  width: 100%;
}
.header-menu .header-padding .menu-container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.header-menu .header-padding .menu-container ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 112.5% */
  padding: 0 11px;
  color: #000000;
}
.header-menu .header-padding .menu-container ul li a {
  color: #000000;
  text-decoration: none;
}
.header-menu .header-padding .menu-container ul li a:hover {
  color: #FF5634;
}
.header-menu .header-padding .menu-container ul li.submenu-list {
  padding-right: 22.5px;
}
.header-menu .header-padding .menu-container ul li.submenu-list.small {
  position: relative;
}
.header-menu .header-padding .menu-container ul li.submenu-list .submenu-list-item::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  color: #000000;
  display: inline-flex;
  margin-left: 5px;
  position: absolute;
  transition: all 0.3s ease-in-out;
}
.header-menu .header-padding .menu-container ul li.submenu-list .submenu-list-item:hover::after {
  content: "\f077";
  color: #FF5634;
}
.header-menu .header-padding .menu-container ul li.submenu-list:hover .submenu-wrapper {
  display: block;
  transition: all 0.3s ease-in-out;
}
.header-menu .header-padding .menu-container ul li .submenu-wrapper {
  position: absolute;
  left: 0;
  width: auto;
  display: none;
  transform: translateX(-10%);
  transition: all 0.3s ease-in-out;
}
.header-menu .header-padding .menu-container ul li .submenu-wrapper.small {
  transform: translateX(-25%);
}
.header-menu .header-padding .menu-container ul li .submenu-wrapper.small .submenu {
  padding: 10px 5px;
}
.header-menu .header-padding .menu-container ul li .submenu-wrapper.small .submenu.industries {
  height: 555px;
  overflow: auto;
}
.header-menu .header-padding .menu-container ul li .submenu-wrapper.small .submenu.industries::-webkit-scrollbar {
  width: 6px;
  border-radius: 8px;
}
.header-menu .header-padding .menu-container ul li .submenu-wrapper.small .submenu.industries::-webkit-scrollbar-track {
  width: 6px;
  border-radius: 8px;
}
.header-menu .header-padding .menu-container ul li .submenu-wrapper.small .submenu.industries::-webkit-scrollbar-thumb {
  background: #E1E1E1;
  border-radius: 8px;
}
.header-menu .header-padding .menu-container ul li .submenu-wrapper.small .submenu.industries::-webkit-scrollbar-thumb:hover {
  background: #CACACA;
}
.header-menu .header-padding .menu-container ul li .submenu-wrapper.small .submenu .list-item {
  min-width: 300px;
  padding: 20px;
}
.header-menu .header-padding .menu-container ul li .submenu-wrapper.small .submenu .list-item .list-details .list-header {
  font-size: 18px;
}
.header-menu .header-padding .menu-container ul li .submenu-wrapper.small .submenu .list-item.bar {
  padding: 4px 15px;
  border-radius: 0;
  border-left: 3px solid #E1E1E1;
  margin-bottom: 20px;
  min-width: 400px;
}
.header-menu .header-padding .menu-container ul li .submenu-wrapper.small .submenu .list-item.bar:hover {
  border-color: #FF5634;
}
.header-menu .header-padding .menu-container ul li .submenu-wrapper.small .submenu .list-item.bar .list-details .list-header {
  color: #121212;
}
.header-menu .header-padding .menu-container ul li .submenu-wrapper.small .submenu .list-item:hover .list-details .list-header {
  color: #FF5634;
}
.header-menu .header-padding .menu-container ul li .submenu {
  margin-top: 43px;
  background-color: #ffffff;
  display: inline-flex;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 3px 12px 0px rgba(18, 18, 18, 0.06);
}
.header-menu .header-padding .menu-container ul li .submenu .submenu-block {
  display: block;
}
.header-menu .header-padding .menu-container ul li .submenu li:last-child {
  padding-bottom: 12px;
}
.header-menu .header-padding .menu-container ul li .submenu .list-item {
  min-width: 450px;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 0 15px;
  padding: 20px 40px;
  cursor: pointer;
}
.header-menu .header-padding .menu-container ul li .submenu .list-item .img-container {
  max-width: 30px;
}
.header-menu .header-padding .menu-container ul li .submenu .list-item .img-container img {
  width: 100%;
}
.header-menu .header-padding .menu-container ul li .submenu .list-item:hover {
  border-radius: 15px;
}
.header-menu .header-padding .menu-container ul li .submenu .list-item:hover .list-details .list-header {
  color: #FF5634;
}
.header-menu .header-padding .menu-container ul li .submenu .list-item .list-details .list-header {
  color: #121212;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 33.498px;
}
.header-menu .header-padding .menu-container ul li .submenu .list-item .list-details p {
  color: #3F3F3F;
  font-size: 14.722px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.124px; /* 170.648% */
}
.header-menu .header-padding .btn-fill {
  font-family: "Metropolis";
  display: flex;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 18px; /* 112.5% */
}
.header-menu .header-padding .btn-fill.btn-color {
  background-color: #FF5634;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}
.header-menu .header-padding .btn-fill.btn-color:hover {
  background-color: #e13f1f;
}
.header-menu .header-padding .btn-fill.btn-white {
  background-color: transparent;
  color: #000000;
  text-transform: capitalize;
  font-weight: 500;
  border: 1px solid #EDEDED;
  transition: all 0.2s ease-in-out;
}
.header-menu .header-padding .btn-fill.btn-white:hover {
  color: #ffffff;
  background-color: #FF5634;
}
@media only screen and (max-width: 1368px) {
  .header-menu .header-padding .btn-fill {
    padding: 18px 14px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 1300px) {
  .header-menu .header-padding .btn-fill {
    padding: 18px 10px;
  }
}
.header-menu .header-padding .btn-link {
  color: #FF5634;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 112.5% */
  text-decoration: none;
}
@media only screen and (max-width: 1368px) {
  .header-menu .header-padding .btn-link {
    padding: 18px 14px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 1300px) {
  .header-menu .header-padding .btn-link {
    padding: 18px 10px;
  }
}
.header-menu .header-padding .btn-country {
  max-width: 25px;
}
.header-menu .header-padding .btn-country img {
  border-radius: 4px;
  width: 100%;
}

.mobile-menu {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 99;
  height: 100%;
  transform: translate3d(0, -100vh, 0);
  transition: transform 0.4s ease;
  background-color: #FAFAFA;
  box-shadow: inset 0 8px 20px 0 rgba(20, 20, 43, 0.06);
  padding: 80px 0px 100px;
}
.mobile-menu.show {
  transform: translate3d(0, 0, 0);
}
.mobile-menu .nav-container {
  height: 100%;
  position: relative;
}
.mobile-menu .header-nav-mobile {
  position: relative;
  padding: 0px 20px;
  width: 100%;
  height: 100%;
  max-width: 100%;
  overflow: auto;
}
.mobile-menu .header-nav-mobile .header-menu-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  list-style-type: none;
  padding-left: 0;
}
.mobile-menu .header-nav-mobile .header-menu-list li {
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid #EDEDED;
}
.mobile-menu .header-nav-mobile .header-menu-list li .menu-last {
  padding-bottom: 26px;
}
.mobile-menu .header-nav-mobile .header-menu-list li .menu-last a {
  font-family: "Metropolis";
  display: flex;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 18px; /* 112.5% */
}
.mobile-menu .header-nav-mobile .header-menu-list li .menu-last a.btn-color {
  background-color: #FF5634;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}
.mobile-menu .header-nav-mobile .header-menu-list li .menu-last a.btn-color:hover {
  background-color: #e13f1f;
}
.mobile-menu .header-nav-mobile .header-menu-list li .menu-last a.btn-white {
  background-color: transparent;
  color: #000000;
  text-transform: capitalize;
  font-weight: 500;
  border: 1px solid #EDEDED;
  transition: all 0.2s ease-in-out;
}
.mobile-menu .header-nav-mobile .header-menu-list li .menu-last a.btn-white:hover {
  color: #ffffff;
  background-color: #FF5634;
}
.mobile-menu .header-nav-mobile .header-menu-list li .header-nav-link {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #000000;
  transition: transform 0.6s ease-in-out;
}
.mobile-menu .header-nav-mobile .header-menu-list li .header-nav-link.p-menu::after {
  font-family: "Font Awesome 5 Free";
  content: "\f077";
  transition: all 0.4s ease-in-out;
}
.mobile-menu .header-nav-mobile .header-menu-list li .header-nav-link.p-menu.collapsed::after {
  transform: rotate(180deg);
}
.mobile-menu .header-nav-mobile .header-menu-list li .header-nav-link:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.mobile-menu .header-nav-mobile .header-menu-list li .header-nav-link:active {
  outline: none;
  box-shadow: none;
}
.mobile-menu .header-nav-mobile .header-menu-list li .header-nav-link.highlight {
  color: #FF5634;
}
@media only screen and (max-width: 991px) {
  .mobile-menu .header-nav-mobile .header-menu-list li .header-nav-link {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .mobile-menu .header-nav-mobile .header-menu-list li .header-nav-link {
    font-size: 22px;
  }
}
@media only screen and (max-width: 576px) {
  .mobile-menu .header-nav-mobile .header-menu-list li .header-nav-link {
    font-size: 20px;
  }
}
.mobile-menu .header-nav-mobile .header-menu-list li .header-nav-link.collapsed svg {
  transform: rotate(180deg);
}
.mobile-menu .header-nav-mobile .header-menu-list li .header-nav-link svg {
  transition: transform 0.6s ease-in-out;
  transform: rotate(0deg);
}
@media only screen and (max-width: 991px) {
  .mobile-menu .header-nav-mobile .header-menu-list li .header-nav-link svg {
    font-size: 21px;
  }
}
@media only screen and (max-width: 768px) {
  .mobile-menu .header-nav-mobile .header-menu-list li .header-nav-link svg {
    font-size: 19px;
  }
}
@media only screen and (max-width: 576px) {
  .mobile-menu .header-nav-mobile .header-menu-list li .header-nav-link svg {
    font-size: 15px;
  }
}
.mobile-menu .header-nav-mobile .header-menu-list h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2em;
  color: #000000;
  margin-bottom: 16px;
}
.mobile-menu .header-nav-mobile .header-menu-list .card {
  background-color: #FAFAFA;
}
.mobile-menu .header-nav-mobile .header-menu-list .menu-container {
  padding: 0;
}
.mobile-menu .header-nav-mobile .header-menu-list .menu-container .menu-wrapper {
  margin-bottom: 0;
}
.mobile-menu .header-nav-mobile .header-menu-list .menu-container .menu-wrapper.m-40 {
  margin-right: 40px;
}
@media only screen and (max-width: 992px) {
  .mobile-menu .header-nav-mobile .header-menu-list .menu-container .menu-wrapper {
    margin-bottom: 0;
  }
}
.mobile-menu .header-nav-mobile .header-menu-list .menu-container h5 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .mobile-menu .header-nav-mobile .header-menu-list .menu-container h5 {
    margin-bottom: 30px;
  }
}
.mobile-menu .header-nav-mobile .header-menu-list .menu-container a {
  color: #656565;
  font-weight: 600;
}
.mobile-menu .header-nav-mobile .header-menu-list .menu-container li {
  padding: 5px;
  line-height: 1.111em;
  color: #656565;
  list-style-type: disc;
  border-bottom: 0;
}
.mobile-menu .header-nav-mobile .header-menu-list .menu-container li a {
  margin-bottom: 0px;
  line-height: 30px;
  font-size: 18px;
  font-weight: 500;
}
.mobile-menu .header-nav-mobile .header-menu-list .menu-container li a:hover {
  color: #FF5634;
}
.mobile-menu .header-nav-mobile .header-menu-list .menu-container li a .accented-link {
  font-weight: 600;
  color: #FF5634;
  padding: 0 0 5px;
  border-bottom: 3px solid #FF5634;
}
.mobile-menu .sticky-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 20px 0;
}
.mobile-menu .sticky-footer .btn-row-left {
  margin-bottom: 0;
}
.mobile-menu .sticky-footer .bottom-btn-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media only screen and (max-width: 420px) {
  .mobile-menu .sticky-footer .bottom-btn-container {
    justify-content: start;
    padding: 0 20px;
    gap: 0 10px;
  }
  .mobile-menu .sticky-footer .bottom-btn-container a {
    padding: 16px 18px;
    font-size: 14px;
  }
}
.mobile-menu .sticky-footer a {
  font-family: "Metropolis";
  display: flex;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 18px; /* 112.5% */
  width: auto;
}
.mobile-menu .sticky-footer a.btn-color {
  background-color: #FF5634;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}
.mobile-menu .sticky-footer a.btn-color:hover {
  background-color: #e13f1f;
}
.mobile-menu .sticky-footer a.btn-white {
  background-color: transparent;
  color: #000000;
  text-transform: capitalize;
  font-weight: 500;
  border: 1px solid #EDEDED;
  transition: all 0.2s ease-in-out;
}
.mobile-menu .sticky-footer a.btn-white:hover {
  color: #ffffff;
  background-color: #FF5634;
}

.hamburger-menu-btn .ham-menu .ham-menu-bar {
  width: 30px;
  height: 4px;
  background-color: #000000;
  border-radius: 100px;
  margin: 10px 0;
  transition: transform 0.3s ease-in-out;
}
.hamburger-menu-btn .ham-menu .ham-menu-bar.sec {
  width: 20px;
  height: 4px;
  margin-left: auto;
}
.hamburger-menu-btn .ham-menu .ham-menu-bar.sec.close {
  transform: translate3d(0, -6px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0deg) rotateZ(45deg);
  width: 30px;
}
.hamburger-menu-btn .ham-menu .ham-menu-bar.close {
  transform: translate3d(0, 7px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0deg) rotateZ(135deg);
}

#menuHamburger {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  left: -99999px;
}

.footer-section {
  background-color: #ffffff;
}
.footer-section .btn-fill {
  font-family: "Metropolis";
  display: flex;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 18px; /* 112.5% */
}
.footer-section .btn-fill.btn-color {
  background-color: #FF5634;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}
.footer-section .btn-fill.btn-color:hover {
  background-color: #e13f1f;
}
.footer-section .btn-fill.btn-white {
  background-color: transparent;
  color: #000000;
  text-transform: capitalize;
  font-weight: 500;
  border: 1px solid #EDEDED;
  transition: all 0.2s ease-in-out;
}
.footer-section .btn-fill.btn-white:hover {
  color: #ffffff;
  background-color: #FF5634;
}
.footer-section .btn-fill.btn-color {
  text-transform: unset;
}
.footer-section h5 {
  color: #121212;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 110% */
}
.footer-section p {
  color: #3F3F3F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
}
.footer-section .btn-group {
  display: flex;
  justify-content: end;
}
@media only screen and (max-width: 992px) {
  .footer-section .btn-group {
    flex-direction: column;
    justify-content: center;
  }
}
.footer-section .btn-group .btn-row-left {
  margin-bottom: 10px;
}
.footer-section .cta-row {
  padding: 70px 0 83px;
}
@media only screen and (max-width: 991px) {
  .footer-section .cta-row {
    padding: 60px 0 70px;
    gap: 40px 0;
  }
}
@media only screen and (max-width: 479px) {
  .footer-section .cta-row {
    padding: 50px 0 60px;
    gap: 30px 0;
  }
}
.footer-section .cta-row p {
  margin-bottom: 0;
  color: #3F3F3F;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 166.667% */
}
.footer-section .img-container {
  width: 100%;
  max-width: 200px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .footer-section .img-container {
    max-width: 166px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .footer-section .img-container {
    max-width: 138px;
    margin-bottom: 15px;
  }
}
.footer-section .img-container img {
  width: 100%;
  height: 100%;
  display: inline-block;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.footer-section .img-container img:hover {
  transform: scale(0.9);
}
@media only screen and (max-width: 992px) {
  .footer-section .cta-row p {
    margin-bottom: 10px;
  }
}
.footer-section .menu-container {
  padding: 100px 0;
}
@media only screen and (max-width: 767px) {
  .footer-section .menu-container {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 479px) {
  .footer-section .menu-container {
    padding: 70px 0;
  }
}
.footer-section .menu-container .custom-row {
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .footer-section .menu-container .custom-row {
    justify-content: start;
  }
}
.footer-section .menu-container .menu-wrapper {
  margin-bottom: 0;
}
.footer-section .menu-container .menu-wrapper.m-40 {
  margin-right: 40px;
}
@media only screen and (max-width: 992px) {
  .footer-section .menu-container .menu-wrapper {
    margin-bottom: 40px;
  }
}
.footer-section .menu-container .menu-wrapper .social-icon {
  border: 1px solid #E8E8E8;
  padding: 10px 12px;
  border-radius: 100%;
}
.footer-section .menu-container .menu-wrapper .social-icon svg {
  width: 22px;
  height: 22px;
}
.footer-section .menu-container h5 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .footer-section .menu-container h5 {
    margin-bottom: 30px;
  }
}
.footer-section .menu-container a {
  color: #3F3F3F;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
}
.footer-section .menu-container li {
  margin-bottom: 18px;
  line-height: 1.111em;
}
.footer-section .menu-container li a {
  margin-bottom: 0px;
  line-height: 1.111em;
}
.footer-section .menu-container li a:hover {
  color: #FF5634;
}
.footer-section .menu-container li a .accented-link {
  font-weight: 600;
  color: #FF5634;
  padding: 0 0 5px;
  border-bottom: 3px solid #FF5634;
}
.footer-section .menu-container .location-container {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px 18px;
  width: auto;
}
.footer-section .menu-container .location-container .img-container {
  max-width: 78px;
  margin-bottom: 0px;
}
.footer-section .menu-container .location-container .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: inline-block;
  border-radius: 24px;
  vertical-align: middle;
}
.footer-section .menu-container .location-container h5 {
  margin-bottom: 0;
  font-size: 18px;
}

.text-center .copyright-section {
  padding: 32px 0;
  border-top: 1px solid #EDEDED;
}
.text-center .copyright-section a {
  text-decoration: none;
  color: #FF5634;
}
.text-center .copyright-section p {
  margin-bottom: 0;
}

@keyframes shakeAnimation {
  0%, 100% {
    transform: translateY(0);
  }
  25%, 75% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translatex(-500px);
  }
}
@media only screen and (max-width: 576px) {
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translatex(-450px);
    }
  }
}
.horizontal-scrolling {
  width: 400%;
  height: 100vh;
  display: flex;
  flex-wrap: nowrap;
  background-color: #ffffff;
}
.horizontal-scrolling .subhead-section {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

form {
  position: relative;
}

#signupForm {
  position: relative;
}

.form-row.mobile-row {
  position: relative;
  z-index: 1;
}

.form-row {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-around;
  width: 100%;
  padding: 10px 0;
}
@media only screen and (max-width: 576px) {
  .form-row {
    padding: 8px 0;
  }
}
.form-row input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e7e7e7;
  background: #ffffff;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.02);
  padding: 16px 24px;
  white-space: normal;
}
@media only screen and (max-width: 576px) {
  .form-row input {
    font-size: 16px;
    background-color: #fafafa;
  }
}
.form-row input::placeholder {
  color: #cacaca;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 166.667% */
}
@media only screen and (max-width: 576px) {
  .form-row input::placeholder {
    font-size: 16px;
    color: #656565;
  }
}
.form-row input:focus {
  outline: none;
}
.form-row textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e7e7e7;
  background: #ffffff;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.02);
  padding: 16px 24px;
}
@media only screen and (max-width: 576px) {
  .form-row textarea {
    font-size: 16px;
    background-color: #fafafa;
  }
}
.form-row textarea::placeholder {
  color: #cacaca;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 166.667% */
}
@media only screen and (max-width: 576px) {
  .form-row textarea::placeholder {
    font-size: 16px;
    color: #656565;
  }
}
.form-row textarea:focus {
  outline: none;
}
.form-row .custom-contain {
  border: 1px solid #e7e7e7;
  background: #ffffff;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.02);
  height: 100%;
  border-radius: 12px;
  padding: 0 10px;
}
@media only screen and (max-width: 576px) {
  .form-row .custom-contain {
    font-size: 16px;
    background-color: #fafafa;
  }
}
.form-row .custom-contain img {
  max-width: 23px;
}
.form-row .custom-contain select {
  height: 100%;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  padding: 0 5px 0 10px;
  background-color: transparent;
}
.form-row .custom-contain select:focus {
  outline: none;
}
.form-row input[type=checkbox] {
  width: auto;
}
.form-row input[type=submit] {
  color: #ffffff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 150% */
  background-color: #1D88FE;
  transition: all 0.3s ease;
  text-transform: uppercase;
  word-break: break-word;
  white-space: normal;
}
.form-row input[type=submit]:hover {
  background-color: #086cd9;
}
@media only screen and (max-width: 576px) {
  .form-row input[type=submit] {
    font-size: 15px;
  }
}
.form-row label {
  color: #121212;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Metropolis;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 166.667% */
  margin-bottom: 10px;
  text-transform: capitalize;
}
@media only screen and (max-width: 576px) {
  .form-row label {
    font-size: 16px;
    text-align: left;
  }
}

#bookDemoModal .modal-header {
  padding: 40px 33px 18px;
  border-color: #EDEDED;
}
#bookDemoModal .custom-content-heading {
  width: 100%;
  margin: 0;
  align-items: start;
  justify-content: start;
  text-align: left;
}
#bookDemoModal .custom-content-heading h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  margin-bottom: 0px;
}
@media only screen and (max-width: 768px) {
  #bookDemoModal .custom-content-heading h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  #bookDemoModal .custom-content-heading h4 {
    font-size: 20px;
  }
}
#bookDemoModal .custom-content-heading h4 span {
  color: #FF5634;
}
#bookDemoModal .custom-content-heading p {
  padding: 0;
}
#bookDemoModal .btn-close {
  position: absolute;
  top: 45px;
  right: 35px;
}
#bookDemoModal .btn-close:focus {
  outline: none;
}
#bookDemoModal .contact-section {
  padding: 20px;
}
#bookDemoModal .form-row .calender-icon {
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
@media only screen and (max-width: 576px) {
  #bookDemoModal .form-row .calender-icon {
    display: block;
  }
}
#bookDemoModal .form-row .custom-contain {
  height: 60px;
  background: #FAFAFA;
  border: none;
  color: #656565;
}
#bookDemoModal .form-row input {
  background: #FAFAFA;
  border: none;
  color: #656565;
}
#bookDemoModal .form-row input::placeholder {
  color: #656565;
  font-size: 16px;
  font-weight: 500;
}
#bookDemoModal .form-row input[type=submit] {
  background: #FF5634;
  max-width: 400px;
  margin: auto;
  color: #ffffff;
  font-weight: 500;
  border-radius: 6px;
}
#bookDemoModal .form-row label.tnc {
  font-weight: 500;
}
#bookDemoModal .form-row label.tnc span {
  color: #1D88FE;
}
#bookDemoModal .form-row label.tnc span a {
  text-decoration: none;
}
#bookDemoModal .select2-selection {
  height: 60px;
  border-radius: 4px;
  background: #FAFAFA;
  border: none;
  color: #656565;
}
#bookDemoModal .select2-selection .select2-selection__rendered {
  height: 60px;
  padding: 15px 20px;
  color: #656565;
}
#bookDemoModal .select2-selection .select2-selection__arrow {
  height: 60px;
}

.select2-container {
  z-index: 9999;
}

.create-account-section .form-wrapper {
  background-color: #ffffff;
  height: 100vh;
  padding: 40px 55px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1536px) {
  .create-account-section .form-wrapper {
    padding: 20px 55px;
  }
}
@media only screen and (max-width: 576px) {
  .create-account-section .form-wrapper {
    padding: 20px 0;
    justify-content: flex-start;
    height: 100%;
    min-height: 100vh;
  }
}
.create-account-section .form-wrapper .img-container {
  text-align: center;
  max-width: 226px;
  margin: 20px auto;
}
@media only screen and (max-width: 1538px) {
  .create-account-section .form-wrapper .img-container {
    max-width: 200px;
    margin: 30px auto;
  }
}
@media only screen and (max-width: 992px) {
  .create-account-section .form-wrapper .img-container {
    max-width: 160px;
    margin: 10px auto 26px;
  }
}
.create-account-section .form-wrapper .img-container img {
  width: 100%;
}
.create-account-section .form-wrapper .form-container {
  max-width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 576px) {
  .create-account-section .form-wrapper .form-container h5 {
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 576px) {
  .create-account-section .form-wrapper .form-container {
    max-width: 86%;
    margin: 0 auto;
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  .create-account-section .form-wrapper .form-container form {
    margin: 26px 0 10px;
  }
}
@media only screen and (max-width: 576px) {
  .create-account-section .form-wrapper .form-container .boxed {
    border: 1px solid #F0F0F0;
    border-radius: 10px;
    padding: 10px;
  }
}
.create-account-section .form-wrapper .form-container .form-section .form-row input[type=submit] {
  text-transform: capitalize;
}
.create-account-section .form-wrapper .form-container .form-section .form-row label {
  line-height: 20px;
}
@media only screen and (max-width: 576px) {
  .create-account-section .form-wrapper .form-container .form-section .form-row label {
    font-size: 15px;
    line-height: 20px;
  }
}
.create-account-section .form-wrapper .form-container .form-section .form-row .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 15px;
  padding: 10px 16px;
}
@media only screen and (max-width: 576px) {
  .create-account-section .form-wrapper .form-container .form-section .tnc {
    font-size: 14px;
    line-height: normal;
    padding: 14px 0;
  }
}
.create-account-section .form-wrapper .form-container.forgot-pass {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px 0;
}
.create-account-section .form-wrapper .form-container.forgot-pass h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .create-account-section .form-wrapper .form-container.forgot-pass h5 {
    font-size: 20px;
  }
}
.create-account-section .form-wrapper .form-container.forgot-pass p {
  font-weight: 400;
  line-height: 1.65em;
  color: #656565;
  margin-bottom: 34px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}
.create-account-section .form-wrapper .form-container.forgot-pass .contact-section .verification-code-container {
  display: flex;
  gap: 0 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.create-account-section .form-wrapper .form-container.forgot-pass .contact-section .verification-code-container input {
  width: 50px;
  background-color: #F6F5F5;
  border-radius: 8px;
}
.create-account-section .form-wrapper .form-container.forgot-pass label {
  color: #3F3F3F;
}
.create-account-section .form-wrapper .form-container.forgot-pass .form-section {
  gap: 10px 0;
}
.create-account-section .form-wrapper .form-container.forgot-pass input {
  text-transform: capitalize;
  font-size: 18px;
}
.create-account-section .form-wrapper .form-container.forgot-pass .right-og-section {
  background-color: transparent;
}
.create-account-section .form-wrapper .form-container.forgot-pass .right-og-section .white-icon {
  max-width: 100px;
}
.create-account-section .form-wrapper .form-container a {
  color: #1D88FE;
  text-decoration: none;
}
.create-account-section .form-wrapper .form-container .line-sep {
  height: 1px;
  border-top: 1px solid #EAEAEA;
  margin: 26px 0;
  text-align: center;
  position: relative;
}
.create-account-section .form-wrapper .form-container .line-sep span {
  position: absolute;
  top: -7px;
  padding: 0 8px;
  background: white;
  font-size: 10px;
  color: #B5B5C3;
  transform: translateX(-70%);
}
.create-account-section .form-wrapper .form-container .google-btn {
  border-radius: 6px;
  border: 1px solid #F2F2F2;
  background: #ffffff;
  color: #3F3F3F;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  width: 100%;
  padding: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}
@media only screen and (max-width: 1538px) {
  .create-account-section .form-wrapper .form-container .google-btn {
    padding: 8px;
  }
}
@media only screen and (max-width: 576px) {
  .create-account-section .form-wrapper .form-container .google-btn {
    font-size: 15px;
  }
}
.create-account-section .form-wrapper .form-container .fb-btn {
  border-radius: 6px;
  border: 1px solid #F2F2F2;
  background: #1877F2;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  width: 100%;
  padding: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}
@media only screen and (max-width: 1538px) {
  .create-account-section .form-wrapper .form-container .fb-btn {
    padding: 8px;
  }
}
@media only screen and (max-width: 576px) {
  .create-account-section .form-wrapper .form-container .fb-btn {
    font-size: 15px;
  }
}
.create-account-section .form-wrapper .form-container .password-wrapper {
  position: relative;
  width: 100%;
}
.create-account-section .form-wrapper .form-container .password-wrapper input {
  width: 100%;
}
.create-account-section .form-wrapper .form-container .password-wrapper .icon-wrapper {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.create-account-section .form-wrapper .form-container .password-wrapper .icon-wrapper svg {
  color: #656565;
  transition: all 0.3s ease-in-out;
}
.create-account-section .form-wrapper .form-container .password-wrapper .icon-wrapper input[type=checkbox] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: -9999px;
}
.create-account-section .form-wrapper .form-container h5 {
  color: #FF5634;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px; /* 113.333% */
  margin-bottom: 4px;
}
@media only screen and (max-width: 576px) {
  .create-account-section .form-wrapper .form-container h5 {
    font-size: 26px;
    line-height: normal;
    margin-bottom: 8px;
  }
}
.create-account-section .form-wrapper .form-container p {
  color: #A7A8BB;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 576px) {
  .create-account-section .form-wrapper .form-container p {
    font-size: 16px;
    line-height: normal;
  }
}
.create-account-section .form-wrapper .form-container p span {
  color: #1D88FE;
  font-weight: 600;
}
.create-account-section .form-wrapper .form-container .tnc span {
  color: #1D88FE;
}
.create-account-section .form-wrapper .form-container label {
  margin-bottom: 4px;
  font-size: 16px;
}
.create-account-section .form-wrapper .form-container input {
  padding: 12px 16px;
  border-radius: 4px;
  border: 0;
  background: #FAFAFA;
  font-size: 16px;
}
.create-account-section .form-wrapper .form-container input::placeholder {
  color: #656565;
  font-size: 16px;
}
@media only screen and (max-width: 1536px) {
  .create-account-section .form-wrapper .form-container input::placeholder {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1536px) {
  .create-account-section .form-wrapper .form-container input {
    font-size: 15px;
    padding: 10px 16px;
    line-height: 1.6;
  }
}
.create-account-section .form-wrapper .form-container .custom-contain {
  background: #FAFAFA;
  border: none;
  border-radius: 4px;
}
.create-account-section .form-wrapper .form-container select {
  padding: 12px 16px;
  border-radius: 4px;
  border: 0;
  background: #FAFAFA;
  font-size: 16px;
  cursor: pointer;
  color: #656565;
}
.create-account-section .form-wrapper .form-container select::placeholder {
  color: #656565;
  font-size: 16px;
}
.create-account-section .form-wrapper .form-container select:focus {
  outline: none;
}
.create-account-section .form-wrapper .form-container input[type=checkbox] {
  margin-bottom: 2.5px;
  border: none;
  background-color: #656565;
}
.create-account-section .form-wrapper .form-container input[type=submit] {
  border-radius: 6px;
  background: #FF5634;
}
.create-account-section .form-wrapper .form-container .nw-pass {
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: absolute;
  top: 15%;
  right: 0;
}
@media only screen and (max-width: 576px) {
  .create-account-section .form-wrapper .form-container .nw-pass {
    font-size: 15px;
    top: 12%;
  }
}
.create-account-section .right-section {
  background-image: url("../../../../ord-website/assets/img/cover1.webp");
  background-position: top center;
  background-size: cover;
  height: 100%;
}
.create-account-section .right-section .img-container img {
  width: 100%;
  object-fit: cover;
}
.create-account-section .right-og-section {
  background-color: #FF5634;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.create-account-section .right-og-section h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .create-account-section .right-og-section h5 {
    font-size: 20px;
  }
}
.create-account-section .right-og-section p {
  font-weight: 400;
  line-height: 1.65em;
  color: #ffffff;
  margin-bottom: 34px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}
.create-account-section .right-og-section .img-container {
  max-width: 340px;
  margin: 0 auto;
}
.create-account-section .right-og-section .img-container.white-icon {
  background-color: #ffffff;
  max-width: 120px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.create-account-section .right-og-section .img-container.white-icon img {
  width: 100%;
}
.create-account-section .right-og-section .img-container img {
  width: 100%;
  object-fit: cover;
}

.video-testimonials h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .video-testimonials h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .video-testimonials h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .video-testimonials h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .video-testimonials h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .video-testimonials h3 {
    font-size: 20px;
  }
}
.video-testimonials h3 span {
  color: #FF5634;
}
@media only screen and (max-width: 768px) {
  .video-testimonials .content-padding {
    padding-bottom: 20px;
  }
}
.video-testimonials .testimonial-wrapper {
  max-width: 70%;
  margin: auto;
  padding: 56px 0 0;
}
@media only screen and (max-width: 1200px) {
  .video-testimonials .testimonial-wrapper {
    max-width: 80%;
  }
}
@media only screen and (max-width: 992px) {
  .video-testimonials .testimonial-wrapper {
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .video-testimonials .testimonial-wrapper {
    max-width: 100%;
    padding: 40px 0 0;
  }
}
@media only screen and (max-width: 576px) {
  .video-testimonials .testimonial-wrapper {
    padding: 20px 0 0;
  }
}
.video-testimonials .testimonial-wrapper .owl-nav {
  display: flex;
  align-items: center;
  justify-content: start;
  padding-top: 20px;
  gap: 0 25px;
}
.video-testimonials .testimonial-wrapper .owl-nav span {
  display: none;
}
.video-testimonials .testimonial-wrapper .owl-nav .owl-prev::after {
  content: url("../../../../ord-website/assets/img/video-testimonials/prev-btn.svg");
}
.video-testimonials .testimonial-wrapper .owl-nav .owl-next::after {
  content: url("../../../../ord-website/assets/img/video-testimonials/next-btn.svg");
}
.video-testimonials .testimonial-wrapper .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  gap: 0 12px;
}
.video-testimonials .testimonial-wrapper .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  position: relative;
  display: block;
  background: #FFF5F1;
  border-radius: 100%;
}
.video-testimonials .testimonial-wrapper .owl-dots .owl-dot.active span {
  width: 16px;
  height: 16px;
  position: relative;
  display: block;
  background: #FF5634;
  border-radius: 100%;
}
.video-testimonials .testimonial-cards {
  border-radius: 10px;
  margin: 0 10px;
  background: #FFF5F1;
  box-shadow: 0px 15px 30px -20px rgba(0, 0, 0, 0.03), 0px 0px 6px 0px rgba(35, 18, 117, 0.12);
  padding: 20px 30px;
}
@media only screen and (max-width: 576px) {
  .video-testimonials .testimonial-cards {
    padding: 20px 15px;
  }
}
.video-testimonials .testimonial-cards .cards-content {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 30px 10px;
}
@media only screen and (max-width: 768px) {
  .video-testimonials .testimonial-cards .cards-content {
    padding: 20px 30px 0;
  }
}
@media only screen and (max-width: 576px) {
  .video-testimonials .testimonial-cards .cards-content {
    padding: 20px 0 0;
  }
}
.video-testimonials .testimonial-cards .cards-content img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}
.video-testimonials .testimonial-cards .cards-content .content-msg p {
  text-align: start;
  color: #3F3F3F;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
@media only screen and (max-width: 992px) {
  .video-testimonials .testimonial-cards .cards-content .content-msg p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .video-testimonials .testimonial-cards .cards-content .content-msg p {
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  .video-testimonials .testimonial-cards .cards-content .content-msg p {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.video-testimonials .testimonial-cards .cards-content-img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .video-testimonials .testimonial-cards .cards-content-img .content-img {
    max-width: 400px;
    margin: auto;
  }
}
.video-testimonials .testimonial-cards .cards-content-img .content-img .wistia_embed .w-chrome {
  border-radius: 16px !important;
}
.video-testimonials .testimonial-cards .cards-content-img img {
  width: 100%;
  object-fit: cover;
}
.video-testimonials .testimonial-cards .testimonial-icon {
  max-width: 55px;
}
@media only screen and (max-width: 768px) {
  .video-testimonials .testimonial-cards .testimonial-icon {
    max-width: 35px;
  }
}
.video-testimonials .testimonial-cards .testimonial-icon img {
  width: 100%;
  object-fit: cover;
}

.qrcode-page {
  margin: 155px 0 0;
  position: relative;
  overflow: hidden;
  /* Login/Logout button in usr-menu */
}
@media only screen and (max-width: 992px) {
  .qrcode-page {
    margin: 43px 0;
  }
}
@media only screen and (max-width: 576px) {
  .qrcode-page {
    margin: 10px 0 70px;
  }
}
.qrcode-page .cta-row {
  margin-bottom: 80px;
}
@media only screen and (max-width: 576px) {
  .qrcode-page .cta-row {
    margin-bottom: 0px;
  }
}
.qrcode-page .video-container {
  max-width: 450px;
  margin: 0 auto;
}
.qrcode-page .video-container.small {
  max-width: 250px;
}
.qrcode-page .video-container video {
  width: 100%;
}
.qrcode-page .qr-section h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .qrcode-page .qr-section h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .qrcode-page .qr-section h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .qrcode-page .qr-section h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .qrcode-page .qr-section h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .qrcode-page .qr-section h3 {
    font-size: 20px;
  }
}
.qrcode-page .qr-section h3 span {
  color: #FF5634;
}
.qrcode-page .qr-section h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .qrcode-page .qr-section h5 {
    font-size: 20px;
  }
}
.qrcode-page .qr-section h5 span {
  color: #FF5634;
}
.qrcode-page .qr-section p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
}
@media only screen and (max-width: 768px) {
  .qrcode-page .qr-section p {
    margin-bottom: 0px;
  }
}
.qrcode-page .qr-section p.para {
  padding: 0 20px;
}
.qrcode-page .qr-section .qr-wrapper {
  margin: 30px 0;
}
.qrcode-page .qr-section .qr-wrapper ul {
  flex-wrap: nowrap;
  display: inline-flex;
}
.qrcode-page .qr-section .qr-wrapper ul li button {
  border: none;
  white-space: nowrap;
  padding: 0.4em 0.6em;
  font-size: 18px;
  color: #3F3F3F;
}
.qrcode-page .qr-section .qr-wrapper ul li button.active {
  color: #121212;
  font-weight: 600;
  border-bottom: 2px solid #121212;
}
.qrcode-page .qr-section .qr-wrapper ul .auto-nav-more {
  position: relative;
}
.qrcode-page .qr-section .qr-wrapper ul .auto-nav-more:hover .auto-nav-more-list {
  opacity: 1;
  visibility: visible;
}
.qrcode-page .qr-section .qr-wrapper ul .auto-nav-more:hover .more-btn::after {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 14px;
  padding-left: 6px;
}
.qrcode-page .qr-section .qr-wrapper ul .auto-nav-more .more-btn::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 14px;
  padding-left: 6px;
  transition: all 0.3s ease-in-out;
}
.qrcode-page .qr-section .qr-wrapper ul .auto-nav-more .auto-nav-more-list {
  position: absolute;
  top: 100%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  text-align: right;
  padding: 0;
  list-style: none;
  background: #ffffff;
  border-radius: 4px;
  min-width: 200px;
  z-index: 9;
  border-radius: 4px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: all 0.3s ease-in-out;
  flex-direction: column;
}
.qrcode-page .qr-section .qr-wrapper ul .auto-nav-more .auto-nav-more-list li {
  font-size: 16px;
  line-height: normal;
  letter-spacing: normal;
  font-weight: 400;
  color: #3F3F3F;
  cursor: pointer;
}
.qrcode-page .qr-section .qr-wrapper ul .auto-nav-more .auto-nav-more-list li:hover button {
  color: #FF5634;
}
.qrcode-page .qr-section .qr-wrapper ul .auto-nav-more .auto-nav-more-list li button {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  padding: 12px 15px;
  transition: all 0.3s ease-in-out;
  text-align: left;
}
.qrcode-page .qr-section .qr-wrapper ul .auto-nav-more .auto-nav-more-list li button.active {
  color: #ffffff;
  background-color: #FF5634;
  border-bottom: none;
  border-radius: 0;
}
.qrcode-page .qr-section .qr-wrapper .qr-space {
  margin: 20px 0;
  border-radius: 8px;
  padding: 10px;
  position: relative;
  background-color: #FAFAFA;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item {
  margin-bottom: 20px;
  border: none;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-header {
  position: relative;
  border: 1px solid #EAF4FF;
  border-radius: 4px;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-header button {
  font-size: 18px;
  text-transform: uppercase;
  padding-left: 80px;
  height: 50px;
  font-weight: 600;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-header button:not(.collapsed) {
  background-color: #FFF5F1;
  color: #FF5634;
  box-shadow: none;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-header button:not(.collapsed) svg, .qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-header button:not(.collapsed) i {
  color: #FF5634;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-header button.collapsed {
  background-color: #ffffff;
  color: #121212;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-header button.collapsed svg, .qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-header button.collapsed i {
  color: #121212;
  border-right: 1px solid #EAF4FF;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-header button:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-header button svg, .qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-header button i {
  padding: 10px 15px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  height: 30px;
  border-radius: 2px;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-header button i {
  font-size: 30px;
  height: 50px;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body {
  padding: 20px 10px 10px;
  background-color: #FAFAFA;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .form-row {
  padding-top: 0;
  padding-bottom: 20px;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .form-row .custom-contain {
  height: 60px;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .form-row .custom-contain select {
  width: 100%;
  margin-bottom: 5px;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .contain {
  width: 100%;
  background-color: #ffffff;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .contain input {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .contain input:checked + img {
  border: 1px solid red;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .contain img {
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  margin-bottom: 5px;
  max-width: 100px;
  min-width: 45px;
  padding: 8px;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .color-row {
  margin-bottom: 20px;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .color-row label {
  font-size: 80%;
  color: #656565;
  margin-bottom: 0;
  padding: 0 0 8px 0;
  font-weight: 700;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .color-row .tool {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .color-row .tool input {
  cursor: pointer;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .color-row .tool span {
  padding-left: 8px;
  line-height: 20px;
  font-size: 18px;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .color-row .tool input[type=color] {
  height: 40px;
  border: none;
  padding: 0;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .color-row .tool input[type=text] {
  height: 40px;
  border: 1px solid #EDEDED;
  padding-left: 20px;
  color: #3F3F3F;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .color-row .tool input[type=text]:focus {
  outline: none;
  box-shadow: none;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .upload-btn {
  margin: 20px 0;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .upload-btn span {
  cursor: pointer;
  background-color: #ffffff;
  border: 1px solid #FF5634;
  color: #FF5634;
  padding: 10px 20px;
  border-radius: 4px;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .upload-btn input {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  visibility: hidden;
  opacity: 0;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .logo-sz {
  margin-top: 30px;
}
.qrcode-page .qr-section .qr-wrapper .qr-input .accordion .accordion-item .accordion-body .tools-container .logo-sz input[type=range] {
  cursor: pointer;
  width: 100%;
}
.qrcode-page .qr-section .qr-wrapper .qr-container {
  border-radius: 8px;
  padding: 20px 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: sticky;
  top: 0;
}
.qrcode-page .qr-section .qr-wrapper .qr-container .qr-img {
  width: 95%;
  margin: auto;
}
.qrcode-page .qr-section .qr-wrapper .qr-container .qr-img img {
  width: 100%;
  object-fit: contain;
}
.qrcode-page .qr-section .qr-wrapper .qr-container .qr-img a.btn-content {
  font-family: "Metropolis";
  display: inline-flex;
  justify-content: center;
  padding: 26px 38px;
  border-radius: 12px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 18px; /* 112.5% */
  width: 100%;
  margin: 20px 0;
}
.qrcode-page .qr-section .qr-wrapper .qr-container .qr-img a.btn-content.btn-color {
  background-color: #FF5634;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  text-transform: capitalize;
}
.qrcode-page .qr-section .qr-wrapper .qr-container .qr-img a.btn-content.btn-color:hover {
  background-color: #e13f1f;
}
.qrcode-page .qr-section .qr-wrapper .qr-container .qr-img a.btn-content.btn-white {
  background-color: transparent;
  color: #000000;
  font-weight: 500;
  border: 1px solid #EDEDED;
  transition: all 0.2s ease-in-out;
}
.qrcode-page .qr-section .qr-wrapper .qr-container .qr-img a.btn-content.btn-white:hover {
  color: #ffffff;
  background-color: #FF5634;
}
.qrcode-page .qr-section .qr-wrapper .qr-container .qr-img a.btn-content.hyperlink {
  font-weight: 400;
  line-height: 1.65em;
  color: #FF5634;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0;
}
.qrcode-page .qr-section .qr-wrapper .qr-container .qr-img a.btn-content.hyperlink img {
  width: 12px;
}
.qrcode-page .qr-section .qr-wrapper .qr-container .qr-img .preloader {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.qrcode-page .qr-section .qr-wrapper .qr-container .qr-img .preloader svg {
  height: 45px;
}
.qrcode-page .timeline-container .timeline {
  position: relative;
  padding: 40px 0 0;
}
.qrcode-page .timeline-container .timeline::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 3px;
  left: 50%;
  background-color: #656565;
}
@media only screen and (max-width: 768px) {
  .qrcode-page .timeline-container .timeline::before {
    left: 5%;
  }
}
.qrcode-page .timeline-container .timeline ul {
  margin: 0;
  padding: 0;
  color: #121212;
}
.qrcode-page .timeline-container .timeline ul li {
  margin-bottom: 50px;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .qrcode-page .timeline-container .timeline ul li {
    flex-direction: column;
    padding-left: 15%;
  }
}
.qrcode-page .timeline-container .timeline ul li:nth-child(odd) .content {
  padding-left: 0;
}
.qrcode-page .timeline-container .timeline ul li:nth-child(even) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .qrcode-page .timeline-container .timeline ul li:nth-child(even) {
    flex-direction: column;
  }
}
.qrcode-page .timeline-container .timeline ul li:nth-child(even) .content {
  padding-right: 0;
}
.qrcode-page .timeline-container .timeline ul li .content {
  width: 50%;
  padding: 0 50px;
}
@media only screen and (max-width: 768px) {
  .qrcode-page .timeline-container .timeline ul li .content {
    width: 100%;
    padding: 0;
  }
}
.qrcode-page .timeline-container .timeline ul li .content h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  padding: 20px;
  background-color: #F1F3F4;
  margin-bottom: 0;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .qrcode-page .timeline-container .timeline ul li .content h3 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .qrcode-page .timeline-container .timeline ul li .content h3 {
    font-size: 20px;
  }
}
.qrcode-page .timeline-container .timeline ul li .content h3 span {
  color: #FF5634;
}
.qrcode-page .timeline-container .timeline ul li .content h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  text-align: left;
  padding: 20px;
  background-color: #F1F3F4;
  margin-bottom: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .qrcode-page .timeline-container .timeline ul li .content h5 {
    font-size: 20px;
  }
}
.qrcode-page .timeline-container .timeline ul li .content h5 span {
  color: #FF5634;
}
.qrcode-page .timeline-container .timeline ul li .content p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
  text-align: left;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #F1F3F4;
  margin-top: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.qrcode-page .timeline-container .timeline ul li .content p span {
  color: #FF5634;
}
.qrcode-page .timeline-container .timeline ul li .point {
  min-width: 60px;
  height: 60px;
  background-color: #FF5634;
  border-radius: 100%;
  z-index: 2;
  border: 3px #FF5634 solid;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate3d(-50%, -50%, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .qrcode-page .timeline-container .timeline ul li .point {
    left: 5%;
  }
}
.qrcode-page .timeline-container .timeline ul li .date {
  width: 50%;
  padding: 0 20px;
  font-weight: normal;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .qrcode-page .timeline-container .timeline ul li .date {
    width: 100%;
    padding: 0;
  }
}
.qrcode-page .timeline-container .timeline ul li .date:nth-child(odd) .content {
  padding-right: 0;
}
.qrcode-page .timeline-container .timeline ul li .date:nth-child(even) {
  flex-direction: row-reverse;
}
.qrcode-page .timeline-container .timeline ul li .date:nth-child(even) .content {
  padding-left: 0;
}
.qrcode-page .faq-container {
  margin: 80px 0;
}
.qrcode-page .faq-container.video {
  background-color: #F1F3F4;
}
.qrcode-page .faq-container .custom-content-heading .header {
  margin: 100px 0 40px;
}
.qrcode-page .faq-container .highlight {
  color: #FF5634;
}
@media only screen and (max-width: 768px) {
  .qrcode-page .info-cards-section .collapse-body {
    margin: 15px;
  }
}
.qrcode-page .info-cards-section .info-cards-container:hover .logo-container svg {
  color: #FF5634;
}
.qrcode-page .info-cards-section .info-cards-container.highlight {
  background-color: #FF5634;
  color: #000000;
}
.qrcode-page .info-cards-section .info-cards-container.highlight p, .qrcode-page .info-cards-section .info-cards-container.highlight h4 {
  color: #ffffff;
}
.qrcode-page .info-cards-section .info-cards-container .collapse-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .qrcode-page .info-cards-section .info-cards-container .collapse-head {
    flex-direction: row;
    justify-content: start;
    align-items: start;
  }
}
.qrcode-page .info-cards-section .info-cards-container .collapse-body {
  width: 100%;
}
.qrcode-page .info-cards-section .info-cards-container .collapse-body button {
  text-align: left;
  width: 100%;
}
.qrcode-page .info-cards-section .info-cards-container .logo-container {
  background-color: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.qrcode-page .info-cards-section .info-cards-container .logo-container.img-container.contain-2 {
  display: flex;
}
@media only screen and (max-width: 576px) {
  .qrcode-page .info-cards-section .info-cards-container .logo-container {
    height: 60px;
    display: flex;
  }
}
.qrcode-page .info-cards-section .info-cards-container .logo-container svg {
  font-size: 28px;
}
@media only screen and (max-width: 576px) {
  .qrcode-page .info-cards-section .info-cards-container .logo-container svg {
    font-size: 22px;
  }
}
.qrcode-page .usr-availability-btn {
  z-index: 99;
  font-weight: 500;
}
.qrcode-page .usr-availability-btn .tggl-name {
  font-size: 16px;
}
.qrcode-page .usr-availability-btn .usr-available-switch input {
  display: none;
}
.qrcode-page .usr-availability-btn .usr-available-switch {
  display: inline-block;
  width: 60px;
  height: 28px;
  margin: 8px;
  position: relative;
}
.qrcode-page .usr-availability-btn .usr-available-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 30px;
  background-color: #ffffff;
  box-shadow: 0 0 0 2px #121212, 0 0 4px #121212;
  cursor: pointer;
  border: 4px solid transparent;
  overflow: hidden;
  transition: 0.4s;
}
.qrcode-page .usr-availability-btn .usr-available-slider:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #121212;
  border-radius: 30px;
  transform: translateX(-30px);
  transition: 0.4s;
}
.qrcode-page input:checked + .usr-available-slider:before {
  transform: translateX(30px);
  background: #ffffff;
}
.qrcode-page input:checked + .usr-available-slider {
  box-shadow: 0 0 0 2px #FF5634, 0 0 2px #FF5634;
  background-color: #FF5634;
}
@media only screen and (max-width: 575px) {
  .qrcode-page .usr-availability-btn {
    margin-right: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .qrcode-page .usr-availability-btn .tggl-name {
    font-size: 13px;
  }
  .qrcode-page .usr-availability-btn .usr-available-switch {
    margin: 2px 8px;
  }
}

/* Styling for Section-1 */
.hero-section {
  margin: 155px 0 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .hero-section {
    margin: 43px 0;
  }
}
@media only screen and (max-width: 576px) {
  .hero-section {
    margin: 20px 0 0;
  }
}
.hero-section .row {
  align-items: center;
}
.hero-section .left-container {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
  width: 100%;
}
.hero-section .left-container .highlight-text {
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF5634;
  margin-bottom: 16px;
}
@media only screen and (max-width: 576px) {
  .hero-section .left-container .highlight-text {
    font-size: 12px;
  }
}
.hero-section .left-container h2 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 400px) {
  .hero-section .left-container h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section .left-container h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  .hero-section .left-container h2 {
    text-align: left;
  }
}
.hero-section .left-container h2 span {
  color: #FF5634;
}
.hero-section .left-container p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
}
.hero-section .left-container .left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .hero-section .left-container .left-content {
    height: auto;
    align-items: center;
  }
}
@media only screen and (max-width: 576px) {
  .hero-section .left-container .left-content {
    height: auto;
    align-items: start;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section .left-container .left-content span.heading {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.hero-section .left-container .left-content .img-container {
  width: 30px;
  margin: 20px 0;
}
@media only screen and (max-width: 576px) {
  .hero-section .left-container .left-content .img-container {
    width: 16px;
  }
}
.hero-section .left-container .left-content .img-container img {
  width: 100%;
  object-fit: cover;
}
.hero-section .left-container .left-content .highlight-text {
  letter-spacing: 1.2px;
}
.hero-section .left-container .left-content h1 {
  margin-bottom: 10px;
}
.hero-section .left-container .left-content p {
  margin-bottom: 70px;
}
@media only screen and (max-width: 992px) {
  .hero-section .left-container .left-content p {
    margin-bottom: 20px;
  }
}
.hero-section .left-container .left-content .btn-group {
  align-items: center;
  justify-content: start;
  width: auto;
}
.hero-section .left-container .left-content .btn-group .btn-row-left .btn-content {
  font-family: "Metropolis";
  display: inline-flex;
  justify-content: center;
  padding: 26px 38px;
  border-radius: 12px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 18px; /* 112.5% */
  width: 100%;
}
.hero-section .left-container .left-content .btn-group .btn-row-left .btn-content.btn-color {
  background-color: #FF5634;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  text-transform: capitalize;
}
.hero-section .left-container .left-content .btn-group .btn-row-left .btn-content.btn-color:hover {
  background-color: #e13f1f;
}
.hero-section .left-container .left-content .btn-group .btn-row-left .btn-content.btn-white {
  background-color: transparent;
  color: #000000;
  font-weight: 500;
  border: 1px solid #EDEDED;
  transition: all 0.2s ease-in-out;
}
.hero-section .left-container .left-content .btn-group .btn-row-left .btn-content.btn-white:hover {
  color: #ffffff;
  background-color: #FF5634;
}
.hero-section .left-container .left-content .btn-group .btn-row-left .btn-content.hyperlink {
  font-weight: 400;
  line-height: 1.65em;
  color: #FF5634;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0;
}
.hero-section .left-container .left-content .btn-group .btn-row-left .btn-content.hyperlink img {
  width: 12px;
}
@media only screen and (max-width: 992px) {
  .hero-section .left-container .left-content .btn-group {
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .hero-section .left-container .left-content .btn-group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
  }
}
@media only screen and (max-width: 576px) {
  .hero-section .left-container .left-content .btn-group {
    flex-direction: row;
    gap: 0 14px;
  }
  .hero-section .left-container .left-content .btn-group .btn-row-left {
    width: auto;
    flex-grow: 1;
  }
  .hero-section .left-container .left-content .btn-group .btn-row-left .btn-content {
    font-size: 12px;
    padding: 18px;
  }
}
.hero-section .left-container .left-content .info-container {
  width: 90%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 0 0;
}
@media only screen and (max-width: 992px) {
  .hero-section .left-container .left-content .info-container {
    padding: 40px 0;
    justify-content: center;
    gap: 0 30px;
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .hero-section .left-container .left-content .info-container {
    gap: 40px 20px;
    padding: 0 0 20px;
  }
}
.hero-section .left-container .left-content .info-container .sep {
  width: 1px;
  background: #E1E1E1;
  height: 100px;
}
.hero-section .left-container .left-content .info-container .info-numbers {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .hero-section .left-container .left-content .info-container .info-numbers {
    text-align: left;
    align-items: start;
    min-width: 70px;
  }
}
.hero-section .left-container .left-content .info-container .info-numbers .info {
  color: #121212;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.179em;
  margin-bottom: 6px;
}
@media only screen and (max-width: 400px) {
  .hero-section .left-container .left-content .info-container .info-numbers .info {
    font-size: 38px;
  }
}
.hero-section .left-container .left-content .info-container .info-numbers .info .accent-primary {
  color: #FF5634;
  transform: rotate(0deg);
  position: absolute;
}
.hero-section .left-container .left-content .info-container .info-numbers .info-title {
  font-weight: 500;
  line-height: 1.111em;
  color: #3F3F3F;
  max-width: 190px;
  text-align: left;
}
@media only screen and (max-width: 400px) {
  .hero-section .left-container .left-content .info-container .info-numbers .info-title {
    font-size: 12px;
    font-weight: 400;
  }
}
.hero-section .bg-right-img {
  width: 100%;
  max-width: 36%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 992px) {
  .hero-section .bg-right-img {
    max-width: 100%;
    height: 30%;
    left: 0;
    top: auto;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .bg-right-img {
    height: 24%;
  }
}
.hero-section .bg-right-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-section .right-container {
  height: 100%;
  width: 100%;
}
.hero-section .right-container .mobile-image {
  padding: 12px;
  border-radius: 14.393px;
  background-color: white;
  box-shadow: 28.786px 28.786px 39.341px 0px rgba(0, 0, 0, 0.14), -28.786px -28.786px 41.26px 0px rgba(0, 0, 0, 0.06);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .hero-section .right-container .mobile-image {
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.031372549), -5px 5px 10px 0px rgba(0, 0, 0, 0.031372549);
  }
}
.hero-section .right-container .mobile-image .video-thumbnail {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.hero-section .right-container .mobile-image .video-thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  margin: auto;
  transform: translate3d(-50%, -50%, 0);
}
.hero-section .right-container .mobile-image img {
  width: 100%;
  object-fit: cover;
}
.hero-section .right-container .mob-img {
  padding: 12px;
  border-radius: 14.393px;
  background-color: white;
  box-shadow: 28.786px 28.786px 39.341px 0px rgba(0, 0, 0, 0.14), -28.786px -28.786px 41.26px 0px rgba(0, 0, 0, 0.06);
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-section .right-container .mobile-video-img .mob-img1 {
    margin-bottom: -189px;
    opacity: 0;
    display: none;
  }
}
.hero-section .right-container .right-content {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 100%;
  position: relative;
}
.hero-section .right-container .right-content .mobile-image {
  max-width: 580px;
  position: absolute;
  left: -13%;
  z-index: 1;
  transform: translateX(32px) rotateZ(4deg);
  opacity: 0;
  visibility: hidden;
  padding: 12px;
  border-radius: 14.393px;
  box-shadow: 28.786px 28.786px 39.341px 0px rgba(0, 0, 0, 0.14), -28.786px -28.786px 41.26px 0px rgba(0, 0, 0, 0.06);
}
@media only screen and (max-width: 992px) {
  .hero-section .right-container .right-content .mobile-image {
    position: relative;
    left: 0;
  }
}
.hero-section .right-container .right-content .mobile-image .position-relative {
  display: flex;
}
.hero-section .right-container .right-content .mobile-image img {
  width: 100%;
  object-fit: cover;
}
.hero-section .right-container .right-content .mobile-image video {
  width: 100%;
  border-radius: 14px;
  cursor: pointer;
  outline: none;
}
@media only screen and (max-width: 992px) {
  .hero-section .right-container .right-content {
    margin-top: 30px;
    justify-content: center;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .hero-section .right-container .right-content {
    margin-top: 10px;
    margin-bottom: 30px;
    justify-content: center;
    text-align: center;
  }
}

.sub-hero-section {
  background: #EAF4FF;
  padding: 16px;
  margin: 35px 0;
  overflow: hidden;
}
.sub-hero-section p {
  font-weight: 500;
  font-weight: 400;
  line-height: 1.65em;
  color: #121212;
  margin-bottom: 34px;
}
.sub-hero-section .info-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 15px;
}
@media only screen and (max-width: 992px) {
  .sub-hero-section .info-container {
    padding: 30px 0;
    justify-content: space-around;
    gap: 20px;
    overflow: hidden;
    animation: scroll 20s linear infinite;
    width: 1200px;
  }
}
@media only screen and (max-width: 992px) and (max-width: 576px) {
  .sub-hero-section .info-container {
    width: 800px;
  }
}
@media only screen and (max-width: 992px) {
  .sub-hero-section .info-container .img-container {
    padding: 0 20px;
    flex: content;
  }
}
@media only screen and (max-width: 576px) {
  .sub-hero-section .info-container {
    padding: 10px 0;
    gap: 40px 0;
  }
}
.sub-hero-section .info-container .img-container {
  width: 150px;
}
@media only screen and (max-width: 992px) {
  .sub-hero-section .info-container .img-container {
    min-width: 200px;
  }
}
@media only screen and (max-width: 576px) {
  .sub-hero-section .info-container .img-container {
    min-width: 150px;
    max-width: 150px;
  }
}
.sub-hero-section .info-container .img-container img {
  width: 100%;
}
.sub-hero-section .info-container .sep {
  width: 2px;
  background: #E1E1E1;
  height: 50px;
}
@media only screen and (max-width: 992px) {
  .sub-hero-section .info-container .sep {
    display: none;
  }
}
.sub-hero-section .info-container .info-numbers {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}
@media only screen and (max-width: 576px) {
  .sub-hero-section .info-container .info-numbers {
    text-align: center;
    align-items: center;
  }
}
.sub-hero-section .info-container .info-numbers .info {
  color: #121212;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.179em;
  margin-bottom: 6px;
}
.sub-hero-section .info-container .info-numbers .info .accent-primary {
  color: #FF5634;
}
.sub-hero-section .info-container .info-numbers .info-title {
  font-weight: 500;
  line-height: 1.111em;
  color: #3F3F3F;
}

/* Styling for Section-2,5,6 */
.feature-list.fl-1 .custom-content-pad {
  padding: 200px 0 60px;
}
@media only screen and (max-width: 479px) {
  .feature-list.fl-1 .custom-content-pad {
    padding: 96px 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  .feature-list.fl-1 .custom-content-pad {
    padding: 100px 0 50px;
  }
}
.feature-list.fl-2 .custom-content-pad {
  padding: 60px 0 200px;
}
@media only screen and (max-width: 768px) {
  .feature-list.fl-2 .custom-content-pad {
    padding: 50px 0 100px;
  }
}
@media only screen and (max-width: 479px) {
  .feature-list.fl-2 .custom-content-pad {
    padding: 40px 0 96px;
  }
}
.feature-list.fl-3 .btn-group {
  margin-top: 80px;
}
@media only screen and (max-width: 991px) {
  .feature-list.fl-3 .btn-group {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .feature-list.fl-3 .btn-group {
    margin-top: 64px;
  }
}
@media only screen and (max-width: 576px) {
  .feature-list.fl-3 .btn-group {
    margin-top: 56px;
  }
}
@media screen and (max-width: 992px) {
  .feature-list.fl-3 .content-col {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .feature-list.fl-3 .content-col {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 469px) {
  .feature-list.fl-3 .content-col {
    margin-bottom: 70px;
  }
}
.feature-list.fl-3 .content-col .content-list .content-feature h4 {
  margin-bottom: 8px;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .feature-list.fl-3 .content-col .content-list .content-feature h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 992px) {
  .feature-list.fl-3 .content-col .content-list .content-feature .img-container {
    margin-bottom: 16px;
  }
}
.feature-list .custom-content-heading {
  max-width: 850px;
}
.feature-list .btn-group {
  margin-top: 20px;
}
.feature-list .row {
  --bs-gutter-x: 65px;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .feature-list .row {
    --bs-gutter-x: 0px;
  }
}
.feature-list .animation-col {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .feature-list .animation-col {
    margin: 20px 0;
  }
}
.feature-list .animation-col .posabs {
  background-color: #FF5634;
  border-radius: 32px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 78px;
  z-index: 1;
}
.feature-list .animation-col .left-image-feature {
  transition: all 0.6s ease-in-out;
  display: none;
}
.feature-list .animation-col .left-image-feature:first-child {
  display: flex;
}
.feature-list .animation-col .img-wrapper {
  height: 100%;
  justify-content: center;
  padding: 0;
}
.feature-list .animation-col .img-wrapper .img-container {
  max-width: 100%;
}
.feature-list .animation-col .img-wrapper .img-container img {
  width: 100%;
}
.feature-list .animation-col .inner-container {
  max-width: 350px;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .feature-list .animation-col .inner-container {
    max-width: 58%;
  }
}
.feature-list .animation-col .inner-container.contain-left {
  margin-right: auto;
}
.feature-list .animation-col .inner-container.contain-right {
  margin-left: auto;
}
.feature-list .animation-col .inner-container.contain-right.small {
  max-width: 250px;
}
@media only screen and (max-width: 576px) {
  .feature-list .animation-col .inner-container.contain-right.small {
    max-width: 180px;
  }
}
.feature-list .animation-col .inner-container.contain-right.md {
  max-width: 280px;
}
@media only screen and (max-width: 576px) {
  .feature-list .animation-col .inner-container.contain-right.md {
    max-width: 180px;
  }
}
.feature-list .animation-col .inner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: inline-block;
}
.feature-list .animation-col .inner-image {
  max-width: 54%;
  position: absolute;
  z-index: 0;
}
.feature-list .animation-col .inner-image.r-inner-img {
  top: 30%;
  left: auto;
  right: 60px;
}
.feature-list .animation-col .inner-image.l-inner-img {
  top: 30%;
  right: auto;
  left: 30px;
  max-width: 285px;
  box-shadow: none;
}
@media only screen and (max-width: 992px) {
  .feature-list .animation-col .inner-image.l-inner-img {
    left: 0;
  }
}
@media only screen and (max-width: 576px) {
  .feature-list .animation-col .inner-image.l-inner-img {
    max-width: 170px;
  }
}
.feature-list .animation-col .inner-image.l-inner-max-img {
  top: 16%;
  right: auto;
  left: -10%;
  box-shadow: none;
  z-index: 2;
}
@media only screen and (max-width: 992px) {
  .feature-list .animation-col .inner-image.l-inner-max-img {
    left: 0;
  }
}
.feature-list .animation-col .inner-image.l-max-img {
  max-width: 100%;
  top: 15%;
  right: auto;
  left: 30px;
}
@media only screen and (max-width: 992px) {
  .feature-list .animation-col .inner-image.l-max-img {
    top: 35%;
    left: 0;
  }
}
@media only screen and (max-width: 576px) {
  .feature-list .animation-col .inner-image.l-max-img {
    max-width: 90%;
    top: 25%;
  }
}
.feature-list .animation-col .inner-image.t-inner-img {
  top: 10%;
  right: auto;
  left: 20px;
  z-index: 9;
  box-shadow: none;
}
.feature-list .animation-col .inner-image.t-inner-img.custom {
  top: -50%;
  left: 0;
}
@media only screen and (max-width: 992px) {
  .feature-list .animation-col .inner-image.t-inner-img.custom {
    top: -32%;
  }
}
@media only screen and (max-width: 768px) {
  .feature-list .animation-col .inner-image.t-inner-img.custom {
    top: -10%;
  }
}
.feature-list .animation-col .inner-image img {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  object-fit: cover;
  display: inline-block;
}
.feature-list .animation-col .backend-img {
  transform: scale3d(1, 1, 1);
  max-width: 79%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  align-self: stretch;
  margin-left: auto;
  border-radius: 20px;
  box-shadow: 0 14px 42px 0 rgba(16, 16, 16, 0.14);
}
@media only screen and (max-width: 992px) {
  .feature-list .animation-col .backend-img {
    max-width: 70%;
  }
}
.feature-list .animation-col .backend-img img {
  width: 100%;
  height: 100%;
  display: inline-block;
  object-fit: cover;
  z-index: 1;
}
.feature-list .animation-col .contain-absolute {
  position: absolute;
  max-width: 282px;
  z-index: 2;
  right: auto;
  top: 10%;
  bottom: auto;
  left: 0%;
}
@media only screen and (max-width: 992px) {
  .feature-list .animation-col .contain-absolute {
    max-width: 45%;
    top: 4%;
  }
}
.feature-list .animation-col .contain-absolute .mockup-shadow {
  z-index: -1;
  transform: scale(0.9);
  box-shadow: 0 54px 104px rgba(0, 0, 0, 0.2);
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.feature-list .img-container-custom {
  position: relative;
  max-width: 600px;
  margin: auto;
}
.feature-list .img-container-custom.w-300 {
  max-width: 300px;
  margin: auto;
}
@media only screen and (max-width: 576px) {
  .feature-list .img-container-custom.w-300 {
    max-width: 150px;
  }
}
.feature-list .img-container-custom.w-700 {
  max-width: 700px;
}
.feature-list .img-container-custom .inner-right {
  position: absolute;
  top: 1%;
  right: -60%;
  max-width: 360px;
}
@media only screen and (max-width: 576px) {
  .feature-list .img-container-custom .inner-right {
    right: -50%;
    max-width: 200px;
  }
}
.feature-list .img-container-custom img {
  width: 100%;
  object-fit: cover;
}
.feature-list p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
}
.feature-list h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .feature-list h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .feature-list h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .feature-list h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .feature-list h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .feature-list h3 {
    font-size: 20px;
  }
}
.feature-list h3 span {
  color: #FF5634;
}
.feature-list .content-col {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .feature-list .content-col {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .feature-list .content-col {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 576px) {
  .feature-list .content-col {
    margin: 20px 0 0;
  }
}
.feature-list .content-col p {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .feature-list .content-col p {
    margin-bottom: 0;
  }
}
.feature-list .content-col h3 {
  margin-bottom: 10px;
}
.feature-list .content-col .img {
  max-width: 60px;
}
.feature-list .content-col .img img {
  width: 100%;
}
.feature-list .content-col .img-containers {
  width: 73px;
}
.feature-list .content-col .img-containers img {
  width: 100%;
}
.feature-list .content-col .content-list {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
}
.feature-list .content-col .content-list h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .feature-list .content-col .content-list h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .feature-list .content-col .content-list h4 {
    font-size: 20px;
  }
}
.feature-list .content-col .content-list .content-msg {
  border-radius: 20px;
  border: 1px solid #ededed;
  background: #ffffff;
  padding: 26px 28px;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 576px) {
  .feature-list .content-col .content-list .content-msg {
    padding: 13px 20px;
  }
}
.feature-list .content-col .content-list .content-msg:hover {
  transform: scale(0.99);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.feature-list .content-col .content-list .content-msg:hover h4 {
  color: #FF5634;
}
.feature-list .content-col .content-list .content-msg.first {
  background-color: #FAFAFA;
  box-shadow: 4px 4px 8px 3px rgba(0, 0, 0, 0.08);
  padding: 40px 28px;
}
.feature-list .content-col .content-list .content-msg.first h4 {
  color: #FF5634;
}
.feature-list .content-col .content-list .content-feature {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
  margin-bottom: 32px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .feature-list .content-col .content-list .content-feature {
    margin-bottom: 32px;
    gap: 28px;
    align-items: start;
  }
  .feature-list .content-col .content-list .content-feature.last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .feature-list .content-col .content-list .content-feature {
    margin-bottom: 16px;
    gap: 18px;
  }
}
.feature-list .content-col .content-list .content-feature a {
  text-decoration: none;
}
.feature-list .content-col .content-list .content-feature a.learn-more {
  color: #FF5634;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  display: inline-block;
  margin-top: 10px;
}
.feature-list .content-col .content-list .content-feature h4 {
  margin-bottom: 8px;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .feature-list .content-col .content-list .content-feature h4 {
    font-size: 22px;
  }
}
@media screen and (max-width: 576px) {
  .feature-list .content-col .content-list .content-feature h4 {
    font-size: 16px;
  }
}
.feature-list .content-col .content-list .content-feature p {
  margin-bottom: 0;
}
.feature-list .content-col .content-list .content-feature .img-container {
  margin-bottom: 24px;
}
@media screen and (max-width: 992px) {
  .feature-list .content-col .content-list .content-feature .img-container {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .feature-list .content-col .content-list .content-feature .img-container {
    max-width: 40px;
    min-width: 40px;
    margin-top: 4px;
  }
  .feature-list .content-col .content-list .content-feature .img-container img {
    width: 100%;
  }
}

/* Styling for Section-4 */
.info-cards-section {
  background-color: #ffffff;
  position: relative;
  z-index: 2;
}
.info-cards-section .btn-group {
  margin-top: 60px;
}
.info-cards-section .custom-content-pad .custom-content-heading .highlight-text {
  margin-bottom: 8px;
}
@media only screen and (max-width: 992px) {
  .info-cards-section {
    padding: 40px 0 0;
  }
  .info-cards-section .custom-content-pad {
    padding-top: 50px;
  }
  .info-cards-section .btn-group {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .info-cards-section {
    padding: 0;
  }
}
.info-cards-section .info-cards-container {
  margin-bottom: 80px;
}
@media only screen and (min-width: 576px) {
  .info-cards-section .info-cards-container a {
    font-size: 0px;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 9;
  }
}
@media only screen and (max-width: 992px) {
  .info-cards-section .info-cards-container {
    margin-bottom: 64px;
  }
}
@media only screen and (max-width: 768px) {
  .info-cards-section .info-cards-container {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .info-cards-section .info-cards-container {
    margin-bottom: 0;
  }
}
.info-cards-section .info-cards-container p {
  margin-bottom: 0;
}
@media only screen and (max-width: 576px) {
  .info-cards-section .info-cards-container p {
    margin-bottom: 5px;
  }
  .info-cards-section .info-cards-container a {
    font-size: 18px;
    font-weight: 600;
    line-height: 36px;
    text-decoration: none;
    color: #ff5634;
    transition: 0.5s;
  }
  .info-cards-section .info-cards-container a:hover {
    opacity: 0.8;
  }
}
@media only screen and (min-width: 992px) {
  .info-cards-section.ics-htw .info-cards-container {
    margin-bottom: 0px;
  }
}
.info-cards-section.ics-features .custom-content-heading {
  margin-bottom: 74px;
}
.info-cards-section.ics-features .custom-content-heading h1 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .info-cards-section.ics-features .custom-content-heading {
    margin-bottom: 48px;
  }
  .info-cards-section.ics-features .custom-content-heading h1 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .info-cards-section.ics-features .custom-content-heading {
    margin-bottom: 40px;
  }
  .info-cards-section.ics-features .custom-content-heading h1 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 469px) {
  .info-cards-section.ics-features .custom-content-heading {
    margin-bottom: 32px;
  }
}
.info-cards-section.ics-features .custom-info-row {
  gap: 20px 0;
}
@media only screen and (min-width: 992px) {
  .info-cards-section.ics-features .custom-info-row .info-cards-container {
    margin-bottom: 0px;
  }
}

/* Styling for Section-8 */
.testimonial-section .video-container {
  position: relative;
  width: 100%;
  padding: 0 10px;
}
@media only screen and (max-width: 992px) {
  .testimonial-section .video-container {
    margin-bottom: 30px;
  }
}
.testimonial-section .video-container img {
  width: 100%;
  object-fit: cover;
}
.testimonial-section .video-container .video-thumbnail {
  position: absolute;
  bottom: 30px;
  left: 25px;
  cursor: pointer;
}
.testimonial-section .slider-container {
  padding: 50px 0;
  max-width: 450px;
  margin: auto;
}
.testimonial-section .slider-container .ui-slider {
  height: 7px;
  background-color: #e7e8f7;
  border-color: #e7e8f7;
}
.testimonial-section .slider-container .ui-slider-range {
  background-color: #1D88FE;
}
.testimonial-section .slider-container .ui-slider-handle {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background-color: #1D88FE;
  border-color: #1D88FE;
}
.testimonial-section .slider-container .ui-slider-handle:focus {
  outline: #1D88FE;
  border: #1D88FE;
}

/* Styling for Section-9 */
.drk-info-section {
  background-color: #ffffff;
  z-index: 1;
  position: relative !important;
  padding-top: 40px;
  padding-bottom: 158px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .drk-info-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }
}
@media only screen and (max-width: 576px) {
  .drk-info-section {
    padding-top: 0px;
    padding-bottom: 72px;
    z-index: 9;
  }
}
@media only screen and (max-width: 992px) {
  .drk-info-section .row.custom-row {
    align-items: center;
    text-align: center;
    justify-content: start;
    gap: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .drk-info-section .row.custom-row {
    gap: 180px;
  }
}
@media only screen and (max-width: 576px) {
  .drk-info-section .row.custom-row {
    gap: 70px;
  }
}
.drk-info-section .row .left-container {
  margin-bottom: 28px;
}
.drk-info-section .row .left-container .left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 100%;
}
.drk-info-section .row .left-container .left-content h2 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #ffffff;
  margin-bottom: 16px;
}
@media only screen and (max-width: 400px) {
  .drk-info-section .row .left-container .left-content h2 {
    font-size: 26px;
  }
}
.drk-info-section .row .left-container .left-content p {
  font-weight: 400;
  line-height: 1.65em;
  color: #ffffff;
  margin-bottom: 34px;
}
.drk-info-section .row .left-container .left-content .btn-fill {
  text-transform: capitalize;
  width: auto;
  font-family: "Metropolis";
  display: flex;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 18px; /* 112.5% */
}
.drk-info-section .row .left-container .left-content .btn-fill.btn-color {
  background-color: #FF5634;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}
.drk-info-section .row .left-container .left-content .btn-fill.btn-color:hover {
  background-color: #e13f1f;
}
.drk-info-section .row .left-container .left-content .btn-fill.btn-white {
  background-color: transparent;
  color: #000000;
  text-transform: capitalize;
  font-weight: 500;
  border: 1px solid #EDEDED;
  transition: all 0.2s ease-in-out;
}
.drk-info-section .row .left-container .left-content .btn-fill.btn-white:hover {
  color: #ffffff;
  background-color: #FF5634;
}
.drk-info-section .row .right-container {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-right: -60px;
}
@media only screen and (max-width: 992px) {
  .drk-info-section .row .right-container {
    text-align: center;
    width: 100%;
    margin-right: 0;
  }
}
.drk-info-section .row .right-container .left-content {
  transform: translate(10px) rotate(-10deg);
}
.drk-info-section .row .right-container .right-content {
  transform: translate(-10px) rotate(10deg);
}
.drk-info-section .row .right-container .img-container {
  max-width: 303px;
  box-sizing: border-box;
}
@media only screen and (max-width: 992px) {
  .drk-info-section .row .right-container .img-container {
    max-width: 253px;
  }
}
@media only screen and (max-width: 767px) {
  .drk-info-section .row .right-container .img-container {
    gap: 203px;
  }
}
@media only screen and (max-width: 576px) {
  .drk-info-section .row .right-container .img-container {
    gap: 153px;
  }
}
.drk-info-section .row .right-container .img-container img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
.drk-info-section .custom-row {
  display: grid;
  align-items: center;
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  grid-template-columns: 0.95fr 1fr;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 992px) {
  .drk-info-section .custom-row {
    grid-row-gap: 100px;
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .drk-info-section .custom-row {
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 576px) {
  .drk-info-section .custom-row .left-container {
    order: 2;
  }
}
@media only screen and (max-width: 479px) {
  .drk-info-section .custom-row {
    grid-row-gap: 70px;
  }
}
.drk-info-section .custom-row .left-container {
  margin-bottom: 28px;
  align-self: end;
  margin-bottom: 28px;
}
.drk-info-section .custom-row .left-container .left-content h2 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #ffffff;
  margin-bottom: 16px;
}
@media only screen and (max-width: 400px) {
  .drk-info-section .custom-row .left-container .left-content h2 {
    font-size: 26px;
  }
}
.drk-info-section .custom-row .left-container .left-content p {
  font-weight: 400;
  line-height: 1.65em;
  color: #ffffff;
  margin-bottom: 34px;
}
.drk-info-section .custom-row .left-container .left-content .btn-content {
  font-family: "Metropolis";
  display: inline-flex;
  justify-content: center;
  padding: 26px 38px;
  border-radius: 12px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 18px; /* 112.5% */
}
.drk-info-section .custom-row .left-container .left-content .btn-content.btn-color {
  background-color: #FF5634;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  text-transform: capitalize;
}
.drk-info-section .custom-row .left-container .left-content .btn-content.btn-color:hover {
  background-color: #e13f1f;
}
.drk-info-section .custom-row .left-container .left-content .btn-content.btn-white {
  background-color: transparent;
  color: #000000;
  font-weight: 500;
  border: 1px solid #EDEDED;
  transition: all 0.2s ease-in-out;
}
.drk-info-section .custom-row .left-container .left-content .btn-content.btn-white:hover {
  color: #ffffff;
  background-color: #FF5634;
}
.drk-info-section .custom-row .left-container .left-content .btn-content.hyperlink {
  font-weight: 400;
  line-height: 1.65em;
  color: #FF5634;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0;
}
.drk-info-section .custom-row .left-container .left-content .btn-content.hyperlink img {
  width: 12px;
}
.drk-info-section .custom-row .right-container {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-right: -60px;
  align-self: stretch;
}
@media only screen and (max-width: 992px) {
  .drk-info-section .custom-row .right-container {
    text-align: center;
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 576px) {
  .drk-info-section .custom-row .right-container {
    margin-top: -100px;
  }
}
.drk-info-section .custom-row .right-container .left-content {
  transform: translate(10px) rotate(-10deg);
}
@media only screen and (max-width: 576px) {
  .drk-info-section .custom-row .right-container .left-content {
    display: none;
  }
}
.drk-info-section .custom-row .right-container .right-content {
  transform: translate(-10px) rotate(10deg);
}
@media only screen and (max-width: 576px) {
  .drk-info-section .custom-row .right-container .right-content {
    display: none;
  }
}
.drk-info-section .custom-row .right-container .img-container {
  max-width: 303px;
  box-sizing: border-box;
}
@media only screen and (max-width: 992px) {
  .drk-info-section .custom-row .right-container .img-container {
    max-width: 253px;
  }
}
@media only screen and (max-width: 767px) {
  .drk-info-section .custom-row .right-container .img-container {
    gap: 203px;
  }
}
@media only screen and (max-width: 576px) {
  .drk-info-section .custom-row .right-container .img-container {
    gap: 153px;
  }
}
.drk-info-section .custom-row .right-container .img-container img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
.drk-info-section .cta-02 {
  background-color: #121212;
  top: 20%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .drk-info-section .cta-02 {
    top: 0%;
  }
}

.customCardContainer {
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
}
.customCardContainer::-webkit-scrollbar {
  display: none;
}

.info-cards-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
}
.info-cards-container.hov {
  position: relative;
  background-color: #FAFAFA;
  height: 100%;
  padding: 20px 15px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.info-cards-container.hov:hover {
  background-color: #FFF5F1;
  transform: scale(0.96);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.info-cards-container.hov:hover h4 {
  color: #FF5634;
}
.info-cards-container h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .info-cards-container h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .info-cards-container h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .info-cards-container h4 {
    margin-bottom: 8px;
    text-align: left;
  }
}
.info-cards-container p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
}
.info-cards-container .img-container {
  margin-bottom: 24px;
}
@media only screen and (max-width: 469px) {
  .info-cards-container .img-container {
    margin-bottom: 0px;
  }
}
.info-cards-container .img-container.contain-1 {
  max-width: 218px;
  height: 218px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .info-cards-container .img-container.contain-1 {
    max-width: 182px;
  }
}
@media only screen and (max-width: 469px) {
  .info-cards-container .img-container.contain-1 {
    max-width: 150px;
  }
}
.info-cards-container .img-container.contain-2 {
  max-width: 105px;
  margin-left: auto;
  margin-right: auto;
}
.info-cards-container .img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media only screen and (max-width: 576px) {
  .info-cards-container-mb.hov {
    background: none;
    height: auto;
    padding: 5px;
    border: 1px solid #ededed;
    border-radius: 20px;
    margin-bottom: 0px;
  }
  .info-cards-container-mb.hov:hover {
    background: #fafafa;
    transform: scale(1);
  }
  .info-cards-container-mb.hov:hover h4 {
    color: #121212;
  }
}
.info-cards-container-mb .collapse-head button {
  border: none;
  background: transparent;
  width: 100%;
}
@media only screen and (max-width: 576px) {
  .info-cards-container-mb .collapse-head {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: baseline;
    flex: 0;
    text-align: left;
  }
  .info-cards-container-mb .collapse-head[aria-expanded=true] {
    align-items: baseline;
  }
  .info-cards-container-mb .collapse-head .img-container.contain-2 {
    max-width: 60px;
    margin: 0;
    /* margin-right: auto; */
    display: inline-block;
    min-width: 60px;
    width: 60px;
    margin-right: 10px;
  }
  .info-cards-container-mb .collapse-head .collapse-body {
    width: 100%;
  }
  .info-cards-container-mb .collapse-body-open .collapse-body {
    opacity: 1;
    display: block;
  }
}
.custom-content-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin: auto;
  text-align: center;
  margin-bottom: 76px;
}
@media only screen and (max-width: 768px) {
  .custom-content-heading {
    margin-bottom: 0px;
  }
}
.custom-content-heading.custom-wide {
  max-width: 900px;
}
.custom-content-heading.custom-wider {
  max-width: 1000px;
}
.custom-content-heading .highlight-text {
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF5634;
  margin-bottom: 16px;
}
.custom-content-heading h1 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 400px) {
  .custom-content-heading h1 {
    font-size: 26px;
  }
}
.custom-content-heading h1 span {
  color: #FF5634;
}
.custom-content-heading h2 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .custom-content-heading h2 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .custom-content-heading h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .custom-content-heading h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .custom-content-heading h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .custom-content-heading h2 {
    font-size: 20px;
  }
}
.custom-content-heading h2 span {
  color: #FF5634;
}
.custom-content-heading h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .custom-content-heading h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .custom-content-heading h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .custom-content-heading h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .custom-content-heading h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .custom-content-heading h3 {
    font-size: 20px;
  }
}
.custom-content-heading h3 span {
  color: #FF5634;
}
.custom-content-heading p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
}
@media only screen and (max-width: 768px) {
  .custom-content-heading p {
    margin-bottom: 0px;
  }
}
.custom-content-heading p.para {
  padding: 0 20px;
}

.btn-group {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .btn-group {
    flex-direction: column;
  }
  .btn-group .btn-row-left {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .btn-group .btn-row-left .btn-content {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .btn-group .btn-row-left .btn-content {
    width: auto;
  }
}
.btn-group .btn-content {
  font-family: "Metropolis";
  display: inline-flex;
  justify-content: center;
  padding: 26px 38px;
  border-radius: 12px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 18px; /* 112.5% */
}
.btn-group .btn-content.btn-color {
  background-color: #FF5634;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  text-transform: capitalize;
}
.btn-group .btn-content.btn-color:hover {
  background-color: #e13f1f;
}
.btn-group .btn-content.btn-white {
  background-color: transparent;
  color: #000000;
  font-weight: 500;
  border: 1px solid #EDEDED;
  transition: all 0.2s ease-in-out;
}
.btn-group .btn-content.btn-white:hover {
  color: #ffffff;
  background-color: #FF5634;
}
.btn-group .btn-content.hyperlink {
  font-weight: 400;
  line-height: 1.65em;
  color: #FF5634;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0;
}
.btn-group .btn-content.hyperlink img {
  width: 12px;
}
@media only screen and (max-width: 576px) {
  .btn-group .btn-content {
    padding: 22px 38px;
  }
}

.logos-section h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .logos-section h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .logos-section h4 {
    font-size: 20px;
  }
}
.logos-section .logos-container {
  width: 167px;
  margin: auto;
}
.logos-section .logos-container img {
  width: 100%;
}

.about-page {
  padding: 135px 0;
  position: relative;
  overflow: hidden;
  background-color: #FAFAFA;
}
@media only screen and (max-width: 992px) {
  .about-page {
    padding: 43px 0;
  }
}
@media only screen and (max-width: 576px) {
  .about-page {
    padding: 60px 0 70px;
  }
}
.about-page .container {
  padding: 2.5% 0;
}
.about-page .row {
  align-items: center;
}
.about-page .left-container {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
}
.about-page .left-container .highlight-text {
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF5634;
  margin-bottom: 16px;
}
.about-page .left-container h1 {
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
.about-page .left-container h1 span {
  color: #FF5634;
}
.about-page .left-container p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
}
.about-page .left-container .left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  .about-page .left-container .left-content {
    height: auto;
    align-items: center;
    text-align: center;
  }
}
.about-page .left-container .left-content span.heading {
  margin-bottom: 12px;
}
@media only screen and (max-width: 992px) {
  .about-page .left-container .left-content span.heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }
}
.about-page .left-container .left-content .img-container {
  width: 30px;
  margin: 20px 0;
}
.about-page .left-container .left-content .img-container img {
  width: 100%;
  object-fit: cover;
}
.about-page .left-container .left-content .highlight-text {
  letter-spacing: 1.2px;
}
.about-page .left-container .left-content h1 {
  margin-bottom: 10px;
}
.about-page .left-container .left-content p {
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .about-page .left-container .left-content p {
    margin-bottom: 30px;
  }
}
.about-page .left-container .left-content .btn-group {
  align-items: center;
  justify-content: start;
  width: auto;
}
@media only screen and (max-width: 768px) {
  .about-page .left-container .left-content .btn-group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: 100%;
  }
}
.about-page .left-container .left-content .btn-group .btn-row-left .btn-content {
  font-family: "Metropolis";
  display: inline-flex;
  justify-content: center;
  padding: 26px 38px;
  border-radius: 12px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 18px; /* 112.5% */
}
.about-page .left-container .left-content .btn-group .btn-row-left .btn-content.btn-color {
  background-color: #FF5634;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  text-transform: capitalize;
}
.about-page .left-container .left-content .btn-group .btn-row-left .btn-content.btn-color:hover {
  background-color: #e13f1f;
}
.about-page .left-container .left-content .btn-group .btn-row-left .btn-content.btn-white {
  background-color: transparent;
  color: #000000;
  font-weight: 500;
  border: 1px solid #EDEDED;
  transition: all 0.2s ease-in-out;
}
.about-page .left-container .left-content .btn-group .btn-row-left .btn-content.btn-white:hover {
  color: #ffffff;
  background-color: #FF5634;
}
.about-page .left-container .left-content .btn-group .btn-row-left .btn-content.hyperlink {
  font-weight: 400;
  line-height: 1.65em;
  color: #FF5634;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0;
}
.about-page .left-container .left-content .btn-group .btn-row-left .btn-content.hyperlink img {
  width: 12px;
}
.about-page .right-container .img-container {
  width: 80%;
  margin-left: auto;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .about-page .right-container .img-container {
    width: 90%;
  }
}
.about-page .right-container .img-container img {
  width: 100%;
}
.about-page .right-container .img-container .position-absolute {
  left: 0;
  top: 50%;
  max-width: 66%;
  transform: translate3d(-30%, -30%, 0);
}
.about-page .right-container .img-container .position-absolute img {
  width: 100%;
}
.about-page .info-container {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0 0;
}
@media only screen and (max-width: 992px) {
  .about-page .info-container {
    padding: 40px 0;
    justify-content: center;
    gap: 0 30px;
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .about-page .info-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px 0;
  }
}
.about-page .info-container .sep {
  width: 1px;
  background: #E1E1E1;
  height: 100px;
}
@media only screen and (max-width: 768px) {
  .about-page .info-container .sep {
    display: none;
  }
}
.about-page .info-container .info-numbers {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .about-page .info-container .info-numbers {
    text-align: center;
    align-items: center;
  }
}
.about-page .info-container .info-numbers .info {
  color: #121212;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.179em;
  margin-bottom: 6px;
}
.about-page .info-container .info-numbers .info .accent-primary {
  color: #FF5634;
  transform: rotate(0deg);
  position: absolute;
}
.about-page .info-container .info-numbers .info-title {
  font-weight: 500;
  line-height: 1.111em;
  color: #3F3F3F;
  max-width: 190px;
}

.abt-subhead-section {
  padding: 55px 0;
}
.abt-subhead-section .section-cord {
  align-items: center;
  justify-content: center;
  gap: 80px 0;
}
@media only screen and (max-width: 768px) {
  .abt-subhead-section .section-cord {
    gap: 40px 0;
  }
}
.abt-subhead-section .img-container {
  position: relative;
  max-width: 600px;
  margin: auto;
}
.abt-subhead-section .img-container.w-300 {
  max-width: 300px;
  margin: auto;
}
.abt-subhead-section .img-container.w-700 {
  max-width: 700px;
}
@media only screen and (max-width: 1140px) {
  .abt-subhead-section .img-container.double-img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 576px) {
  .abt-subhead-section .img-container.double-img {
    max-width: 180px;
  }
}
.abt-subhead-section .img-container.double-img .flying-img {
  position: absolute;
  max-width: 300px;
  transform: scale(1.075);
  z-index: 1;
}
@media only screen and (max-width: 1140px) {
  .abt-subhead-section .img-container.double-img .flying-img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 576px) {
  .abt-subhead-section .img-container.double-img .flying-img {
    max-width: 180px;
  }
}
.abt-subhead-section .img-container.double-img .rotImg {
  max-width: 290px;
  object-fit: cover;
}
.abt-subhead-section .img-container .inner-right {
  position: absolute;
  top: 1%;
  right: -40%;
  max-width: 300px;
}
@media only screen and (max-width: 576px) {
  .abt-subhead-section .img-container .inner-right {
    right: -10%;
    max-width: 200px;
  }
}
.abt-subhead-section .img-container .inner-middle {
  position: absolute;
  top: -14%;
  right: 0;
  left: 10%;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .abt-subhead-section .img-container .inner-middle {
    top: -7%;
    left: 0;
    width: 300px;
  }
}
.abt-subhead-section .img-container img {
  width: 100%;
  object-fit: cover;
}
.abt-subhead-section .content-container {
  padding: 20px;
}
@media only screen and (max-width: 992px) {
  .abt-subhead-section .content-container {
    padding: 20px 0;
  }
}
.abt-subhead-section .content-container .highlight-text {
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF5634;
  margin-bottom: 16px;
}
.abt-subhead-section .content-container p {
  color: #656565;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}
.abt-subhead-section .content-container p.bigger-para {
  font-size: 25px;
}
@media only screen and (max-width: 992px) {
  .abt-subhead-section .content-container p.bigger-para {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .abt-subhead-section .content-container p.bigger-para {
    font-size: 18px;
  }
}
@media only screen and (max-width: 469px) {
  .abt-subhead-section .content-container p.bigger-para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 469px) {
  .abt-subhead-section .content-container p {
    font-size: 16px;
  }
}
.abt-subhead-section .content-container h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .abt-subhead-section .content-container h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .abt-subhead-section .content-container h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .abt-subhead-section .content-container h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .abt-subhead-section .content-container h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .abt-subhead-section .content-container h3 {
    font-size: 20px;
  }
}
.abt-subhead-section .content-container h3 span {
  color: #FF5634;
}
.abt-subhead-section .content-container h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  font-size: 26px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .abt-subhead-section .content-container h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .abt-subhead-section .content-container h4 {
    font-size: 20px;
  }
}
.abt-subhead-section .content-container .img-containers {
  width: 73px;
}
.abt-subhead-section .content-container .img-containers img {
  width: 100%;
}
.abt-subhead-section .content-container ul li {
  color: #3F3F3F;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 120% */
  margin-bottom: 20px;
}
@media only screen and (max-width: 469px) {
  .abt-subhead-section .content-container ul li {
    font-size: 16px;
  }
}

.about-description {
  position: relative;
  overflow: hidden;
  background-color: #FAFAFA;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-description .content-container {
  padding: 20px;
}
@media only screen and (max-width: 992px) {
  .about-description .content-container {
    padding: 20px 0;
  }
}
.about-description .content-container .highlight-text {
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF5634;
  margin-bottom: 16px;
}
.about-description .content-container p {
  color: #656565;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 469px) {
  .about-description .content-container p {
    font-size: 16px;
  }
}
.about-description .content-container h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .about-description .content-container h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .about-description .content-container h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .about-description .content-container h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .about-description .content-container h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .about-description .content-container h3 {
    font-size: 20px;
  }
}
.about-description .content-container h3 span {
  color: #FF5634;
}
.about-description .content-container h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  font-size: 24px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .about-description .content-container h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .about-description .content-container h4 {
    font-size: 20px;
  }
}
.about-description .content-container .btn-group {
  align-items: center;
  justify-content: start;
  width: auto;
}
@media only screen and (max-width: 768px) {
  .about-description .content-container .btn-group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: 100%;
  }
}
.about-description .content-container .btn-group .btn-row-left .btn-content {
  font-family: "Metropolis";
  display: inline-flex;
  justify-content: center;
  padding: 26px 38px;
  border-radius: 12px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 18px; /* 112.5% */
}
.about-description .content-container .btn-group .btn-row-left .btn-content.btn-color {
  background-color: #FF5634;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  text-transform: capitalize;
}
.about-description .content-container .btn-group .btn-row-left .btn-content.btn-color:hover {
  background-color: #e13f1f;
}
.about-description .content-container .btn-group .btn-row-left .btn-content.btn-white {
  background-color: transparent;
  color: #000000;
  font-weight: 500;
  border: 1px solid #EDEDED;
  transition: all 0.2s ease-in-out;
}
.about-description .content-container .btn-group .btn-row-left .btn-content.btn-white:hover {
  color: #ffffff;
  background-color: #FF5634;
}
.about-description .content-container .btn-group .btn-row-left .btn-content.hyperlink {
  font-weight: 400;
  line-height: 1.65em;
  color: #FF5634;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0;
}
.about-description .content-container .btn-group .btn-row-left .btn-content.hyperlink img {
  width: 12px;
}
.about-description .card-list {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.about-description .card-list .card-wrapper {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-description .card-list .card-wrapper .card-item {
  padding: 40px;
  background-color: #ffffff;
  box-shadow: 0px 2px 12px 0px rgba(16, 16, 16, 0.08);
  border-radius: 24px;
  border: 1px solid #EDEDED;
}

.info-cards-section.abt-sec {
  margin: 120px 0;
}
@media only screen and (max-width: 992px) {
  .info-cards-section.abt-sec {
    margin: 80px 0;
  }
}
@media only screen and (max-width: 992px) {
  .info-cards-section.abt-sec {
    margin: 40px 0;
  }
}
@media only screen and (max-width: 576px) {
  .info-cards-section.abt-sec {
    margin: 0;
  }
}

.about-footer {
  position: relative;
  background-color: #FAFAFA;
  padding: 120px 0;
}
@media only screen and (max-width: 992px) {
  .about-footer {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 992px) {
  .about-footer {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 576px) {
  .about-footer {
    padding: 0;
  }
}
.about-footer .card-list {
  text-decoration: none;
}
.about-footer .card-list .card-item {
  border-radius: 24px;
  border: 1px solid #EDEDED;
  background: #ffffff;
  box-shadow: 0px 2px 12px 0px rgba(16, 16, 16, 0.08);
  padding: 80px 60px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 576px) {
  .about-footer .card-list .card-item {
    padding: 40px 30px;
  }
}
.about-footer .card-list .card-item .icon-container {
  max-width: 150px;
}
.about-footer .card-list .card-item .icon-container img {
  width: 100%;
  object-fit: contain;
}
.about-footer .card-list .card-item h4 {
  margin: 20px 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .about-footer .card-list .card-item h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .about-footer .card-list .card-item h4 {
    font-size: 20px;
  }
}
.about-footer .card-list .card-item h4 span {
  color: #FF5634;
}
.about-footer .card-list .card-item .rm-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 576px) {
  .about-footer .card-list .card-item .rm-container {
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
}
.about-footer .card-list .card-item .rm {
  font-weight: 400;
  line-height: 1.65em;
  color: #FF5634;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
}
.about-footer .card-list .card-item .rm img {
  width: 12px;
}
.about-footer .card-list .card-item .dtm {
  font-weight: 400;
  line-height: 1.65em;
  color: #656565;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
}

.blog-header {
  padding: 135px 0 40px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .blog-header {
    padding: 43px 0;
  }
}
@media only screen and (max-width: 576px) {
  .blog-header {
    padding: 0 0 60px;
  }
}
.blog-header .nav {
  gap: 15px;
  border: none;
  margin-bottom: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.blog-header .nav li .nav-link {
  border: none;
  border-radius: 12px;
  background: #EDEDED;
  padding: 14px 22px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  color: #121212;
}
.blog-header .nav li .nav-link:hover {
  background-color: #FF5634;
  color: #ffffff;
}
.blog-header .nav li .nav-link.active {
  background-color: #FF5634;
  color: #ffffff;
}
.blog-header .img-container {
  width: 65%;
  margin-right: auto;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .blog-header .img-container {
    width: 100%;
  }
}
.blog-header .img-container .hero {
  width: 100%;
  border-radius: 12px;
}
.blog-header .img-container .float-img {
  max-width: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(75%) translateY(-50%);
}
@media only screen and (max-width: 992px) {
  .blog-header .img-container .float-img {
    max-width: 100%;
    position: absolute;
    bottom: 0;
    right: 5%;
    transform: translateY(20%);
    left: 5%;
  }
}
.blog-header .img-container .float-img img {
  width: 100%;
}

.subscribe-newsletter .subscribe-wrapper {
  border-radius: 24px;
  background: #FAFAFA;
  padding: 100px 80px;
}
@media only screen and (max-width: 576px) {
  .subscribe-newsletter .subscribe-wrapper {
    padding: 40px 20px;
  }
}
.subscribe-newsletter .subscribe-wrapper .subscribe-content h2 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 400px) {
  .subscribe-newsletter .subscribe-wrapper .subscribe-content h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 768px) {
  .subscribe-newsletter .subscribe-wrapper .subscribe-content h2 {
    text-align: center;
  }
}
.subscribe-newsletter .subscribe-wrapper .subscribe-content h2 span {
  color: #FF5634;
}
.subscribe-newsletter .subscribe-wrapper .subscribe-content .form-row {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .subscribe-newsletter .subscribe-wrapper .subscribe-content .form-row input {
    box-shadow: 0px 2px 12px 0px rgba(16, 16, 16, 0.08);
  }
}
.subscribe-newsletter .subscribe-wrapper .subscribe-content .form-row .float-btn {
  position: absolute;
  right: 2%;
  width: auto;
}
@media only screen and (max-width: 576px) {
  .subscribe-newsletter .subscribe-wrapper .subscribe-content .form-row .float-btn {
    position: relative;
    right: 0;
    margin: 10px 0;
    text-align: center;
    width: 100%;
  }
}
.subscribe-newsletter .subscribe-wrapper .subscribe-content .form-row .float-btn.btn-group .btn-row-left {
  margin-bottom: 0;
}
.subscribe-newsletter .subscribe-wrapper .subscribe-content .form-row .float-btn.btn-group .btn-content {
  padding: 14px 28px;
}
@media only screen and (max-width: 576px) {
  .subscribe-newsletter .subscribe-wrapper .subscribe-content .form-row .float-btn.btn-group .btn-content {
    padding: 20px 28px;
  }
}
.subscribe-newsletter .subscribe-wrapper .rg-img-container {
  width: 80%;
  margin-left: auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .subscribe-newsletter .subscribe-wrapper .rg-img-container {
    width: 60%;
    margin: 0 auto 20px;
  }
}
.subscribe-newsletter .subscribe-wrapper .rg-img-container img {
  width: 100%;
  object-fit: contain;
}

.latest-posts h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .latest-posts h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .latest-posts h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .latest-posts h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .latest-posts h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .latest-posts h3 {
    font-size: 20px;
  }
}
.latest-posts h3 span {
  color: #FF5634;
}
.latest-posts .posts-list {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
  align-items: end;
  justify-content: center;
}
.latest-posts .posts-list .btn-group {
  width: auto;
  justify-content: end;
  padding: 15px 0;
}
@media only screen and (max-width: 768px) {
  .latest-posts .posts-list .btn-group {
    width: 100%;
  }
}
.latest-posts .posts {
  border-radius: 24px;
  border: 1px solid #EDEDED;
  background: #ffffff;
  box-shadow: 0px 2px 12px 0px rgba(16, 16, 16, 0.08);
}
.latest-posts .posts.post-sidebar {
  position: sticky;
  top: 90px;
}
.latest-posts .posts .img-container {
  width: 100%;
}
.latest-posts .posts .img-container img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
}
@media only screen and (max-width: 576px) {
  .latest-posts .posts .img-container img {
    border-radius: 12px 12px 0 0;
  }
}
.latest-posts .posts .content {
  padding: 30px 20px;
}
.latest-posts .posts .content.content-sidebar {
  padding: 30px;
}
.latest-posts .posts .content.content-sidebar .popular-list .list-item {
  padding: 30px 0;
  border-bottom: 1px solid #CACACA;
}
.latest-posts .posts .content.content-sidebar .popular-list .list-item:first-child {
  border-top: 1px solid #CACACA;
}
.latest-posts .posts .content.content-sidebar .popular-list .list-item:last-child {
  border-bottom: none;
}
.latest-posts .posts .content.content-sidebar .rm {
  font-weight: 400;
  line-height: 1.65em;
  color: #FF5634;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
}
.latest-posts .posts .content.content-sidebar .rm img {
  width: 12px;
}
.latest-posts .posts .content h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .latest-posts .posts .content h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .latest-posts .posts .content h4 {
    font-size: 20px;
  }
}
.latest-posts .posts .content h4 span {
  color: #FF5634;
}
.latest-posts .posts .content h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .latest-posts .posts .content h5 {
    font-size: 20px;
  }
}
.latest-posts .posts .content h5 span {
  color: #FF5634;
}
.latest-posts .posts .content p {
  font-weight: 400;
  line-height: 1.65em;
  color: #656565;
  margin-bottom: 34px;
}

.blog-post {
  padding: 135px 0 40px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .blog-post {
    padding: 23px 0;
  }
}
@media only screen and (max-width: 576px) {
  .blog-post {
    padding: 0px 0 20px;
  }
}
.blog-post .content-wrapper h1 {
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
.blog-post .content-wrapper h1 span {
  color: #FF5634;
}
.blog-post .content-wrapper h2 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 400px) {
  .blog-post .content-wrapper h2 {
    font-size: 26px;
  }
}
.blog-post .content-wrapper h2 span {
  color: #FF5634;
}
.blog-post .content-wrapper h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .blog-post .content-wrapper h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .blog-post .content-wrapper h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .blog-post .content-wrapper h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .blog-post .content-wrapper h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .blog-post .content-wrapper h3 {
    font-size: 20px;
  }
}
.blog-post .content-wrapper h3 span {
  color: #FF5634;
}
.blog-post .content-wrapper h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .blog-post .content-wrapper h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .blog-post .content-wrapper h4 {
    font-size: 20px;
  }
}
.blog-post .content-wrapper h4 span {
  color: #FF5634;
}
.blog-post .content-wrapper h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .blog-post .content-wrapper h5 {
    font-size: 20px;
  }
}
.blog-post .content-wrapper h5 span {
  color: #FF5634;
}
.blog-post .content-wrapper p {
  font-weight: 400;
  line-height: 1.65em;
  color: #656565;
  margin-bottom: 34px;
  margin-bottom: 80px;
}
.blog-post .content-wrapper p span {
  color: #FF5634;
}
.blog-post .content-wrapper p.light {
  color: #CACACA;
}
.blog-post .content-wrapper .numbered-list {
  list-style-type: decimal;
  padding-left: 5%;
  color: #656565;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
}
.blog-post .content-wrapper .numbered-list li {
  margin-bottom: 8px;
}
.blog-post .content-wrapper .dot-list {
  list-style-type: circle;
  padding-left: 5%;
  color: #656565;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
}
.blog-post .content-wrapper .dot-list li {
  margin-bottom: 8px;
}
.blog-post .content-wrapper .img-container {
  width: 100%;
  margin-bottom: 40px;
}
.blog-post .content-wrapper .img-container img {
  width: 100%;
  border-radius: 12px;
}
.blog-post .content-wrapper .quote {
  background-color: #FFF5F1;
  border-radius: 20px;
  color: #FF5634;
  text-align: center;
  padding: 100px;
  margin: 60px 0 90px;
}
@media only screen and (max-width: 768px) {
  .blog-post .content-wrapper .quote {
    margin: 50px 0;
    padding: 60px;
  }
}
.blog-post .right-container {
  height: 100%;
  position: sticky;
  top: 100px;
}
.blog-post .right-container .right-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FF5634;
  box-shadow: -5px 5px 15px 4px #f6f6f6;
  margin-left: auto;
  padding: 30px 20px;
  gap: 5px 0;
  color: #ffffff;
}
@media only screen and (max-width: 992px) {
  .blog-post .right-container .right-content {
    margin-left: 0px;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    gap: 20px 0;
  }
}
.blog-post .right-container .right-content .form-row label {
  color: #ffffff;
}
.blog-post .right-container .right-content .form-row input[type=submit] {
  border-color: #1D88FE;
  text-transform: uppercase;
  white-space: normal;
}
.blog-post .right-container .right-content .form-row .custom-contain {
  height: 60px;
}
.blog-post .right-container .right-content h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #ffffff;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .blog-post .right-container .right-content h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .blog-post .right-container .right-content h4 {
    font-size: 20px;
  }
}
.blog-post .right-container .right-content p {
  font-weight: 400;
  line-height: 1.65em;
  color: #ffffff;
  margin-bottom: 34px;
  width: 100%;
}
.blog-post .right-container .right-content p a {
  text-decoration: none;
  color: #FF5634;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.blog-post .right-container .right-content .form-container {
  height: 70%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-around;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .blog-post .right-container .right-content .form-container {
    height: 100%;
    gap: 10px 0;
  }
}
.blog-post .content-features {
  padding: 10px 0 0;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .blog-post .content-features {
    padding: 10px 0;
  }
}
.blog-post .content-features ul {
  list-style-type: none;
  padding: 0;
}
.blog-post .content-features ul li {
  display: flex;
  align-items: start;
  gap: 0 10px;
}
.blog-post .content-features ul li p {
  margin-bottom: 10px !important;
  text-align: left;
}
@media only screen and (max-width: 576px) {
  .blog-post .content-features ul li p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 400px) {
  .blog-post .content-features ul li p {
    font-size: 14px;
  }
}
.blog-post .content-features ul li img {
  margin-top: 2.5px;
}
.blog-post .modal {
  background-color: transparent;
}
.blog-post .modal .modal-content {
  background-color: transparent;
  border: none;
}
.blog-post .modal .modal-body {
  padding: 20px;
  background-color: transparent;
}
.blog-post .modal .modal-body .right-container {
  position: relative;
  top: 0;
}
.blog-post .modal .modal-body .right-container .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  border-color: #ffffff;
  background-color: #ffffff;
  padding: 5px;
  transform: translate3d(40%, -45%, 0);
  opacity: 1;
}
.blog-post .modal .modal-body .right-container .right-content {
  box-shadow: none;
  gap: 0;
}
@media only screen and (max-width: 576px) {
  .blog-post .modal .modal-body .right-container .right-content .content-features ul li img {
    max-width: 14px;
    margin-top: 5px;
  }
}
@media only screen and (max-width: 576px) {
  .blog-post .modal .modal-body .right-container .right-content input[type=submit] {
    font-size: 15px;
  }
}

.floater-popup {
  z-index: 999;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
}
.floater-popup .arrow-icon {
  max-width: 60px;
  cursor: pointer;
  text-align: center;
  transform: translateX(-5px);
}
.floater-popup .arrow-icon img {
  width: 100%;
}
.floater-popup .right-content {
  box-shadow: none;
  gap: 0;
  padding: 25px 15px;
}
.floater-popup .right-content h4 {
  margin-bottom: 10px;
}
@media only screen and (max-width: 576px) {
  .floater-popup .right-content .content-features ul li img {
    max-width: 14px;
    margin-top: 3px;
  }
}

.vertical-carousel-animation {
  background-color: #FAFAFA;
  z-index: 1;
  position: relative !important;
  margin: 80px 0;
}
@media only screen and (max-width: 768px) {
  .vertical-carousel-animation {
    margin: 40px 0;
  }
}
.vertical-carousel-animation .row {
  min-height: 100vh;
}
@media only screen and (max-width: 576px) {
  .vertical-carousel-animation .row {
    min-height: 80vh;
  }
}
.vertical-carousel-animation .row .left-container {
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .vertical-carousel-animation .row .left-container {
    height: auto;
    margin-top: 55px;
  }
}
.vertical-carousel-animation .row .left-container .left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 100%;
}
@media only screen and (max-width: 1400px) {
  .vertical-carousel-animation .row .left-container .left-content {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .vertical-carousel-animation .row .left-container .left-content {
    height: auto;
  }
}
.vertical-carousel-animation .row .left-container .left-content .content-features {
  padding: 30px 0;
  align-items: center;
  gap: 0 24px;
}
@media only screen and (max-width: 768px) {
  .vertical-carousel-animation .row .left-container .left-content .content-features {
    padding: 10px 0;
  }
}
@media only screen and (max-width: 576px) {
  .vertical-carousel-animation .row .left-container .left-content .content-features {
    flex-direction: column;
    align-items: start;
  }
}
.vertical-carousel-animation .row .left-container .left-content .content-features ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
.vertical-carousel-animation .row .left-container .left-content .content-features ul li {
  display: flex;
  align-items: start;
  gap: 0 10px;
}
.vertical-carousel-animation .row .left-container .left-content .content-features ul li img {
  margin-top: 2.5px;
}
.vertical-carousel-animation .row .left-container .left-content h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .vertical-carousel-animation .row .left-container .left-content h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .vertical-carousel-animation .row .left-container .left-content h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .vertical-carousel-animation .row .left-container .left-content h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .vertical-carousel-animation .row .left-container .left-content h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .vertical-carousel-animation .row .left-container .left-content h3 {
    font-size: 20px;
  }
}
.vertical-carousel-animation .row .left-container .left-content h3 span {
  color: #FF5634;
}
.vertical-carousel-animation .row .left-container .left-content p {
  font-weight: 400;
  line-height: 1.65em;
  color: #121212;
  margin-bottom: 34px;
  text-transform: capitalize;
}
@media only screen and (max-width: 576px) {
  .vertical-carousel-animation .row .left-container .left-content p {
    margin-bottom: 15px;
  }
}
.vertical-carousel-animation .row .left-container .left-content .btn-row-left .btn-fill {
  font-family: "Metropolis";
  display: flex;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 18px; /* 112.5% */
}
.vertical-carousel-animation .row .left-container .left-content .btn-row-left .btn-fill.btn-color {
  background-color: #FF5634;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}
.vertical-carousel-animation .row .left-container .left-content .btn-row-left .btn-fill.btn-color:hover {
  background-color: #e13f1f;
}
.vertical-carousel-animation .row .left-container .left-content .btn-row-left .btn-fill.btn-white {
  background-color: transparent;
  color: #000000;
  text-transform: capitalize;
  font-weight: 500;
  border: 1px solid #EDEDED;
  transition: all 0.2s ease-in-out;
}
.vertical-carousel-animation .row .left-container .left-content .btn-row-left .btn-fill.btn-white:hover {
  color: #ffffff;
  background-color: #FF5634;
}
.vertical-carousel-animation .row .right-container {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 45%;
  background-color: #121212;
}
.vertical-carousel-animation .row .right-container .right-content {
  height: 100%;
  display: grid;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  grid-column-gap: 10px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.vertical-carousel-animation .row .right-container .right-content .right-col {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-row-gap: 30px;
  grid-column-gap: 16px;
  overflow: hidden;
}
.vertical-carousel-animation .row .right-container .right-content .right-col .img-container {
  box-shadow: 0 14px 42px 0 rgba(16, 16, 16, 0.14);
  flex-direction: column;
  justify-content: center;
  display: flex;
  overflow: hidden;
  transform: translate(0);
  border-radius: 24px;
}
.vertical-carousel-animation .row .right-container .right-content .right-col .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
  max-width: 100%;
  display: inline-block;
}
.vertical-carousel-animation .row .right-container .right-content .right-col.right-col-1 {
  margin-top: -100px;
}
.vertical-carousel-animation .row .right-container .right-content .right-col.right-col-2 {
  margin-top: 0px;
}
.vertical-carousel-animation .row .right-container-mobile {
  position: relative;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
@media only screen and (max-width: 576px) {
  .vertical-carousel-animation .row .right-container-mobile {
    height: 100%;
    margin-bottom: -5%;
  }
}
.vertical-carousel-animation .row .right-container-mobile .right-content {
  display: grid;
  grid-row-gap: 30px;
  grid-column-gap: 30px;
  justify-content: center;
  align-content: center;
  height: 100%;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  overflow: hidden;
}
@media only screen and (max-width: 576px) {
  .vertical-carousel-animation .row .right-container-mobile .right-content {
    grid-row-gap: 20px;
    grid-column-gap: 20px;
  }
}
.vertical-carousel-animation .row .right-container-mobile .right-content .right-col {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-row-gap: 20px;
  grid-column-gap: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 576px) {
  .vertical-carousel-animation .row .right-container-mobile .right-content .right-col {
    width: 550px;
  }
}
.vertical-carousel-animation .row .right-container-mobile .right-content .right-col .img-container {
  box-shadow: 0 14px 42px 0 rgba(16, 16, 16, 0.14);
  flex-direction: column;
  justify-content: center;
  display: flex;
  overflow: hidden;
  transform: translate(0);
  border-radius: 24px;
}
.vertical-carousel-animation .row .right-container-mobile .right-content .right-col .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
  max-width: 100%;
  display: inline-block;
}
.vertical-carousel-animation .row .right-container-mobile .right-content .right-col.right-col-1 {
  margin-left: -30px;
}
.vertical-carousel-animation .row .right-container-mobile .right-content .right-col.right-col-2 {
  margin-left: -60px;
}
@media only screen and (max-width: 768px) {
  .vertical-carousel-animation .row .left-col {
    height: 50%;
  }
}

.top-section {
  margin: 80px 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.03);
}
@media only screen and (max-width: 992px) {
  .top-section {
    margin: 23px 0;
    box-shadow: none;
  }
}
@media only screen and (max-width: 576px) {
  .top-section {
    margin: 0px 0 20px;
    box-shadow: none;
  }
}
.top-section .content-padding {
  padding-bottom: 40px;
}
.top-section .content-padding.bs {
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.03);
}
.top-section .lefty-side {
  width: 55%;
}
.top-section .righty-side {
  width: 45%;
  padding-right: 0;
}
@media only screen and (max-width: 992px) {
  .top-section .lefty-side {
    width: 100%;
  }
  .top-section .righty-side {
    width: 100%;
    padding-right: 0;
  }
}
.top-section .left-container {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
}
.top-section .left-container .highlight-text {
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF5634;
  margin-bottom: 16px;
}
.top-section .left-container h2 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 400px) {
  .top-section .left-container h2 {
    font-size: 26px;
  }
}
.top-section .left-container h2 span {
  color: #FF5634;
}
.top-section .left-container h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .top-section .left-container h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .top-section .left-container h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .top-section .left-container h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .top-section .left-container h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .top-section .left-container h3 {
    font-size: 20px;
  }
}
.top-section .left-container h3 span {
  color: #FF5634;
}
.top-section .left-container h3 span.underline {
  color: #121212;
  position: relative;
}
.top-section .left-container h3 span.underline .underlinesvg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(70%);
}
.top-section .left-container h3 span.underline .underlinesvg img {
  width: 100%;
  object-fit: contain;
}
.top-section .left-container p {
  font-weight: 400;
  line-height: 1.65em;
  color: #656565;
  margin-bottom: 34px;
}
.top-section .left-container .left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  .top-section .left-container .left-content {
    height: auto;
    align-items: center;
    text-align: center;
    width: 100%;
  }
}
.top-section .left-container .left-content .img-container {
  width: 55px;
  margin: 20px 0;
}
.top-section .left-container .left-content .img-container img {
  width: 100%;
  object-fit: cover;
}
.top-section .left-container .left-content .highlight-text {
  letter-spacing: 1.2px;
}
.top-section .left-container .left-content h1 {
  margin-bottom: 10px;
}
.top-section .left-container .left-content p {
  margin-bottom: 38px;
}
@media only screen and (max-width: 992px) {
  .top-section .left-container .left-content p {
    margin-bottom: 18px;
  }
}
.top-section .left-container .left-content span.highlight-content {
  margin-bottom: 30px;
  color: #121212;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 130.435% */
}
@media only screen and (max-width: 992px) {
  .top-section .left-container .left-content span.highlight-content {
    padding-bottom: 18px;
  }
}
@media only screen and (max-width: 576px) {
  .top-section .left-container .left-content span.highlight-content {
    font-size: 18px;
  }
}
.top-section .left-container .left-content .mobile-image {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 30px 20px;
  background: #FF5634;
  border-radius: 12px;
}
@media only screen and (max-width: 992px) {
  .top-section .left-container .left-content .mobile-image {
    width: 80%;
  }
}
@media only screen and (max-width: 576px) {
  .top-section .left-container .left-content .mobile-image {
    width: 100%;
    padding: 20px 20px;
  }
}
.top-section .left-container .left-content .mobile-image video {
  width: 100%;
  border-radius: 14px;
  cursor: pointer;
  outline: none;
}
.top-section .left-container .left-content .mobile-image img {
  width: 100%;
  object-fit: cover;
}
.top-section .left-container .left-content .btn-group {
  align-items: center;
  justify-content: start;
  width: auto;
}
@media only screen and (max-width: 768px) {
  .top-section .left-container .left-content .btn-group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: 100%;
  }
}
.top-section .left-container .left-content .btn-group .btn-row-left .btn-content {
  font-family: "Metropolis";
  display: inline-flex;
  justify-content: center;
  padding: 26px 38px;
  border-radius: 12px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 18px; /* 112.5% */
}
.top-section .left-container .left-content .btn-group .btn-row-left .btn-content.btn-color {
  background-color: #FF5634;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  text-transform: capitalize;
}
.top-section .left-container .left-content .btn-group .btn-row-left .btn-content.btn-color:hover {
  background-color: #e13f1f;
}
.top-section .left-container .left-content .btn-group .btn-row-left .btn-content.btn-white {
  background-color: transparent;
  color: #000000;
  font-weight: 500;
  border: 1px solid #EDEDED;
  transition: all 0.2s ease-in-out;
}
.top-section .left-container .left-content .btn-group .btn-row-left .btn-content.btn-white:hover {
  color: #ffffff;
  background-color: #FF5634;
}
.top-section .left-container .left-content .btn-group .btn-row-left .btn-content.hyperlink {
  font-weight: 400;
  line-height: 1.65em;
  color: #FF5634;
  margin-bottom: 34px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0;
}
.top-section .left-container .left-content .btn-group .btn-row-left .btn-content.hyperlink img {
  width: 12px;
}
.top-section .left-container .left-content .info-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0 0;
  gap: 0 20px;
}
@media only screen and (max-width: 992px) {
  .top-section .left-container .left-content .info-container {
    padding: 40px 0 0;
    justify-content: center;
    gap: 0 30px;
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .top-section .left-container .left-content .info-container {
    gap: 40px 15px;
    padding: 20px 0 0;
  }
}
.top-section .left-container .left-content .info-container .sep {
  width: 1px;
  background: #E1E1E1;
  height: 100px;
}
@media only screen and (max-width: 768px) {
  .top-section .left-container .left-content .info-container .sep {
    height: 80px;
  }
}
.top-section .left-container .left-content .info-container .info-numbers {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .top-section .left-container .left-content .info-container .info-numbers {
    text-align: left;
    align-items: start;
    min-width: 100px;
  }
}
@media only screen and (max-width: 576px) {
  .top-section .left-container .left-content .info-container .info-numbers {
    min-width: 70px;
  }
}
.top-section .left-container .left-content .info-container .info-numbers .info {
  color: #121212;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.179em;
  margin-bottom: 6px;
}
@media only screen and (max-width: 576px) {
  .top-section .left-container .left-content .info-container .info-numbers .info {
    font-size: 32px;
  }
}
.top-section .left-container .left-content .info-container .info-numbers .info .accent-primary {
  color: #FF5634;
  transform: rotate(0deg);
  position: absolute;
}
.top-section .left-container .left-content .info-container .info-numbers .info-title {
  font-weight: 500;
  line-height: 1.111em;
  color: #3F3F3F;
  max-width: 190px;
  text-align: left;
}
@media only screen and (max-width: 576px) {
  .top-section .left-container .left-content .info-container .info-numbers .info-title {
    font-size: 12px;
    font-weight: 400;
  }
}
.top-section .right-container {
  height: 100%;
}
.top-section .right-container .right-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #fff5f1;
  box-shadow: -5px 5px 15px 4px #f6f6f6;
  margin-left: auto;
  padding: 50px 30px 30px;
  gap: 5px 0;
}
@media only screen and (max-width: 992px) {
  .top-section .right-container .right-content {
    margin-left: 0px;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    gap: 20px 0;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.0196078431);
  }
}
.top-section .right-container .right-content h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .top-section .right-container .right-content h4 {
    font-size: 5.2rem;
  }
}
.top-section .right-container .right-content h4 span {
  color: #1D88FE;
}
.top-section .right-container .right-content p {
  font-weight: 400;
  line-height: 1.65em;
  color: #656565;
  margin-bottom: 34px;
  width: 100%;
}
.top-section .right-container .right-content p.small {
  font-size: 16px;
  color: #121212;
  text-align: center;
}
.top-section .right-container .right-content p .highlight-blue {
  color: #1D88FE;
  font-weight: 600;
}
.top-section .right-container .right-content p a {
  text-decoration: none;
  color: #FF5634;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.top-section .right-container .right-content .form-container {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-around;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .top-section .right-container .right-content .form-container {
    height: 100%;
    gap: 10px 0;
  }
}

@media only screen and (max-width: 992px) {
  .top-section-mb {
    margin: 0;
  }
}
.top-section-mb .content-padding.bs {
  box-shadow: none;
}
@media only screen and (max-width: 992px) {
  .top-section-mb .container-mb {
    max-width: 100%;
    padding: 0;
  }
  .top-section-mb .container-mb .lefty-side {
    width: 100%;
    background: #FF5634;
    padding: 20px 0px 75px;
    border-radius: 0;
  }
  .top-section-mb .container-mb .lefty-side .content-padding {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 16px;
    max-width: 90%;
    margin: auto;
  }
}
@media only screen and (max-width: 992px) and (max-width: 576px) {
  .top-section-mb .container-mb .lefty-side .content-padding h3 {
    margin-bottom: 16px;
    font-size: 23.5px;
  }
}
@media only screen and (max-width: 992px) and (max-width: 576px) {
  .top-section-mb .container-mb .lefty-side .content-padding p {
    font-size: 15px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 992px) {
  .top-section-mb .container-mb .lefty-side .left-content .mobile-image {
    width: 100%;
    padding: 0;
    background: none;
  }
}
@media only screen and (max-width: 992px) and (max-width: 992px) {
  .top-section-mb .container-mb .righty-side {
    margin-top: -50px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .top-section-mb .container-mb .right-container .right-content {
    max-width: 90%;
    margin: 0 auto;
    border-radius: 16px;
    position: relative;
    background: #ffffff;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.0196078431), -4px 4px 8px 0px rgba(0, 0, 0, 0.0196078431);
  }
}
@media only screen and (max-width: 992px) and (max-width: 576px) {
  .top-section-mb .container-mb .right-container .right-content {
    gap: 10px 0;
    padding: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .top-section-mb .container-mb .right-container .right-content .form-row label {
    display: none;
  }
  .top-section-mb .container-mb .right-container .right-content .form-row input[type=checkbox] {
    width: auto;
    height: 25px;
  }
}
@media only screen and (max-width: 992px) and (max-width: 576px) {
  .top-section-mb .container-mb .right-container .right-content .form-row input {
    font-size: 16px;
    padding: 12px 24px;
    border: 0;
  }
  .top-section-mb .container-mb .right-container .right-content .form-row input::placeholder {
    font-weight: 400;
  }
}
@media only screen and (max-width: 992px) and (max-width: 576px) {
  .top-section-mb .container-mb .right-container .right-content .form-row .iti--allow-dropdown input {
    padding-left: 52px;
    padding-right: 6px;
  }
}
@media only screen and (max-width: 992px) and (max-width: 576px) {
  .top-section-mb .container-mb .right-container .right-content .heading-content h4 {
    font-size: 22px;
    line-height: 54px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 992px) and (max-width: 576px) {
  .top-section-mb .container-mb .right-container .right-content .heading-content p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .top-section-mb .container-mb .lefty-side .content-padding {
    padding: 16px 12px;
  }
}

.subhead-section .custom-content-heading {
  max-width: 900px;
}
.subhead-section .custom-content-heading.custom-wide {
  max-width: 1000px;
}
.subhead-section .custom-content-heading h1 {
  color: #121212;
  text-align: center;
  font-size: 6.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 72px; /* 116.129% */
}
@media only screen and (max-width: 992px) {
  .subhead-section .custom-content-heading h1 {
    line-height: 56px;
  }
}
@media only screen and (max-width: 768px) {
  .subhead-section .custom-content-heading h1 {
    font-size: 24px;
    line-height: 30px;
  }
}
.subhead-section .custom-content-heading h2 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .subhead-section .custom-content-heading h2 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .subhead-section .custom-content-heading h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .subhead-section .custom-content-heading h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .subhead-section .custom-content-heading h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .subhead-section .custom-content-heading h2 {
    font-size: 20px;
  }
}
.subhead-section .custom-content-heading h2 span {
  color: #FF5634;
}
.subhead-section .custom-content-heading h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .subhead-section .custom-content-heading h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .subhead-section .custom-content-heading h4 {
    font-size: 20px;
  }
}
.subhead-section .custom-content-heading h4 span {
  color: #FF5634;
}
.subhead-section .custom-content-heading p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
}
.subhead-section .custom-content-heading p.italics {
  font-style: italic;
}
@media only screen and (max-width: 768px) {
  .subhead-section .custom-content-heading p.italics {
    margin-bottom: 0;
  }
}
.subhead-section .custom-content-heading p.para {
  margin-bottom: 0;
  padding: 0 20px;
}
.subhead-section .animation-col {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .subhead-section .animation-col {
    margin: 20px 0;
  }
}
.subhead-section .animation-col .img-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
}
@media only screen and (max-width: 992px) {
  .subhead-section .animation-col .img-wrapper {
    max-width: 500px;
    margin: auto;
  }
}
@media only screen and (max-width: 768px) {
  .subhead-section .animation-col .img-wrapper {
    max-width: 500px;
    margin: auto;
  }
}
.subhead-section .animation-col .img-wrapper .img-container {
  max-width: 100%;
}
.subhead-section .animation-col .img-wrapper .img-container img {
  width: 100%;
}
.subhead-section .animation-col .inner-container {
  max-width: 350px;
  z-index: 2;
}
@media only screen and (max-width: 992px) {
  .subhead-section .animation-col .inner-container {
    max-width: 58%;
  }
}
@media only screen and (max-width: 479px) {
  .subhead-section .animation-col .inner-container {
    max-width: 150px;
  }
}
.subhead-section .animation-col .inner-container.contain-left {
  margin-right: auto;
}
@media only screen and (max-width: 479px) {
  .subhead-section .animation-col .inner-container.contain-left {
    max-width: 240px;
  }
}
.subhead-section .animation-col .inner-container.contain-right {
  margin-left: auto;
}
@media only screen and (max-width: 479px) {
  .subhead-section .animation-col .inner-container.contain-right {
    max-width: 200px;
  }
}
.subhead-section .animation-col .inner-container.contain-right.small {
  max-width: 250px;
}
.subhead-section .animation-col .inner-container.contain-right.md {
  max-width: 280px;
}
@media only screen and (max-width: 479px) {
  .subhead-section .animation-col .inner-container.contain-right.md {
    max-width: 150px;
  }
}
.subhead-section .animation-col .inner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: inline-block;
}
.subhead-section .animation-col .inner-image {
  max-width: 54%;
  position: absolute;
  border-radius: 32px;
  z-index: 0;
}
.subhead-section .animation-col .inner-image.l-inner-img {
  top: 30%;
  right: auto;
  left: 60px;
  box-shadow: none;
  max-width: 285px;
}
.subhead-section .animation-col .inner-image.l-inner-img.up {
  left: 30px;
  z-index: 2;
  max-width: 340px;
}
@media only screen and (max-width: 479px) {
  .subhead-section .animation-col .inner-image.l-inner-img.up {
    top: 12%;
    max-width: 250px;
    left: -12%;
  }
}
@media only screen and (max-width: 992px) {
  .subhead-section .animation-col .inner-image.l-inner-img {
    left: 0;
  }
}
@media only screen and (max-width: 479px) {
  .subhead-section .animation-col .inner-image.l-inner-img {
    max-width: 200px;
  }
}
.subhead-section .animation-col .inner-image.r-inner-mid-img {
  top: 15%;
  right: 80px;
  left: auto;
  box-shadow: none;
}
@media only screen and (max-width: 992px) {
  .subhead-section .animation-col .inner-image.r-inner-mid-img {
    right: 0;
  }
}
@media only screen and (max-width: 479px) {
  .subhead-section .animation-col .inner-image.r-inner-mid-img {
    top: 12%;
    max-width: 180px;
  }
}
.subhead-section .animation-col .inner-image.r-inner-img {
  top: 30%;
  right: 20px;
  left: auto;
  box-shadow: none;
}
.subhead-section .animation-col .inner-image.r-inner-img.up {
  top: 15%;
  right: 80px;
}
@media only screen and (max-width: 479px) {
  .subhead-section .animation-col .inner-image.r-inner-img.up {
    right: 0;
  }
}
@media only screen and (max-width: 992px) {
  .subhead-section .animation-col .inner-image.r-inner-img {
    right: 0;
  }
}
.subhead-section .animation-col .inner-image.l-max-img {
  max-width: 100%;
  top: 15%;
  right: auto;
  left: 30px;
}
@media only screen and (max-width: 992px) {
  .subhead-section .animation-col .inner-image.l-max-img {
    top: 35%;
    left: 0;
  }
}
@media only screen and (max-width: 479px) {
  .subhead-section .animation-col .inner-image.l-max-img {
    top: 10%;
    left: 5%;
  }
}
.subhead-section .animation-col .inner-image.l-inner-max-img {
  top: 16%;
  right: auto;
  left: -10%;
  box-shadow: none;
}
@media only screen and (max-width: 992px) {
  .subhead-section .animation-col .inner-image.l-inner-max-img {
    left: 0;
  }
}
@media only screen and (max-width: 479px) {
  .subhead-section .animation-col .inner-image.l-inner-max-img {
    top: 12%;
    left: -5%;
  }
}
.subhead-section .animation-col .inner-image.t-inner-img {
  top: 10%;
  right: auto;
  left: 60px;
  z-index: 9;
  box-shadow: none;
}
@media only screen and (max-width: 479px) {
  .subhead-section .animation-col .inner-image.t-inner-img {
    top: 10%;
    left: 2%;
  }
}
.subhead-section .animation-col .inner-image.t-inner-img.custom {
  top: -50%;
  left: 0;
}
@media only screen and (max-width: 992px) {
  .subhead-section .animation-col .inner-image.t-inner-img.custom {
    top: -32%;
  }
}
@media only screen and (max-width: 768px) {
  .subhead-section .animation-col .inner-image.t-inner-img.custom {
    top: -10%;
  }
}
@media only screen and (max-width: 479px) {
  .subhead-section .animation-col .inner-image.t-inner-img.custom {
    top: -4%;
  }
}
.subhead-section .animation-col .inner-image.tr-inner-img {
  top: 10%;
  right: -5%;
  left: auto;
  z-index: 9;
  box-shadow: none;
}
.subhead-section .animation-col .inner-image.tr-inner-img.custom {
  top: -50%;
  right: 0;
}
@media only screen and (max-width: 992px) {
  .subhead-section .animation-col .inner-image.tr-inner-img.custom {
    top: -32%;
  }
}
@media only screen and (max-width: 768px) {
  .subhead-section .animation-col .inner-image.tr-inner-img.custom {
    top: -10%;
  }
}
@media only screen and (max-width: 479px) {
  .subhead-section .animation-col .inner-image.tr-inner-img.custom {
    right: -40px;
  }
}
.subhead-section .animation-col .inner-image img {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  object-fit: cover;
  display: inline-block;
}
.subhead-section .img-container {
  position: relative;
  max-width: 600px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .subhead-section .img-container {
    margin: 20px auto;
  }
}
@media only screen and (max-width: 576px) {
  .subhead-section .img-container {
    min-height: 230px;
    max-height: 230px;
    text-align: center;
  }
  .subhead-section .img-container img {
    position: absolute;
    object-fit: contain !important;
    object-position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.subhead-section .img-container.w-300 {
  max-width: 300px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .subhead-section .img-container.w-300 {
    max-width: 200px;
    margin: 20px auto;
  }
}
@media only screen and (max-width: 479px) {
  .subhead-section .img-container.w-300 {
    max-width: 150px;
    margin: 20px auto;
  }
}
.subhead-section .img-container.w-700 {
  max-width: 700px;
}
@media only screen and (max-width: 1140px) {
  .subhead-section .img-container.double-img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 576px) {
  .subhead-section .img-container.double-img {
    max-width: 180px;
  }
}
.subhead-section .img-container.double-img .flying-img {
  position: absolute;
  max-width: 300px;
  transform: scale(1.075);
  z-index: 1;
}
@media only screen and (max-width: 1140px) {
  .subhead-section .img-container.double-img .flying-img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 576px) {
  .subhead-section .img-container.double-img .flying-img {
    max-width: 180px;
  }
}
.subhead-section .img-container.double-img .rotImg {
  max-width: 290px;
  object-fit: cover;
}
.subhead-section .img-container .inner-right {
  position: absolute;
  top: 1%;
  right: -40%;
  max-width: 300px;
}
@media only screen and (max-width: 576px) {
  .subhead-section .img-container .inner-right {
    right: -30%;
    max-width: 200px;
  }
}
@media only screen and (max-width: 479px) {
  .subhead-section .img-container .inner-right {
    right: -30%;
    max-width: 150px;
  }
}
.subhead-section .img-container .inner-middle {
  position: absolute;
  top: -14%;
  right: 0;
  left: 10%;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .subhead-section .img-container .inner-middle {
    top: -7%;
    left: 0;
    width: 300px;
  }
}
@media only screen and (max-width: 576px) {
  .subhead-section .img-container .inner-middle {
    top: -7%;
    left: 0;
    width: 250px;
  }
}
.subhead-section .img-container img {
  width: 100%;
  object-fit: cover;
}
.subhead-section .content-container {
  padding: 20px;
}
@media only screen and (max-width: 992px) {
  .subhead-section .content-container {
    padding: 20px 0;
  }
  .subhead-section .content-container .content-mv-inline {
    display: flex;
    align-items: center;
    justify-content: left;
  }
}
@media only screen and (max-width: 768px) {
  .subhead-section .content-container {
    padding: 0;
  }
}
.subhead-section .content-container p {
  color: #3F3F3F;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 160% */
  margin-bottom: 20px;
}
.subhead-section .content-container p.bigger-para {
  font-size: 25px;
}
@media only screen and (max-width: 992px) {
  .subhead-section .content-container p.bigger-para {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .subhead-section .content-container p.bigger-para {
    font-size: 18px;
  }
}
@media only screen and (max-width: 469px) {
  .subhead-section .content-container p.bigger-para {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    font-weight: 400;
    color: #656565;
  }
}
@media only screen and (max-width: 469px) {
  .subhead-section .content-container p {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 20px;
    color: #656565;
  }
}
.subhead-section .content-container h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .subhead-section .content-container h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .subhead-section .content-container h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .subhead-section .content-container h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .subhead-section .content-container h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .subhead-section .content-container h3 {
    font-size: 20px;
  }
}
.subhead-section .content-container h3 span {
  color: #FF5634;
}
@media only screen and (max-width: 768px) {
  .subhead-section .content-container h3 {
    font-size: 22px;
  }
}
.subhead-section .content-container h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  font-size: 26px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .subhead-section .content-container h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .subhead-section .content-container h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .subhead-section .content-container h4 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    color: #121212;
  }
}
.subhead-section .content-container .content-img-big-mb {
  width: 100px !important;
}
.subhead-section .content-container .img-containers {
  width: 73px;
}
@media only screen and (max-width: 576px) {
  .subhead-section .content-container .img-containers {
    flex: 0 0 3.5em;
  }
}
.subhead-section .content-container .img-containers img {
  width: 100%;
}
.subhead-section .content-container ul {
  padding-left: 0;
}
.subhead-section .content-container ul li {
  color: #3F3F3F;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 120% */
  margin-bottom: 20px;
  display: flex;
  align-items: start;
  gap: 0 10px;
}
.subhead-section .content-container ul li::before {
  content: url("../../../../ord-website/assets/img/tick.svg");
  margin-top: 2.5px;
}
@media only screen and (max-width: 768px) {
  .subhead-section .content-container ul li {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 20px;
    font-weight: 300;
    color: #656565;
  }
}
.subhead-section .logos-section h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .subhead-section .logos-section h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .subhead-section .logos-section h4 {
    font-size: 20px;
  }
}
.subhead-section .logos-section .logos-container {
  width: 167px;
  margin: auto;
}
@media only screen and (max-width: 576px) {
  .subhead-section .logos-section .logos-container {
    min-height: 50px;
    width: 100%;
  }
}
.subhead-section .logos-section .logos-container img {
  width: 100%;
}

.title-section {
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .title-section {
    padding-top: 40px;
  }
}

.world-map-section h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .world-map-section h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .world-map-section h4 {
    font-size: 20px;
  }
}
.world-map-section h4 span {
  color: #FF5634;
}
.world-map-section .img-container {
  width: 100%;
}
.world-map-section .img-container img {
  width: 100%;
}

.pinning-container {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1vw;
}
.pinning-container .content-list {
  position: relative;
  height: calc(100vh - 100px);
  overflow: visible;
}
.pinning-container .content-list .content-container {
  width: 100%;
  height: 100vh;
  display: inline-flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}
.pinning-container .content-list .content-container:first-child {
  justify-content: center;
}
.pinning-container .content-list .content-container:last-child {
  justify-content: center;
}
.pinning-container .content-container {
  padding: 20px;
}
@media only screen and (max-width: 992px) {
  .pinning-container .content-container {
    padding: 20px 0;
  }
}
.pinning-container .content-container p {
  color: #3F3F3F;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 160% */
  margin-bottom: 20px;
}
@media only screen and (max-width: 1536px) {
  .pinning-container .content-container p {
    line-height: 28px;
  }
}
@media only screen and (max-width: 1500px) {
  .pinning-container .content-container p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 12px;
  }
}
.pinning-container .content-container p.bigger-para {
  font-size: 25px;
}
@media only screen and (max-width: 992px) {
  .pinning-container .content-container p.bigger-para {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .pinning-container .content-container p.bigger-para {
    font-size: 18px;
  }
}
@media only screen and (max-width: 469px) {
  .pinning-container .content-container p.bigger-para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 469px) {
  .pinning-container .content-container p {
    font-size: 16px;
  }
}
.pinning-container .content-container h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .pinning-container .content-container h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .pinning-container .content-container h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .pinning-container .content-container h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .pinning-container .content-container h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .pinning-container .content-container h3 {
    font-size: 20px;
  }
}
.pinning-container .content-container h3 span {
  color: #FF5634;
}
@media only screen and (max-width: 1500px) {
  .pinning-container .content-container h3 {
    font-size: 3rem;
    margin-bottom: 12px;
  }
}
.pinning-container .content-container h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  font-size: 26px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .pinning-container .content-container h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .pinning-container .content-container h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1500px) {
  .pinning-container .content-container h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.pinning-container .content-container .img-containers {
  width: 73px;
}
.pinning-container .content-container .img-containers img {
  width: 100%;
}
.pinning-container .content-container ul {
  padding-left: 0;
  margin-bottom: 0;
}
.pinning-container .content-container ul li {
  color: #3F3F3F;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: start;
  gap: 0 10px;
}
.pinning-container .content-container ul li::before {
  content: url("../../../../ord-website/assets/img/tick.svg");
  margin-top: 2.5px;
}
@media only screen and (max-width: 1536px) {
  .pinning-container .content-container ul li {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1500px) {
  .pinning-container .content-container ul li {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 469px) {
  .pinning-container .content-container ul li {
    font-size: 16px;
  }
}
.pinning-container .content-container .btn-group {
  margin: 30px 0;
}
@media only screen and (max-width: 1536px) {
  .pinning-container .content-container .btn-group .btn-content.btn-color {
    padding: 20px 32px;
  }
}
@media only screen and (max-width: 1536px) {
  .pinning-container .content-container .btn-group {
    margin: 10px 0 0;
    padding: 20px 32px;
  }
}
.pinning-container .image-list {
  position: relative;
  height: calc(100vh - 100px);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pinning-container .image-list .image-content {
  width: 100%;
  height: 100%;
  position: relative;
}
.pinning-container .image-list .image-content .image-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pinning-container .image-list .image-content .image-item:first-child {
  opacity: 1;
}
.pinning-container .image-list .image-content .image-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  max-height: 70vh;
}
.pinning-container .animation-col .img-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
}
@media only screen and (max-width: 992px) {
  .pinning-container .animation-col .img-wrapper {
    max-width: 500px;
    margin: auto;
  }
}
@media only screen and (max-width: 768px) {
  .pinning-container .animation-col .img-wrapper {
    padding-top: 53px;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 500px;
    margin: auto;
  }
}
@media only screen and (max-width: 479px) {
  .pinning-container .animation-col .img-wrapper {
    padding-top: 44px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.pinning-container .animation-col .img-wrapper .img-container {
  max-width: 100%;
}
.pinning-container .animation-col .img-wrapper .img-container img {
  width: 100%;
}
.pinning-container .animation-col .inner-container {
  max-width: 300px;
  z-index: 2;
}
@media only screen and (max-width: 992px) {
  .pinning-container .animation-col .inner-container {
    max-width: 58%;
  }
}
.pinning-container .animation-col .inner-container.contain-left {
  margin-right: auto;
}
.pinning-container .animation-col .inner-container.contain-right {
  margin-left: auto;
  margin-right: 6%;
}
.pinning-container .animation-col .inner-container.contain-right.small {
  max-width: 250px;
}
.pinning-container .animation-col .inner-container.contain-right.md {
  max-width: 280px;
}
.pinning-container .animation-col .inner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: inline-block;
}
.pinning-container .animation-col .inner-image {
  max-width: 54%;
  position: absolute;
  border-radius: 32px;
  box-shadow: 0 14px 54px rgba(0, 0, 0, 0.35);
  z-index: 0;
}
.pinning-container .animation-col .inner-image.l-inner-img {
  top: 30%;
  right: auto;
  left: 60px;
  box-shadow: none;
  max-width: 285px;
}
@media only screen and (max-width: 992px) {
  .pinning-container .animation-col .inner-image.l-inner-img {
    left: 0;
  }
}
.pinning-container .animation-col .inner-image.r-inner-mid-img {
  top: 15%;
  right: 80px;
  left: auto;
  box-shadow: none;
}
@media only screen and (max-width: 992px) {
  .pinning-container .animation-col .inner-image.r-inner-mid-img {
    right: 0;
  }
}
.pinning-container .animation-col .inner-image.r-inner-img {
  top: 30%;
  right: 20px;
  left: auto;
  box-shadow: none;
}
@media only screen and (max-width: 992px) {
  .pinning-container .animation-col .inner-image.r-inner-img {
    right: 0;
  }
}
.pinning-container .animation-col .inner-image.l-max-img {
  max-width: 100%;
  top: 15%;
  right: auto;
  left: 30px;
}
@media only screen and (max-width: 992px) {
  .pinning-container .animation-col .inner-image.l-max-img {
    top: 35%;
    left: 0;
  }
}
.pinning-container .animation-col .inner-image.l-inner-max-img {
  top: 16%;
  right: auto;
  left: -10%;
  box-shadow: none;
}
@media only screen and (max-width: 992px) {
  .pinning-container .animation-col .inner-image.l-inner-max-img {
    left: 0;
  }
}
.pinning-container .animation-col .inner-image.t-inner-img {
  top: 10%;
  right: auto;
  left: 60px;
  z-index: 9;
  box-shadow: none;
}
.pinning-container .animation-col .inner-image.t-inner-img.custom {
  top: -50%;
  left: 0;
}
@media only screen and (max-width: 992px) {
  .pinning-container .animation-col .inner-image.t-inner-img.custom {
    top: -32%;
  }
}
@media only screen and (max-width: 768px) {
  .pinning-container .animation-col .inner-image.t-inner-img.custom {
    top: -10%;
  }
}
.pinning-container .animation-col .inner-image.tr-inner-img {
  top: 10%;
  right: -5%;
  left: auto;
  z-index: 9;
  box-shadow: none;
}
.pinning-container .animation-col .inner-image.tr-inner-img.custom {
  top: -50%;
  right: 0;
}
@media only screen and (max-width: 992px) {
  .pinning-container .animation-col .inner-image.tr-inner-img.custom {
    top: -32%;
  }
}
@media only screen and (max-width: 768px) {
  .pinning-container .animation-col .inner-image.tr-inner-img.custom {
    top: -10%;
  }
}
.pinning-container .animation-col .inner-image img {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  object-fit: cover;
  display: inline-block;
}
.pinning-container .img-container {
  position: relative;
  max-width: 600px;
  margin: 50px 0;
}
.pinning-container .img-container.w-300 {
  max-width: 280px;
  margin: auto;
}
.pinning-container .img-container.w-700 {
  max-width: 700px;
}
@media only screen and (max-width: 1140px) {
  .pinning-container .img-container.double-img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 576px) {
  .pinning-container .img-container.double-img {
    max-width: 180px;
  }
}
.pinning-container .img-container.double-img .flying-img {
  position: absolute;
  max-width: 260px;
  transform: scale(1.075);
  z-index: 1;
}
@media only screen and (max-width: 1140px) {
  .pinning-container .img-container.double-img .flying-img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 576px) {
  .pinning-container .img-container.double-img .flying-img {
    max-width: 180px;
  }
}
.pinning-container .img-container.double-img .rotImg {
  max-width: 250px;
  object-fit: cover;
}
.pinning-container .img-container .inner-right {
  position: absolute;
  top: 1%;
  right: -40%;
  max-width: 300px;
}
@media only screen and (max-width: 576px) {
  .pinning-container .img-container .inner-right {
    right: -10%;
    max-width: 200px;
  }
}
.pinning-container .img-container .inner-middle {
  position: absolute;
  top: -14%;
  right: 0;
  left: 10%;
  max-width: 100%;
  text-align: center;
}
.pinning-container .img-container img {
  width: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 420px) {
  .footer-section .menu-container .custom-row {
    display: block;
  }
}
@media only screen and (max-width: 576px) {
  .landing-page-wrapper .subhead-section .row.content-padding {
    padding: 45px 0 0;
  }
}
@media only screen and (max-width: 576px) {
  .landing-page-wrapper .subhead-section .content-container p {
    font-weight: 400;
    color: #3F3F3F;
    line-height: 30px;
  }
  .landing-page-wrapper .subhead-section .content-container ul {
    margin-bottom: 0;
  }
  .landing-page-wrapper .subhead-section .content-container ul span {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
  }
  .landing-page-wrapper .subhead-section .content-container ul span strong {
    font-weight: 700;
    font-size: 18px;
    color: #121212;
  }
  .landing-page-wrapper .subhead-section .content-container ul li {
    align-items: flex-start;
  }
  .landing-page-wrapper .subhead-section .content-container ul li:last-child {
    margin-bottom: 0;
  }
}
.landing-page-wrapper .subhead-section .custom-content-heading h1 {
  font-size: 35px;
  font-weight: 700;
}
.landing-page-wrapper .subhead-section .custom-content-heading p.italics {
  font-weight: 500;
}
@media only screen and (max-width: 576px) {
  .landing-page-wrapper .title-section .custom-content-heading h1 {
    font-size: 35px;
    font-weight: 700;
  }
}
@media only screen and (max-width: 576px) {
  .landing-page-wrapper .custom-content-heading h1 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
  }
}

.pricing-container {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .pricing-container {
    padding: 23px 0;
  }
}
@media only screen and (max-width: 576px) {
  .pricing-container {
    padding: 0px 0 20px;
  }
}
.pricing-container .custom-content-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin: auto;
  text-align: center;
  margin-bottom: 76px;
}
.pricing-container .custom-content-heading .highlight-text {
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF5634;
  margin-bottom: 16px;
}
.pricing-container .custom-content-heading h1 {
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
.pricing-container .custom-content-heading h1 span {
  color: #FF5634;
}
.pricing-container .custom-content-heading h2 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 400px) {
  .pricing-container .custom-content-heading h2 {
    font-size: 26px;
  }
}
.pricing-container .custom-content-heading h2 span {
  color: #FF5634;
}
.pricing-container .custom-content-heading p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
}
.pricing-container .custom-content-heading p.para {
  margin-bottom: 0;
  padding: 0 20px;
}

.pricing-card-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  gap: 0 10px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .pricing-card-holder {
    gap: 20px 0;
    height: auto;
  }
}

.pricing-card {
  border-radius: 24px;
  border: 1px solid #EDEDED;
  background: #ffffff;
  box-shadow: 0px 2px 12px 0px rgba(16, 16, 16, 0.08);
  padding: 30px;
}
.pricing-card.holder-card {
  width: 48%;
}
@media only screen and (max-width: 992px) {
  .pricing-card.holder-card {
    width: 48%;
  }
}
@media only screen and (max-width: 650px) {
  .pricing-card.holder-card {
    width: 100%;
  }
}
.pricing-card .position-absolute {
  top: 0;
  left: 0;
  transform: translate3d(-35%, -35%, 0);
}
@media only screen and (max-width: 992px) {
  .pricing-card .position-absolute {
    transform: translate3d(0%, -50%, 0);
  }
}
.pricing-card .position-absolute .img-container {
  max-width: 160px;
}
@media only screen and (max-width: 576px) {
  .pricing-card .position-absolute .img-container {
    max-width: 120px;
  }
}
.pricing-card .position-absolute .img-container img {
  width: 100%;
}
.pricing-card .pricing-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  margin-top: 45px;
}
.pricing-card .pricing-row .btn-row-left {
  width: 50%;
}
@media only screen and (max-width: 992px) {
  .pricing-card .pricing-row .btn-row-left {
    width: 100%;
  }
}
.pricing-card .pricing-row .logo-container {
  max-width: 46px;
}
.pricing-card .pricing-row .logo-container img {
  width: 100%;
}
.pricing-card .pricing-row .img-container {
  max-width: 20px;
}
.pricing-card .pricing-row .img-container img {
  width: 100%;
}
.pricing-card .pricing-row p {
  font-weight: 400;
  line-height: 1.65em;
  color: #656565;
  margin-bottom: 34px;
  text-align: center;
  margin-bottom: 0;
}
.pricing-card .pricing-row p.feature-head {
  font-weight: 400;
  line-height: 1.65em;
  color: #121212;
  margin-bottom: 34px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 4px;
  text-align: left;
}
.pricing-card .pricing-row p.feature-head span {
  color: #FF5634;
}
.pricing-card .pricing-row p.feature-item {
  font-weight: 400;
  line-height: 1.65em;
  color: #121212;
  margin-bottom: 34px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 16px;
  text-align: left;
}
.pricing-card .pricing-row p.feature-sub {
  font-weight: 400;
  line-height: 1.65em;
  color: #121212;
  margin-bottom: 34px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
  text-align: left;
  font-style: italic;
}
.pricing-card .pricing-row p a {
  color: #1D88FE;
}
.pricing-card .pricing-row .icon-row {
  margin-bottom: 22px;
}
.pricing-card .pricing-row .pricing-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.pricing-card .pricing-row .pricing-quote h1 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 400px) {
  .pricing-card .pricing-row .pricing-quote h1 {
    font-size: 26px;
  }
}
.pricing-card .pricing-row .pricing-quote h1 span {
  color: #FF5634;
}
.pricing-card .pricing-row .pricing-quote h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .pricing-card .pricing-row .pricing-quote h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .pricing-card .pricing-row .pricing-quote h4 {
    font-size: 20px;
  }
}
.pricing-card .pricing-row .pricing-quote p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
  margin-bottom: 0;
  color: #656565;
  font-weight: 700;
}
.pricing-card .pricing-row .pricing-list {
  width: 100%;
}
.pricing-card .pricing-row .pricing-list .title {
  margin-bottom: 24px;
  text-align: left;
  font-size: 22px;
  font-weight: 700;
  color: #121212;
}
.pricing-card .pricing-row .pricing-list .list-item {
  margin-bottom: 24px;
}
.pricing-card .pricing-row .pricing-footer {
  margin: 40px 0;
}
.pricing-card .pricing-row .pricing-footer .footer-header {
  font-weight: 400;
  line-height: 1.65em;
  color: #121212;
  margin-bottom: 34px;
  font-size: 22px;
  text-align: left;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 20px;
}
@media only screen and (max-width: 576px) {
  .pricing-card .pricing-row .pricing-footer .footer-header {
    font-size: 20px;
  }
}
.pricing-card .pricing-row .pricing-footer .footer-body {
  font-weight: 400;
  line-height: 1.65em;
  color: #121212;
  margin-bottom: 34px;
  text-align: left;
  margin-bottom: 0;
  line-height: 30px;
}

.faq-container {
  background: #FAFAFA;
  overflow: hidden;
}
.faq-container .accordion {
  border-radius: 24px;
  border: 1px solid #EDEDED;
  background: #ffffff;
  box-shadow: 0px 2px 12px 0px rgba(16, 16, 16, 0.08);
  padding: 50px;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .faq-container .accordion {
    padding: 20px 30px;
  }
}
.faq-container .accordion .accordion-item {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  padding: 20px 0;
  border-bottom: 1px solid #CACACA;
}
.faq-container .accordion .accordion-item:last-child {
  border-bottom: none;
}
.faq-container .accordion .accordion-header {
  margin-bottom: 0;
}
.faq-container .accordion .accordion-button {
  color: #121212;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px; /* 141.667% */
  padding-right: 0;
  padding-left: 0;
}
@media only screen and (max-width: 768px) {
  .faq-container .accordion .accordion-button {
    font-size: 19px;
  }
}
.faq-container .accordion .accordion-button:focus {
  outline: none;
  border: none;
  box-shadow: none;
  background-color: transparent;
}
.faq-container .accordion .accordion-button::after {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  background-position: center;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
  border: 1px solid #EDEDED;
  box-shadow: 0px 2px 12px 0px rgba(16, 16, 16, 0.08);
  background-image: url("../../../../ord-website/assets/img/chevron-right.svg");
}
.faq-container .accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}
.faq-container .accordion .accordion-button:not(.collapsed)::after {
  width: 40px;
  height: 40px;
  background-color: #FF5634;
  background-position: center;
  background-size: 50%;
  border-radius: 100%;
  background-image: url("../../../../ord-website/assets/img/chevron-down.svg");
}
.faq-container .accordion .accordion-body {
  color: #656565;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  text-align: left;
  padding-right: 0;
  padding-left: 0;
  max-width: 700px;
}
@media only screen and (max-width: 768px) {
  .faq-container .accordion .accordion-body {
    font-size: 16px;
  }
}

.single-plan-container {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .single-plan-container {
    padding: 23px 0;
  }
}
@media only screen and (max-width: 576px) {
  .single-plan-container {
    padding: 0px 0 20px;
  }
}
.single-plan-container .custom-content-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  max-width: 700px;
  margin: auto;
  margin-left: 0;
  text-align: left;
  margin-bottom: 76px;
}
.single-plan-container .custom-content-heading .highlight-text {
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF5634;
  margin-bottom: 16px;
}
.single-plan-container .custom-content-heading h1 {
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
.single-plan-container .custom-content-heading h1 span {
  color: #FF5634;
}
.single-plan-container .custom-content-heading h2 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 400px) {
  .single-plan-container .custom-content-heading h2 {
    font-size: 26px;
  }
}
.single-plan-container .custom-content-heading h2 span {
  color: #FF5634;
}
.single-plan-container .custom-content-heading h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .single-plan-container .custom-content-heading h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .single-plan-container .custom-content-heading h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .single-plan-container .custom-content-heading h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .single-plan-container .custom-content-heading h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .single-plan-container .custom-content-heading h3 {
    font-size: 20px;
  }
}
.single-plan-container .custom-content-heading h3 span {
  color: #FF5634;
}
.single-plan-container .custom-content-heading h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .single-plan-container .custom-content-heading h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .single-plan-container .custom-content-heading h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .single-plan-container .custom-content-heading h4 {
    font-size: 20px;
  }
}
.single-plan-container .custom-content-heading h4 span {
  color: #FF5634;
}
.single-plan-container .custom-content-heading p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
}
.single-plan-container .custom-content-heading p span {
  color: #FF5634;
}
.single-plan-container .custom-content-heading .img-container {
  width: 100%;
  margin-bottom: 40px;
}
.single-plan-container .custom-content-heading .img-container img {
  border-radius: 12px;
  width: 100%;
}

.contact-us-page .custom-content-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin: auto;
  text-align: center;
  margin-bottom: 76px;
}
.contact-us-page .custom-content-heading.custom-wide {
  max-width: 900px;
}
.contact-us-page .custom-content-heading .highlight-text {
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF5634;
  margin-bottom: 16px;
}
.contact-us-page .custom-content-heading h1 {
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
.contact-us-page .custom-content-heading h1 span {
  color: #FF5634;
}
.contact-us-page .custom-content-heading h2 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 400px) {
  .contact-us-page .custom-content-heading h2 {
    font-size: 26px;
  }
}
.contact-us-page .custom-content-heading h2 span {
  color: #FF5634;
}
.contact-us-page .custom-content-heading h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .contact-us-page .custom-content-heading h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-us-page .custom-content-heading h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-us-page .custom-content-heading h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .contact-us-page .custom-content-heading h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .contact-us-page .custom-content-heading h3 {
    font-size: 20px;
  }
}
.contact-us-page .custom-content-heading h3 span {
  color: #FF5634;
}
.contact-us-page .custom-content-heading h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .contact-us-page .custom-content-heading h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .contact-us-page .custom-content-heading h4 {
    font-size: 20px;
  }
}
.contact-us-page .custom-content-heading h4 span {
  color: #FF5634;
}
.contact-us-page .custom-content-heading p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
}
.contact-us-page .custom-content-heading p.para {
  margin-bottom: 0;
  padding: 0 20px;
}

.contact-container {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .contact-container {
    padding: 23px 0;
  }
}
@media only screen and (max-width: 576px) {
  .contact-container {
    padding: 0px 0 20px;
  }
}
.contact-container .contact-section {
  border-radius: 24px;
  border: 1px solid #EDEDED;
  background: #ffffff;
  box-shadow: 0px 2px 12px 0px rgba(16, 16, 16, 0.08);
}
.contact-container .contact-section .form-section {
  padding: 50px 60px;
}
@media only screen and (max-width: 576px) {
  .contact-container .contact-section .form-section {
    padding: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .contact-container .contact-section .form-section .iti__selected-flag {
    height: 61px !important;
  }
}
@media only screen and (max-width: 767px) {
  .contact-container .contact-section .form-section .iti__selected-flag {
    height: 58px !important;
  }
}
.contact-container .details-section {
  background-color: #FAFAFA;
  padding: 50px;
  height: 100%;
}
@media only screen and (max-width: 576px) {
  .contact-container .details-section {
    padding: 30px;
  }
}
@media only screen and (max-width: 576px) {
  .contact-container .details-section .col-6 {
    width: 100%;
  }
}
.contact-container .details-section .custom-content-heading {
  width: 100%;
  margin: 0;
  text-align: left;
  justify-content: start;
  align-items: start;
}
.contact-container .details-section .custom-content-heading h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .contact-container .details-section .custom-content-heading h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .contact-container .details-section .custom-content-heading h4 {
    font-size: 20px;
  }
}
.contact-container .details-section .custom-content-heading h4 span {
  color: #FF5634;
}
.contact-container .details-section .custom-content-heading .para {
  font-weight: 700;
}
.contact-container .details-section .custom-content-heading .highlight-text {
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF5634;
  margin-bottom: 16px;
  text-transform: lowercase;
  font-weight: 500;
  letter-spacing: normal;
  overflow-wrap: break-word;
}
.contact-container .details-section .custom-content-heading .row {
  border-bottom: 1px solid #CACACA;
}
.contact-container .details-section .custom-content-heading .social-icon {
  display: flex;
  width: 100%;
  justify-content: start;
  align-items: center;
  gap: 0 20px;
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .contact-container .details-section .custom-content-heading .social-icon {
    margin-top: 20px;
  }
}
.contact-container .details-section .custom-content-heading .social-icon .img-container {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background-color: #121212;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.contact-container .details-section .custom-content-heading .social-icon .img-container img {
  width: 100%;
}

.social-container {
  background: #FAFAFA;
}
.social-container h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .social-container h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .social-container h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .social-container h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .social-container h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .social-container h3 {
    font-size: 20px;
  }
}
.social-container .custom-content-heading {
  margin-bottom: 20px;
}
.social-container .follow-container {
  padding: 25px;
  max-width: 250px;
  margin: auto;
  border-radius: 16px;
  border: 1px solid #EDEDED;
  background: #ffffff;
  box-shadow: 0px 2px 12px 0px rgba(16, 16, 16, 0.08);
}
.social-container .follow-container .img-container {
  max-width: 135px;
}
.social-container .follow-container .img-container.youtube {
  max-width: 70px;
}
.social-container .follow-container .img-container img {
  width: 100%;
}
.social-container .follow-container a {
  text-decoration: none;
}
.social-container .follow-container .follow-content h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 127.273% */
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .social-container .follow-container .follow-content h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .social-container .follow-container .follow-content h4 {
    font-size: 20px;
  }
}
.social-container .follow-container .follow-content p {
  font-weight: 400;
  line-height: 1.65em;
  color: #656565;
  margin-bottom: 34px;
  margin-bottom: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 112.5% */
}
.social-container .follow-container .follow-content img {
  width: 9px;
  height: 9px;
  object-fit: cover;
}

.reachout-container {
  background: #FAFAFA;
}
.reachout-container .reachout-card {
  border-radius: 24px;
  border: 1px solid #EDEDED;
  background: #ffffff;
  box-shadow: 0px 2px 12px 0px rgba(16, 16, 16, 0.08);
  text-align: center;
  padding: 50px 30px;
  margin: 0 10px;
}
@media only screen and (max-width: 768px) {
  .reachout-container .reachout-card {
    margin: 10px 0;
  }
}
.reachout-container .reachout-card .img-container {
  margin-bottom: 16px;
}
.reachout-container .reachout-card h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .reachout-container .reachout-card h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .reachout-container .reachout-card h4 {
    font-size: 20px;
  }
}
.reachout-container .reachout-card h4 span {
  color: #FF5634;
}
@media only screen and (max-width: 768px) {
  .reachout-container .reachout-card h4 {
    font-size: 20px;
  }
}
.reachout-container .reachout-card p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
}
.reachout-container .reachout-card p.para {
  margin-bottom: 0;
  padding: 0 20px;
}
.reachout-container .reachout-card .highlight-text {
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF5634;
  margin-bottom: 16px;
  text-transform: lowercase;
  font-weight: 500;
  letter-spacing: normal;
}

.faq-title {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .faq-title {
    padding: 23px 0;
  }
}
@media only screen and (max-width: 576px) {
  .faq-title {
    padding: 0px 0 20px;
  }
}
.faq-title h1 {
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
.faq-title h1 span {
  color: #FF5634;
}
.faq-title h2 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 400px) {
  .faq-title h2 {
    font-size: 26px;
  }
}
.faq-title h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .faq-title h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .faq-title h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .faq-title h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  .faq-title h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  .faq-title h3 {
    font-size: 20px;
  }
}
.faq-title h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .faq-title h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  .faq-title h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .faq-title h4 {
    font-size: 20px;
  }
}
.faq-title p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
}
.faq-title .search-container {
  padding: 94px 58px;
  border-radius: 12px;
  background: #FAFAFA;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .faq-title .search-container {
    padding: 50px 50px 250px;
  }
}
@media only screen and (max-width: 420px) {
  .faq-title .search-container {
    padding: 50px 20px 250px;
  }
}
.faq-title .search-container .search-row {
  z-index: 9;
  position: relative;
}
.faq-title .search-container input {
  border-radius: 9px;
  border: 1px solid rgba(181, 181, 195, 0.24);
  background: #ffffff;
  padding: 18px 60px;
  color: #B5B5C3;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px; /* 194.444% */
  letter-spacing: 0.36px;
}
.faq-title .search-container input:focus {
  outline: none;
  border: none;
}
.faq-title .search-container input::placeholder {
  color: #B5B5C3;
  font-size: 18px;
}
.faq-title .search-container .search-box {
  position: relative;
}
.faq-title .search-container .search-box .search-icon {
  position: absolute;
  left: 0;
  left: 18px;
  top: 20px;
}
.faq-title .search-container .help-img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 300px;
}
.faq-title .faq-container {
  background-color: #ffffff;
  padding: 70px 0;
}

.faq-container .faq-item {
  padding: 20px 0;
}

.accordion-faqpage {
  border: none;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .accordion-faqpage {
    padding: 20px 30px;
  }
}
@media only screen and (max-width: 576px) {
  .accordion-faqpage {
    padding: 10px 0px;
  }
}
.accordion-faqpage .accordion-item {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  position: relative;
  padding: 20px 0 20px 50px;
  border-bottom: 1px dashed #E4E6EF;
}
.accordion-faqpage .accordion-header {
  margin-bottom: 0;
}
.accordion-faqpage .accordion-button {
  color: #121212;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px; /* 141.667% */
  padding-right: 0;
  padding-left: 0;
}
@media only screen and (max-width: 768px) {
  .accordion-faqpage .accordion-button {
    font-size: 16px;
  }
}
.accordion-faqpage .accordion-button:focus {
  outline: none;
  border: none;
  box-shadow: none;
  background-color: transparent;
}
.accordion-faqpage .accordion-button::after {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  border-radius: 100%;
  transform: translateX(-130%);
  transition: all 0.2s ease-in-out;
  box-shadow: none;
  background-image: url("../../../../ord-website/assets/img/plus.png");
}
.accordion-faqpage .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}
.accordion-faqpage .accordion-button:not(.collapsed)::after {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  transform: translateX(-130%);
  background-size: 100%;
  border-radius: 100%;
  background-image: url("../../../../ord-website/assets/img/minus.png");
}
.accordion-faqpage .accordion-body {
  color: #656565;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  text-align: left;
  padding-right: 0;
  padding-left: 0;
  max-width: 600px;
}
@media only screen and (max-width: 768px) {
  .accordion-faqpage .accordion-body {
    font-size: 14px;
  }
}

.download-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .download-section {
    padding: 23px 0;
  }
}
@media only screen and (max-width: 576px) {
  .download-section {
    padding: 0px 0 20px;
  }
}
.download-section .highlight-text {
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF5634;
  margin-bottom: 16px;
}
.download-section h1 {
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
.download-section h1 span {
  color: #FF5634;
}
.download-section h2 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
}
@media only screen and (max-width: 400px) {
  .download-section h2 {
    font-size: 26px;
  }
}
.download-section h2 span {
  color: #FF5634;
}
.download-section p {
  font-weight: 400;
  line-height: 1.65em;
  color: #3F3F3F;
  margin-bottom: 34px;
}
.download-section .right-animation {
  position: relative;
  padding-bottom: 100px;
}
@media only screen and (max-width: 992px) {
  .download-section .right-animation {
    padding: 30px 0;
    max-width: 400px;
    margin: auto;
  }
}
.download-section .right-animation .image-right-max {
  max-width: 80%;
  margin-left: auto;
}
.download-section .right-animation .image-right-max img {
  width: 100%;
}
.download-section .right-animation .image-left-max {
  position: absolute;
  width: 75%;
  right: 6%;
  top: 10%;
}
.download-section .right-animation .image-left-max img {
  width: 100%;
  object-fit: cover;
}
.download-section .right-animation .image-box-max {
  position: absolute;
  left: 0;
  bottom: -20%;
  max-width: 240px;
}
.download-section .right-animation .image-box-max img {
  width: 100%;
}
.download-section .right-animation .image-right {
  transform: translateY(18%);
  width: 45%;
}
@media only screen and (max-width: 992px) {
  .download-section .right-animation .image-right {
    transform: translateY(12%);
  }
}
.download-section .right-animation .image-right img {
  width: 100%;
}
.download-section .right-animation .image-left {
  width: 55%;
}
.download-section .right-animation .image-left img {
  width: 100%;
}
.download-section .right-animation .image-box {
  position: absolute;
  top: 10%;
  left: 10%;
}

.download-feature .mobile-container {
  max-width: 450px;
  margin: auto;
  position: relative;
  margin-top: 200px;
}
.download-feature .mobile-container .circle-orange {
  width: 100%;
  height: 450px;
  border-radius: 100%;
  background-color: #FF5634;
  margin: auto;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .download-feature .mobile-container {
    max-width: 400px;
  }
}
.download-feature .mobile-container .mobile {
  width: 60%;
  margin: auto;
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
}
.download-feature .mobile-container .mb {
  max-width: 250px;
  position: absolute;
}
.download-feature .mobile-container .mb.mobile-1 {
  top: 0;
  right: -55%;
}
.download-feature .mobile-container .mb.mobile-2 {
  top: 40%;
  right: -65%;
}
.download-feature .mobile-container .mb.mobile-3 {
  bottom: 0;
  right: -55%;
}
.download-feature .mobile-container .mb.mobile-4 {
  top: 0;
  left: -55%;
}
.download-feature .mobile-container .mb.mobile-5 {
  top: 40%;
  left: -65%;
}
.download-feature .mobile-container .mb.mobile-6 {
  bottom: 0;
  left: -55%;
}
@media only screen and (max-width: 992px) {
  .download-feature .mobile-container .mb {
    max-width: 175px;
  }
  .download-feature .mobile-container .mb.mobile-1 {
    right: -35%;
  }
  .download-feature .mobile-container .mb.mobile-2 {
    right: -45%;
  }
  .download-feature .mobile-container .mb.mobile-3 {
    right: -35%;
  }
  .download-feature .mobile-container .mb.mobile-4 {
    left: -35%;
  }
  .download-feature .mobile-container .mb.mobile-5 {
    left: -45%;
  }
  .download-feature .mobile-container .mb.mobile-6 {
    left: -35%;
  }
}
.download-feature .mobile-container-app {
  position: relative;
  margin-top: 120px;
}
@media only screen and (max-width: 992px) {
  .download-feature .mobile-container-app {
    margin-top: 60px;
  }
}
.download-feature .mobile-container-app .mobile-app {
  width: 100%;
}
.download-feature .mobile-container-app .mobile-app-sg {
  max-width: 35%;
  position: absolute;
  bottom: 16%;
  left: 32%;
  margin: auto;
}

#privacy-policy {
  padding: 85px 0 0px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  #privacy-policy {
    padding: 43px 0;
  }
}
@media only screen and (max-width: 576px) {
  #privacy-policy {
    padding: 0;
  }
}
#privacy-policy p {
  color: #656565;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 160% */
  margin-bottom: 20px;
}
#privacy-policy p strong {
  color: #121212;
}
#privacy-policy ul {
  padding-left: 0px;
}
#privacy-policy ul li {
  color: #656565;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 160% */
  margin-bottom: 10px;
  display: flex;
}
#privacy-policy ul li svg {
  margin-right: 10px;
  color: #FF5634;
}
#privacy-policy .content-section {
  margin-bottom: 58px;
}
#privacy-policy h1 {
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  margin-top: 20px;
}
#privacy-policy h2 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  margin-top: 20px;
}
@media only screen and (max-width: 400px) {
  #privacy-policy h2 {
    font-size: 26px;
  }
}
#privacy-policy h3 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  #privacy-policy h3 {
    font-size: 38px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  #privacy-policy h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  #privacy-policy h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 432px) {
  #privacy-policy h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  #privacy-policy h3 {
    font-size: 20px;
  }
}
#privacy-policy h3 span {
  color: #FF5634;
}
#privacy-policy h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2em;
  color: #121212;
  margin-bottom: 16px;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  #privacy-policy h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 480px) {
  #privacy-policy h4 {
    font-size: 20px;
  }
}
#privacy-policy h4 span {
  color: #FF5634;
}
#privacy-policy h4.bigger {
  font-size: 35px;
}
@media only screen and (max-width: 768px) {
  #privacy-policy h4.bigger {
    font-size: 30px;
  }
}

@media only screen and (max-width: 1400px) {
  .container {
    max-width: 95%;
  }
}
@media only screen and (max-width: 576px) {
  .container {
    max-width: 90%;
  }
}

.divider {
  margin: 60px 0;
  height: 0.75px;
  width: 100%;
  background-color: #cacaca;
}
.divider.zero-div {
  margin: 0;
}
.divider.dark {
  height: 2px;
}
@media only screen and (max-width: 768px) {
  .divider {
    margin: 50px 0;
  }
}
@media only screen and (max-width: 476px) {
  .divider {
    margin: 40px 0;
  }
}

.content-padding {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .content-padding {
    padding: 30px 0;
  }
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 992px) {
  html {
    font-size: 53.56%;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 44.64%;
  }
}
@media only screen and (max-width: 476px) {
  html {
    font-size: 36.93%;
  }
}

body {
  font-family: "Metropolis";
  font-size: 18px;
  overflow-x: hidden;
  -webkit-scroll-behavior: smooth;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

/* LightJS CSS */
@media only screen and (max-width: 576px) {
  .lightboxjs .ljs-content {
    max-width: 300px;
    max-height: 75%;
  }
}
@media only screen and (max-width: 400px) {
  .lightboxjs .ljs-content {
    max-width: 280px;
  }
}
.lightboxjs .ljs-close {
  z-index: 9 !important;
}

.w-chrome {
  border-radius: 12px !important;
}

/*# sourceMappingURL=style.css.map */
