@font-face {
  font-family: "SF UI Display";
  src: url("../fonts/sfuidisplay_regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF UI Display";
  src: url("../fonts/sfuidisplay_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
a {
  text-decoration: none;
}
* {
  font-family:
    "SF UI Display",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif !important;
}
:root {
  --grey: #999999;
  --black: #111111;
  --blue: #3d98df;
  --light: #ebebeb;
  --header-height: 96px;
  --white: #ffffff;
  --br: 26px;
}
.section-top {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 30px;
}
.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
section {
  margin-bottom: 80px;
}
.container {
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}
body {
  background-color: #131217;
}
#menu_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.501);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 998;
}
#open_menu {
  display: none;
}
#menu_overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile__menu.is-open {
  transform: translateX(0);
}

#close_menu {
  align-self: flex-end;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

#close_menu:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.mobile__menu .nav-dropdown {
  position: relative;
}

.mobile__menu .dropdown-menu-premium {
  max-height: 0;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  gap: 12px;

  padding: 0;
  margin: 0;

  opacity: 0;
  transform: translateY(-6px);

  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    transform 0.25s ease,
    padding 0.25s ease;

  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.mobile__menu .nav-dropdown.active .dropdown-menu-premium {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);

  padding: 12px 0 0;
}

.mobile__menu .nav-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
}

.mobile__menu .nav-dropdown svg {
  width: 13px;
  height: 13px;
  transition: transform 0.25s ease;
}

.mobile__menu .nav-dropdown.active svg {
  transform: rotate(180deg);
}

.wrapper {
  height: 100vh;
  background: #333;
}

#main-div {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 0;
}
#main-button .icon-close {
  display: none;
}
#main-button.open .icon-mail {
  display: none;
}
#main-button.open .icon-close {
  display: block;
}

#main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  bottom: 10px;
  height: 60px;
  width: 60px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(---light-yellow);
  border-radius: 50%;
  transition: all 0.3s ease;
}

#main-button:hover {
  background-color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transform: scale(1.08);
}

#main-button ~ .onlineregistration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  visibility: hidden;
  font-weight: bold;
  text-decoration: none;
  height: 50px;
  padding: 0 25px;
  color: #fff;
  border: 1px solid var(--blue);
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: -1;
  right: 10px !important;
  bottom: 10px !important;
  opacity: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
  font-size: 14px;
}

#main-button.open ~ .onlineregistration {
  visibility: visible;
  right: 80px !important;
  opacity: 1;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button.open ~ .onlineregistration:hover {
  background-color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transform: translateX(-4px);
  color: var(--blue);
}

#main-button ~ .wrappericon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: -1;
  height: 55px;
  width: 55px;
  opacity: 0;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}
#main-button ~ .wrappericon img {
  height: 55px;
  width: 55px;
}

#main-button.open ~ .wrappericon {
  opacity: 1;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button.open ~ .wrappericon:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transform: scale(1.12);
}

#main-button.open ~ #wrapperviber {
  bottom: 80px;
  background: #665cac;
}

#main-button.open ~ #wrappertg {
  bottom: 150px;
  background: linear-gradient(0deg, #017ab1, #01abe6) !important;
}

#main-button.open ~ #wrappervk {
  bottom: 220px;
  background: #4169e1;
}

#main-button.open ~ #wrappermail {
  bottom: 290px;
  background: #2196f3;
}
.wave {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.wrapper {
  display: block;
  position: absolute;
  z-index: 200;
}

@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 #3d99df5a;
  }

  100% {
    box-shadow: 0 0 0 15px #3d99df1b;
  }
}

.open {
  animation-iteration-count: 1;
}
/* BURGER BUTTON */
#open_menu {
  display: none;
  cursor: pointer;
}

.btn-open-modal {
  padding: 12px 26px;
  border: 1px solid #333;
  background: transparent;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.btn-open-modal:hover {
  background: #333;
  color: #fff;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999999;
}
.modal-form button {
  border: 1px solid #333;
  background-color: #333;
  color: #fff;
  width: 100%;
  border-radius: 0 !important;
}
.custom-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 100%;
  max-width: 520px;
  padding: 40px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999999;
}

