@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Zumme";
  src: url("../font/Zuume ExtraLight.ttf") format("truetype");
  font-weight: 200; /* ExtraLight */
}
@font-face {
  font-family: "Zumme";
  src: url("../font/Zuume Light.ttf") format("truetype");
  font-weight: 300; /* Light */
}
@font-face {
  font-family: "Zumme";
  src: url("../font/Zuume Regular.ttf") format("truetype");
  font-weight: 400; /* Regular */
}
@font-face {
  font-family: "Zumme";
  src: url("../font/Zuume Medium.ttf") format("truetype");
  font-weight: 500; /* Medium */
}
@font-face {
  font-family: "Zumme";
  src: url("../font/Zuume SemiBold.ttf") format("truetype");
  font-weight: 600; /* SemiBold */
}
@font-face {
  font-family: "Zumme";
  src: url("../font/Zuume Bold.ttf") format("truetype");
  font-weight: 700; /* Bold */
}
@font-face {
  font-family: "Zumme";
  src: url("../font/Zuume ExtraBold.ttf") format("truetype");
  font-weight: 800; /* ExtraBold */
}
:root {
  --font-family-any: "Anybody", sans-serif;
  --font-family-zum: "Zumme";
  --color-primary: #ff651b;
  --color-secondary: #000000;
  --color-tertiary: #f9f9f9;
  --font-sm: 14px;
  --font-md: 16px;
  --font-lg: 18px;
  --font-xl: 20px;
  --font-2xl: 22px;
  --font-3xl: 24px;
  --font-80: 5em;
  --font-60: 3.75em;
  --font-50: 50px;
  --font-45: 45px;
  --font-40: 40px;
  --font-35: 35px;
  --font-30: 30px;
  --font-27: 27px;
}

/* ==========================================
   HEADER
========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1em 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  transition: all 0.5s ease;
  /* ==========================================
     STICKY HEADER
  ========================================== */
}
.header.is-sticky {
  background: #000000;
  border-bottom: 1px solid rgba(234, 234, 234, 0.15);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.35s ease-out;
}
.header {
  /* ==========================================
     DESKTOP HEADER
  ========================================== */
}
@media (min-width: 1025px) {
  .header {
    padding: 1.5em 0;
  }
}
.header {
  /* ==========================================
     CONTAINER
  ========================================== */
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* ========================================
     LOGO
  ======================================== */
}
.header .container .logo {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1001;
}
.header .container .logo img {
  display: block;
  width: auto;
  max-width: 150px;
  height: auto;
}
.header .container {
  /* ========================================
     NAVBAR - DESKTOP
  ======================================== */
}
.header .container .navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.5rem;
  /* ======================================
     NAV ITEMS
  ====================================== */
}
.header .container .navbar .nav-item {
  width: auto;
}
.header .container .navbar .nav-item .nav-link {
  position: relative;
  display: block;
  z-index: 200;
  color: #ffffff;
  font-size: var(--font-lg);
  text-decoration: none;
  transition: color 0.25s ease;
}
.header .container .navbar .nav-item .nav-link:hover {
  color: var(--color-primary);
}
.header .container .navbar {
  /* ======================================
     SERVICES
  ====================================== */
}
.header .container .navbar .services-item {
  position: static;
  width: auto;
  /* ------------------------------------
     SERVICES TOGGLE
  ------------------------------------ */
}
.header .container .navbar .services-item .services-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 201;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
}
.header .container .navbar .services-item {
  /* ------------------------------------
     SERVICES ARROW
  ------------------------------------ */
}
.header .container .navbar .services-item .services-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.header .container .navbar .services-item .services-arrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header .container .navbar .services-item {
  /* ------------------------------------
     SERVICES CONTENT
  ------------------------------------ */
}
.header .container .navbar .services-item .services-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: -7rem;
  padding-top: 7rem;
  background: #000000;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  /* ----------------------------------
     SERVICES DROPDOWN
  ---------------------------------- */
}
.header .container .navbar .services-item .services-content .services-dropdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 95%;
  margin: 0 auto;
  padding: 2rem 1rem;
  column-gap: 2rem;
  row-gap: 0;
  /* --------------------------------
     SERVICE LINK
  -------------------------------- */
}
.header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--font-30);
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: color 0.25s ease, padding-left 0.25s ease;
  /* --------------------------------
     XL
  -------------------------------- */
}
@media (min-width: 1200px) {
  .header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link {
    font-size: var(--font-40);
  }
}
.header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link {
  /* --------------------------------
     ICON
  -------------------------------- */
}
.header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link .icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link {
  /* --------------------------------
     LAST LINK
  -------------------------------- */
}
.header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link:last-child {
  border-bottom: 0;
}
.header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link {
  /* --------------------------------
     HOVER
  -------------------------------- */
}
.header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link:hover {
  color: #ffffff;
}
.header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link:hover .icon {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
.header .container .navbar .services-item {
  /* ------------------------------------
     DESKTOP HOVER
  ------------------------------------ */
}
.header .container .navbar .services-item:hover .services-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.header .container .navbar .services-item:hover .services-arrow {
  transform: rotate(180deg);
}
.header .container .navbar {
  /* ======================================
     CLOSE BUTTON
  ====================================== */
}
.header .container .navbar .cross-btn {
  display: none;
}
.header .container {
  /* ========================================
     HEADER BUTTONS
  ======================================== */
}
.header .container #menu-btn,
.header .container .cross-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.header .container {
  /* ========================================
     MENU BUTTON - DESKTOP
  ======================================== */
}
.header .container #menu-btn {
  display: none;
}
.header .container {
  /* ========================================
     LET'S TALK - DESKTOP
  ======================================== */
}
.header .container .lets-talk {
  display: block;
  z-index: 200;
}

