* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
  font-size: 18px;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

@media (max-width: 1280px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 11px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 8px;
  }
}
@media (max-width: 640px) {
  html {
    font-size: 6px;
  }
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

h2 {
  font-size: 3.75rem;
  font-weight: 400;
  letter-spacing: 0.512px;
  font-family: "Anton", sans-serif;
  line-height: 1.5;
  margin-bottom: 0;
}
.bg-grey {
  background: #333;
}

.heading-svg-icon__wrapper {
  position: relative;
}

.heading-svg-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  pointer-events: none;
  transform: scale(1.1);
}
.heading-svg-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.heading-svg-icon svg path {
  fill: transparent;
  stroke: #00ff8a;
  stroke-width: 5px;
}

.btn {
  color: #fff;
  padding: 16px 30px 14px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.5s ease;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 768px) {
  .btn {
    font-size: 15px;
    padding: 10px 20px;
  }
}

.btn-primary {
  border: solid 1px #3a6ed8;
  color: #fff;
  background-color: #3a6ed8;
}
.btn-primary:hover {
  background: #fff;
  color: #3a6ed8;
}

.btn-secondary {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover {
  background: #fff;
  color: #000;
}

.btn-tertiary {
  background: #565656;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  text-transform: capitalize;
}
.btn-tertiary:hover {
  background: #fff;
  color: #000;
}

.header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  padding-top: 20px;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1201px) {
  .header.scrolled {
    padding-top: 0;
  }
  .header.scrolled .logo img {
    max-width: 200px;
  }
  .header.scrolled .header-search .header-search-wrapper {
    top: 93px;
  }
}
.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.6);
  top: 0;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .header {
    padding: 10px 0;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 10px 0 !important;
  }
}

.logo img {
  max-width: 250px;
  transition: all 0.3s ease;
}
@media (max-width: 1330px) {
  .logo img {
    max-width: 200px;
  }
}
@media (max-width: 1200px) {
  .logo img {
    max-width: 150px;
  }
}
@media (max-width: 768px) {
  .logo img {
    max-width: 120px !important;
  }
}
@media (max-width: 400px) {
  .logo img {
    max-width: 100px !important;
  }
}

