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

  /*========== Colors ==========*/
  /* #d5ff3f; */
  /* #1e1e20; */
  --body-color: #10071e;
  /* --grns: #3adafd; */
  --grns: #7f31e9;
  --reds: #fc5746;
  --grey: #c4c4c4;
  --brwn: #eddbc3;
  --lgrey: #c9c9c9;
  --llgrey: #b2b2b2;
  --blu: #0d4b81;
  --subtitle-font: "Wix Madefor Display", sans-serif;
  /* --brwn-txt: #e95555;
  --blu-txt: #050596; */

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/

  --title-font-size: 3.5rem;
  --carousel-title-font-size: 2.5rem;
  --subtitle-font-size: 1.5rem;
  --modaldes-font-size: 1.1rem;
  --himg: 7rem;
  --ribbon-height: 2.5rem;
  --footer-font-size: 1rem;
  --services-font-size: 2rem;
}

/* Responsive typography */
@media screen and (min-width: 630px) {
  :root {
    --title-font-size: 3.5rem;
    --subtitle-font-size: 1.6rem;
    --modaldes-font-size: 1.2rem;
    --himg: 9rem;
    --ribbon-height: 3.5rem;
    --footer-font-size: 1.5rem;
    --services-font-size: 4rem;
  }
}

@media screen and (min-width: 992px) {
  :root {
    --title-font-size: 4.5rem;
    --subtitle-font-size: 2rem;
    --modaldes-font-size: 1.6rem;
  }
}

@font-face {
  font-family: "vcrmono";
  src: url("../fonts/vcr_osd_mono_1.001-webfont.woff2") format("woff2"),
    url("../fonts/vcr_osd_mono_1.001-webfont.woff") format("woff");
  /* font-weight: normal;
  font-style: normal; */
}

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

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
  transition: 0.4s; /* for light mode animation */
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semibold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1080px;
  margin-top: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  /* border-radius: 25px; */
  overflow: hidden;
}

.main {
  overflow: hidden;
}

/* ==================PRELOADER================= */
.preloader {
  background-color: var(--body-color);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1300;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.loader__img {
  width: 200px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.circle {
  position: absolute;
}

.preloader svg {
  width: 250px;
  height: 250px;
}

.preloader svg .ripple {
  fill: transparent;
  stroke: var(--grns);
  stroke-width: 3px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: 2s ease-out 0s infinite ripple-out;
  animation: 2s ease-out 0s infinite ripple-out;
}

.preloader svg .ripple2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.preloader svg .ripple3 {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

@-webkit-keyframes ripple-out {
  0% {
    r: 0px;
    opacity: 1;
  }
  100% {
    r: 80px;
    opacity: 0;
  }
}

@keyframes ripple-out {
  0% {
    r: 0px;
    opacity: 1;
  }
  100% {
    r: 80px;
    opacity: 0;
  }
}

/* ================NAV SECTION============ */
.nav {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 0;
  margin-bottom: 5rem;
}

.nav__logo {
  width: 120px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.hnav {
  position: relative;
}

.hnav__btn {
  position: absolute;
  top: 5%;
  right: 10%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
  cursor: pointer;
}

.hnav__btn-outline {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid var(--grns);
}

#toggle-btn {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
  cursor: pointer;
}

.nav__btn-outline {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid var(--body-color);
}

.nav__btn-outline-1 {
  width: 70px;
  height: 70px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 4s linear infinite;
}

.nav__btn-outline-2 {
  width: 70px;
  height: 70px;
  border-radius: 53% 47% 43% 57% / 51% 39% 61% 49%;
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.nav__hamburger {
  position: relative;
  width: 20px;
  height: 20px;
  z-index: 101;
}

.nav__hamburger span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--body-color);
  transition: transform 0.4s ease-in-out;
}

.nav__hamburger span::before {
  content: "";
  position: absolute;
  display: inline-block;
  right: 0;
  width: 18px;
  height: 2px;
  background-color: var(--body-color);
  transform: translateY(-4px);
  transition: transform 0.4s ease-in-out;
}

.active span {
  transform: rotate(45deg);
  background-color: var(--grns);
}

.active span::before {
  top: unset;
  width: 24px;
  transform: rotate(-90deg);
  background-color: var(--grns);
}

.menu {
  width: 100%;
  height: 100vh;
  font-family: "vcrmono";
  background-color: var(--body-color);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 100;
  transform: translateY(-100%);
}

.menu a {
  color: var(--grns);
}

.menu a span {
  font-size: 1.5rem;
  margin-right: 2rem;
  font-weight: bold;
}

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

.primary-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
}

.primary-menu .menu-container .wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
}