/* ==================================================
   TABLET + MOBILE
   ≤ 1024px
================================================== */
@media (max-width: 1024px) {
  .header {
    padding: 1em 0;
    /* ==========================================
       CONTAINER
    ========================================== */
  }
  .header .container {
    /* ========================================
       LOGO
    ======================================== */
  }
  .header .container .logo {
    z-index: 1001;
  }
  .header .container .logo img {
    max-width: 140px;
  }
  .header .container {
    /* ========================================
       MENU BUTTON
    ======================================== */
  }
  .header .container #menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 35px;
    height: 35px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 100;
  }
  .header .container #menu-btn img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
  }
  .header .container {
    /* ========================================
       MOBILE NAVBAR
    ======================================== */
  }
  .header .container .navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 400px);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 5rem 2rem 2rem;
    background: #000000;
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
    /* --------------------------------------
       OPEN MENU
    -------------------------------------- */
  }
  .header .container .navbar.active {
    transform: translateX(0);
    visibility: visible;
  }
  .header .container .navbar {
    /* ======================================
       NAV ITEMS
    ====================================== */
  }
  .header .container .navbar .nav-item {
    width: 100%;
  }
  .header .container .navbar .nav-item .nav-link {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: var(--font-lg);
    text-decoration: none;
    transition: color 0.25s ease;
  }
  .header .container .navbar .nav-item .nav-link:hover {
    color: var(--color-primary);
  }
  .header .container .navbar {
    /* ======================================
       SERVICES - MOBILE
    ====================================== */
  }
  .header .container .navbar .services-item {
    position: relative;
    width: 100%;
    /* ------------------------------------
       SERVICES TOGGLE
    ------------------------------------ */
  }
  .header .container .navbar .services-item .services-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.75rem;
    padding: 0.25rem 0;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
    transition: color 0.25s ease;
  }
  .header .container .navbar .services-item .services-toggle:hover {
    color: var(--color-primary);
  }
  .header .container .navbar .services-item {
    /* ------------------------------------
       SERVICES ARROW
    ------------------------------------ */
  }
  .header .container .navbar .services-item .services-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  .header .container .navbar .services-item .services-arrow img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .header .container .navbar .services-item {
    /* ------------------------------------
       SERVICES CONTENT
       RESET DESKTOP STYLES
    ------------------------------------ */
  }
  .header .container .navbar .services-item .services-content {
    position: static;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
    /* ----------------------------------
       DROPDOWN
    ---------------------------------- */
  }
  .header .container .navbar .services-item .services-content .services-dropdown {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 0 0 1rem;
    overflow: hidden;
    gap: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    transition: max-height 0.35s ease, padding 0.35s ease;
    /* --------------------------------
       SERVICE LINK
    -------------------------------- */
  }
  .header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
    padding: 0.65rem 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    border: 0;
    transition: color 0.25s ease, padding-left 0.25s ease;
    /* --------------------------------
       ICON
    -------------------------------- */
  }
  .header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link .icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link {
    /* --------------------------------
       HOVER
    -------------------------------- */
  }
  .header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link:hover {
    color: #ffffff;
    padding-left: 0.25rem;
  }
  .header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link:hover .icon {
    opacity: 1;
    transform: translateX(0);
  }
  .header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link {
    /* --------------------------------
       LAST LINK
    -------------------------------- */
  }
  .header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link:last-child {
    border-bottom: 0;
  }
  .header .container .navbar .services-item {
    /* ------------------------------------
       SERVICES ACTIVE
    ------------------------------------ */
  }
  .header .container .navbar .services-item.active .services-content .services-dropdown {
    max-height: 600px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .header .container .navbar .services-item.active .services-arrow {
    transform: rotate(180deg);
  }
  .header .container .navbar {
    /* ======================================
       CLOSE BUTTON
    ====================================== */
  }
  .header .container .navbar .cross-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 10;
  }
  .header .container .navbar .cross-btn img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
  }
  .header .container {
    /* ========================================
       LET'S TALK
    ======================================== */
  }
  .header .container .lets-talk {
    display: none;
  }
}
/* ==================================================
   MOBILE
   ≤ 526px
================================================== */
@media (max-width: 526px) {
  .header {
    padding: 0.9em 0;
  }
  .header .container {
    /* ----------------------------------------
       LOGO
    ---------------------------------------- */
  }
  .header .container .logo img {
    max-width: 125px;
  }
  .header .container {
    /* ----------------------------------------
       MENU BUTTON
    ---------------------------------------- */
  }
  .header .container #menu-btn {
    width: 32px;
    height: 32px;
  }
  .header .container #menu-btn img {
    width: 25px;
    height: 25px;
  }
  .header .container {
    /* ----------------------------------------
       NAVBAR
    ---------------------------------------- */
  }
  .header .container .navbar {
    width: 100%;
    max-width: none;
    padding: 5rem 1.25rem 2rem;
    gap: 1.25rem;
    /* --------------------------------------
       NAV LINKS
    -------------------------------------- */
  }
  .header .container .navbar .nav-item .nav-link {
    font-size: var(--font-lg);
  }
  .header .container .navbar {
    /* --------------------------------------
       SERVICES
    -------------------------------------- */
  }
  .header .container .navbar .services-item .services-toggle {
    padding: 0.2rem 0;
  }
  .header .container .navbar .services-item .services-toggle .nav-link {
    font-size: var(--font-lg);
  }
  .header .container .navbar .services-item .services-arrow {
    width: 16px;
    height: 16px;
  }
  .header .container .navbar .services-item .services-content .services-dropdown {
    padding-left: 0.75rem;
  }
  .header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link {
    gap: 0.6rem;
    padding: 0.55rem 0;
    font-size: 0.85rem;
  }
  .header .container .navbar .services-item .services-content .services-dropdown .service-dropdown-link .icon {
    width: 14px;
    height: 14px;
  }
  .header .container .navbar {
    /* --------------------------------------
       CLOSE BUTTON
    -------------------------------------- */
  }
  .header .container .navbar .cross-btn {
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
  }
  .header .container .navbar .cross-btn img {
    width: 25px;
    height: 25px;
  }
}
.campaignFooter {
  padding-top: 3em;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}