.header-icons {
  display: grid;
  grid-template-columns: 1fr 170px;
  text-align: center;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
@media (max-width: 1200px) {
  .header-icons {
    margin-top: 0;
    grid-template-columns: 1fr 130px;
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .header-icons {
    grid-template-columns: 1fr 100px;
  }
}
.header-icons i {
  color: #000;
  font-size: 18px;
}
@media (max-width: 768px) {
  .header-icons i {
    font-size: 15px;
  }
}
.header-icons .header-cta a {
  display: inline-block;
  background-color: #3a6ed8;
  color: #fff;
  white-space: nowrap;
  font-size: 18px;
  text-decoration: none;
  border-radius: 30px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 40px;
  gap: 10px;
  padding: 2px 2px 2px 20px;
}
@media (max-width: 1200px) {
  .header-icons .header-cta a {
    font-size: 14px;
    padding: 2px 2px 2px 15px;
    grid-template-columns: 1fr 30px;
  }
}
@media (max-width: 768px) {
  .header-icons .header-cta a {
    padding: 5px;
    grid-template-columns: 1fr;
  }
}
.header-icons .header-cta a:hover span {
  transform: rotate(0deg);
}
.header-icons .header-cta a span {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s ease;
  transform: rotate(-35deg);
}
@media (max-width: 1200px) {
  .header-icons .header-cta a span {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 768px) {
  .header-icons .header-cta a span {
    display: none;
    width: 20px;
    height: 20px;
  }
}
.header-icons .header-cta a span img {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 5px 0;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .hamburger {
    display: block;
  }
}

.header-container .right-sec {
  display: grid;
  grid-template-columns: 1fr 130px;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1200px) {
  .header-container .right-sec {
    margin-left: auto;
    grid-template-columns: 1fr;
  }
}

.header-search {
  position: relative;
  cursor: pointer;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .header-search {
    margin-right: 0;
  }
}
.header-search .header-search-wrapper {
  position: fixed;
  top: 113px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  display: none;
  padding: 10px 0;
}
@media screen and (max-width: 1200px) {
  .header-search .header-search-wrapper {
    top: 61px;
  }
}
@media screen and (max-width: 1024px) {
  .header-search .header-search-wrapper {
    top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .header-search .header-search-wrapper {
    top: 57px;
  }
}
.header-search .header-search-wrapper.active {
  display: block;
}
.header-search .search-form {
  overflow: hidden;
  background: #fff;
  grid-template-columns: 1fr 45px;
  display: grid;
  max-width: 600px;
  height: 45px;
  margin: 0 auto;
}
.header-search .search-form .header-search-btn {
  width: 100%;
  border: none;
  background-color: #27408b;
  background-color: #eee;
  cursor: pointer;
  height: 100%;
}
.header-search .search-form input {
  width: 100%;
  background-color: #eee;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 14px;
  height: 100%;
}
.header-search .search-form input::-moz-placeholder {
  color: #999;
}
.header-search .search-form input::placeholder {
  color: #999;
}
.header-search i {
  font-size: 18px;
  color: #000;
  transition: color 0.3s ease;
  z-index: 3;
  position: relative;
}
.header-search i:hover {
  color: #3a6ed8;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .nav {
    display: none;
    position: fixed;
    width: 50%;
    height: calc(100vh - 58px);
    overflow-y: auto;
    background: #fff;
    z-index: 100;
    top: 55px;
    right: 0;
    padding: 20px;
  }
  .nav.active {
    display: block;
  }
}
@media (max-width: 768px) {
  .nav {
    width: 100%;
  }
}
.nav .nav-list {
  display: flex;
  list-style: none;
  gap: 35px;
}
@media (max-width: 1500px) {
  .nav .nav-list {
    gap: 30px;
  }
}
@media (max-width: 1360px) {
  .nav .nav-list {
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .nav .nav-list {
    flex-direction: column;
    gap: 0;
  }
}
.nav .nav-list .nav-item {
  padding: 40px 20px 25px 0;
}
@media (max-width: 1200px) {
  .nav .nav-list .nav-item {
    padding: 15px 40px 15px 0;
    border-bottom: solid 1px #eeeeee;
  }
}
@media (max-width: 768px) {
  .nav .nav-list .nav-item {
    line-height: 1;
  }
}
.nav .nav-list .nav-item .fa-chevron-down {
  font-size: 12px;
  margin-left: 5px;
  position: absolute;
  right: 0;
  top: 50px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .nav .nav-list .nav-item .fa-chevron-down {
    top: 0;
    height: 40px;
    display: grid;
    align-items: center;
    justify-content: center;
    width: 40px;
  }
}
@media (min-width: 1201px) {
  .nav .nav-list .nav-item:hover .fa-chevron-down {
    transform: rotate(180deg);
  }
}
.nav .nav-list .nav-item a {
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  color: #000;
}
@media (max-width: 1360px) {
  .nav .nav-list .nav-item a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .nav .nav-list .nav-item a {
    font-size: 18px;
  }
}
.nav .nav-list .nav-item a:hover {
  color: #3a6ed8;
}
.nav .nav-list .nav-item .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(58, 110, 216, 0.1);
  min-width: 350px;
  padding: 0.5rem 0;
  z-index: 10;
  list-style: none;
}
@media only screen and (max-width: 1200px) {
  .nav .nav-list .nav-item .submenu {
    position: static;
    box-shadow: none;
    margin-top: 10px;
  }
  .nav .nav-list .nav-item .submenu.open {
    display: block;
  }
  .nav .nav-list .nav-item .submenu.open + .fas {
    transform: rotate(180deg);
  }
}
.nav .nav-list .nav-item .submenu .submenu-item {
  padding: 5px 15px;
}
@media only screen and (max-width: 768px) {
  .nav .nav-list .nav-item .submenu .submenu-item {
    padding: 10px 10px;
  }
}

.nav-item.has-submenu {
  position: relative;
}

.nav-item > a {
  position: relative;
  z-index: 2;
}

.nav a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.nav a:hover {
  color: #3a6ed8;
}

.submenu a {
  display: block;
  color: #222;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-radius: 0;
}

.hamburger.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:last-child {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media only screen and (min-width: 1201px) {
  .nav-item.has-submenu:hover .submenu,
  .nav-item.has-submenu:focus-within .submenu {
    display: block;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 10vh;
}
@media only screen and (max-width: 768px) {
  .hero {
    min-height: 540px;
    height: auto;
    padding-bottom: 5vh;
    padding-top: 70px;
  }
}
.hero .btn-primary {
  border: solid 2px #3a6ed8;
  font-weight: 700;
  background-color: transparent;
  color: #3a6ed8;
  opacity: 0;
}
.hero .btn-primary:hover {
  background-color: #3a6ed8;
  color: #fff;
}

.hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.95;
}

.hero-image-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-content {
    text-align: left;
  }
}

.hero-content {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero-content h1 {
  color: #3a6ed8;
  font-size: 5.8125rem;
  font-weight: 700;
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-video-container .plyr {
  height: 100%;
  width: 100%;
}
.hero-video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.inner-hero {
  align-items: center;
}
@media only screen and (min-width: 1201px) {
  .inner-hero {
    margin-top: 115px;
  }
}
.inner-hero .heading-svg-icon svg path {
  stroke-width: 4px;
}
.inner-hero .hero-content {
  align-items: center;
}
.inner-hero .hero-content h1 {
  font-size: 30px;
  padding: 5px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .inner-hero .hero-content h1 {
    font-size: 25px;
  }
}
.inner-hero .hero-content h1 .heading-svg-icon__wrapper {
  margin-left: 30px;
  padding: 3px;
}
@media (max-width: 768px) {
  .inner-hero .hero-content .inner-hero-subtitle {
    font-size: 35px;
    line-height: 1.3;
    text-align: center;
  }
}
.inner-hero .inner-hero-subtitle {
  color: #3a6ed8;
}

.hero.inner-hero.type-2 .hero-video-container .plyr::after {
  opacity: 0.3;
}
.hero.inner-hero.type-2 .heading-svg-icon svg path {
  stroke: #3a6ed8;
}
.hero.inner-hero.type-2 .text-highlight.primary {
  background: linear-gradient(to bottom, transparent 37%, #3a6ed8 37%, #3a6ed8 70%, transparent 70%);
}
.hero.inner-hero.type-2 .hero-content {
  gap: 20px;
}
.hero.inner-hero.type-2 .hero-content h1 {
  color: #fff;
  display: flex;
  align-items: center;
}
.hero.inner-hero.type-2 .hero-content h1 .heading-svg-icon__wrapper {
  margin-left: 30px;
  padding: 3px;
}
.hero.inner-hero.type-2 .hero-content .inner-hero-subtitle {
  color: #fff;
  line-height: 1.3;
}

.store-banner {
  background-color: #eaf7ff;
  margin-top: 113px;
  padding: 40px 0 100px 0;
}
@media only screen and (max-width: 1200px) {
  .store-banner {
    margin-top: 61px;
    padding: 40px 0;
  }
}
@media only screen and (max-width: 768px) {
  .store-banner {
    margin-top: 57px;
  }
}
.store-banner .store-banner__img {
  margin-bottom: 20px;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .store-banner .store-banner__img {
    max-width: 200px;
  }
}
.store-banner .store-banner__wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.store-banner .store-banner__content h1 {
  color: #3a6ed8;
  font-family: "Anton", sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 2.5rem;
}
@media only screen and (max-width: 1024px) {
  .store-banner .store-banner__content h1 {
    font-size: 25px;
  }
}
.store-banner .store-banner__content .btn {
  background-color: #3a6ed8;
  color: #fff;
  border-color: #3a6ed8;
}
.store-banner .store-banner__content .btn:hover {
  background-color: transparent;
  color: #3a6ed8;
}

.two-column {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .two-column {
    padding: 30px 0;
  }
}
.two-column .two-col-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.two-column .two-col-wrapper.reverse {
  flex-direction: row-reverse;
}
.two-column .two-col-wrapper.reverse .two-column-content__para {
  text-align: left;
}
.two-column .two-col-wrapper.reverse .two-column-content__heading {
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .two-column .two-col-wrapper.reverse .two-column-content__heading {
    text-align: left;
  }
}
.two-column .two-column-content.left-sec {
  width: 61%;
}
@media (max-width: 768px) {
  .two-column .two-column-content.left-sec {
    width: 100%;
  }
}
.two-column .two-column-content.right-sec {
  width: 39%;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .two-column .two-column-content.right-sec {
    width: 100%;
  }
}
.two-column .two-column-content h2 {
  color: #2f62c1;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .two-column .two-column-content h2 {
    max-width: 100%;
  }
}
.two-column .two-column-content .two-column-content__para {
  margin-bottom: 0;
  text-align: right;
}
.two-column .two-column-img {
  max-width: 200px;
}
@media (max-width: 768px) {
  .two-column .two-column-img {
    max-width: 150px;
  }
}

.left-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-highlight {
  position: relative;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  background-size: 0% 100%;
}
.text-highlight.primary {
  background-image: linear-gradient(to bottom, transparent 37%, #00ff8a 37%, #00ff8a 70%, transparent 70%);
}
.text-highlight.secondary {
  background-image: linear-gradient(to bottom, transparent 40%, #2f62c1 40%, #2f62c1 70%, transparent 70%);
}
.text-highlight.animated {
  background-size: 100% 100%;
  background-position: 100% 0%;
}

.section-heading {
  font-size: 5.8125rem;
  line-height: 1.2;
}

.two-column.inner-pages .two-column-content h2 {
  font-size: 2.8125rem;
}
@media only screen and (max-width: 768px) {
  .two-column.inner-pages .two-column-content h2 {
    font-size: 28px;
  }
}

.slider-section {
  position: relative;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100vw;
  background: #000;
  overflow: hidden;
}
.slider-container .btn {
  background-color: #4a6edb;
  margin-top: 20px;
}
.slider-container .btn:hover {
  color: #3a6ed8;
  background-color: #fff;
}
.slider-container__wrapper {
  display: flex;
  height: 100%;
}
.slider-container__wrapper .container {
  display: flex;
  height: 100%;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .slider-container__wrapper .container {
    display: block;
  }
}
.slider-container.layer-1 {
  height: 100vh;
}
@media only screen and (max-width: 768px) {
  .slider-container.layer-1 {
    height: auto;
  }
}
.slider-container.layer-2 {
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.slider-container.layer-2 .slider-container__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.slider-left,
.slider-right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .slider-left,
  .slider-right {
    width: 100%;
    height: auto;
  }
}

.slider-left {
  color: #4a6edb;
  background: #000;
  z-index: 1;
  padding-right: 60px;
}
@media (max-width: 1024px) {
  .slider-left {
    padding-top: 40px;
  }
}
.slider-left h2 {
  color: #4a6edb;
  margin-bottom: 25px;
}
.slider-left p {
  color: #fff;
  margin-bottom: 20px;
}

.video-container {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.video-container .plyr {
  height: 100%;
}
@media (max-width: 768px) {
  .video-container {
    position: static;
  }
}
.video-container video {
  width: 100%;
  height: 100%;
}

.slider-right {
  position: relative;
}
.slider-right .slider-img-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .slider-right .slider-img-bg {
    position: static;
  }
}

.slider-divider {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}
.slider-divider.dragging {
  transition: none;
  cursor: grabbing;
}
.slider-divider:hover {
  cursor: grab;
}

.divider-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #000000;
  color: #4a6edb;
  border-radius: 50%;
  font-size: 3rem;
  width: 80px;
  height: 80px;
  border: 4px solid #ffffff;
  z-index: 4;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  cursor: ew-resize;
}
@media (max-width: 768px) {
  .divider-icon {
    width: 50px;
    height: 50px;
  }
}
.divider-icon .divider-icon__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.divider-icon:hover {
  cursor: grab;
}

.our-vision {
  position: relative;
  overflow: hidden;
  min-height: 800px;
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  grid-template-columns: 1fr;
}
@media (max-width: 768px) {
  .our-vision {
    min-height: 350px;
  }
}
.our-vision .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-vision .video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-vision .our-vision-content {
  position: relative;
  z-index: 1;
}
.our-vision .our-vision-content .our-vision-content__heading-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 30px;
}
.our-vision .our-vision-content .our-vision-content__heading {
  font-weight: 700;
  margin-bottom: 0;
  color: #2f62c1;
  position: relative;
  z-index: 1;
}
.our-vision .our-vision-content .our-vision-content__para {
  font-size: 3.75rem;
  font-weight: 400;
  letter-spacing: 0.512px;
  font-family: "Anton", sans-serif;
  line-height: 1.2;
  margin-bottom: 0;
  color: #2f62c1;
}

.our-mission {
  padding: 70px 0 100px 0;
}
@media (max-width: 768px) {
  .our-mission {
    padding: 30px 0 50px 0;
  }
}
.our-mission .our-mission-content__heading-wrapper {
  display: inline-block;
}
@media (max-width: 768px) {
  .our-mission .our-mission-content__heading-wrapper {
    margin-left: 30px;
  }
}
.our-mission .our-mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .our-mission .our-mission-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.our-mission .our-mission-content .heading-svg-icon svg path {
  stroke: #2f62c1;
}
.our-mission .our-mission-content .our-mission-content__heading {
  line-height: 1.5;
  margin-bottom: 0;
  color: #fff;
  display: inline-block;
}
.our-mission .our-mission-content .our-mission-content__description p {
  color: #fff;
  margin-bottom: 40px;
}

.team {
  padding: 100px 0 100px 0;
}
@media (max-width: 991px) {
  .team {
    padding: 50px 0;
  }
}

.team-container {
  display: grid;
  margin-bottom: 1.5rem;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.team-container .team-member {
  border-radius: 30px;
  overflow: hidden;
  height: 450px;
}
@media (max-width: 768px) {
  .team-container .team-member {
    height: 200px;
  }
}
.team-container .team-member img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.accordion {
  overflow: hidden;
}

.accordion-item {
  border-top: 1px solid #ffffff;
}
.accordion-item:last-child {
  border-bottom: 1px solid #ffffff;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 60px;
  font-family: "Anton", sans-serif;
  font-weight: 700;
  padding: 20px 0;
  letter-spacing: 0.512px;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 60px;
}
@media (max-width: 768px) {
  .accordion-header {
    grid-template-columns: 1fr 40px;
  }
}
.accordion-header .icon {
  position: relative;
  width: 30px;
  height: 30px;
  top: 10px;
}
@media (max-width: 768px) {
  .accordion-header .icon {
    width: 20px;
    height: 20px;
  }
}
.accordion-header .icon::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: transform 0.3s ease;
}
.accordion-header .icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}

.accordion-body {
  color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}
.accordion-body .accordion-body__content {
  padding: 10px 0 40px 0;
  max-width: 600px;
  margin-left: auto;
}

.accordion-header.active .icon::before {
  transform: translateX(-50%) rotate(90deg);
}
.accordion-header.active .icon::after {
  transform: translateY(-50%) rotate(180deg);
}
.accordion-body__content-title {
  margin-bottom: 10px;
  font-weight: 600;
}

.facts {
  background: #fff;
  padding: 2.5rem 0 2rem 0;
  text-align: left;
}

.facts p {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: #3a6ed8;
  font-weight: 700;
}

.facts .highlight {
  color: #e6e600;
  background: #222;
  padding: 0 0.2em;
  border-radius: 3px;
}

.fact-icon {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}

.fact-icon img {
  width: 40px;
  margin-right: 1rem;
}

.fact-icon p {
  color: #222;
  font-size: 1rem;
  font-weight: 400;
}

.product {
  background: #f7fafd;
  padding: 2.5rem 0 2rem 0;
}

.product-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.product-info {
  flex: 1 1 300px;
}

.product-info h3 {
  color: #3a6ed8;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.product-image {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(58, 110, 216, 0.08);
}

.product-sec {
  background-color: #4F4F4F;
  color: #fff;
  padding: 90px 0 90px 0;
}
.product-sec .product-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.product-sec .product-sec__listing {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media only screen and (max-width: 1024px) {
  .product-sec .product-sec__listing {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .product-sec .product-sec__listing {
    grid-template-columns: 1fr;
  }
}
.product-sec .product-card .product-card__image {
  margin-bottom: 20px;
}
.product-sec .product-card .product-card__price {
  margin-bottom: 20px;
}
.product-sec .product-card .product-card__desc {
  margin-bottom: 20px;
}
.product-sec .product-card .btn {
  text-transform: capitalize;
  display: inline-block;
}

.schedule {
  background: #fff;
  padding: 2.5rem 0 2rem 0;
  text-align: center;
}

.schedule-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.schedule-form input {
  padding: 0.7rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  min-width: 180px;
}

.schedule-form button {
  background: #3a6ed8;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.7rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.schedule-form button:hover {
  background: #1b4fa0;
}

.image-beside-text {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  position: relative;
}
.image-beside-text .image-beside-text-content {
  padding: 100px 0 500px 0;
}
.image-beside-text .image-beside-text-content .image-beside-text-content__left {
  position: relative;
  z-index: 1;
  max-width: 40%;
}
@media (max-width: 768px) {
  .image-beside-text .image-beside-text-content .image-beside-text-content__left {
    max-width: 100%;
  }
}
@media (max-width: 1280px) {
  .image-beside-text .image-beside-text-content {
    padding: 50px 0 300px 0;
  }
}
@media (max-width: 768px) {
  .image-beside-text .image-beside-text-content {
    padding: 50px 0 50px 0;
  }
}
.image-beside-text .image-beside-text-content__heading {
  font-size: 40px;
  font-weight: 500;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}
.image-beside-text .image-beside-text-content__sub-heading {
  line-height: 1.2;
  margin-bottom: 0;
  color: #fff;
  margin-bottom: 15px;
}
.image-beside-text .image-beside-text-content p {
  font-weight: 400;
  margin-bottom: 0;
  color: #fff;
}
.image-beside-text .image-beside-text-content .btn {
  margin-top: 30px;
  display: inline-block;
}
.image-beside-text .image-beside-text-content__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
@media (max-width: 768px) {
  .image-beside-text .image-beside-text-content__image {
    width: 100%;
    position: static;
    margin-top: 30px;
  }
}
.image-beside-text .image-beside-text-content__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-form-section {
  background: #333;
  color: #fff;
  padding: 70px 0;
}
.contact-form-section .btn {
  margin-top: 20px;
}
.contact-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form-title {
  margin-bottom: 24px;
}
.contact-form-desc {
  margin-bottom: 18px;
}
.contact-form-row {
  display: flex;
  gap: 16px;
}
@media (max-width: 991px) {
  .contact-form-row {
    flex-direction: column;
  }
}
.contact-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.contact-form-group label {
  font-size: 16px;
  margin-bottom: 6px;
}
.contact-form-group input {
  padding: 12px;
  border: none;
  font-size: 18px;
}

@media (max-width: 768px) {
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-form-left, .contact-form-right {
    max-width: 100%;
    min-width: 0;
  }
}
/* Contact Page */
.contact-page {
  background: #222;
  color: #fff;
  padding: 100px 0;
}
.contact-page .contact-intro {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
  color: #cfcfcf;
}
.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 100px;
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
}
.contact-page form.contact-form .form-row {
  display: flex;
  gap: 16px;
}
@media (max-width: 991px) {
  .contact-page form.contact-form .form-row {
    flex-direction: column;
  }
}
.contact-page form.contact-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.contact-page form.contact-form .form-group label {
  margin-bottom: 8px;
  color: #e5e5e5;
}
.contact-page form.contact-form .form-group input,
.contact-page form.contact-form .form-group select,
.contact-page form.contact-form .form-group textarea {
  background: #222;
  border: 2px solid #ffffff;
  color: #fff;
  padding: 12px 14px;
  font-size: 16px;
}
.contact-page form.contact-form .form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-page form.contact-form .form-group .phone-field {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
}
.contact-page form.contact-form .form-group .phone-field .country-code {
  background: #1f2226;
  border: 1px solid #3b3f45;
  color: #fff;
  padding: 12px 10px;
}
.contact-page form.contact-form .contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.contact-page form.contact-form .contact-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  text-transform: capitalize;
  min-width: 120px;
  justify-content: center;
}
.contact-page form.contact-form .contact-actions .btn-secondary {
  background-color: #565656;
}
.contact-page form.contact-form .contact-actions .btn-secondary:hover {
  background-color: #fff;
  color: #565656;
}
.contact-page .contact-info {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
}
@media only screen and (max-width: 460px) {
  .contact-page .contact-info {
    grid-template-columns: 1fr;
  }
}
.contact-page .contact-info .info-title {
  margin-bottom: 12px;
  color: #3a6ed8;
}
.contact-page .contact-info address {
  font-style: normal;
  color: #d3d3d3;
  line-height: 1.7;
}
.contact-page .contact-info .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 10px;
}
.contact-page .contact-info .info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-page .contact-info .info-list a {
  color: #e7e7e7;
  text-decoration: none;
}
.contact-page .contact-info .social {
  display: grid;
  gap: 10px;
}
.contact-page .contact-info .social .social-icons {
  display: flex;
  gap: 10px;
}
.contact-page .contact-info .social a {
  color: #fff;
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
}
.contact-page .contact-info .social a:hover {
  color: #3a6ed8;
  background-color: #fff;
}
@media (max-width: 991px) {
  .contact-page .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-map {
  margin-top: 50px;
}
.contact-map h2 {
  color: #3a6ed8;
}
.contact-map iframe {
  width: 100%;
}

.location {
  background: #f7fafd;
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 991px) {
  .location {
    padding: 50px 0;
  }
}
.location .container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 1200px) {
  .location .container {
    grid-template-columns: 300px 1fr;
  }
}
@media (max-width: 991px) {
  .location .container {
    grid-template-columns: 1fr;
  }
}
.location .container .location-content h2 {
  color: #3b5ebf;
  font-size: 3.75rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Anton", sans-serif;
}
.location .container .location-content p {
  font-size: 16px;
  margin-bottom: 1rem;
}
.location .container .location-map {
  height: 400px;
}
@media (max-width: 1340px) {
  .location .container .location-map {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .location .container .location-map {
    height: 200px;
  }
}
.location .container .location-map iframe {
  width: 100%;
  height: 100%;
}

.search-page {
  padding: 100px 0 60px 0;
}
.search-page .search-form-section {
  margin-bottom: 40px;
  margin-top: 100px;
}
.search-page .search-form-section h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: bold;
}
.search-page .search-form-section .search-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #ccc;
}
.search-page .search-form-section .search-form input[type=text] {
  flex-grow: 1;
  border: none;
  padding: 15px;
  font-size: 1rem;
  outline: none;
}
.search-page .search-form-section .search-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 20px;
  cursor: pointer;
}
.search-page .search-form-section .search-form button i {
  font-size: 1.2rem;
  color: #000;
}
.search-page .search-results-section h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.search-page .search-results-section .search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.search-page .search-results-section .search-results-grid .result-item {
  border: 1px solid #eee;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.search-page .search-results-section .search-results-grid .result-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.search-page .search-results-section .search-results-grid .result-item p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.search-page .search-results-section .search-results-grid .result-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

section.search-form-section {
  margin-top: 180px;
}

.search-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.search-results-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  font-family: "Segoe UI", Roboto, sans-serif;
}

.search-results-section h6 {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

#searchResults {
  list-style: none;
  padding: 0;
  margin: 0;
}

#searchResults li {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

#searchResults li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

#searchResults .page-content a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

#searchResults .page-content a:hover {
  color: #0077cc;
}