.primary-menu a {
  /* text-transform: uppercase; */
  font-size: 6.5rem;
}

.primary-menu .menu-container .wrapper .menu-item:nth-child(1) a,
.primary-menu .menu-container .wrapper .menu-item:nth-child(3) a {
  margin-left: 4rem;
}

.secondary-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  margin: 0 0 3rem 3rem;
}

.secondary-menu .menu-item a {
  font-family: var(--subtitle-font);
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--lgrey);
}

.secondary-menu .menu-container .wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ================HERO SECTION============ */

.hero {
  display: flex;
  flex-direction: column;
  background: rgb(235, 70, 252);
  background: -moz-linear-gradient(
    45deg,
    rgba(235, 70, 252, 1) 0%,
    rgba(127, 49, 233, 1) 62%
  );
  background: -webkit-linear-gradient(
    45deg,
    rgba(235, 70, 252, 1) 0%,
    rgba(127, 49, 233, 1) 62%
  );
  background: linear-gradient(
    45deg,
    rgba(235, 70, 252, 1) 0%,
    rgba(127, 49, 233, 1) 62%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eb46fc",endColorstr="#7f31e9",GradientType=1);
  position: relative;
}

.hero__container {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 2rem;
  /* border-radius: 25px 25px 0 0; */
}

.hero__title {
  color: var(--body-color);
  font-family: "vcrmono";
  line-height: var(--title-font-size);
  font-size: var(--title-font-size);
  text-transform: uppercase;
  font-weight: bold;
}

.hero__title--up {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-weight: bold;
}

.hero__title--up-img {
  width: var(--himg);
  height: var(--title-font-size);
  /* border-radius: 50px; */
  background-color: var(--body-color);
  padding: 0 2rem;
}

.hero__subtitle {
  font-family: var(--subtitle-font);
  font-size: var(--subtitle-font-size);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-weight: 400;
  line-height: var(--subtitle-font-size);
}

.talk__button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: var(--body-color);
  color: var(--grns);
  /* border-radius: 25px; */
  /* text-transform: uppercase; */
  font-weight: bold;
  cursor: pointer;
}

.talk__button:hover {
  background-color: var(--grns);
  color: var(--body-color);
  transition: 0.4s ease-in-out;
}

.talk__button i {
  margin-left: 1rem;
  transform: rotate(-45deg);
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--title-font-size);
  /* border-radius: 25px; */
  position: relative;
  bottom: -50px;
  z-index: 1;
  /* border-radius: 0 0 50px 50px; */
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 50px 50px 0 0; */
}

