body {
  overflow-x: hidden;
}

.navbar {
  width: 100%;
  padding: 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.navbar .menu-items {
  display: flex;
}

.navbar .nav-container li {
  list-style: none;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 2.5rem;
  padding: 1rem;
}

.navbar .nav-container a:hover {
  font-weight: bolder;
}

.nav-container {
  position: absolute;
  top: 0;
  height: 60px;
  z-index: 10010;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  right: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  position: absolute;
  top: 17px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: rgb(98, 100, 103);
}

.community-page .nav-container .hamburger-lines .line {
  background: #fff;
}

.walkthrough-page .nav-container .hamburger-lines .line {
  background: #fff;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
  padding-top: 120px;
  background-color: rgb(98, 100, 103);
  height: 100vh;
  width: 90%;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: -30px;
  padding-left: 30px;
  transition: transform 0.5s ease-in-out;
  text-align: center;
  background-attachment: fixed;
  background-size: cover;
}

.navbar .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.nav-container input[type='checkbox']:checked ~ .menu-items {
  transform: translateX(0);
}

.nav-container input[type='checkbox']:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type='checkbox']:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type='checkbox']:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container input[type='checkbox']:checked ~ .logo {
  display: none;
}

.may-serve {
  display: flex;
  width: 100%;
}

.image-container {
  width: 33.3333%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  display: block;
}

.image-container:hover img {
  transform: scale(1.2);
}

.image-container a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.5s ease;
}

.image-container a:hover {
  text-decoration: none;
  color: #fff;
}

a:hover {
  text-decoration: none !important;
  color: #fff !important;
}
.image-container a:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.footer-gsg {
  background-color: rgb(25, 26, 26);
}

.footer-gsg {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #191a1a;
  padding: 50px 0;
  flex-direction: column;
}

.footer-icon {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 200px;
}

.footer-icon li {
  flex: 33.333;
  text-align: center;
}

.footer-icon a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 14px;
  width: 120px;
}

.footer-icon img {
  width: 90px;

  margin-bottom: 10px;
}

.footer-icon span {
  display: block;
}

.footer-icon .title {
  font-weight: bold;
}

li {
  list-style-type: none !important;
}

a {
  text-decoration: none;
  color: inherit;
}

.footer-icon li {
  text-align: center;
}

.footer-icon img {
  width: 100px;
}

.footer-gsg p {
  font-size: 12px;
  padding-top: 50px;
  color: white;
}

header {
  padding: 20px;
}

footer {
  width: 100%;
}

.logo {
  width: 100px;
}

.logo img {
  max-width: 100%;
}

.main-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-list {
  display: flex;
  gap: 30px;
}

.menu-list a {
  color: #000 !important;
  position: relative;
}

.menu-list a:hover {
  text-decoration: none;
  color: #000;
}

.my-link {
  position: relative;
  text-decoration: none;
  cursor: pointer;
  padding: 3px 0;
}

.my-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.3s, transform 0.3s;
}

.my-link::after {
  bottom: 0;
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.3s, transform 0.3s;
}

.my-link:hover::before,
.my-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.home-slider {
  width: 100%;
  max-height: 850px;
  overflow: hidden;
}

.banner {
  position: relative;
}

.banner::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  z-index: 1;
}

.bn-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.home-slider .slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-slider img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.started {
  padding: 25px 0;
}

.started h3 {
  font-family: 'Cookie', cursive;
  color: rgb(64, 132, 179);
  font-size: 6.2rem;
  text-align: center;
}

.started p {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

.zack {
  padding: 30px 0;
  background-image: url(../img/AdobeStock_216820704-1920w.webp) !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.zack:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
}

.zack-content {
  padding: 60px;
  background-color: #fff;
}
.img {
  max-width: 100%;
}

.zack-content h3 {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 400;
  padding: 20px;
}

.zack-content p {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

@media only screen and (max-width: 1000px) {
  .footer-gsg {
    flex-direction: column;
  }
  .image-container {
    width: 100%;
  }
  .may-serve {
    flex-direction: column;
  }

  .main {
    max-width: 250px;
  }

  .d-n {
    display: none;
  }

  .home-slider {
    max-height: 400px;
  }

  .slick-slider {
    height: 400px;
  }

  .slick-slide {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slick-slide img {
    height: 100%;
    width: auto;
    object-fit: cover;
  }

  .footer-icon {
    flex-direction: column;
    gap: 20px;
  }
}
