@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");
:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --third-color: #353a3e;
  --forth-color: #c4c4c4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Geist", sans-serif;
  width: 100%;
  height: auto;
  background-color: var(--secondary-color);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  font-family: "Geist", sans-serif;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
}

@media (max-width: 800px) {
  canvas {
    display: none !important;
  }
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);

  background-size: 40px 40px;
  opacity: 0.8;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* navbar  */

.nav {
  position: relative;
  width: 90%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary-color);
  height: 70px;
  margin-top: 20px;
  border-radius: 20px;
  padding: 0 20px;
  animation: nav-open alternate ease-in-out 1s;
}

@keyframes nav-open {
  0% {
    transform: translateY(-170px);
  }
  100% {
    transform: translateY(0px);
  }
}

.logo a {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.logo a svg {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-items li {
  list-style: none;
}

.nav-items li a {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: var(--secondary-color);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  margin: auto;
}

.nav-items li a:hover {
  border-bottom: 1px solid var(--secondary-color);
}

.nav-items-mobile {
  display: none;
}

.menu-icon {
  display: none;
  color: var(--secondary-color);
}

/* responsive for mobile  */

@media (max-width: 675px) {
  .logo h1 {
    font-size: 15px;
  }

  .nav-items {
    display: none;
  }

  .nav-items-mobile {
    position: absolute;
    top: 90px;
    left: 0;
    margin: 0;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--primary-color);
    height: min-content;
    border-radius: 20px;
    gap: 20px;
    display: none;
    z-index: 100;
  }

  .nav-items-mobile li {
    list-style: none;
  }

  .nav-items-mobile li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: var(--secondary-color);
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    margin: auto;
  }

  .active {
    display: flex;
  }

  .nav-items-mobile li a:hover {
    border-bottom: 1px solid var(--secondary-color);
  }

  .menu-icon {
    display: block;
    cursor: pointer;
  }
}

/* end of navbar  */