.ribb {
  z-index: 10;
  bottom: 20px;
  height: 11rem;
  overflow: hidden;
  /* border-radius: 0; */
  position: relative;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ribbon {
  background-color: var(--grns);
  width: 150%;
  font-family: var(--subtitle-font);
  font-size: 1.5rem;
  padding: 1rem 0;
  color: var(--body-color);
  border: 0.5px solid var(--body-color);
}

.ribbon__f {
  transform: rotate(5deg);
}

.ribbon__s {
  transform: rotate(-5deg);
  position: absolute;
}

/* ================CAROUSEL=================== */
.carousel {
  margin: 3rem 0 5rem 0;
  color: var(--grns);
  font-family: var(--subtitle-font);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.carousel__container {
  overflow: hidden;
  cursor: -webkit-grab;
  cursor: grab;
  width: 100%;
  position: relative;
  z-index: 1;
  height: 100%;
}

.carousel__container.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.carousel__wrapper {
  counter-reset: count;
  display: flex;
  gap: 2rem;
  position: absolute;
  z-index: 1;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
}

.carousel__item {
  counter-increment: count;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 380px;
  /* padding: 3rem; */
  height: 100%;
  padding: 0 2.5rem;
  overflow: hidden;
}

.carousel__item-text {
  position: absolute;
  z-index: 1;
  left: 0.2rem;
  bottom: 0.1rem;
  padding: 1rem;
}

.carousel__item-text h3 {
  font-family: "vcrmono";
  font-size: var(--carousel-title-font-size);
  font-weight: bold;
  color: #a676f2;
  margin-bottom: 1rem;
}

.carousel__item-text p {
  font-size: 1.1rem;
  color: var(--llgrey);
}

.carousel__item:nth-child(n + 10):before {
  content: counter(count);
}

.carousel__item figure {
  position: absolute;
  z-index: 1;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  padding: 0;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  width: 100%;
  height: 70%;
  overflow: hidden;
  pointer-events: none;
  transform-origin: center;
}

.carousel__item figure:before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 3rem;
  display: inline-block;
  content: "0" counter(count);
  color: var(--llgrey);
  font-size: var(--subtitle-font-size);
}

.carousel__item figure img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
  transform-origin: center;
  filter: brightness(36%);
}

/* ================services================== */
.services {
  margin-top: 3rem;
}

.services__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* border-bottom: 1px solid var(--llgrey); */
}

.services__title {
  font-family: "vcrmono";
  font-size: var(--title-font-size);
  text-transform: uppercase;
  font-weight: bold;
  color: var(--lgrey);
  text-align: center;
  margin-bottom: 2rem;
}

.services__subtitle {
  max-width: 500px;
  font-family: var(--subtitle-font);
  font-size: var(--subtitle-font-size);
  line-height: var(--subtitle-font-size);
  text-align: center;
  color: var(--llgrey);
  padding-bottom: 2rem;
}

/* ==================WORK====================== */
/*
.work {
  margin-top: 5rem;
}

.work__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  position: relative;
}

.work__item {
  width: 100%;
  background-color: var(--grns);
   border-radius: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}

.link-image {
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  width: 100px;
  z-index: 100;
  pointer-events: none;
}

.work__container:hover .link-image {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.work__item-title {
  grid-column: 1 / 5;
  padding: 2rem;
  background-color: var(--body-color);
  border: 0.1px solid var(--llgrey);
}

.work__item-title-head {
  font-family: "vcrmono";
  font-size: var(--title-font-size);
  text-transform: uppercase; 
  font-weight: bold;
  color: var(--lgrey);
  text-align: center;
  margin-bottom: 1rem;
}

.work__item-title-sub {
  max-width: 500px;
  font-family: var(--subtitle-font);
  font-size: var(--subtitle-font-size);
  text-align: center;
  color: var(--llgrey);
}

.work__item-1 {
  width: 100%;
  height: 400px;
  grid-column: 1 / 5;
}

.work__item-2 {
  grid-column: 1 / 3;
  height: 200px;
}

.work__item-3 {
  grid-column: 3 / 5;
  height: 200px;
}

.work__item-4 {
  grid-column: 1 / 5;
  height: 500px;
}

.work__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}

 .work__item-image:hover img {
  transform: scale(1.3);
  transition: 0.4s ease-in-out;
} 

.modal {
  position: fixed;
  inset: 0;
  background-color: #362b48d0;
  padding: 2rem 1rem;
  display: grid;
  place-items: center;
  transition: 0.4s;
  z-index: 1200;
  visibility: hidden;
  opacity: 0;
}

.active-modal {
  visibility: visible;
  opacity: 1;
  transition: 0.4s ease-in-out;
}

.modal-content {
  background-color: var(--body-color);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.modal-head {
  grid-column: 1/5;
  position: relative;
  width: 100%;
}

.modal-image {
  width: 100%;
  height: 100%;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.modal-title {
  position: absolute;
  bottom: 30px;
  left: 20px;
  font-size: var(--title-font-size);
  font-family: "vcrmono";
  color: #ae8be7;
  font-weight: 600;
}

.modal-description {
  grid-column: 2/5;
  font-size: var(--modaldes-font-size);
  color: var(--lgrey);
  font-family: var(--subtitle-font);
  padding: 2rem 1rem 2rem 0;
   margin-bottom: 2rem; 
}

.modal-close {
  position: absolute;
  background-color: var(--grns);
  color: var(--body-color);
  width: 70px;
  height: 70px;
  right: 0;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1205;
  display: grid;
  place-items: center;
}

.modal-close:hover {
  background-color: #a269ff;
  transition: 0.4s ease-in-out;
}
*/

