/*===============================*/
/*========= GOOGLE FONTS ========*/
/*===============================*/
/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap"); */
/* @import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&display=swap'); */

@font-face {
  font-family: "Poppins";
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Poppins-Black.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Poppins-Light.woff2") format("woff2");
}

@font-face {
  font-family: "Bitter";
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Bitter-Black.woff2") format("woff2");
}

@font-face {
  font-family: "Bitter";
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Bitter-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Bitter";
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Bitter-SemiBold.woff2") format("woff2");
}

/*===============================*/
/*======== VARIABLES CSS ========*/
/*===============================*/
:root {
  --header-height: 3rem;

  --container-width: 1600px;

  /*===============================*/
  /*======== FONT SIZE H1 =========*/
  /*===============================*/
  --title-h1: 6vw; /* Adjust number hero title font: high = big, low = small */

  /*===============================*/
  /*======== THEME COLORS =========*/
  /*===============================*/
  --hue-color: 200;
  /*- Red     = 0 
    - Green   = 120
    - Cyan    = 180 
    - Blue    = 230
    - Purple  = 250 
    - Magenta = 300 
    - Pink    = 340
    - Orange  = 380
  */

  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 26%, 88%);
  --first-color-second: hsl(var(--hue-color), 99%, 29%);
  --first-color-alt: hsl(var(--hue-color), 9%, 80%);
  --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
  --title-color: hsl(var(--hue-color), 8%, 15%);
  --text-color: hsl(var(--hue-color), 8%, 30%);
  --text-color-light: hsl(var(--hue-color), 8%, 60%);
  --input-color: hsl(var(--hue-color), 20%, 90%);
  --body-color: hsl(var(--hue-color), 60%, 99%);

  --container-color: hsl(0, 0%, 100%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);
  --button-color: hsl(0, 0%, 6%);
  --danger-color: hsl(0, 100%, 50%);
  --light-color: hsl(10, 10%, 100%);
  --dark-color: hsl(var(--hue-color), 8%, 15%);

  /*===============================*/
  /*===== FONT AND TYPOGRAPHY =====*/
  /*===============================*/
  --main-font: "Bitter", serif;
  --sub-font: "Poppins", sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --h1-font-size: clamp(1.9rem, var(--title-h1), 3rem);
  --h2-font-size: clamp(2.15rem, 5vw, 2.25rem);
  --h3-font-size: clamp(1.125rem, 5vw, 1.15rem);
  --font-size-4-5: 4.5rem;
  --font-size-3-5: 3.5rem;
  --font-size-3: 3rem;
  --font-size-2-5: 2.5rem;
  --font-size-2: 2rem;
  --font-size-1-75: 1.75rem;
  --font-size-1-5: 1.5rem;
  --font-size-1-25: 1.25rem;
  --font-size-1-2: 1.2rem;
  --font-size-1-1: 1.1rem;
  --font-size-1: 0.875rem;
  --font-size-0-813: 0.813rem;
  --font-size-0-75: 0.75rem;

  /*===============================*/
  /*========= FONT WEIGHT =========*/
  /*===============================*/
  --font-light: 300;
  --font-medium: 400;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-black: 900;

  /*===============================*/
  /*========== SPACINGS ===========*/
  /*===============================*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --space-0-25: 0.25rem;
  --space-0-5: 0.5rem;
  --space-0-75: 0.75rem;
  --space-1: 1rem;
  --space-1-25: 1.25rem;
  --space-1-5: 1.5rem;
  --space-2: 2rem;
  --space-2-5: 2.5rem;
  --space-3: 3rem;
  --space-3-5: 3.5rem;
  --space-4: 4rem;
  --space-4-5: 4.5rem;
  --space-5: 5rem;
  --space-6: 6rem;
  --space-8: 8rem;
  --space-10: 10rem;
  --space-14: 14rem;

  /*===============================*/
  /*=========== Z INDEX ===========*/
  /*===============================*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;

  /*===============================*/
  /*=========== SHADOW ============*/
  /*===============================*/
  --shadow-sm: 5px 5px 10px rgba(2, 2, 2, 0.12);
  --shadow-md: 0 -1px 4px rgba(0, 0, 0, 0.15);

  /*===============================*/
  /*=========== BORDER ============*/
  /*===============================*/
  --border-sm: 1px solid var(--border-color);

  /*===============================*/
  /*============ EMBLA ============*/
  /*===============================*/
  --slide-height: 24rem;
  --slide-spacing-none: 0;
  --slide-spacing-2xs: 1rem;
  --slide-spacing-xs: 2rem;
  --slide-spacing-sm: 3rem;
  --slide-spacing-md: 4rem;
  --slide-spacing-lg: 5rem;
  --slide-spacing-xl: 6rem;
  --slide-size: 100%;
  --slide-size-sm: 50%;
  --slide-size-lg: calc(100% / 3);
  --slide-size-xl: calc(100% / 4);
  --slide-size-2xl: calc(100% / 5);
}

/* Font size for large devices */
@media screen and (min-width: 968px) {
  :root {
    --font-size-1: 0.875rem;
    --font-size-0-813: 0.813rem;
    --font-size-0-75: 0.75rem;
  }
}