#searchResults .pare-description {
  font-size: 0.95rem;
  color: #444;
  margin-top: 0.5rem;
  line-height: 1.6;
}

#searchResults hr {
  display: none; /* hidden since cards are styled */
}

.store-listing {
  background-color: #4f4f4f;
  padding: 80px 0;
}
.store-listing .store-listing__warpper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
@media only screen and (max-width: 1024px) {
  .store-listing .store-listing__warpper {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .store-listing .store-listing__warpper {
    grid-template-columns: 1fr;
  }
}
.store-listing .store-listing__col {
  display: block;
  text-decoration: none;
}
.store-listing .store-listing__img {
  margin-bottom: 20px;
}
.store-listing .store-listing__img img {
  width: 100%;
}
.store-listing .store-listing__content {
  text-align: center;
}
.store-listing .store-listing__content h3 {
  font-size: 30px;
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .store-listing .store-listing__content h3 {
    font-size: 20px;
  }
}
.store-listing .store-listing__content p {
  color: #fff;
  font-size: 20px;
}
@media only screen and (max-width: 1024px) {
  .store-listing .store-listing__content p {
    font-size: 16px;
  }
}

.newsletter .container {
  display: flex;
  padding: 100px 0;
  gap: 100px;
  border-bottom: solid 1px #3b5ebf;
}
@media (max-width: 991px) {
  .newsletter .container {
    gap: 50px;
    flex-direction: column;
    padding: 50px 0;
  }
}

.newsletter-content {
  max-width: 50%;
}

.newsletter-title {
  color: #3b5ebf;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.newsletter-description {
  color: #000;
}

.newsletter-form {
  display: flex;
  align-items: center;
  width: 40%;
  min-width: 350px;
  gap: 16px;
}
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    align-items: flex-start;
  }
}