.custom-modal.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Text */
.modal-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.modal-text {
  font-size: 15px;
  line-height: 1.6;
  color: #5e5e5e;
  margin-bottom: 28px;
}

/* Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group label {
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

textarea {
  resize: none;
}

/* Action */
.modal-action {
  margin-top: 10px;
  padding: 14px;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
}
.modal-action:hover {
  background-color: #fff;
  border-color: var(--blue);
  color: var(--blue);
}

/* Close */
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.modal-close:hover {
  color: var(--blue);
}
header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}
header.scrolled {
  box-shadow: 10px -6px 15px black;
}
.header-top {
  background: #1c1c1c;
  color: #fff;
  font-size: 13px;
}

.header-top dic {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top dic > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-top a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  opacity: 0.85;
  transition: 0.2s;
}

.header-top a:hover {
  opacity: 1;
}

.header-top svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

.header-top span {
  margin-left: 18px;
  cursor: pointer;
  opacity: 0.85;
  transition: 0.2s;
}

.header-top span:hover {
  opacity: 1;
}

/* ================= HEADER MAIN ================= */

.header-main {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.header-main .container {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* logos */
.header-imgs {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  min-width: 220px;
}

.header-imgs img {
  height: 32px;
  object-fit: contain;
}
.header-imgs img:first-child {
  height: 40px;
}
/* menu */
.header-main nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.mobile__menu nav {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.header-main ul,
.mobile__menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
}
.mobile__menu ul {
  flex-direction: column;
  align-items: flex-start;
  justify-content: inherit !important;
  gap: 20px;
}
.mobile__menu li a {
  text-transform: uppercase;
  font-weight: bold !important;
  padding: 0 !important;
  font-size: 16px !important;
}
.header-main li a,
.mobile__menu li a {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  position: relative;
  padding: 8px 20px;
  transition: color 0.25s ease;
}

.header-main li a::after,
.mobile__menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transform: translateX(-50%);
}

.header-main li a:hover,
.mobile__menu li a:hover {
  color: var(--blue);
}

.header-main li a:hover::after,
.mobile__menu li a:hover::after {
  width: 100%;
  box-shadow: 0 0 6px rgba(0, 113, 227, 0.45);
}

.header-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: all 0.25s ease;
}

.header-socials svg {
  width: 18px;
  height: 18px;
  transition: fill 0.25s ease;
}

.header-socials a:hover {
  transform: scale(1.08);
  border-bottom-color: var(--blue);
}
.mobile__menu .header-socials a {
  transform: scale(1.08);
  border-bottom-color: var(--blue);
  justify-content: center;
}
.header-main .nav-dropdown {
  position: relative;
}
.header-main .dropdown-menu-premium {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  background: #fff;
  border-radius: 28px;
  padding: 48px 60px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 1000;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.header-main .nav-dropdown:hover .dropdown-menu-premium,
.dropdown-menu-premium:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu-premium::before {
  content: "";
  position: absolute;
  top: -15px; /* top boşluğu qədər */
  left: 0;
  width: 100%;
  height: 15px;
}
/* dropdown items */
.dropdown-item {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  text-align: left;
  padding-left: 18px;
  position: relative;
  transition: color 0.25s ease;
}

/* left accent line */
.dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--blue);
  border-radius: 2px;
  transition: height 0.25s ease;
}

.dropdown-item:hover {
  color: var(--blue);
}

.dropdown-item:hover::before {
  height: 18px;
}
.apple-hero {
  background: var(--white);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 118px;
}

.appleHeroSwiper {
  width: 100%;
}

.appleHeroSwiper .swiper-wrapper {
  align-items: center;
}

.appleHeroSwiper .swiper-slide {
  display: flex;
  align-items: center;
}