/*===============================*/
/*===== VARIABLES DARK THEME ====*/
/*===============================*/
body.dark-theme {
  /* HSL color mode */
  --first-color-second: hsl(var(--hue-color), 40%, 48%);
  --title-color: hsl(var(--hue-color), 8%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);

  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 28%, 2%);

  --container-color: hsl(var(--hue-color), 29%, 16%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);

  --button-color: hsl(0, 0%, 96%);
  --dark-color: hsl(var(--hue-color), 8%, 95%);
}

#dark-mode > img {
  cursor: pointer;
}

#dark-mode.dark-theme .moon__mode,
#dark-mode .sun__mode {
  display: none;
}

#dark-mode.dark-theme .sun__mode {
  display: block;
}

.moon__mode svg,
.sun__mode svg {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
}

.moon__mode.visible,
.sun__mode.visible {
  visibility: visible;
}

/*===============================*/
/*======= BUTTON DARKMODE =======*/
/*===============================*/
.theme__container {
  display: flex;
  align-items: center;
  column-gap: var(--space-0-75);
}

.change-theme {
  font-size: var(--font-size-1-25);
  color: var(--title-color);
  margin-right: var(--space-1);
  cursor: pointer;
}

.change-theme:hover {
  color: var(--border-color);
}

/*===============================*/
/*============ EMBLA ============*/
/*===============================*/
.embla {
  max-width: 111.5rem;
  margin: auto;
}

.embla__viewport {
  overflow: hidden;
  z-index: 1;
}

.embla__container {
  backface-visibility: hidden;
  display: flex;
  touch-action: pan-y pinch-zoom;
  /* margin-left: calc(var(--slide-spacing-lg) * -1); */
}

@media (max-width: 798px) {
  .embla__container.embla__galleries {
    margin-left: calc(var(--slide-spacing-2xs) * -1);
  }

  .embla__container.embla__modal-galleries,
  .embla__container.embla__testimonial {
    margin-left: calc(var(--slide-spacing-lg) * -1);
  }
}

@media (min-width: 799px) {
  .embla__container.embla__galleries,
  .embla__container.embla__modal-galleries,
  .embla__container.embla__testimonial {
    margin-left: calc(var(--slide-spacing-md) * -1);
  }

  .embla__container .galleries__slide:nth-child(even) {
    margin-top: 3rem;
  }
}

@media (min-width: 1280px) {
  .embla__container.embla__galleries {
    margin-left: calc(var(--slide-spacing-lg) * -1);
  }
}

.embla__slide {
  min-width: 0;
  /* flex: 0 0 var(--slide-size); */
  /* padding-left: var(--slide-spacing-md); */
  cursor: grab;
}

@media (max-width: 798px) {
  .embla__slide.galleries__slide {
    flex: 0 0 var(--slide-size);
    padding-left: var(--slide-spacing-2xs);
  }

  .embla__slide.galleries__modal-slide,
  .embla__slide.testimonial__slide {
    flex: 0 0 var(--slide-size);
    padding-left: var(--slide-spacing-lg);
  }
}

@media (min-width: 799px) {
  .embla__slide.galleries__slide,
  .embla__slide.galleries__modal-slide,
  .embla__slide.testimonial__slide {
    flex: 0 0 var(--slide-size);
    padding-left: var(--slide-spacing-md);
  }
}

@media (min-width: 1280px) {
  .embla__slide.galleries__slide {
    flex: 0 0 var(--slide-size-lg);
    padding-left: var(--slide-spacing-lg);
  }
}

.embla__slide__number {
  box-shadow: inset 0 0 0 0.2rem var(--dark-color);
  border-radius: 1.8rem;
  font-size: 4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--slide-height);
  user-select: none;
}

.embla__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.embla__button {
  -webkit-tap-highlight-color: var(--dark-color);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  width: 3.6rem;
  height: 3.6rem;
  z-index: 1;
  border-radius: 50%;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.embla__button:disabled {
  color: var(--first-color-alt);
}

.embla__button__svg {
  width: 35%;
  height: 35%;
}

.embla__bottom {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  margin-top: 2rem;
}

.embla__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  /* margin-right: calc((2.8rem - 1.4rem) / 2 * -1); */
}

.embla__dot {
  -webkit-tap-highlight-color: var(--dark-color);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.embla__dot:after {
  box-shadow: inset 0 0 0 0.6rem var(--dark-color);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  content: "";
}

.embla__dot--selected:after {
  box-shadow: inset 0 0 0 0.6rem var(--first-color);
}

.embla__selected-snap-display {
  justify-self: center;
  align-self: center;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.837rem;
}

/*===============================*/
/*============ MODAL ============*/
/*===============================*/
.modal {
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden; /* Hides and allows transition */
  transition:
    opacity 0.2s ease,
    visibility 0.4s ease;
}

.modal.modal-show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible; /* Smoothly reveal */
  z-index: 10000;
}

.modal__content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 75vh;
  transition: transform 0.6s ease;
}

.close {
  position: fixed;
  top: var(--space-0-25);
  right: var(--space-0-75);
  z-index: 1100;
  font-size: var(--font-size-2);
  font-weight: var(--font-medium);
  color: var(--danger-color);
  cursor: pointer;
}

/*===============================*/
/*=========== SOCIALS ===========*/
/*===============================*/
.socials {
  column-gap: var(--space-1);
}

.socials__icon {
  display: flex;
  transition: 1s;
}