.newsletter-input {
  flex: 1;
  padding: 16px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 2px;
  outline: none;
}
@media (max-width: 768px) {
  .newsletter-input {
    width: 100%;
  }
}

.newsletter-button {
  background: #3b5ebf;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 36px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-button:hover {
  background: #27408b;
}

@media (max-width: 900px) {
  .newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .newsletter-content, .newsletter-form {
    max-width: 100%;
    width: 100%;
  }
  .newsletter-form {
    min-width: 0;
  }
}
.full-width-block {
  background-color: #D5E1EF;
  padding: 100px 0;
}
.full-width-block .full-width-block__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.full-width-block .full-width-block__content h2 {
  color: #2f62c1;
  margin-bottom: 40px;
}
.full-width-block .full-width-block__content p {
  font-size: 1.875rem;
  color: #2f62c1;
  font-weight: 500;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.512px;
}
@media (max-width: 768px) {
  .full-width-block .full-width-block__content p {
    font-size: 20px;
  }
}

.full-width-listblock {
  padding: 90px 0;
}
.full-width-listblock h2 {
  font-size: 3.75rem;
  color: #2f62c1;
  text-align: center;
  margin-bottom: 40px;
}
.full-width-listblock ul {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 30px;
}

.footer {
  padding: 50px 0 90px 0;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}