.apple-hero__inner {
  width: 100%;
  max-width: 1320px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 80px;
  min-height: calc(100vh - var(--header-height));
}

.apple-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.apple-hero__label {
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}

.apple-hero__content h1 p {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
}

.apple-hero__content>p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--grey);
  max-width: 420px;
  margin-bottom: 32px;
}

.apple-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 34px;
  border-radius: 999px;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
  width: 250px;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: inherit !important;
}
.apple-btn:hover {
  background: var(--black);
  color: var(--white);
}

.apple-hero__image {
  width: 520px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.apple-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.appleHeroSwiper .swiper-pagination {
  bottom: 30px;
}

.appleHeroSwiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--black);
  opacity: 0.2;
}

.appleHeroSwiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.apple-hero__controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 20;

  display: inline-flex;
  align-items: center;
  gap: 16px;

  padding: 10px 16px;
  border-radius: 999px;

  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.12);
}

.apple-hero__nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);

  cursor: pointer;
  transition: 0.28s ease;

  color: #ffffff;
}

.apple-hero__nav svg {
  width: 18px;
  height: 18px;
}

.apple-hero__nav:hover {
  transform: scale(1.08);
  border-bottom-color: var(--blue);
}

.apple-hero__nav:active {
  transform: scale(0.98);
}

.apple-hero__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.apple-hero__pagination {
  position: static !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
}

.apple-hero__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.35);
  opacity: 1;

  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.apple-hero__pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.7);
}

.apple-hero__pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: #ffffff;
}

#categories {
  background-color: #131217;
  padding: 80px 0;
  margin-bottom: 0;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  background: var(--light);
  border-radius: 26px;
  overflow: hidden;
  min-height: 360px;

  border: 1px solid rgba(0, 0, 0, 0.08);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card__label {
  position: absolute;
  top: 20px;
  left: 20px;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 10px 18px;
  border-radius: 12px;

  background: #dddddd;
  color: var(--black);

  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.2px;

  backdrop-filter: blur(6px);
  z-index: 3;
}

.category-card__label svg {
  width: 18px;
  height: 18px;
}

.category-card__image {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 40px;
}

.category-card__image img {
  width: 100%;
  height: 220px;
  object-fit: contain;

  filter: grayscale(1);
  transform: translateY(0) scale(1);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

.category-card__glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;

  background: radial-gradient(
    80% 60% at 50% 100%,
    rgba(0, 113, 227, 0.35),
    transparent 70%
  );

  opacity: 0;
  transform: translateY(14px);
  transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.category-card:hover .category-card__image img {
  filter: grayscale(0);
  transform: translateY(-20px) scale(1.05);
}

.category-card:hover .category-card__glow {
  opacity: 1;
  transform: translateY(0);
}

.category-card__plus {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  z-index: 3;
  transition: all 0.6s ease;
}

.category-card__plus::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 11px solid var(--blue);
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.6s ease;
}

.category-card:hover .category-card__plus::after {
  opacity: 1;
  transform: scale(1);
}

#about {
  background: #fff;
  padding: 60px 0 20px 0;
  color: #ffffff;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  margin-bottom: 0;
}

.about-top__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.about-top__title {
  font-size: 72px;
  font-weight: 500;
  margin-bottom: 24px;
  color: black;
}

.about-top__left p {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300 !important;
  color: #00000080;
}

.about-top__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s ease;
  width: 200px;
}

.about-top__btn:hover {
  opacity: 0.9;
}

.about-top__divider {
  margin: 30px 0;
  height: 1px;
  background: var(--grey);
}

.about-top__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-top__label {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}

.about-top__block p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  text-align: justify;
  color: #00000080;
}

.about-bottom {
  background-color: #fff;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  padding-bottom: 60px;
}

.about-bottom__grid {
  display: grid;
  grid-template-columns: 320px 1fr 520px;
  gap: 32px;
  align-items: start;
}

.about-bottom__sticky {
  position: sticky;
  top: 140px;
}