.socials__icon:hover {
  transform: translateY(-0.25rem);
}

.socials__link {
  color: var(--title-color);
}

.socials__link:hover {
  color: var(--first-color-second);
}

/*===============================*/
/*========== ANIMATION ==========*/
/*===============================*/
.animate-fade {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  /* transform: translateY(50px); */
  /* transition: opacity 0.2s ease-in-out, transform 4s ease-in-out; */
}

.animate-fade.active {
  opacity: 1;
  /* transform: translateY(0); */
}

/*===============================*/
/*========== SCROLL BAR =========*/
/*===============================*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--scroll-bar-color);
  border-radius: var(--space-0-5);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: var(--space-0-5);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*=============================*/
/*=========== PAGE ============*/
/*=============================*/
.page__container {
  padding: 2rem;
  height: 100dvh;
}

.page__content {
  max-width: 32rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page__title {
  margin-bottom: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.page__thanks {
  font-size: clamp(5rem, 10vw, 10rem);
}

.page__error {
  font-size: clamp(5.5rem, 10vw, 10rem);
}

.page__subtitle {
  max-width: 20rem;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.page__link {
  padding: 12px 24px;
  font-size: clamp(0.893rem, 3vw, 1.1rem);
  background: var(--first-color);
  color: var(--container-color);
}

.page__link:hover {
  background: var(--first-color-second);
}

/* policy */
.page__policy {
  margin-top: var(--space-6);
}

.page__policy-content {
  max-width: 60rem;
  margin: var(--space-2-5) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.page__policy-title {
  font-size: var(--h2-font-size);
  text-transform: uppercase;
}

.page__policy-subtitle {
  font-size: var(--h3-font-size);
  text-transform: uppercase;
}

.page__policy-description {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.page__policy-date {
  font-style: italic;
}

.page__policy-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1-25);
}

.page__policy-link {
  color: var(--title-color);
  font-size: var(--font-size-875);
}

.page__policy-link:hover {
  color: var(--first-color-second);
}

/*===============================*/
/*============ BASE =============*/
/*===============================*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  margin: 0 0 var(--space-1) 0;
  font-family: var(--main-font);
  font-size: var(--font-size-1);
  background: var(--body-color);
  color: var(--text-color);
  transition:
    background 0.3s,
    color 0.3s;
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

p {
  font-family: var(--sub-font);
}

/*===============================*/
/*===== REUSABLE CSS CLASSES ====*/
/*===============================*/
.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
}

.section__subtitle {
  display: block;
  font-size: var(--font-size-1);
  text-transform: capitalize;
}

/*===============================*/
/*=========== LAYOUT ============*/
/*===============================*/
.container {
  max-width: var(--container-width);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: var(--space-1-5);
}

.grid__stack > * {
  grid-area: -1/1;
}

.header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
}

/*=============================*/
/*========== BUTTONS ==========*/
/*=============================*/
.button {
  display: inline-block;
  width: fit-content;
  padding: var(--space-0-5) var(--space-1-25);
  font-weight: var(--font-medium);
  font-family: var(--main-font);
  font-size: var(--font-size-1);
  color: var(--button-color);
  border: 1px solid var(--dark-color);
  background: none;
  cursor: pointer;
}

.button:hover {
  background: none;
  border: 1px solid var(--first-color-second);
}

.button__white {
  background-color: var(--button-color);
  color: var(--first-color);
}

.button__white:hover {
  background-color: var(--button-color);
}

.button__flex {
  display: inline-flex;
  align-items: center;
}

.button__link {
  padding: 0;
  background: transparent;
  color: var(--first-color);
}

.button__link:hover {
  background-color: transparent;
  color: var(--first-color-second);
}

/*===============================*/
/*============ NAV SUB ==========*/
/*===============================*/
.nav__sub {
  padding: var(--space-0-75) 0;
  background: var(--body-color);
  border-bottom: 1px solid var(--first-color);
}

.nav__sub .container {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
}

/* nav info */
.nav__infos {
  display: flex;
  align-items: center;
  gap: var(--space-1-5);
}

.nav__info {
  display: flex;
  align-items: center;
  gap: var(--space-0-5);
}

.nav__info svg {
  width: calc(var(--space-1-25) - 0.25rem);
  height: calc(var(--space-1-25) - 0.25rem);
  color: var(--dark-color);
}

.nav__text {
  font-size: var(--font-size-0-75);
  color: var(--title-color);
}

/*===============================*/
/*============== NAV ============*/
/*===============================*/
.nav {
  max-width: var(--container-width);
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  column-gap: var(--space-0-25);
  z-index: 9999;
}

.nav__icon {
  width: var(--space-2-5);
  height: var(--space-2-5);
  background-color: var(--first-color);
  cursor: pointer;
}

.nav__title {
  font-size: var(--font-size-1-5);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  text-transform: capitalize;
  transition: 1s;
}

.nav__title:hover {
  color: var(--first-color-second);
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.nav__list:last-of-type .nav__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-0-75);
}

.nav__seperator {
  width: 25%;
  height: 1px;
  margin: 0 auto;
  background: var(--first-color-alt);
}

.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--font-size-0-813);
  color: var(--title-color);
  font-weight: var(--font-medium);
  text-transform: capitalize;
}

.nav__link:hover {
  color: var(--first-color-second);
}