.footer-container .footer-section a {
  display: block;
  text-decoration: none;
  color: #3b5ebf;
}
.footer-container .footer-section a:hover {
  color: #000;
}
.footer-container .footer-section h2 {
  color: #3b5ebf;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Anton", sans-serif;
}
@media (max-width: 768px) {
  .footer-container .footer-section h2 {
    margin-bottom: 10px;
  }
}
.footer-container .footer-section p {
  font-size: 16px;
}

.blog-listing {
  background-color: #323232;
  padding: 120px 0;
}
.blog-listing .blogs-listing__title {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
}
.blog-listing .blogs-listing__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1200px) {
  .blog-listing .blogs-listing__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .blog-listing .blogs-listing__wrapper {
    grid-template-columns: 1fr;
  }
}
.blog-listing .blogs-listing__wrapper .blog {
  background-color: #fff;
}
.blog-listing .blogs-listing__wrapper .blog .image-wrapper img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .blog-listing .blogs-listing__wrapper .blog .image-wrapper img {
    height: 180px;
  }
}
.blog-listing .blogs-listing__wrapper .blog .link-wrappper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-listing .blogs-listing__wrapper .blog .link-wrappper .share-link {
  line-height: 1;
}
.blog-listing .blogs-listing__wrapper .blog .link-wrappper .btn {
  background-color: #3a6ed8;
  color: #fff;
  text-transform: capitalize;
}
.blog-listing .blogs-listing__wrapper .blog .link-wrappper .btn:hover {
  background-color: #fff;
  color: #3a6ed8;
}
.blog-listing .blogs-listing__wrapper .blog .link-wrappper .fa-solid {
  font-size: 30px;
  color: #b8b8b8;
}
.blog-listing .blogs-listing__wrapper .blog .link-wrappper .fa-solid:hover {
  color: #3a6ed8;
}
.blog-listing .blogs-listing__wrapper .blog .blog-content {
  padding: 20px;
}
.blog-listing .blogs-listing__wrapper .blog .blog-content h3 {
  color: #3a6ed8;
  font-family: "Anton", sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}