/* =======================Video======================== */

.video {
  margin-top: 3rem;
}

.video__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}

.video__item-title {
  grid-column: 1 / 4;
  padding: 2rem;
  background-color: var(--body-color);
  border: 0.1px solid var(--llgrey);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  /* border-radius: 50px; */
  text-align: center;
}

.video__item-title-head {
  font-family: "vcrmono";
  font-size: var(--title-font-size);
  /* text-transform: uppercase; */
  font-weight: bold;
  color: var(--lgrey);
}

.video__item-title-sub {
  max-width: 500px;
  font-family: var(--subtitle-font);
  font-size: var(--subtitle-font-size);
  color: var(--llgrey);
}

.video__item-video {
  grid-column: 1/4;
  width: 100%;
  height: auto;
  /* border-radius: 45px; */
  overflow: hidden;
  position: relative;
}

.video__item-video video {
  width: 100%;
  height: 100%;
}

.video__item-video:hover video {
  transform: scale(1.1);
  transition: 0.4s ease-in-out;
}
.video__item-video-play {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--grns);
  font-size: var(--subtitle-font-size);
}

.video__item-video-play:hover {
  background-color: var(--body-color);
  color: var(--grns);
  transition: 0.4s ease-in-out;
}

.video__item-video-play:hover i {
  color: var(--grns);
  transition: 0.4s ease-in-out;
}

.video__item-video-play i {
  transform: rotate(-45deg);
  color: var(--body-color);
}
/* =====================Newsletter===================== */

.newsletter {
  margin-top: 3rem;
  /* padding: 1rem; */
  color: var(--llgrey);
}