.about-sticky__card {
  background: linear-gradient(210deg, rgb(0 0 0) 0%, #0071e3c9 100%);
  border-radius: 26px;
  padding: 23px;
  color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.about-sticky__text {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 36px;
  color: rgba(256, 256, 256, 0.7);
}

/* BUTTON */
.about-sticky__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 20px;
  border-radius: 999px;

  background: rgb(255 255 255 / 5%);
  border: 1px solid rgba(255, 255, 255, 0.18);

  color: #ffffff;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 16px;
  transition: all 0.35s ease;
}

/* ICON HOLDER */
.about-sticky__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-sticky__icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

/* HOVER — PREMIUM & SOFT */
.about-sticky__btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
}

/* LAST BUTTON SPACING FIX */
.about-sticky__btn:last-child {
  margin-bottom: 0;
}

.about-bottom__center {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-info__icon {
  background-color: #191919;
  width: fit-content;
  padding: 10px;
  border-radius: 50%;
}

.about-info__card {
  background: #0d0d0d;
  border-radius: 26px;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 80px;
  border: 1px solid #fff1;
}

.about-info__card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.about-info__card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.about-bottom__media {
  position: relative;
}

.about-media__wrap {
  position: relative;
  height: 560px;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
}

/* BACKGROUND IMAGE */
.about-media__wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: none !important;
  animation: none !important;
}

/* DARK OVERLAY */
.about-media__wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.256);
  z-index: 2;
}

.about-media__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 122px;

  overflow: hidden;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  padding: 25px 0;
  z-index: 3;
}

.about-media__ticker-inner {
  display: flex;
  align-items: center;
  gap: 40px;

  white-space: nowrap;

  font-size: 15px;
  letter-spacing: 0.14em;
  color: #ffffff;

  animation: tickerMove 18s linear infinite;
}

.about-media__ticker-inner span {
  opacity: 0.9;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.about-media__form {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  align-items: flex-start;
  gap: 16px;

  padding: 16px;
  background: #0d0d0d;
  z-index: 3;
}

/* INPUT (SOL) */
.about-media__form > input {
  width: 39%;
  background: #1a1a1a;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 20px;
  padding: 20px;
  border-radius: 999px;
}

/* RIGHT COLUMN (BUTTON + CHECKBOX) */
.about-media__form > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 60%;
}

/* AGREEMENT */
.about-media__agree {
  position: static;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
}

.about-media__agree input {
  margin-top: 2px;
  accent-color: var(--blue);
}

.blog__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.blog-featured {
  position: relative;
  overflow: hidden;
  border-radius: var(--br);
  min-height: 520px;
  background: #000;
}

.blog-featured__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
}

.blog-featured:hover .blog-featured__image img {
  transform: scale(1.08);
}

.blog-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.45) 65%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

.blog-featured__content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  max-width: 720px;
}

.blog-featured__meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  font-weight: 500;
  transition: 0.4s ease;
}

.blog-featured__meta:hover {
  color: var(--blue);
}

.blog-featured__title p {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  display: inline;
  background-image: linear-gradient(#ffffff, #ffffff);
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.6s ease;
}

.blog-featured:hover .blog-featured__title p {
  background-size: 100% 2px;
}

.blog-featured__date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.blog-sidebar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.blog-card {
  overflow: hidden;
}

.blog-card__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--br);
}

.blog-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.08);
}

.blog-card__content {
  padding: 14px 4px 0;
}

.blog-card__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  font-weight: 500;
}

.blog-card__title {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  color: #fff;
  display: inline;
  background-image: linear-gradient(#ffffff, #ffffff);
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
}

.blog-card:hover .blog-card__title {
  background-size: 100% 1.5px;
}

.onfooter {
  padding: 80px 0;
  margin-bottom: 0;
  background-color: #fff;
}

.onfooter__box {
  position: relative;
  min-height: 420px;
  border-radius: var(--br);
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.onfooter__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* overlay */
.onfooter__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 73%);
  z-index: 1;
}