.nav__toggle {
  margin-top: var(--space-0-25);
  z-index: 1;
  cursor: pointer;
}

.nav__toggle svg {
  width: var(--space-1-25);
  height: var(--space-1-25);
  color: var(--dark-color);
}

.nav__toggle.visible {
  visibility: visible;
}

.nav__close {
  position: fixed;
  top: 0.85rem;
  right: 5%;
  scale: 1.1;
  cursor: pointer;
  transform: translateY(-20rem);
  transition: 0.8s ease-in-out;
}

.nav__close svg {
  width: var(--space-1-25);
  height: var(--space-1-25);
  color: var(--danger-color);
}

/* Active link */
.nav__link.active-link {
  color: var(--first-color-second);
}

/* Change background header */
.scroll-header {
  box-shadow: var(--shadow-sm);
}

/*===============================*/
/*============= HOME ============*/
/*===============================*/
.home .container {
  display: flex;
  align-items: center;
  z-index: 2;
}

.home__img {
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

.home__overlay {
  width: 100%;
  background: linear-gradient(
    to bottom right,
    hsla(0, 0%, 0%, 0.85),
    hsla(0, 0%, 0%, 0.75),
    hsla(0, 0%, 0%, 0.25),
    hsla(0, 0%, 0%, 0.05)
  );
  z-index: 1;
  overflow: hidden;
}

.home__content {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-2);
}

.home__title {
  max-width: 35rem;
  font-size: var(--h1-font-size);
  text-transform: uppercase;
  color: var(--light-color);
}

.home__subtitle {
  margin-top: var(--space-1-5);
  max-width: 35rem;
  font-size: var(--h3-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
  color: var(--text-color-light);
}

.home__span {
  color: var(--light-color);
}

.home__scroll {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: var(--space-0-25);
  background: none;
  border: none;
  cursor: pointer;
}

.home__scroll-name {
  font-size: var(--font-size-1-1);
  font-weight: var(--font-medium);
  color: var(--light-color);
}

.home__scroll-mouse {
  transition: 1s;
}

.home__scroll-mouse svg {
  width: var(--space-2);
  height: var(--space-2);
  color: var(--light-color);
}

.home__scroll:hover .home__scroll-mouse {
  transform: translateY(0.25rem);
}

.home__bottom {
  margin-top: var(--space-3);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-2);
}

/* home clients */
.home__clients {
  display: flex;
  align-items: center;
}

.home__clients-icon {
  display: flex;
  transform: translateX(var(--space-0-5));
}

.home__clients-img {
  width: var(--space-3);
  height: var(--space-3);
  object-fit: cover;
  border: 2px solid var(--light-color);
}

.home__clients-img:nth-child(2) {
  transform: translateX(-0.75rem);
}

.home__clients-img:nth-child(3) {
  transform: translateX(-1.25rem);
}

.home__clients-title {
  margin-top: calc(var(--space-0-25) * -1);
  font-size: var(--font-size-0-813);
  text-transform: capitalize;
  color: var(--light-color);
}

.home__clients-value {
  font-size: var(--font-size-1-5);
  font-weight: var(--font-semi-bold);
  color: var(--light-color);
}

/* home events */
.home__events {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: right;
}

.home__events-title {
  font-size: var(--font-size-1-1);
  text-transform: capitalize;
  color: var(--light-color);
}

.home__events-subtitle {
  font-size: var(--font-size-1);
  text-transform: capitalize;
  color: var(--light-color);
}

.home__events-button {
  display: flex;
  align-items: center;
  justify-content: end;
  background: none;
  border: none;
  cursor: pointer;
}

.home__events-button svg {
  width: var(--space-1-25);
  height: var(--space-1-25);
  color: var(--light-color);
  transform: translateY(-0.1rem);
  transition: 1s;
}

.home__events-button:hover svg {
  transform: translate(0.25rem, -0.1rem);
}

/*===============================*/
/*============ ABOUT ============*/
/*===============================*/
.about.section {
  padding: 0;
}

.about__img {
  width: 100%;
  aspect-ratio: 1 /1;
  object-fit: cover;
}

.about__content {
  max-width: 40rem;
}

.about__content .section__title,
.about__content .section__subtitle {
  text-align: left;
}

.about__description {
  display: flex;
  flex-direction: column;
  gap: var(--space-1-5);
  line-height: 1.5;
}

.about__description p {
  line-height: 1.4;
}

.about__info {
  margin-top: var(--space-3);
  display: flex;
  justify-content: space-between;
}

.about__info-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.about__info-name {
  font-size: var(--font-size-0-75);
}

.about__info-title,
.about__info-name {
  display: block;
  text-align: center;
}

.about__main {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-6);
}

.about__button {
  margin-top: var(--space-3);
}

/*===============================*/
/*============= CTA =============*/
/*===============================*/
.cta.section {
  padding-top: 0;
}

.cta__container {
  align-items: center;
  overflow: hidden;
}

.cta__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  order: 1;
}

.cta__head {
  max-width: 40rem;
}

.cta__description {
  max-width: 25rem;
  margin-top: calc(var(--space-1) * -1);
  display: flex;
  flex-direction: column;
  gap: var(--space-1-5);
}

.cta__description p {
  font-size: var(--font-size-1-1);
  line-height: 1.5;
}