.header {
  width: 90%;
  max-width: 1440px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  padding: 30px;
  background: linear-gradient(0deg, #c4c4c4, #bebebe00);
  border-radius: 30px;
}

.right-section {
  width: 60%;
}

.right-section h3 {
  font-size: 50px;
  font-weight: 300;
  transform: translateY(10px);
  color: var(--primary-color);
}

.right-section h1 {
  font-size: 100px;
  color: var(--primary-color);
}

.right-section h2 {
  font-size: 100px;
  font-weight: 300;
  transform: translateY(-10px);
  color: var(--primary-color);
}

.left-section {
  width: 30%;
  margin-top: 170px;
}

.left-section p {
  font-size: 15px;
  color: var(--primary-color);
  letter-spacing: 1px;
  font-weight: 400;

  animation: opacity alternate ease-in-out 3s;
}

@keyframes opacity {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

@media (max-width: 1470px) {
  .right-section h3 {
    font-size: 30px;
    font-weight: 300;
    transform: translateY(10px);
    color: var(--primary-color);
  }

  .right-section h1 {
    font-size: 70px;
    color: var(--primary-color);
  }

  .right-section h2 {
    font-size: 60px;
    font-weight: 300;
    transform: translateY(-10px);
    color: var(--primary-color);
  }

  .left-section {
    width: 35%;
    margin-top: 150px;
  }

  .left-section p {
    font-size: 13px;
    color: var(--primary-color);
    letter-spacing: 1px;
  }
}

@media (max-width: 880px) {
  .header {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .right-section h3 {
    font-size: 20px;
    font-weight: 300;
    transform: translateY(0px);
    color: var(--primary-color);
  }

  .right-section h1 {
    font-size: 40px;

    color: var(--primary-color);
  }

  .right-section h2 {
    font-size: 50px;
    font-weight: 300;
    transform: translateY(-10px);
    color: var(--primary-color);
  }

  .left-section {
    width: 90%;
    margin-top: 20px;
  }

  .left-section p {
    letter-spacing: 1px;
  }
}

@media (max-width: 425px) {
  .header {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .right-section h3 {
    font-size: 16px;
    font-weight: 300;
    transform: translateY(-10px);
    color: var(--primary-color);
  }

  .right-section h1 {
    font-size: 40px;
    color: var(--primary-color);
  }

  .right-section h2 {
    font-size: 40px;
    font-weight: 300;
    transform: translateY(5px);
    color: var(--primary-color);
  }

  .left-section {
    width: 90%;
    margin-top: 40px;
  }

  .left-section p {
    letter-spacing: 1px;
  }
}

@media (max-width: 425px) {
  .right-section h1 {
    font-size: 30px;
    color: var(--primary-color);
  }
}

/* end of header  */

/* service  */

.services {
  width: 90%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  margin-top: 60px;
  margin-bottom: 30px;
}

.service-text-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-text-left {
  display: flex;
  flex-direction: column;
}

.services-dot {
  position: relative;
  color: var(--primary-color);
}

.services-dot::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--forth-color);
  margin-top: 20px;
}

.services-text-left-p {
  color: var(--primary-color);
  margin-top: 10px;
  font-size: 3rem;
  font-weight: 600;
}

.services-text-left-p span {
  border-bottom: 3px solid #353a3e;
}

.services-cards {
  width: 100%;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  position: relative;
  background: #f1f1f1;
  padding: 30px 20px;
  border-radius: 20px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #bebebe00, #949494);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::after {
  content: "";
  height: 100px;
  width: 100px;
  position: absolute;
  top: -40%;
  left: -20%;
  border-radius: 50%;
  border: 35px solid rgba(211, 211, 211, 0.164);
  transition: all 0.8s ease;
  filter: blur(0.5rem);
}

.service-card:hover::after {
  width: 140px;
  height: 140px;
  top: -30%;
  left: 60%;
  filter: blur(0rem);
}

.service-card h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bolder;
}

.service-card p {
  color: var(--primary-color);
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 1px;
}

@media (max-width: 1000px) {
  .service-text-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .services-text-left-p {
    font-size: 30px;
  }

  .services-cards {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .services {
    width: 100%;
  }
}

/* cleints section  */

.clients {
  width: 90%;
  max-width: 1440px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.clients-text {
  width: 40%;
}

.clients-text h2 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 10px;
}

.clients-text p {
  color: var(--primary-color);
  letter-spacing: 1px;
  font-weight: 300;
}

.clients-logo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.clients-card {
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 400ms;
  cursor: pointer;
}

.clients-logo .clients-card:hover {
  transform: scale(1.1, 1.1);
}

.clients-logo:hover > .clients-card:not(:hover) {
  filter: blur(2px);
  transform: scale(0.9, 0.9);
}

.clients-card img {
  width: 100%;
  padding: 10px;
}

@media (max-width: 1000px) {
  .clients {
    display: flex;
    flex-direction: column;
  }

  .clients-text {
    width: 100%;
    margin-bottom: 20px;
  }

  .clients-logo {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
  }

  .clients-card {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 500px) {
  .clients {
    width: 100%;
  }

  .clients-card {
    width: 100px;
    height: 100px;
  }
}

.works {
  width: 90%;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.works-text {
  width: 90%;
}

.works-text h2 {
  margin-bottom: 10px;
}

.work-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  margin-top: 100px;
}

.work-card > a {
  color: var(--third-color);
  font-size: clamp(3rem, 8vw, 10rem);
  font-weight: 300;
  text-decoration: none;
  position: relative;
}

.work-card > a:hover {
  color: var(--primary-color);
}

.work-card > a > span {
  display: block;
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
  position: relative;
  z-index: 2;
}

.work-card > a:hover > span {
  border-top-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.work-card > a > img {
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition:
    transform 250ms,
    opacity 250ms;
  pointer-events: none;
  width: min(40vw, 500px);
}

.work-card > a:hover > img {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}



.work-card-mobile {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 20px;
}

.photo-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: all 0.4s ease;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
  transition: all 0.4s ease;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.photo-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  transition: all 0.4s ease;
}

.photo-info h3 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

.photo-info p {
  font-size: 12px;
  margin: 2px 0 0;
  opacity: 0.8;
}

.photo-card:active img {
  transform: scale(0.1);
}

.photo-card:hover .photo-info {
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .works {
    width: 100%;
  }

  .work-card {
    display: none;
  }
}

/* video section  */

.videos {
  width: 90%;
  padding: 30px;
  margin: 30px 0;
}

.video-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;

  margin-top: 20px;
}

.video-card {
  background: var(--secondary-color);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  display: flex;
  flex-direction: column;
}

.video-cast {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
}

.play-button::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 20px;
  border-left: 18px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-cast iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  z-index: 1;
}

.video-cast.active iframe {
  opacity: 1;
  z-index: 4;
}

.video-cast.active .video-thumbnail,
.video-cast.active .play-button {
  display: none;
}

.video-card-text {
  padding: 10px;
}

.video-card-text h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.video-card-desc {
  font-size: 14px;
  font-weight: 400px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.more-info {
  display: block;
  margin-top: 10px;
  outline: none;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  cursor: pointer;
}

.more-info > a {
  text-decoration: none;
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .videos {
    width: 100%;
    padding: 30px;
  }

  .video-cards {
    gap: 15px;
  }
}

/* portfolios  */

.portfolio {
  width: 90%;
  max-width: 1440px;
  border: 1px solid #0000001a;
  padding: 30px;
  margin: 30px;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  background-color: var(--secondary-color);
  box-shadow: 12px 12px 38px #c4c4c48f;
}

.portfolio-text {
  margin: 20px 0;
  border-bottom: 1px solid #0000001a;
  padding-bottom: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.portfolio-text h2 {
  font-size: 50px;
}

.portfolio-showcase-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-1 {
  grid-row-end: 2;
}

.images-cards {
  position: relative;
  background-color: var(--secondary-color);
  border-radius: 20px;
  box-shadow: 1px 2px 7px #c4c4c457;
  transition: all 0.4s ease;
}

.images-cards:hover {
  box-shadow: 2px 12px 18px #c4c4c4;
}

.portfolio-showcase-image {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: var(--secondary-color);
  aspect-ratio: 16 / 9;
  transition: all 0.5s ease;
}

.portfolio-showcase-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
  z-index: 0;
}

.portfolio-showcase-image img:hover {
  transform: scale(1.1);
}

.icon-arrow {
  position: absolute;
  z-index: 3;
  font-size: 20px;
  top: 32px;
  right: 42px;
  width: 40px;
  height: 40px;
  padding: 10px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  rotate: 45deg;
  transition: all 0.3s ease;
  visibility: hidden;
}

.portfolio-showcase-image:hover .icon-arrow {
  opacity: 1;
  visibility: visible;
  rotate: -45deg;
}

.portfolio-showcase-image-text {
  padding: 18px;
}

.portfolio-showcase-image-text h3 {
  color: var(--third-color);
  letter-spacing: 1px;
  font-weight: 600;
}

.portfolio-showcase-image-text p {
  color: var(--third-color);
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 13px;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .portfolio-showcase-images {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .portfolio-showcase-images {
    grid-template-columns: 1fr;
  }

  .portfolio-text {
    display: flex;
    align-items: baseline;
    flex-direction: column;
    gap: 10px;
  }

  .portfolio-text h2 {
    font-size: 20px;
  }
}

@media (max-width: 470px) {
  .portfolio-showcase-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: var(--secondary-color);
  }

  .portfolio-showcase-image a {
    text-decoration: none;
  }

  .portfolio-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .icon-arrow {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 400px) {
  .portfolio {
    padding: 10px;
  }

  .icon-arrow {
    top: 20px;
    right: 20px;
  }
}

.folder-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform: scale(0.7);
}

.folder-wrapper {
  position: relative;
  width: 240px;
  height: 160px;
  cursor: pointer;
  perspective: 1500px;
  z-index: 50;
}

.folder-back,
.folder-front {
  position: absolute;
  width: 100%;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.folder-back {
  height: 100%;
  background-color: #52525b;
  border-top-left-radius: 0;
  transform-origin: top;
}

.folder-back::after {
  content: "";
  position: absolute;
  bottom: 99%;
  left: 0;
  width: 80px;
  height: 16px;
  background-color: #52525b;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.folder-back::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 75.5px;
  width: 16px;
  height: 16px;
  background-color: #52525b;
  clip-path: polygon(0 35%, 0% 100%, 50% 100%);
}

.paper {
  position: absolute;
  inset: 4px;
  border-radius: 16px;
  transition: all 0.3s ease;
  transform-origin: bottom;
  pointer-events: none;
}

.paper-1 {
  background-color: #a1a1aa;
  z-index: 4;
}
.paper-2 {
  background-color: #d4d4d8;
  z-index: 3;
}
.paper-3 {
  background-color: #e4e4e7;
  z-index: 2;
}

.folder-front {
  bottom: 0;
  height: 156px;
  background: linear-gradient(to top, #e4e4e7, #a1a1aa);
  border-top-right-radius: 0;
  transform-origin: bottom;
  z-index: 5;
}

.folder-front::after {
  content: "";
  position: absolute;
  bottom: 99%;
  right: 0;
  width: 146px;
  height: 16px;
  background-color: #a1a1aa;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.folder-front::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 142px;
  width: 12px;
  height: 12px;
  background-color: #d4d4d8;
  clip-path: polygon(100% 14%, 50% 100%, 100% 100%);
}

.folder-wrapper:hover .folder-back {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.folder-wrapper:hover .paper-1 {
  transform: rotateX(-20deg);
}
.folder-wrapper:hover .paper-2 {
  transform: rotateX(-30deg);
}
.folder-wrapper:hover .paper-3 {
  transform: rotateX(-38deg);
}

.folder-wrapper:hover .folder-front {
  transform: rotateX(-46deg) translateY(1px);
  box-shadow:
    inset 0 20px 40px #ccc,
    inset 0 -20px 40px #ccc;
}

.folder-images {
  position: absolute;
  display: flex;
  gap: 20px;
  top: -330px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.folder-img {
  width: 300px;
  height: 300px;
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.folder-img-1 {
  transform: translateY(160px) rotate(-5deg);
}
.folder-img-2 {
  transform: translateY(140px);
}
.folder-img-3 {
  transform: translateY(160px) rotate(5deg);
}

.folder-wrapper:hover .folder-img-1,
.folder-wrapper:hover .folder-img-2,
.folder-wrapper:hover .folder-img-3 {
  transform: translateY(0) rotate(0deg);
}

.folder-wrapper:hover .folder-images {
  opacity: 1;
  pointer-events: auto;
  z-index: 1000;
}

.folder-wrapper:hover .folder-img-1,
.folder-wrapper:hover .folder-img-2,
.folder-wrapper:hover .folder-img-3 {
  transform: translateY(0) rotate(0deg);
}

.folder-wrapper:not(:hover) .folder-img-1 {
  transition-delay: 0.2s;
}
.folder-wrapper:not(:hover) .folder-img-2 {
  transition-delay: 0.1s;
}
.folder-wrapper:not(:hover) .folder-img-3 {
  transition-delay: 0s;
}

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

.folder-text {
  margin-top: 15px;
}

.folder-text h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .folder-img-3 {
    display: none;
  }
}
@media (max-width: 480px) {
  .folder-img-3 {
    display: none;
  }

  .folder-img-1 {
    display: none;
  }
}

/* CTA  */
.cta {
  width: 90%;
  max-width: 1440px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(1deg, black, #333232);
  color: var(--secondary-color);
  border-radius: 30px;
  padding: 20px 0;
  text-align: center;
  margin: 20px;
}

.cta-text {
  margin: 20px 0;
}

.cta-text h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 1px;
}

.cta-btn {
  display: flex;
  gap: 20px;
}

.cta-btn .btn-white {
  outline: 0;
  border: 0;
  background: var(--secondary-color);
  padding: 15px 30px;
  border-radius: 10px;
}

.cta-btn button a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
}

.cta-btn .btn-gray {
  outline: 0;
  border: 0;
  background: #4e4e4e5d;
  color: var(--secondary-color);
  padding: 15px 30px;
  border-radius: 10px;
  border: 2px solid #52525ba8;
}

.cta-btn .btn-gray a {
  color: var(--secondary-color);
}

@media (max-width: 700px) {
  .cta-text h1 {
    font-size: 16px;
  }

  .cta-text p {
    font-size: 13px;
    margin: 0 10px;
  }

  .cta-btn {
    display: flex;
    flex-direction: column;
  }
}

/* faqs  */

.faq-section {
  max-width: 100%;
  font-family: sans-serif;
}

.faq-card {
  background: white;
  border: 1px solid #66666648;
  border-radius: 10px;
  padding: 0 20px;
  margin: 10px 0;
}

.faq-header {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-color);
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  color: var(--primary-color);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 100%;
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.3s ease,
    padding 0.3s ease;
  overflow: hidden;
  color: #666;
}

.faq-content {
  min-height: 0;
}

.faq-card.active .faq-body {
  grid-template-rows: 1fr;
  padding-bottom: 24px;
}

.faq-card.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

@media (max-width: 700px) {
  .faq-card {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .faq-header span {
    width: 90%;
    font-size: 15px;
    margin-right: 5px;
  }

  .faq-content {
    font-size: 13px;
  }
}

/* footer  */

.footer {
  background: #000;
  padding: 30px 0px;
  font-family: "Play", sans-serif;
  text-align: center;
}

.footer .row {
  width: 100%;
  margin: 1% 0%;
  padding: 0.6% 0%;
  color: gray;
  font-size: 0.8em;
}

.footer .row a {
  text-decoration: none;
  color: gray;
  transition: 0.5s;
}

.footer .row a:hover {
  color: #fff;
}

.footer .row ul {
  width: 100%;
}

.footer .row ul li {
  display: inline-block;
  margin: 0px 30px;
}

.footer .row a i {
  font-size: 2em;
  margin: 0% 1%;
}

@media (max-width: 720px) {
  .footer {
    text-align: left;
    padding: 5%;
  }

  .footer .row ul li {
    display: block;
    margin: 10px 0px;
    text-align: left;
  }
  .footer .row a i {
    margin: 0% 3%;
  }

  .row-icons {
    transform: translateX(-10px);
  }
}

@media (max-width: 370px) {
  .footer .row a i {
    font-size: 1.5em;
  }
}