/* content positioning */
.onfooter__content {
  position: relative;
  z-index: 2;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 560px;
  padding: 32px;
  margin: 0 0 32px 32px;

  border-radius: var(--br);
}

/* title */
.onfooter__title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

/* subtitle */
.onfooter__subtitle {
  font-size: 15px;
  color: #fff;
  margin-bottom: 28px;
  max-width: 460px;
}

.onfooter__subtitle a {
  display: inline-block;
  margin-top: 6px;
  color: #fff;
  border-bottom: 1px solid #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
}

/* actions */
.onfooter__actions {
  display: flex;
  gap: 16px;
}

/* button base */
.onfooter__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;
  border-radius: var(--br);

  font-size: 15px;
  font-weight: 500;

  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);

  transition: all 0.3s ease;
}

.onfooter__btn:first-child {
  color: #fff;
  border-color: #6e5ce9;
  background-color: #6e5ce9;
}

.onfooter__btn:first-child:hover {
  background-color: transparent;
  color: #6e5ce9;
}

.onfooter__btn:last-child:hover {
  background-color: transparent;
  color: #26a5e4;
}

.onfooter__btn:last-child {
  color: #fff;
  border-color: #26a5e4;
  background-color: #26a5e4;
}

/* hover */
.onfooter__btn:hover {
  background: #fff;
  color: #333;
}

.breadcrumb {
  padding-top: 140px;
  margin-bottom: 30px;
}

.breadcrumb .container {
  display: flex;
  padding-top: 10px;
  gap: 20px;
  color: var(--grey);
  font-size: 14px;
}

.prev-page {
  color: #fff;
}

.map {
  height: 400px;
}

#map {
  height: 400px;
}

.contact-map {
  margin-bottom: 0;
  padding-bottom: 60px;
}