.cta__description p:last-child {
  font-size: var(--font-size-0-938);
}

.cta__button {
  margin-top: var(--space-2-5);
}

/*===============================*/
/*========== GALLERIES ==========*/
/*===============================*/
.galleries .section__title {
  text-align: center;
}

.galleries__slide-content {
  align-items: end;
  overflow: hidden;
}

.galleries__slide-button {
  background: transparent;
  border: none;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.galleries__slide-img {
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: 0.5s ease;
}

.galleries__slide-img:hover {
  transform: scale(1.05);
}

.galleries__slide-head {
  margin-left: var(--space-2-5);
  padding: var(--space-1);
  display: flex;
  flex-direction: column;
  gap: var(--space-0-75);
  background: var(--body-color);
  z-index: 1;
  transform: translateY(30rem);
  transition: 0.6s;
}

.galleries__slide-content:hover .galleries__slide-head {
  transform: translateY(0.1rem);
}

.galleries__slide-title {
  font-size: var(--font-size-1-2);
}

.galleries__slide-description {
  display: -webkit-box; /* Use a flexible box layout */
  -webkit-box-orient: vertical; /* Set the box orientation to vertical */
  line-clamp: 2; /* Limit to 2 lines */
  overflow: hidden; /* Hide overflow content */
  white-space: normal; /* Allow text to wrap */
  font-size: var(--font-size-0-938);
  line-height: 1.4;
}

.galleries__slide-head svg {
  margin-left: auto;
  width: var(--space-1);
  height: var(--space-1);
}

/* galleries modal */
.galleries__modal-container {
  position: relative;
  max-height: 90dvh;
}

.galleries__modal-container::-webkit-scrollbar {
  display: none;
}

.galleries__modal-container .embla__buttons {
  filter: invert(100%);
}

body.theme-dark .galleries__modal-container .embla__buttons {
  filter: invert(100%);
}

.galleries__model-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.galleries__modal-title {
  margin-bottom: var(--space-1);
  text-align: center;
  color: var(--light-color);
}

.galleries .embla__buttons {
  transform: translateY(4rem);
  justify-content: center;
  align-items: end;
  gap: 0;
}

/*===============================*/
/*========== EVENTS ===========*/
/*===============================*/
.events .section__title {
  max-width: 22rem;
}

.events .section__subtitle {
  max-width: 20rem;
  margin: calc(var(--space-1) * -1) 0 var(--space-2-5);
  font-size: var(--font-size-1);
  font-family: var(--sub-font);
  text-transform: none;
}

.events__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.events__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.events__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.events__title {
  max-width: 32rem;
  font-size: clamp(1.85rem, 2.5vw, 3rem);
}

.events__description {
  max-width: 35rem;
  margin-top: var(--space-1-5);
  font-size: var(--font-size-0-938);
  line-height: 1.5;
  color: var(--text-color);
}

.events__time {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
}

.events__date {
  margin-top: calc(var(--space-1) * -1);
  font-size: calc(var(--h1-font-size) + 1.75rem);
  line-height: 1;
}

.events__info {
  font-size: var(--font-size-0-813);
  color: var(--text-color);
}

/*===============================*/
/*============= VIDEO ===========*/
/*===============================*/
.video__card {
  align-items: center;
}

.video__overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    hsla(0, 0%, 0%, 0.15),
    hsla(0, 0%, 0%, 0.15),
    hsla(0, 0%, 0%, 0.15)
  );
  z-index: 1;
  overflow: hidden;
}

.video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__head {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-1-5);
  z-index: 2;
}

.video__title {
  max-width: 45rem;
  padding: 0 var(--space-1);
  font-size: var(--h1-font-size);
  line-height: 1.1;
  color: var(--light-color);
}

.video__text {
  font-size: var(--font-size-1);
  color: var(--light-color);
  opacity: 0.8;
}

.video__button {
  margin-top: var(--space-1);
  color: var(--light-color);
  border: 1px solid var(--light-color);
}

.video__button:hover {
  border: 1px solid var(--light-color);
}

/*===============================*/
/*============= FAQ =============*/
/*===============================*/
.faq .section__title,
.faq .section__subtitle {
  max-width: 30rem;
  text-align: left;
}

.faq__content {
  display: flex;
  flex-direction: column;
}

.faq__card {
  padding: var(--space-1-5);
  grid-template-columns: auto var(--space-2);
  align-items: start;
}

.faq__card-question {
  width: fit-content;
  color: var(--text-color);
  font-size: var(--font-size-1-2);
  font-weight: var(--font-bold);
  line-height: 1.2;
  text-transform: uppercase;
}

.faq__card-answer {
  display: flex;
  flex-direction: column;
  gap: var(--space-1-5);
}

.faq__card-answer p {
  max-width: 40rem;
  font-size: var(--font-size-0-938);
  line-height: 1.4;
}