.newsletter__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.newsletter__image {
  grid-column: 1/3;
  /* border-radius: 50px; */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.newsletter__head {
  grid-column: 1 / 3;
  padding: 2rem;
  background-color: var(--body-color);
  border: 0.1px solid var(--llgrey);
  /* border-radius: 50px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.newsletter__title {
  font-family: "vcrmono";
  font-size: var(--title-font-size);
  /* text-transform: uppercase; */
  font-weight: bold;
  color: var(--lgrey);
}

.newsletter__subtitle {
  max-width: 500px;
  font-family: var(--subtitle-font);
  font-size: var(--subtitle-font-size);
  color: var(--llgrey);
}

.newsletter__form {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.newsletter__form-input {
  width: 100%;
  padding: 2rem;
  /* border-radius: 35px; */
  border: 0.1px solid var(--llgrey);
  outline: none;
  font-family: var(--subtitle-font);
  font-size: var(--subtitle-font-size);
  color: var(--grns);
  font-weight: bold;
}

.newsletter__form input {
  background-color: transparent;
}

.newsletter__form-input::placeholder {
  color: var(--llgrey);
}

.newsletter__form-input:focus {
  border: 0.1px solid var(--grns);
}

.newsletter__form-btn {
  position: absolute;
  right: 1rem;
  width: 70px;
  height: 70px;
  /* border-radius: 50px; */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--grns);
  color: var(--body-color);
  font-size: var(--subtitle-font-size);
}

.newsletter__form-btn i {
  transform: rotate(-45deg);
}

.newsletter__form-btn:hover {
  background-color: var(--body-color);
  color: var(--grns);
  transition: 0.4s ease-in-out;
}

/* =============================CONTACT US ============================= */
.contact {
  margin-top: 3rem;
  background-color: var(--grns);
  /* border-radius: 0 0 45px 45px; */
  padding: 7rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.contact__title {
  font-family: "vcrmono";
  font-size: var(--title-font-size);
  text-transform: uppercase;
  font-weight: bold;
  color: var(--body-color);
  text-align: center;
}

.contact__talk {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 5rem;
  font-family: var(--subtitle-font);
  font-size: var(--subtitle-font-size);
  background-color: var(--body-color);
  color: var(--grns);
  /* border-radius: 45px; */
  font-weight: bold;
  cursor: pointer;
}

.contact__talk:hover {
  background-color: #201236;
  transition: 0.4s ease-in-out;
}

.footer__socials i:hover {
  color: #a676f2;
  transform: scale(1.3);
  transition: 0.4s ease-in-out;
}

.contact__talk a {
  color: var(--grns);
}

.footer__terms:hover a,
.footer__privacy:hover a,
.footer__copy:hover a {
  color: #a676f2;
  transition: 0.4s ease-in-out;
}

.contact__talk i {
  margin-left: 1rem;
  transform: rotate(-45deg);
  font-size: var(--subtitle-font-size);
}
/* =======================FOOTER======================= */

.footer {
  margin-top: 5rem;
  background-color: var(--body-color);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.footer__logo {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.footer__socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer__socials i {
  font-size: 1.5rem;
  color: var(--grns);
  width: 2.5rem;
  height: 2.5rem;
  /* border-radius: 1rem; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--subtitle-font);
  font-size: var(--footer-font-size);
  color: var(--grns);
  border-bottom: 0.1px solid var(--grns);
  padding-bottom: 1rem;
}

.footer__bottom a {
  color: var(--grns);
}

@media screen and (min-width: 630px) {
  .hero__image {
    margin-top: 5rem;
  }

  .link-image {
    width: 200px;
  }

  .modal-head {
    height: 300px;
  }
}

@media screen and (min-width: 992px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .nav {
    width: 100%;
  }

  .menu {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .primary-menu {
    margin-top: 0;
  }

  .secondary-menu {
    margin: 0;
  }

  .hero__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }

  .hero__subtitle {
    width: 35%;
  }

  .services {
    margin-top: 3rem;
  }

  .services__head {
    flex-direction: row;
    justify-content: space-between;
    padding: 5rem 0;
  }

  .services__subtitle {
    text-align: right;
  }

  .carousel__item-text h3 {
    font-size: var(--carousel-title-font-size)
  }

  .work__container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: repeat(5, 1fr);
    height: auto;
  }

  .work__item {
    height: auto;
  }

  .work__item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 4;
  }

  .work__item-title {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
  }

  .work__item-2 {
    grid-column: 1 / 2;
    grid-row: 4 / 6;
  }

  .work__item-3 {
    grid-column: 2 / 3;
    grid-row: 4 / 6;
  }

  .work__item-4 {
    grid-column: 3 / 4;
    grid-row: 3 / 6;
  }

  .modal-content {
    width: 80%;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: repeat(10, 1fr);
  }

  .modal-head {
    grid-column: 1/8;
    grid-row: 1/11;
    height: 100%;
  }

  .modal-title {
    top: 30px;
    left: 20px;
  }

  .modal-description {
    grid-column: 5/17;
    grid-row: 4/11;
    padding: 4rem 2rem;
    z-index: 1202;
  }

  /* newsletter */

  .newsletter {
    margin-top: 5rem;
  }

  .newsletter__container {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .newsletter__image {
    grid-column: 4/6;
    grid-row: 1 / 4;
  }

  .newsletter__head {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
  }

  .newsletter__form {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }

  /* video */
  .video__container {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .video__item-title {
    grid-column: 4 / 6;
    grid-row: 1 / 3;
  }

  .video__item-video {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
  }
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.5rem;
  /* border-radius: 0.5rem; */
  background-color: var(--body-color);
}

/* ::-webkit-scrollbar-track {
  border-radius: 1.5rem;
} */

::-webkit-scrollbar-thumb {
  background-color: var(--grns);
  /* border-radius: 0.5rem; */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #a5eaff;
}