.campaignFooter .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.campaignFooter .container .campaignImg {
  padding: 0 2em;
}
@media (min-width: 576px) {
  .campaignFooter .container .campaignImg {
    padding: 0 3em;
  }
}
@media (min-width: 1024px) {
  .campaignFooter .container .campaignImg {
    padding: 0;
  }
}
.campaignFooter .social {
  position: relative;
  z-index: 1;
}
.campaignFooter .social .container {
  margin-top: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.campaignFooter .social .container svg,
.campaignFooter .social .container img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .campaignFooter .social .container svg,
  .campaignFooter .social .container img {
    height: 40px;
    width: 40px;
  }
}
.campaignFooter .footer {
  width: 100%;
  position: relative;
  padding-bottom: 3em;
  border-bottom: 0;
  z-index: 1;
}
.campaignFooter .footer .container {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
}
@media (min-width: 768px) {
  .campaignFooter .footer .container {
    flex-direction: row;
    gap: 3em;
  }
}
.campaignFooter .footer .container .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.campaignFooter .footer .container .logo img {
  max-width: 150px;
  display: block;
}
.campaignFooter .footer .container .navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  transition: all 0.5s ease;
}
.campaignFooter .footer .container .navbar .nav-item .nav-link {
  display: block;
  color: #ffffff;
  font-size: var(--font-sm);
  transition: all 0.5s ease;
}
.campaignFooter .footer .container .navbar .nav-item .nav-link:hover {
  color: var(--color-primary);
}
.campaignFooter .footer-overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  display: flex;
  bottom: -15%;
}
.campaignFooter .footer-overlay img {
  min-width: 281px;
}
@media (min-width: 576px) {
  .campaignFooter .footer-overlay {
    bottom: -20%;
  }
}
@media (min-width: 1024px) {
  .campaignFooter .footer-overlay {
    bottom: -40%;
  }
  .campaignFooter .footer-overlay img {
    max-width: 100%;
    height: auto;
  }
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: max-content;
  padding: 0 2em;
  height: 45px;
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  font-size: var(--font-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.btn-white:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}
.btn-white:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.btn-white:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (min-width: 768px) {
  .btn-white {
    height: 60px;
    padding: 0 1.1em;
    font-size: var(--font-lg);
  }
}
.btn-white img {
  transition: filter 0.3s ease;
}
.btn-white:hover img {
  filter: invert(1) brightness(100);
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: max-content;
  padding: 0 2em;
  height: 45px;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-size: var(--font-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.btn-white-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}
.btn-white-outline:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.btn-white-outline:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (min-width: 768px) {
  .btn-white-outline {
    height: 60px;
    padding: 0 1.1em;
    font-size: var(--font-lg);
  }
}
.btn-white-outline img {
  transition: filter 0.3s;
}
.btn-white-outline:hover img {
  filter: invert(1) brightness(100);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: max-content;
  padding: 0 2em;
  height: 45px;
  background: var(--color-primary);
  color: #ffffff;
  border: 1px solid var(--color-primary);
  font-size: var(--font-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.btn-primary:hover {
  background: var(--color-secondary);
  color: #ffffff;
  border-color: var(--color-secondary);
}
.btn-primary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (min-width: 768px) {
  .btn-primary {
    height: 60px;
    padding: 0 1.1em;
    font-size: var(--font-lg);
  }
}

.btn-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: max-content;
  padding: 0 2em;
  height: 45px;
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  font-size: var(--font-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.btn-black:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}
.btn-black:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.btn-black:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media (min-width: 768px) {
  .btn-black {
    height: 60px;
    padding: 0 1.1em;
    font-size: var(--font-lg);
  }
}
.btn-black {
  font-family: var(--font-family-any);
  font-size: 1rem;
}
.btn-black img {
  filter: invert(1) brightness(100);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 1rem;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: var(--font-family-any);
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

p {
  color: #000000;
  font-size: var(--font-sm);
  line-height: 1.4;
}
@media (min-width: 768px) {
  p {
    font-size: var(--font-md);
    line-height: 1.6;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.5s ease;
  flex: inline-flex;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-family-zum);
}

.mainBody {
  overflow: hidden;
}

.container {
  max-width: 1320px;
  padding-left: 1em;
  padding-right: 1em;
  margin: 0 auto;
  width: 95%;
}

.shadow {
  transition: all;
  transition-duration: 500s;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.img-fluid {
  max-width: 50%;
  height: auto;
}

.logo-img {
  max-width: 100%;
  height: auto;
}

.logo-footer {
  max-width: 50%;
  height: auto;
  margin: 0 auto;
}

.footer-copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
}

.bg-black {
  background-color: #000000;
}

.text-white {
  color: #ffffff;
}

.bg-primary {
  background-color: var(--color-primary);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.hero-section {
  padding: 5rem 0 0;
  padding: calc(5rem + 109px) 0;
}
@media (min-width: 768px) {
  .hero-section {
    min-height: 600px;
  }
}
@media (min-width: 1024px) {
  .hero-section {
    min-height: 670px;
  }
}
.hero-section {
  background-image: url("../images/banner.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 100%;
}
.hero-section .container {
  display: grid;
  place-items: center;
  gap: 2rem;
}
.hero-section .container .hero-content {
  margin: 0;
}
.hero-section .container .hero-title {
  color: var(--color-primary);
  text-align: center;
  font-size: 3.125em;
}
.hero-section .container .hero-title span {
  color: #ffffff;
}
.hero-section .container .hero-title {
  font-weight: 600;
  line-height: 0.9;
  text-transform: capitalize;
  font-family: var(--font-family-zum);
}
.hero-section .container .hero-title br {
  display: none;
}
@media (min-width: 576px) {
  .hero-section .container .hero-title {
    font-size: 5em;
  }
}
@media (min-width: 768px) {
  .hero-section .container .hero-title br {
    display: block;
  }
}
@media (min-width: 1024px) {
  .hero-section .container .hero-title {
    padding-top: 4rem;
  }
}
.hero-section .container .hero-desc {
  color: #ffffff;
  margin: 0 auto;
  text-align: center;
  font-size: var(--font-sm);
}
@media (min-width: 576px) {
  .hero-section .container .hero-desc {
    font-size: var(--font-md);
  }
}
@media (min-width: 768px) {
  .hero-section .container .hero-desc {
    max-width: 600px;
    margin: 0 auto;
  }
}
.hero-section .container .hero-image {
  display: none;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-section .container .hero-image {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .hero-section .container .hero-image {
    width: auto;
    height: auto;
  }
}
.hero-section .container .hero-image img {
  width: 100%;
  max-width: 45%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
  object-position: top;
}
@media (min-width: 768px) {
  .hero-section .container .hero-image img {
    max-width: 100%;
    max-height: 100%;
  }
}
@media (min-width: 1024px) {
  .hero-section .container .hero-image img {
    height: 600px;
  }
}
.hero-section .container .hero-image img {
  display: block;
}

.crossed-bars {
  position: relative;
  margin-top: -2rem;
}
.crossed-bars .bar {
  position: relative;
  left: -1rem;
  width: 110%;
  color: #ffffff;
}
.crossed-bars .bar .bar-content {
  display: inline-block;
  white-space: nowrap;
  padding: 0 0 2px;
  font-family: var(--font-family-zum);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  animation: scroll-left 50s linear infinite;
}
.crossed-bars .bar .bar-content span {
  display: inline-block;
  margin-right: 0.5rem;
}
.crossed-bars .bar .bar-content span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.5rem;
  vertical-align: 3px;
  background-image: url("/assets/images/star.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.crossed-bars .bar-1 {
  transform: rotate(-3deg);
}
.crossed-bars .bar-2 {
  position: absolute;
  left: -2rem;
  bottom: 0;
  transform: rotate(7deg);
}
.crossed-bars .bar-2 .bar-content {
  animation: scroll-right 50s linear infinite;
}
@media (min-width: 526px) {
  .crossed-bars .bar .bar-content {
    padding-top: 12px;
    padding-bottom: 4px;
  }
  .crossed-bars .bar .bar-content span::before {
    vertical-align: 0;
  }
}
@media (min-width: 769px) {
  .crossed-bars {
    margin-top: -6rem;
  }
  .crossed-bars .bar .bar-content {
    font-size: var(--font-60);
    font-weight: 500;
  }
  .crossed-bars .bar .bar-content span {
    margin-right: 1rem;
  }
  .crossed-bars .bar .bar-content span::before {
    width: 36px;
    height: 37px;
    margin-right: 1.5rem;
    vertical-align: 8px;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
.section-header {
  display: flex;
  align-items: start;
  flex-direction: column;
  margin: 0 auto 2rem;
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.section-heading {
  line-height: 1;
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 20px;
  font-family: var(--font-family-zum);
  font-weight: 500;
}
@media (min-width: 768px) {
  .section-heading {
    font-size: var(--font-45);
  }
}

.section-subtitle {
  color: var(--color-primary);
  font-style: italic;
  font-weight: 700;
  text-decoration: underline;
  font-size: var(--font-sm);
  margin-bottom: 1em;
  display: block;
}
@media (min-width: 768px) {
  .section-subtitle {
    font-size: var(--font-md);
  }
}

.span-subtitle {
  color: #000000;
  font-style: italic;
  font-weight: 700;
  font-size: var(--font-sm);
  margin-bottom: 1em;
  display: block;
}
@media (min-width: 768px) {
  .span-subtitle {
    font-size: var(--font-md);
  }
}

.orange-heading {
  line-height: 1;
  text-transform: uppercase;
  font-size: var(--font-35);
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 20px;
  font-family: var(--font-family-zum);
}
@media (min-width: 768px) {
  .orange-heading {
    font-size: var(--font-40);
  }
}
@media (min-width: 768px) {
  .orange-heading {
    font-size: var(--font-50);
  }
}

.about-page {
  margin: 5em 0;
}
@media (min-width: 768px) {
  .about-page {
    margin-top: 10em;
    margin-bottom: 8em;
  }
}
.about-page .about-content {
  display: grid;
  place-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .about-page .about-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-page .about-content {
  gap: 2rem;
}
.about-page .about-content img {
  max-width: 80px;
  margin: 4px;
  height: auto;
  vertical-align: text-top;
}
.about-page .about-content .about-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: start !important;
  gap: 0.5rem;
}
.about-page .stats-grid {
  margin-top: 8em;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .about-page .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-page .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-page .stats-grid {
  gap: 2em;
}
.about-page .stats-grid .stat-item {
  background-image: url("/assets/images/stat-background.png");
  background-position: center;
}
@media (min-width: 576px) {
  .about-page .stats-grid .stat-item {
    background-position: top center;
  }
}
@media (min-width: 768px) {
  .about-page .stats-grid .stat-item {
    background-position: center;
  }
}
.about-page .stats-grid .stat-item {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1em 2em 2em 2em;
}
.about-page .stats-grid .stat-item .stat-arrow {
  display: flex;
  align-items: center;
  justify-content: end;
}
.about-page .stats-grid .stat-item .stat-content {
  font-family: var(--font-family-zum);
  color: #ffffff;
  margin-top: 10px;
}
.about-page .stats-grid .stat-item .stat-content .stat-number {
  font-size: var(--font-45);
}
@media (min-width: 768px) {
  .about-page .stats-grid .stat-item .stat-content .stat-number {
    font-size: var(--font-60);
  }
}
.about-page .stats-grid .stat-item .stat-content .stat-number {
  font-weight: 700;
  margin-bottom: 12px;
}
.about-page .stats-grid .stat-item .stat-content .stat-label {
  font-size: var(--font-27);
}
@media (min-width: 768px) {
  .about-page .stats-grid .stat-item .stat-content .stat-label {
    font-size: var(--font-30);
  }
}
.about-page .stats-grid .stat-item .stat-content .stat-label {
  font-weight: 600;
}

.why-choose-page {
  margin-bottom: 5em;
}
@media (min-width: 768px) {
  .why-choose-page {
    margin-bottom: 8em;
  }
}
.why-choose-page .why-choose-content {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .why-choose-page .why-choose-content {
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .why-choose-page .why-choose-content .why-choose-left {
    max-width: 500px;
  }
}
.why-choose-page .why-choose-content .why-choose-left {
  order: 2;
}
.why-choose-page .why-choose-content .why-choose-right {
  order: 1;
}
@media (min-width: 768px) {
  .why-choose-page .why-choose-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose-page .why-choose-content .why-choose-left {
    order: 1;
  }
  .why-choose-page .why-choose-content .why-choose-right {
    order: 2;
  }
}
.why-choose-page .features-grid {
  margin-top: 3em;
  gap: 2em;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .why-choose-page .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.why-choose-page .features-grid .feature-item {
  padding: 3em;
  background-color: var(--color-tertiary);
  transition: all 0.3s ease-in;
}
.why-choose-page .features-grid .feature-item .feature-icon {
  margin-bottom: 3em;
}
.why-choose-page .features-grid .feature-item .feature-icon img {
  max-width: 65px;
  transition: all 0.3s ease-in;
}
.why-choose-page .features-grid .feature-item .features-service {
  margin-top: 1em;
}
.why-choose-page .features-grid .feature-item h3 {
  font-family: var(--font-family-zum);
  font-size: var(--font-27);
}
@media (min-width: 768px) {
  .why-choose-page .features-grid .feature-item h3 {
    font-size: var(--font-30);
  }
}
.why-choose-page .features-grid .feature-item h3 {
  margin-bottom: 16px;
  transition: all 0.3s ease-in;
}
.why-choose-page .features-grid .feature-item:hover {
  background-color: var(--color-primary);
}
.why-choose-page .features-grid .feature-item:hover img {
  filter: invert(1) brightness(100);
}
.why-choose-page .features-grid .feature-item:hover h3,
.why-choose-page .features-grid .feature-item:hover p {
  color: #ffffff;
}

.service-page {
  margin: 5em 0;
}
@media (min-width: 768px) {
  .service-page {
    margin-top: 10em;
    margin-bottom: 8em;
  }
}
.service-page .service-content {
  display: grid;
  place-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .service-page .service-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-page .service-content {
  gap: 2rem;
}
.service-page .service-content .service-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: start !important;
  gap: 0.5rem;
}
.service-page .service-list {
  margin-top: 8rem;
}
.service-page .service-list .service-item {
  display: grid;
  align-items: center;
  grid-template-columns: 0.15fr 1.5fr 0.15fr;
  gap: 1.5rem;
  padding: 1rem;
  color: #ffffff;
  border: 1px solid rgba(234, 234, 234, 0.15);
  transition: all 0.5s ease;
}
.service-page .service-list .service-item .service-icon {
  order: 1;
}
.service-page .service-list .service-item .service-icon img {
  max-width: 40px;
  transition: all 0.5s ease;
}
.service-page .service-list .service-item h3 {
  order: 2;
  font-family: var(--font-family-zum);
  font-size: var(--font-27);
  font-weight: 600;
  white-space: nowrap;
}
.service-page .service-list .service-item p {
  grid-column: 1/-1;
  order: 4;
  margin-left: auto;
  color: #ffffff;
}
.service-page .service-list .service-item .service-arrow {
  order: 3;
  margin-left: auto;
}
.service-page .service-list .service-item .service-arrow img {
  max-width: 40px;
  transition: all 0.5s ease;
}
.service-page .service-list .service-item:hover {
  background: var(--color-primary);
}
.service-page .service-list .service-item:hover .service-icon img {
  filter: brightness(100);
}
.service-page .service-list .service-item:hover .service-arrow img {
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .service-page .service-list .service-item {
    padding: 2rem;
  }
  .service-page .service-list .service-item .service-icon img {
    max-width: 60px;
  }
  .service-page .service-list .service-item h3 {
    font-size: var(--font-30);
  }
  .service-page .service-list .service-item .service-arrow img {
    max-width: 60px;
  }
}
@media (min-width: 1024px) {
  .service-page .service-list .service-item {
    grid-template-columns: 0.25fr 1fr 2fr 0.25fr;
    gap: 2.5rem;
  }
  .service-page .service-list .service-item .service-icon {
    order: 1;
  }
  .service-page .service-list .service-item h3 {
    order: 2;
  }
  .service-page .service-list .service-item p {
    order: 3;
    grid-column: auto;
  }
  .service-page .service-list .service-item .service-arrow img {
    order: 4;
  }
}

.contact-page {
  margin: 5em 0;
}
@media (min-width: 768px) {
  .contact-page {
    margin-top: 0;
    padding-top: 8em;
  }
}
.contact-page .contact-content {
  display: grid;
  place-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-page .contact-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact-page .contact-content {
  gap: 2rem;
}
.contact-page .contact-content .contact-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: start !important;
  gap: 0.5rem;
}
.contact-page .contact-content .contact-info {
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
}
.contact-page .contact-content .contact-info .contact-details {
  margin-top: 2em;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.contact-page .contact-content .contact-info .contact-item {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  gap: 1em;
}
.contact-page .contact-content .contact-info .contact-item img {
  max-width: 30px;
}
.contact-page .contact-content .contact-info .contact-item p,
.contact-page .contact-content .contact-info .contact-item a {
  font-size: var(--font-md);
  font-weight: 600;
  color: #000000;
  line-height: 1.6;
}
.contact-page .contact-content .contact-right {
  flex: 1 1 35%;
  padding-top: 2.1em;
}
.contact-page .contact-content .contact-right .contact-form input,
.contact-page .contact-content .contact-right .contact-form textarea {
  width: 100%;
  height: 60px;
  padding: 1em;
  border: 1px solid #000000;
  margin-bottom: 2em;
  font-size: var(--font-md);
  font-family: var(--font-family-any);
}
.contact-page .contact-content .contact-right .contact-form textarea {
  height: 160px;
}
.contact-page .contact-content .contact-right .contact-form .form-button {
  width: 100%;
  display: grid;
  place-items: end;
}

.cta {
  margin-bottom: 5em;
}
@media (min-width: 768px) {
  .cta {
    margin-top: 10em;
  }
}
.cta {
  background-color: #ffffff;
  color: #000000;
  padding: 8em 0;
}
.cta .container .cta-content {
  display: flex;
  gap: 3em;
}
.cta .container .cta-content .cta-title-wrap {
  flex: 1 1 50%;
  padding: 2em 0;
}
.cta .container .cta-content .cta-title-wrap .cta-title {
  font-size: clamp(3rem, 10vw, 6.25em);
  font-family: var(--font-family-zum);
  line-height: 0.8;
  text-wrap: nowrap;
}
.cta .container .cta-content .cta-title-wrap .cta-title-brand {
  font-family: var(--font-family-zum);
  font-weight: 700;
  color: var(--color-primary);
  font-size: clamp(3rem, 22.22vw, 20em);
  line-height: 0.8;
  margin-top: 36px;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  align-items: center;
}
.cta .container .cta-content .cta-title-wrap .cta-title-brand span {
  width: 100%;
}
.cta .container .cta-content .cta-title-wrap .cta-title-brand span img {
  max-width: 100%;
  height: auto;
}
.cta .container .cta-content .cta-title-wrap .cta-title-brand span {
  align-items: center;
}
@media (min-width: 1024px) {
  .cta .container .cta-content .cta-title-wrap .cta-title-brand span {
    display: none;
  }
}
.cta .container .cta-content .cta-left {
  flex: 1 1 50%;
  display: flex;
  justify-content: space-between;
}
.cta .container .cta-content .cta-left .eyes {
  display: flex;
  align-items: center;
}
.cta .container .cta-content .cta-left .eyes .eye {
  position: relative;
  display: none;
}
@media (min-width: 1024px) {
  .cta .container .cta-content .cta-left .eyes .eye {
    display: block;
    width: 120px;
    height: 200px;
  }
}
@media (min-width: 1200px) {
  .cta .container .cta-content .cta-left .eyes .eye {
    width: 200px;
    height: 280px;
  }
}
.cta .container .cta-content .cta-left .eyes .eye {
  background: #000000;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform-origin: center center;
  transition: transform 0.15s ease-out;
}
.cta .container .cta-content .cta-left .eyes .eyeball {
  position: absolute;
  top: 80px;
  left: 60px;
  width: 80px;
  height: 120px;
  background: radial-gradient(circle at center, #eee 40%, #fff);
  border-radius: 50%;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.cta .container .cta-content .cta-left .cta-button-wrap {
  width: 153px;
}
.cta .container .cta-content .cta-left .cta-button-wrap .cta-button {
  background-color: #000000;
  color: #ffffff;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease-in, color 0.3s ease-in;
}
.cta .container .cta-content .cta-left .cta-button-wrap .cta-button > span {
  display: inline-block;
  transform: rotate(90deg);
  font-size: var(--font-80);
  font-family: var(--font-family-zum);
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease-in;
}
.cta .container .cta-content .cta-left .cta-button-wrap .cta-button .cta-span {
  position: relative;
  margin-top: -6rem;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
}
.cta .container .cta-content .cta-left .cta-button-wrap .cta-button .cta-span .span1,
.cta .container .cta-content .cta-left .cta-button-wrap .cta-button .cta-span .span2 {
  transform: rotate(90deg);
  font-size: var(--font-80);
  font-family: var(--font-family-zum);
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease-in;
  position: absolute;
}
.cta .container .cta-content .cta-left .cta-button-wrap .cta-button .cta-span .span1 {
  right: -6.5rem;
}
.cta .container .cta-content .cta-left .cta-button-wrap .cta-button .cta-span .span2 {
  left: -7rem;
}
.cta .container .cta-content .cta-left .cta-button-wrap .cta-button:hover {
  background-color: var(--color-primary);
  color: #000000;
}
.cta .container .cta-content .cta-left .cta-button-wrap .cta-button:hover > span {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: rotate(90deg) scale(0.9);
}
.cta .container .cta-content .cta-left .cta-button-wrap .cta-button:hover .cta-span {
  display: block;
  opacity: 1;
  visibility: visible;
}

.section-pages {
  margin-top: 5em;
}
@media (min-width: 768px) {
  .section-pages {
    margin-top: 0;
    padding-top: 8em;
  }
}
.section-pages .page-grid {
  display: grid;
  place-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .section-pages .page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-pages .page-grid {
  gap: 2rem;
}
.section-pages .page-grid .page-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: start !important;
  gap: 0.5rem;
}
.section-pages .page-grid .page-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section-pages .page-grid .page-image,
.section-pages .page-grid .seo-image {
  display: grid;
  place-items: center;
  width: 100%;
  height: 460px;
  position: relative;
}
@media (min-width: 768px) {
  .section-pages .page-grid .page-image,
  .section-pages .page-grid .seo-image {
    width: 100%;
    height: 100%;
  }
}
.section-pages .page-grid .page-image img,
.section-pages .page-grid .seo-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: contain;
}
.section-pages .seo-hero,
.section-pages .social-media,
.section-pages .hosting,
.section-pages .trust {
  margin-top: 6.25rem;
}
.section-pages .services {
  margin-top: 6.25rem;
}
.section-pages .services .service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .section-pages .services .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-pages .services .service-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  border-radius: 0;
  background: var(--color-primary);
  text-align: center;
  transition: all 0.5s ease;
}
.section-pages .services .service-card .number {
  font-size: var(--font-sm);
  color: #ffffff;
  font-weight: 400;
}
@media (min-width: 768px) {
  .section-pages .services .service-card .number {
    font-size: var(--font-md);
  }
}
.section-pages .services .service-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-pages .services .service-card .icon .seo-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(23deg) brightness(101%) contrast(106%);
  object-fit: contain;
}
.section-pages .services .service-card .icon svg,
.section-pages .services .service-card .icon .seo-icon {
  width: 30px;
  height: 30px;
  transition: all 0.5s ease;
  color: #ffffff;
}
.section-pages .services .service-card h3 {
  font-family: var(--font-family-any);
  font-size: var(--font-sm);
  line-height: 1;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
}
@media (min-width: 768px) {
  .section-pages .services .service-card h3 {
    font-size: var(--font-md);
  }
}
.section-pages .services .service-card:hover {
  transform: translateY(-10px);
}
.section-pages .services .service-card:hover .icon svg {
  transform: scale(1.1);
}
.section-pages .services .service-card:hover h3 {
  color: #ffffff;
}
.section-pages .benefit {
  margin-top: 6.25rem;
}
@media (min-width: 1024px) {
  .section-pages .benefit .benefit-grid-5 {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}
.section-pages .benefit .benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .section-pages .benefit .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .section-pages .benefit .benefit-grid {
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .section-pages .benefit .benefit-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.section-pages .benefit .benefit-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  border-radius: 0;
  background: #fbf3e3;
  text-align: center;
  transition: all 0.5s ease;
}
.section-pages .benefit .benefit-card img,
.section-pages .benefit .benefit-card svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: all 0.5s ease;
}
.section-pages .benefit .benefit-card h3 {
  font-family: var(--font-family-any);
  font-size: var(--font-sm);
  font-weight: 400;
  color: #000000;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .section-pages .benefit .benefit-card h3 {
    font-size: var(--font-md);
  }
}
.section-pages .benefit .benefit-card:hover {
  transform: translateY(-10px);
}
.section-pages .benefit .benefit-card:hover .icon svg {
  transform: scale(1.1);
}
.section-pages .benefit .benefit-list {
  margin: 0;
  padding-left: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .section-pages .benefit .benefit-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-pages .benefit .benefit-list .benefit-item {
  line-height: 1.6;
  color: #000000;
  font-style: italic;
  font-weight: 700;
  font-size: var(--font-sm);
}
@media (min-width: 768px) {
  .section-pages .benefit .benefit-list .benefit-item {
    font-size: var(--font-md);
  }
}
.section-pages .benefit .benefit-list .benefit-item:last-child {
  margin-bottom: 0;
}
.section-pages .social-platforms {
  margin-top: 6.25rem;
}
.section-pages .social-platforms .benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .section-pages .social-platforms .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .section-pages .social-platforms .benefit-grid {
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .section-pages .social-platforms .benefit-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.section-pages .hosting-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.section-pages .trust-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 576px) {
  .section-pages .process .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .section-pages .process .benefit-grid {
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .section-pages .process .benefit-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.section-pages .process .benefit-grid .benefit-card h3 {
  color: var(--color-primary);
}
.section-pages .cta-section {
  margin: 6.25rem 0;
}
.section-pages .cta-section .container {
  min-height: 460px;
  border-radius: 1rem;
}
.section-pages .cta-section .container .bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  opacity: 0.9;
}
.section-pages .cta-section .container {
  position: relative;
  display: grid;
  place-items: center;
  background-image: url("../images/cta.png");
  background-size: cover;
  background-position: right;
}
.section-pages .cta-section .container .cta-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 80%;
}
@media (min-width: 768px) {
  .section-pages .cta-section .container .cta-content {
    background-position: center;
    max-width: 70%;
  }
}
@media (min-width: 1024px) {
  .section-pages .cta-section .container .cta-content {
    max-width: 35%;
  }
}
.section-pages .cta-section .container .cta-content {
  text-align: center;
}
.section-pages .cta-section .container .cta-content p {
  color: #ffffff;
  margin-bottom: 2rem;
}
.section-pages .cta-section .container .cta-content .cta-button {
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  padding: 0.5rem 2rem;
  margin: 0 auto;
  text-transform: uppercase;
  transition: all 0.5s ease;
  display: grid;
  place-items: center;
}
.section-pages .cta-section .container .cta-content .cta-button:hover {
  color: #ffffff;
  border-color: transparent;
  background-color: var(--color-primary);
}

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