.faq__content .faq__card-answer {
  max-height: 0;
  padding-top: var(--space-0-5);
  line-height: 1.5;
  color: var(--text-color);
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__card-button {
  height: fit-content;
  border: none;
  background: none;
  cursor: pointer;
  transition: 0.4s;
}

.faq__card-button svg {
  width: var(--space-1-25);
  height: var(--space-1-25);
  color: var(--dark-color);
}

.faq__bottom {
  margin-top: calc(var(--space-1) * -1);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.faq__button {
  margin-left: auto;
}

/*===============================*/
/*========== TESTIMONIAL ========*/
/*===============================*/
.testimonial .section__title {
  max-width: 20rem;
}

.testimonial__card {
  margin-top: calc(var(--space-0-5) * -1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-2-5);
}

.testimonial__card-description {
  font-size: clamp(var(--space-1-5), 3vw, var(--space-3));
  line-height: 1.4;
  color: var(--title-color);
}

.testimonial__card-head {
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: var(--space-1);
}

.testimonial__card-img {
  margin-top: var(--space-1);
  width: var(--space-6);
  aspect-ratio: 1/1;
  object-fit: cover;
}

.testimonial__card-name {
  font-size: var(--font-size-1-1);
  font-weight: var(--font-medium);
  margin-top: var(--space-1);
}

.testimonial__card-visitor {
  font-size: var(--font-size-0-813);
  color: var(--text-color-light);
}

/* testimonaol slider buttons */
.testimonial .embla__buttons {
  margin-left: var(--space-0-25);
  justify-content: start;
  align-items: end;
  gap: 0;
  transform: translateY(4rem);
}

/*===============================*/
/*=========== CONTACT ===========*/
/*===============================*/
.contact__container {
  align-items: center;
}

.contact__img {
  width: 100%;
  object-fit: cover;
}

.contact__main {
  display: flex;
  flex-direction: column;
  gap: var(--space-2-5);
  background: var(--body-color);
}

.contact__head .section__title {
  margin-bottom: 0;
}

.contact__subtitle {
  max-width: 30rem;
  margin-top: var(--space-1);
  font-size: var(--font-size-1);
}

.contact__info {
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1-5);
}

.contact__card {
  display: flex;
  flex-direction: column;
}

.contact__card-title {
  font-size: var(--font-size-1-1);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

.contact__card-subtitle {
  font-size: var(--font-size-0-813);
  color: var(--text-color-light);
}

.contact__group {
  background-color: var(--input-color);
  padding: var(--space-0-75) var(--space-1) var(--space-0-25);
}

.contact__label {
  font-size: var(--font-size-0-75);
  color: var(--title-color);
}

.contact__input {
  width: 100%;
  background-color: transparent;
  color: var(--text-color);
  font-family: var(--main-font);
  font-size: var(--font-size-1);
  border: none;
  outline: none;
  padding: var(--space-0-25) var(--space-0-5) var(--space-0-5) 0;
}

.contact__button {
  padding: var(--space-0-25) var(--space-1-25);
}

.send__icon {
  margin-left: var(--space-0-25);
  color: var(--title-color);
}

.send__icon svg {
  margin-top: 0.15rem;
  width: var(--space-1);
  height: var(--space-1);
}

/*===============================*/
/*=========== FOOTER ============*/
/*===============================*/
.footer__container {
  margin-top: var(--space-6);
  padding: var(--space-4) 0 var(--space-1);
  border-top: 1px solid var(--first-color);
}

.footer__title {
  margin-left: calc(var(--space-0-25) * -1);
  font-size: clamp(8rem, 14vw, 12rem);
  font-weight: var(--font-semi-bold);
  text-transform: capitalize;
}

.footer__description {
  max-width: 30rem;
  line-height: 1.5;
}

.footer__subtitle {
  margin-bottom: var(--space-1-25);
  font-size: var(--font-size-1-1);
}

.footer__links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: var(--space-1-5);
}

.footer__link {
  font-size: var(--font-size-1);
  text-transform: capitalize;
}

.footer__link:hover {
  color: var(--first-color-second);
}

/* Active Link */
.footer__link.active-link {
  color: var(--first-color-second);
}

.footer__socials {
  margin-right: 0;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: var(--space-1-5);
}

/* footer main */
.footer__main {
  margin-top: var(--space-5);
}

.footer__map {
  width: 100%;
  aspect-ratio: 16/9;
}

.footer__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1-5);
}

.footer__item {
  display: flex;
  justify-content: space-between;
}

.footer__item svg {
  width: var(--space-1-25);
  height: var(--space-1-25);
  color: var(--dark-color);
}

/* footer bottom */
.footer__bottom {
  margin: var(--space-5) 0 var(--space-0-75);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--space-0-25);
  font-size: var(--font-size-0-75);
  font-family: var(--sub-font);
  color: var(--text-color);
}

.footer__title,
.footer__subtitle,
.footer__link,
.footer__copy-link,
.footer__social,
.page__policy-links {
  color: var(--title-color);
}

/*===============================*/
/*========== SCROLL UP ==========*/
/*===============================*/
.scroll__up {
  border: none;
  background: none;
}

.scroll__up-icon {
  width: var(--space-2);
  height: var(--space-2);
  color: var(---dark-color);
  cursor: pointer;
  transition: 1.5s;
}

.scroll__up-icon:hover {
  transform: translateY(-0.25rem);
}