.blog-listing .blogs-listing__wrapper .blog .blog-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}
.blog-listing .blogs-listing__wrapper .blog .blog-content .btn {
  font-size: 14px;
  padding: 10px 20px;
}
.blog-listing .load-more {
  text-align: center;
  margin-top: 60px;
}

.blog-details {
  background-color: #323232;
  padding: 70px 0 100px 0;
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .blog-details {
    margin-top: 55px;
  }
}
.blog-details .blog-details__breadcrumbs {
  margin-bottom: 30px;
}
.blog-details .blog-details__breadcrumbs a {
  color: #fff;
  font-size: 14px;
}
.blog-details .blog-details__breadcrumbs a:hover {
  color: #3b5ebf;
}
.blog-details .blog-details__breadcrumbs .separator {
  margin: 0 5px;
}
.blog-details .blog-details__breadcrumbs span {
  color: #fff;
  font-size: 14px;
}
.blog-details .blog-details__wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.blog-details .blog-details__content {
  margin-top: 60px;
}
.blog-details .blog-details__content h1 {
  color: #3b5ebf;
  font-family: "Anton", sans-serif;
  font-weight: 500;
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .blog-details .blog-details__content h1 {
    font-size: 40px;
  }
}
.blog-details .blog-details__content p {
  margin-bottom: 20px;
  color: #fff;
}
.blog-details .blog-details__content ul {
  padding-left: 25px;
  color: #fff;
}