.contact-map-content {
  display: grid;
  grid-template-columns: 70% 1fr;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-map .map {
  width: 100%;
  height: 420px;
  border-radius: var(--br);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

#map {
  width: 100%;
  height: 100%;
}

.contact-info {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info .col h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info .col p {
  font-size: 14px;
  color: #555;
}

.contact-info .col {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-info .col span {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #888;
}

.contact-info .col a {
  display: inline;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  transition: 0.4s ease;
}

.contact-info .col a:hover {
  text-decoration: underline;
}

.contact-map .container > p {
  max-width: 900px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(256, 256, 256, 0.7);
}

.about-hero {
  background-color: #fff;
}

.about-hero h2 {
  color: var(--black);
  margin-top: 20px;
}

.about-hero-content {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.about-hero-content h4 {
  font-size: 25px;
  font-weight: 700;
}

.about-hero-content span {
  color: var(--blue);
}

.about-hero-content a {
  font-weight: 600;
  border-bottom: 1px solid var(--grey);
}

.about-hero-content img {
  width: 100%;
  max-width: 800px;
  object-fit: contain;
}

.about-whyus .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.about-whyus .card-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card-box .card {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  gap: 10px;
  background-color: var(--light);
  padding: 30px;
  border-radius: var(--br);
  position: relative;
}

.card-box .card .category-card__glow,
.step .category-card__glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 65%;

  background: radial-gradient(
    80% 60% at 50% 100%,
    rgba(0, 113, 227, 0.35),
    transparent 70%
  );

  opacity: 1;
  transform: translateY(0);
  transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.card-box svg {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 10px;
}
.card-box img {
  width: 90px;
  height: auto;
  margin: auto;
  object-fit: contain;
}

.card-box h4 {
  font-size: 18px;
  font-weight: 700;
}

.card-box p {
  font-size: 15px;
  line-height: 20px;
  text-align: center;
}

.about-service .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  color: #fff;
}

.about-service p {
  color: var(--grey);
  font-size: 20px;
  line-height: 26px;
}

.about-service img {
  width: 100%;
  border-radius: var(--br);
  object-fit: cover;
  max-height: 450px;
}

.apple-service h2 {
  color: var(--light);
  margin-bottom: 40px;
}

.apple-service h5 {
  font-size: 22px;
  margin-bottom: 30px;
}

.apple-service ul {
  list-style: num;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.apple-service ul li {
  margin-bottom: 20px;
  max-width: 90%;
  font-size: 15px;
  line-height: 20px;
}

.services-etaps__title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  background: var(--light);
  border-radius: var(--br);
  padding: 28px 22px;
  text-align: left;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  position: relative;
}

.step__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
}

.step__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step__text {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.services-faq {
  margin-bottom: 0;
  padding-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: #fff;
  border-radius: var(--br);
  padding: 22px 20px;
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  align-self: flex-start;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  position: relative;
}

.faq-icon {
  font-size: 25px;
  font-weight: 400;
  transition: 0.3s ease;
  color: var(--blue);
}

.faq-answer {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease;
  position: relative;
  z-index: 2;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.blog__grid.blog_page {
  grid-template-columns: repeat(4, 1fr);
}

.footer {
  background: #fff;
  color: #111;
  font-size: 16px;
  border: 1px solid #ccc;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  opacity: 0.8;
  transition: 0.3s;
}

.footer a:hover {
  color: var(--blue);
}

.footer-contacts p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 19px;
  opacity: 0.8;
}

.footer-address {
  margin-top: 10px;
}

.footer-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.footer-brand {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-weight: 600;
}

.footer-brand img {
  width: 160px;
}

.footer-social a img {
  width: 22px;
  margin-right: 12px;
  opacity: 0.6;
}

.footer-social a img:hover {
  opacity: 1;
}

.footer-payments img {
  height: 26px;
  margin-left: 10px;
}

/* footer bottom */
.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  /* py-[30px] */
  border-top: 1px solid #e6e6e6;
  /* border-t border-t-[#E6E6E6] */
}

.footer_bottom p {
  font-size: 12px;
  /* text-[12px] */
  line-height: 17px;
  /* leading-[17px] */
  font-family: "Montserrat", sans-serif;
  /* font-montserrat */
  font-weight: 500;
  /* font-medium */
  color: #999999;
  /* text-[#999999] */
}

.footer_bottom a {
  transition: 0.3s ease;
  opacity: 0.4;
}

.footer_bottom a:hover {
  color: var(--blue);
  opacity: 1;
}

.footer-col {
  width: 100%;
}

.footer-col.blogs div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-col.blogs div ul {
  width: 200px;
}

.footer-col.blogs div ul li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-dev a {
  color: #111;
  font-weight: 500;
}

.footer-dev a:hover {
  color: #0066ff;
}

.blog-inner-section {
  padding: 40px 0 80px;
  position: relative;
  /*background: #1a1a1a;*/
  min-height: calc(100vh - 200px);
}

.blog-inner__layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Main Article Section */
.blog-inner__main {
  /*background: #1a1a1a;*/
  color: #ffffff;
}

.blog-inner__headline {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px 0;
}

.blog-inner__subtitle {
  font-size: 20px;
  line-height: 1.5;
  color: #b0b0b0;
  margin: 0 0 30px 0;
  font-weight: 400;
}

.blog-inner__image-wrapper {
  margin: 30px 0;
}

.blog-inner__image {
  width: 100%;
  height: 500px;
  border-radius: 0.4em;
  display: block;
  object-fit: cover;
}

.blog-inner__image-credit {
  font-size: 14px;
  color: #888;
  margin-top: 12px;
  font-style: italic;
}

.blog-inner__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  font-size: 14px;
}

.blog-inner__source {
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.blog-inner__date {
  color: #888;
}

.blog-inner__content {
  margin-top: 30px;
  line-height: 1.8;
  font-size: 16px;
  color: #e0e0e0;
}

.blog-inner__content h3,
.blog-inner__content h2,
.blog-inner__content h4,
.blog-inner__content h5,
.blog-inner__content h6 {
  color: #fff;
}

.blog-inner__content p {
  margin: 0 0 20px 0;
  color: #fff;
}

.blog-inner__content p:last-child {
  margin-bottom: 0;
}

/* News Feed Sidebar */
.blog-inner__sidebar {
  /*background: #1a1a1a;*/
  position: relative;
}

.blog-inner__sidebar-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 30px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #fff;
}

.blog-inner__news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 50px;
}