/*===============================*/
/*======== MEDIA QUERIES ========*/
/*===============================*/
/*====== FOR SMALL DEVICES ======*/
/*===============================*/
@media screen and (max-width: 490px) {
  .embla__viewport {
    padding: 0 var(--space-0-25);
  }

  .section__title {
    font-weight: var(--font-bold);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: var(--space-2-5);
  }

  .section {
    padding: var(--space-10) 0 0;
  }

  .nav__menu {
    padding: var(--space-2) var(--space-0-25);
  }

  .nav__list {
    column-gap: 0;
  }

  .nav__socials {
    display: none;
  }

  .home__img {
    height: 100dvh;
  }

  .home__overlay {
    height: 100dvh;
  }

  .home__content {
    padding: var(--space-5) 0 var(--space-1);
  }

  .home__img {
    aspect-ratio: 7/9;
  }

  .home__title {
    line-height: 1.3;
  }

  .home__bottom {
    flex-direction: column;
    align-items: start;
  }

  .home__events {
    margin-left: auto;
  }

  .about__container.grid {
    gap: 0;
  }

  .about__img {
    order: 1;
    aspect-ratio: 7/9;
  }

  .about__content {
    padding: var(--space-10) var(--space-3);
  }

  .cta__container.grid {
    gap: 0;
  }

  .cta__img {
    aspect-ratio: 7/9;
  }

  .cta__head {
    padding: var(--space-10) var(--space-3);
  }

  .galleries__slide-img {
    aspect-ratio: 7/9;
  }

  .galleries__modal-img {
    width: 100%;
    aspect-ratio: 7/9;
    object-fit: cover;
  }

  .events__card.grid {
    gap: var(--space-3);
  }

  .events__info {
    margin-top: var(--space-0-5);
  }

  .video__video {
    aspect-ratio: 7/9;
  }

  .faq__container.grid {
    gap: var(--space-3-5);
  }

  .testimonial__container.grid {
    gap: 0;
  }

  .testimonial__card-head {
    margin-top: var(--space-1-5);
  }

  .testimonial .embla__buttons {
    margin-left: calc(var(--space-0-5) * -1);
  }

  .contact__img {
    aspect-ratio: 7/19;
  }

  .contact__main {
    padding: var(--space-2);
  }

  .contact__side.grid {
    gap: var(--space-2-5);
  }

  .contact__info {
    order: -1;
  }

  .footer__container.grid,
  .footer__main.grid {
    gap: var(--space-5);
  }

  .footer__map {
    aspect-ratio: 1/1;
  }
}

/*===============================*/
/*====== FOR SMALL DEVICES ======*/
/*===============================*/
@media screen and (width: 344px) and (height: 882px) {
  .about__content,
  .cta__head {
    padding: var(--space-8) var(--space-2-5);
  }

  .testimonial .embla__buttons {
    margin-left: calc(var(--space-0-5) * -1);
  }

  .contact__img {
    aspect-ratio: 7/20;
  }

  .footer__title {
    font-size: 7.5rem;
  }
}

/*===============================*/
/*====== FOR MEDIUM DEVICES =====*/
/*===============================*/
@media screen and (min-width: 491px) {
  .embla__viewport {
    padding: 0 var(--space-0-25);
  }

  .section {
    padding: var(--space-10) 0 0;
  }

  .section__title {
    font-weight: var(--font-bold);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: var(--space-2-5);
  }

  .nav__socials {
    display: none;
  }

  .home__img {
    height: 100dvh;
    aspect-ratio: 7/9;
  }

  .home__overlay {
    height: 100dvh;
  }

  .home__content {
    padding: var(--space-5) 0 var(--space-10);
  }

  .home__title {
    line-height: 1.2;
  }

  .events__info {
    margin-top: var(--space-0-5);
  }

  .about__container.grid {
    gap: var(--space-5);
  }

  .about__content {
    padding: var(--space-10) 0;
  }

  .about__img {
    order: 1;
  }

  .cta__container.grid {
    gap: var(--space-5);
  }

  .cta__head {
    padding: var(--space-10) 0;
  }

  .galleries__slide-img {
    aspect-ratio: 7/9;
  }

  .galleries__modal-img {
    width: 100%;
    aspect-ratio: 7/9;
    object-fit: contain;
  }

  .events__card.grid {
    gap: var(--space-3);
  }

  .video__video {
    aspect-ratio: 1/1;
  }

  .faq__container.grid {
    gap: var(--space-5);
  }

  .testimonial__container.grid {
    gap: var(--space-1);
  }

  .testimonial__card-head {
    margin-top: var(--space-1-5);
  }

  .contact__img {
    aspect-ratio: 7/9;
  }

  .contact__main {
    padding: var(--space-2-5);
  }

  .contact__side.grid {
    gap: var(--space-2-5);
  }

  .contact__info {
    order: -1;
  }

  .footer__container.grid,
  .footer__main.grid {
    gap: var(--space-5);
  }
}

/*===============================*/
/*====== FOR MEDIUM DEVICES =====*/
/*===============================*/
@media screen and (width: 540px) and (height: 720px) {
  .about__content,
  .cta__head {
    padding: var(--space-10) var(--space-5);
  }

  .testimonial .embla__buttons {
    margin-left: calc(var(--space-0-5) * -1);
  }

  .contact__img {
    aspect-ratio: 7/12;
  }
}

/*===============================*/
/*=== MEDIA QUERIES NAVIGATION ==*/
/*===============================*/
@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-modal);
    width: 100%;
    height: 100%;
    padding: var(--space-2) var(--space-1-5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2-5);
    background-color: var(--body-color);
    box-shadow: var(--shadow-sm);
    transform: translateY(-100%);
    opacity: 0;
    transition: 0.6s ease-in;
  }

  /* show menu */
  .show-menu {
    opacity: 1;
    transform: translateY(0%);
  }

  .show-menu .nav__close {
    transform: translateY(0);
  }

  .nav__sub {
    display: none;
  }
}