.faq-accordion {
  background-color: #4F4F4F;
  padding: 100px 0;
}
.faq-accordion .faq-accordion__heading {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}
.faq-accordion .faq-accordion__heading p {
  color: #fff;
}
.faq-accordion .accordion-item .accordion-header h2 {
  font-size: 35px;
}
.faq-accordion .accordion-item .accordion-body {
  padding: 0;
}
.faq-accordion .accordion-item .accordion-body .accordion-body__content {
  max-width: 100%;
}

.video-popup {
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  height: 100vh;
  z-index: 9999;
}
.video-popup .mute-button {
  position: absolute;
  right: 170px;
  bottom: 50px;
  color: #fff;
  font-size: 30px;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .video-popup .mute-button {
    right: 125px;
    bottom: 120px;
    font-size: 25px;
  }
}
.video-popup .mute-button .fa-volume-high {
  display: none;
}
.video-popup .mute-button.unmuted .fa-volume-high {
  display: block;
}
.video-popup .mute-button.unmuted .fa-volume-xmark {
  display: none;
}
.video-popup .video-container-popup {
  height: 100%;
}
.video-popup video {
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .video-popup video {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.video-popup .plyr {
  height: 100%;
}

.skip-button {
  position: absolute;
  bottom: 50px;
  right: 50px;
}
.skip-button .btn {
  padding: 13px 30px 11px 30px;
}
@media only screen and (max-width: 768px) {
  .skip-button {
    bottom: 120px;
    right: 25px;
  }
  .skip-button .btn {
    padding: 10px 20px 8px 21px;
  }
}

.how-it-works-tabs {
  background: #D0D0D0;
  padding: 60px 24px;
}
.how-it-works-tabs .tabs-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 2px;
}
@media only screen and (max-width: 991px) {
  .how-it-works-tabs .tabs-nav {
    display: none;
  }
}
.how-it-works-tabs .tabs-nav .tab-btn {
  background: #fff;
  border: 1px solid #000000;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #3a6ed8;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-weight: 400;
  position: relative;
  min-width: 215px;
  display: grid;
  align-items: center;
}
@media only screen and (max-width: 1500px) {
  .how-it-works-tabs .tabs-nav .tab-btn {
    min-width: 0;
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .how-it-works-tabs .tabs-nav .tab-btn {
    width: 100%;
  }
}
.how-it-works-tabs .tabs-nav .tab-btn:after {
  border-color: rgba(136, 183, 213, 0);
  border: solid transparent;
  border-top-color: #03B5FF;
  border-width: 8px;
  margin-left: -8px;
  top: 4px;
  left: 50%;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  z-index: 1;
  display: none;
}
.how-it-works-tabs .tabs-nav .tab-btn h5 {
  color: #000;
  font-size: 20px;
  font-family: "Anton", sans-serif;
  font-weight: 500;
}
.how-it-works-tabs .tabs-nav .tab-btn.active {
  background: #3a6ed8;
  color: #fff;
  border-color: #3a6ed8;
  box-shadow: inset 0px 4px 0px #03B5FF;
}
.how-it-works-tabs .tabs-nav .tab-btn.active:after {
  display: block;
}
.how-it-works-tabs .tabs-nav .tab-btn.active h5 {
  color: #fff;
}
.how-it-works-tabs .tabs-content .mobile-button {
  display: grid;
  grid-template-columns: 1fr 18px;
  padding: 20px 20px;
  border: solid 1px #000;
  align-items: start;
}
.how-it-works-tabs .tabs-content .mobile-button h5 {
  font-size: 18px;
}
@media only screen and (min-width: 992px) {
  .how-it-works-tabs .tabs-content .mobile-button {
    display: none;
  }
}
.how-it-works-tabs .tabs-content .mobile-button .fa-solid {
  position: relative;
  top: 2px;
  transition: 0.3s ease;
}
.how-it-works-tabs .tabs-content .mobile-button.active .fa-solid {
  transform: rotate(180deg);
}
.how-it-works-tabs .tabs-content .tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 100px;
}
@media only screen and (max-width: 1024px) {
  .how-it-works-tabs .tabs-content .tab-content-grid {
    grid-template-columns: 1fr;
    padding: 15px 50px 0 50px;
  }
}
.how-it-works-tabs .tabs-content .text-section h2 {
  font-size: 6.25rem;
  -webkit-text-stroke: 1.5px #000;
  color: transparent;
}
@media only screen and (max-width: 768px) {
  .how-it-works-tabs .tabs-content .text-section h2 {
    font-size: 40px;
  }
}
.how-it-works-tabs .tabs-content .text-section h3 {
  font-size: 2.5rem;
  font-family: "Anton", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .how-it-works-tabs .tabs-content .text-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.how-it-works-tabs .tabs-content .text-section ul {
  list-style: none;
  margin: 10px 0;
}
.how-it-works-tabs .tabs-content .text-section ul li {
  position: relative;
  padding-left: 20px;
}
.how-it-works-tabs .tabs-content .text-section ul li::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}
.how-it-works-tabs .tabs-content .image-section .image-wrapper {
  position: relative;
  right: -100px;
  opacity: 0;
  transition: 1s ease;
  transition-delay: 0.2s;
}
.how-it-works-tabs .tabs-content .image-section img {
  width: 100%;
}
.how-it-works-tabs .tabs-content .tab-panel {
  display: none;
}
@media only screen and (max-width: 991px) {
  .how-it-works-tabs .tabs-content .tab-panel {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .how-it-works-tabs .tabs-content .tab-panel {
    margin: 0 -40px;
  }
}
.how-it-works-tabs .tabs-content .tab-panel.active {
  display: block;
}
.how-it-works-tabs .step-content {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.how-it-works-tabs .step-content h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.how-it-works-tabs .step-content ul {
  margin: 12px 0 12px 20px;
}
.how-it-works-tabs .howitworks-swiper {
  margin-top: 50px;
  padding-bottom: 40px;
}
.how-it-works-tabs .howitworks-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-it-works-tabs .howitworks-swiper .swiper-button-prev .fa-solid,
.how-it-works-tabs .howitworks-swiper .swiper-button-next .fa-solid {
  color: #000;
  font-size: 70px;
}
@media only screen and (max-width: 768px) {
  .how-it-works-tabs .howitworks-swiper .swiper-button-prev .fa-solid,
  .how-it-works-tabs .howitworks-swiper .swiper-button-next .fa-solid {
    font-size: 50px;
  }
}
.how-it-works-tabs .howitworks-swiper .swiper-button-prev::after,
.how-it-works-tabs .howitworks-swiper .swiper-button-next::after {
  display: none;
}
.how-it-works-tabs .howitworks-swiper .swiper-pagination-bullet {
  width: 50px;
  height: 8px;
  background-color: #fff;
  border-radius: 10px;
}
.how-it-works-tabs .howitworks-swiper .swiper-pagination-bullet-active {
  background: #000;
}
.how-it-works-tabs .howitworks-swiper .swiper-pagination {
  top: auto;
  bottom: 0;
}

.heading {
  text-align: center;
}
.heading::after {
  content: "";
  display: block;
  width: 70px;
  height: 10px;
  background-color: #000;
  margin: 10px auto 0;
}
.heading h1 {
  font-size: 3.75rem;
  font-family: "Anton", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .heading h1 {
    font-size: 40px;
  }
}
.heading p {
  font-size: 20px;
}

.tab-panel.active .swiper-slide-active .active-animation .image-section .image-wrapper {
  opacity: 1;
  right: 0;
}

@media only screen and (max-width: 991px) {
  .tab-panner__body {
    display: none;
  }
  .tab-panner__body.active {
    display: block;
  }
}

.hero + section.product-detail.home-systems {
  margin-top: 0 !important;
}

.full-width-media .full-width-media__wrapper .full-width-media__video {
  height: 100vh;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .full-width-media .full-width-media__wrapper .full-width-media__video {
    height: 300px;
  }
}
.full-width-media .full-width-media__wrapper .full-width-media__video video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.image-with-content {
  background-color: #323232;
  overflow: hidden;
}
.image-with-content .image-with-content__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .image-with-content .image-with-content__wrapper {
    grid-template-columns: 1fr;
  }
}
.image-with-content .content {
  display: grid;
  align-content: center;
  padding: 30px 50px 30px 0;
  max-width: 700px;
}
.image-with-content .content h2 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.image-with-content .content p {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .image-with-content .img {
    margin: 0 -6% !important;
  }
}
.image-with-content .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.product-detail {
  background: #2d2d2d;
  color: #fff;
  padding: 100px 0;
  margin-top: 100px;
}
@media only screen and (max-width: 1200px) {
  .product-detail {
    margin-top: 61px;
  }
}
@media only screen and (max-width: 768px) {
  .product-detail {
    margin-top: 57px;
  }
}
.product-detail__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 48px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .product-detail__container {
    margin-top: 30px;
    display: flex;
    flex-direction: column-reverse;
  }
}
.product-detail .btn {
  text-transform: capitalize;
}
.product-detail .breadcrumb {
  color: #bfc6d1;
  font-size: 16px;
  margin-bottom: 12px;
}
.product-detail .breadcrumb a {
  color: #bfc6d1;
  text-decoration: none;
}
.product-detail .breadcrumb a:hover {
  text-decoration: underline;
}
.product-detail .breadcrumb span {
  color: #fff;
}
.product-detail__title {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.1;
  font-family: "Anton", sans-serif;
  font-weight: 500;
}
.product-detail__price {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Anton", sans-serif;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.product-detail__desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e3e3e3;
  margin-bottom: 20px;
}
.product-detail__quantity {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .product-detail__quantity {
    margin-bottom: 30px;
  }
}
.product-detail__quantity label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;
}
.product-detail__quantity .quantity-selector {
  display: flex;
  align-items: center;
  background: none;
  border: 1px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}