/* Vertical line */
.blog-inner__news-list::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #fff;
  z-index: 1;
}

.blog-inner__news-item {
  padding: 24px 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.blog-inner__news-item:first-child {
  padding-top: 0;
}

.blog-inner__news-item:last-child {
  padding-bottom: 0;
}

.blog-inner__news-number {
  position: absolute;
  left: -50px;
  top: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  z-index: 2;
  text-align: center;
  line-height: 1;
}

.blog-inner__news-item:first-child .blog-inner__news-number {
  top: 0;
}

.blog-inner__news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-inner__news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-inner__news-time {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

.blog-inner__news-category {
  font-size: 14px;
  color: #888;
}

.blog-inner__news-link {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-top: 4px;
  transition: color 0.3s;
}

.blog-inner__news-link:hover {
  text-decoration: underline;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: 0.4s ease;
}
.product-card:hover {
  box-shadow: 0px 5px 30px rgba(34, 34, 40, 0.08);
}
.product-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  max-width: 100%;
  height: 220px;
  object-fit: contain;
}

.product-title {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: #333;
  text-align: left;
}

.product-price {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-price span {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.product-card .about-top__btn {
  margin: auto;
}
:root {
  --blue-bg: #132239;
  --purple: #6c5ce7;
}

.product-section {
  color: #fff;
}

.product-3col {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr;
  align-items: stretch;
}

.product-col {
  padding: 0 40px;
}

.product-col:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.product-wrap-slider {
  display: flex;
  gap: 25px;
  align-items: center;
}

.product-thumbs-wrap {
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.thumbs-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
  transition: 0.2s;
}

.product-thumbs {
  height: 360px;
  overflow: hidden;
  padding: 0 6px;
}

.product-thumbs .swiper-slide {
  width: 70px;
  height: 70px;
  background: #1b1b26;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.product-thumbs img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Active thumb */
.product-thumbs .swiper-slide.is-active {
  background: var(--blue-bg);
  box-shadow: 0 0 0 2px var(--blue);
}

.product-main {
  background: #1b1b26;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
}

.product-main img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

.product-center h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

.product-center p {
  opacity: 0.8;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 19px;
}

.product-center h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.color-box {
  width: 22px;
  height: 22px;
  background: #e47a40;
  border: 1px solid #444;
}

.product-right h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.product-right label {
  display: block;
  margin-bottom: 6px;
  opacity: 0.8;
}

.product-right input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 15px;
  font-size: 14px;
  outline: none;
}
.product-right .about-top__btn {
  width: 100%;
}
.product-right .header-socials {
  margin-top: 20px;
  justify-content: center;
}
.specs-section {
  color: #fff;
}

.specs-wrap {
  display: grid;
  grid-template-columns: 1fr 65%;
  gap: 50px;
  align-items: start;
}

/* Left title */
.specs-title {
  font-size: 20px;
  font-weight: bold;
}

/* Table wrapper */
.specs-table-wrap {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

/* Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: #111;
  border-top: 2px solid #8f8f8f;
  border-bottom: 2px solid #8f8f8f;
}

.specs-table tr {
  border-bottom: 1px solid #9a9a9a;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 14px 18px;
  vertical-align: top;
}

.specs-table td:first-child {
  width: 40%;
  color: #555;
}

.specs-table td:last-child {
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .header-main ul {
    gap: 0;
  }
  .apple-hero__inner {
    gap: 0;
  }
  .apple-hero__content h1 p {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .blog-inner__layout {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 30px;
    /* max-width: 1280px; */
    margin: 0 auto;
  }
  .blog-inner__headline {
    font-size: 32px;
  }
  .blog__grid.blog_page {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  footer {
    padding-top: 0;
  }
  .blog__grid {
    grid-template-columns: 1fr;
  }

  .about-bottom__grid {
    display: grid;
    grid-template-columns: 1.8fr 1.3fr 2fr;
    gap: 10px;
    align-items: start;
  }
  .about-media__wrap img {
    object-fit: cover;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  #open_menu {
    display: flex;
  }
  nav,
  .header-socials a {
    display: none !important;
  }
  .mobile__menu nav,
  .mobile__menu .header-socials a {
    display: flex !important;
  }
  .categories__grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .contact-map-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: relative;
    top: unset;
  }

  .contact-map .map {
    height: 320px;
  }
  .about-top__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-media__form {
    flex-direction: column;
    gap: 12px;
  }
  .about-media__form > input {
    width: 100%;
  }
  .about-media__form > div {
    flex-direction: column-reverse;
    width: 100%;
  }

  .about-media__ticker {
    bottom: 208px;
  }
  .about-top__title {
    font-size: 44px;
  }
  .about-service .container {
    gap: 30px;
  }
  .apple-service h5 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .about-top__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apple-hero__image {
    width: 320px;
  }
  .apple-hero__inner {
    gap: 10px;
  }
  .faq-item {
    padding: 10px 20px;
    align-self: flex-start;
  }
}
@media (max-width: 768px) {
  .blog-inner__layout{
    grid-template-columns: 1fr;
  }
      .blog-inner__headline {
        font-size: 26px;
    }
  .blog__grid.blog_page {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-hero-content {
    margin-top: 39px;
  }
  .section-title {
    font-size: 30px;
    text-align: center;
  }
  .about-service .container {
    grid-template-columns: 1fr;
  }

  .about-hero-content h4 {
    font-size: 20px;
    font-weight: 700;
  }
  .footer-col.blogs div {
    grid-template-columns: 1fr;
  }
  .wave {
    animation: none !important;
  }
  .about-bottom__grid {
    grid-template-columns: 1fr;
  }
  .footer-middle {
    flex-direction: column;
    gap: 10px;
  }
  .footer_bottom {
    gap: 20px;
  }
  .about-bottom__sticky {
    position: inherit;
  }
  .blog-featured__title p {
    font-size: 25px;
  }
  .about-media__ticker {
    bottom: 199px;
  }
  .section-top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .blog-featured {
    display: none;
  }
  #categories {
    padding-top: 0;
  }
  .header-top #none {
    display: none;
  }
  .apple-hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 10px;
  }
  .apple-hero {
    padding-top: 150px;
  }
  .apple-hero__content h1 p {
    font-size: 27px !important;
  }
  .apple-hero__content {
    align-items: center;
  }
  .header-top {
    font-size: 12px;
  }
  .apple-hero__image {
    width: 100%;
    height: 300px;
    margin-bottom: 60px;
    margin-top: 10px;
  }
  .apple-hero__controls {
    bottom: 18px;
    padding: 9px 14px;
    gap: 14px;
  }

  .apple-hero__nav {
    width: 40px;
    height: 40px;
  }

  .apple-hero__pagination .swiper-pagination-bullet-active {
    width: 22px;
  }

  .about-media__form button {
    width: 100%;
  }

  .about-media__form > div {
    width: 100%;
  }
  .onfooter__box {
    min-height: 340px;
  }

  .onfooter__content {
    max-width: 100%;
    margin: 0 16px 16px;
    padding: 24px;
  }

  .onfooter__title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .categories__grid {
    grid-template-columns: 1fr;
  }
  #about-top {
    padding: 70px 0;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .apple-hero__content h1 p {
    font-size: 36px;
  }
  .blog-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .onfooter__actions {
    display: flex;
    gap: 16px;
    flex-direction: column;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .blog__grid.blog_page {
    grid-template-columns: 1fr;
  }
}