/*===============================*/
/*====== FOR MEDIUM DEVICES =====*/
/*===============================*/
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .embla__viewport {
    padding: 0 var(--space-1);
  }

  .section {
    padding: var(--space-10) 0 var(--space-2);
  }

  .header {
    top: 0;
    bottom: initial;
  }

  .header,
  .main {
    padding: 0 var(--space-1);
  }

  .change-theme {
    margin: 0;
  }

  .nav {
    height: calc(var(--header-height) + 0.75rem);
    column-gap: var(--space-1);
  }

  .nav__menu-icon,
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    margin-left: 0;
  }

  .nav__list {
    display: flex;
    flex-direction: row;
    column-gap: var(--space-2);
  }

  .nav__list:last-of-type {
    display: none;
  }

  .nav__seperator {
    display: none;
  }

  .home__img {
    height: calc(100dvh - 7.5rem);
    aspect-ratio: 16/7;
  }

  .home__overlay {
    height: calc(100dvh - 7.5rem);
  }

  .home__content {
    padding: 0;
  }

  .events__info {
    margin-top: var(--space-0-75);
  }

  .about__container.grid {
    gap: 0;
  }

  .about__content {
    padding: var(--space-10) var(--space-6);
  }

  .about__img {
    order: 1;
  }

  .about__info {
    justify-content: space-between;
  }

  .cta__container.grid {
    gap: 0;
  }

  .cta__head {
    padding: var(--space-10) var(--space-6);
  }

  .galleries__modal-img {
    aspect-ratio: 14/9;
  }
}

/*===============================*/
/*====== FOR LARGE DEVICES ======*/
/*===============================*/
@media screen and (min-width: 1024px) {
  .embla__viewport {
    padding: 0 1rem;
  }

  .galleries__modal-img {
    aspect-ratio: 18/9;
  }

  .events__card {
    grid-template-columns: 0.75fr 1fr 0.5fr;
  }

  .events__card.grid {
    gap: var(--space-5);
  }

  .events__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }

  .faq__container {
    grid-template-columns: 0.25fr 1fr;
  }

  .faq__container.grid {
    gap: var(--space-10);
  }

  .faq__head {
    height: fit-content;
    position: sticky;
    top: var(--space-8);
  }

  .testimonial__container {
    grid-template-columns: 0.25fr 1fr;
  }

  .testimonial__container.grid {
    gap: var(--space-10);
  }

  .contact__img {
    aspect-ratio: 16/14;
  }

  .contact__side {
    grid-template-columns: 1fr 0.15fr;
  }

  .contact__info {
    order: 1;
  }

  .contact__inputs {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: 2.2fr 0.5fr 0.5fr;
  }

  .footer__container.grid {
    gap: var(--space-10);
  }

  .footer__title {
    margin-top: calc(var(--space-1-5) * -1);
    margin-bottom: calc(var(--space-0-5) * -1);
  }

  .footer__main.grid {
    gap: var(--space-5);
  }
}

/*===============================*/
/*====== FOR LARGE DEVICES ======*/
/*===============================*/
@media screen and (width: 1024px) and (height: 600px) {
  .about__img {
    aspect-ratio: 16/9;
  }

  .cta__img {
    aspect-ratio: 16/9;
  }

  .events__title {
    font-size: var(--font-size-1-5);
  }

  .events__date {
    font-size: calc(var(--h1-font-size) + 0.5rem);
  }

  .events__info {
    margin-top: var(--space-0-5);
    text-align: right;
  }

  .contact__img {
    aspect-ratio: 16/11;
  }
}

/*===============================*/
/*====== FOR LARGE DEVICES ======*/
/*===============================*/
@media screen and (min-width: 1280px) {
  .about__container {
    grid-template-columns: 1fr 0.5fr;
    align-items: center;
  }

  .about__img {
    order: 0;
  }

  .about__content {
    padding: var(--space-8) var(--space-5);
  }

  .cta__head {
    padding: var(--space-8) var(--space-5);
  }

  .cta__container {
    grid-template-columns: 0.5fr 1fr;
  }

  .events__time {
    width: 15rem;
  }

  .video__video {
    aspect-ratio: 16/9;
  }

  .testimonial__card-head {
    margin-top: var(--space-1-5);
  }

  .contact__main {
    padding: var(--space-5);
  }

  .contact__img {
    aspect-ratio: 16/9;
  }
}

/*===============================*/
/*====== FOR LARGE DEVICES ======*/
/*===============================*/
@media screen and (width: 1280px) and (height: 800px) {
  .contact__img {
    aspect-ratio: 16/10;
  }
}

/*===============================*/
/*====== FOR LARGE DEVICES ======*/
/*===============================*/
@media screen and (min-width: 1366px) {
  .footer__container {
    grid-template-columns: 1.5fr 0.75fr 0.75fr;
  }

  .footer__main {
    grid-template-columns: 1.5fr 0.78fr 0.78fr;
  }

  .footer__container.grid,
  .footer__main.grid {
    gap: var(--space-10);
  }
}