.product-detail__quantity .quantity-selector input {
  width: 48px;
  text-align: center;
  font-size: 16px;
  background: transparent;
  color: #fff;
  border: none;
  outline: none;
}
.product-detail__quantity .quantity-selector input::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
.product-detail__quantity .quantity-selector .quantity-btn {
  background: none;
  color: #fff;
  border: none;
  font-size: 16px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background 0.2s;
}
.product-detail__quantity .quantity-selector .quantity-btn:hover {
  background: #222;
}
.product-detail__image {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
@media (max-width: 768px) {
  .product-detail {
    padding: 24px 0;
  }
  .product-detail__title {
    font-size: 40px;
  }
  .product-detail__price {
    font-size: 30px;
  }
  .product-detail__desc {
    font-size: 16px;
  }
  .product-detail__image {
    max-height: 260px;
  }
}

.home-systems .home-product-subtitle {
  font-size: 30px;
  color: #00ff8a;
  margin-bottom: 15px;
  margin-top: 5px;
}
.home-systems .accordion {
  margin-bottom: 30px;
}
.home-systems .accordion .accordion-header {
  grid-template-columns: 1fr 20px;
}
.home-systems .accordion .accordion-header h6 {
  font-size: 25px;
  font-weight: 500;
}
.home-systems .accordion .accordion-header .icon {
  width: 20px;
  height: 20px;
}
.home-systems .accordion .accordion-body {
  padding: 0;
}
.home-systems .accordion .accordion-body__content {
  max-width: 100%;
}
.home-systems .product-detail__quantity {
  margin-top: 30px;
}
.home-systems .product-detail__quantity h4 {
  font-size: 25px;
  font-weight: 400;
}
.home-systems .product-detail__quantity h5 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
/*# sourceMappingURL=main.css.map */




