@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

:root {
    --header-height: 3.5rem;

    --first-color: hsl(210, 100%, 50%);
    --second-color:hsl(194, 100%, 50%);
    --stars-color: hsl(18, 95%, 55%);
    --first-gradient: linear-gradient(90deg,
    hsl(207, 97%, 49%),
    hsl(200, 95%, 57%));
    --white-gradient: linear-gradient(90deg,
    hsl(0, 0%, 71%),
    hsl(0, 0%, 100%));
    --title-color:hsl(255, 12%, 12%);
    --text-color: hsl(225, 12%, 24%);
    --text-color-light: hsl(255, 4%, 70%);
    --body-color: hsl(0, 0%, 100%);
    --container-color: hsl(0, 0%, 100%);
    --white-color: hsl(0, 0%, 100%);
    --black-color:hsl(255, 20%, 10%);
    --gray-border:hsl(255, 6%, 90%); 
    --black-border: hsl(255, 10%, 20%);

    --body-font: "Montserrat", sans-serif;
    --big-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;

    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 1150px) {
    :root {
        --big-font-size: 3.5rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: 0.875rem;
    }
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

h1, h2, h3, h4 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding-block: 5rem 1rem;
}

.section-title, .section-subtitle {
    text-align: center;
}

.section-title {
    font-size: var(--h1-font-size);
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    display: block;
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--second-color);
    margin-bottom: 0.5rem;
}

.main {
    overflow: hidden;
}


/*-----------------------------HEADER AND NAV-----------------------------*/
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: var(--z-fixed);
    transition: background-color 0.4s;
}

.nav {
    position: relative;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo { 
    display: flex;
    align-items: center;
    column-gap: 0.25rem;
}

.nav-logo span {
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    transition: color 0.4s;
}

.main-logo {
    width: 50px;
    height: auto; 
    margin-right: 0.35rem;
    left: 0;
}

.navToggle, .navClose {
    font-size: 1.5rem;
    color: var(--white-color);
    cursor: pointer;
    transition: color 0.4s;
}

/*Nav mobile*/
@media screen and (max-width: 1150px) {
    .navMenu {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--black-color);
        width: 80%;
        height: 100%;
        padding: 7.5rem 3.5rem 0;
        border-left: 2px solid var(--black-border);
        transition: right 0.4s;
    }
}

.navList {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
}

.navLink {
    color: var(--text-color-light);
    font-weight: var(--font-semi-bold);
    transition: color 0.4s;
}

.navLink:hover {
    color: var(--first-color);
}

.navClose {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.bg-header {
    background-color: var(--body-color);
    box-shadow: 0 4px 16px hsla(255, 90%, 8%, 0.1);
}

.bg-header .nav-logo span, .bg-header .navToggle {
    color: var(--title-color);
}

/*button*/
.show-menu {
    right: 0;
}

.button {
    display: inline-flex;
    background: var(--first-gradient);
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    padding: 1rem 2rem;
    transition: box-shadow 0.4s;
}

.button:hover {
    box-shadow: 0 8px 32px hsla(180, 100%, 50%, 0.3);
    color: var(--white-color);
}

.button-link {
    display: flex;
    align-items: center;
    column-gap: 0.25rem;
    color: var(--first-color);
}

.button-link span {
    font-weight: var(--font-semi-bold);
}

.button-link i {
    font-size: 1.5rem;
    transition: transform 0.4s;
}

.button-link:hover i {
    transform: translateX(0.25rem);
}

.bold-text {
  font-weight: bold;
  font-size: var(--h3-font-size);
}

/*-----------------------------HOME-----------------------------*/
.home {
  position: relative;
  background: linear-gradient(135deg, #1EC9FF 0%, #FFFF 100%);
}

.home-container {
  position: relative;
  row-gap: 3rem;
  padding-block: 2.5rem 6rem;
}

.home-content {
  row-gap: 2.5rem;
}

.home-data {
  text-align: center;
}

.home-title {
  color: #FFFF;
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}

.home-description {
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  font-style: italic;
  color: grey;
}

.home-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.home-info {
  display: flex;
  justify-content: center;
  column-gap: 4.5rem;
}

.home-info-title {
  color: var(--second-color);
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  margin-bottom: .5rem;
  background: linear-gradient(to right, hsl(0, 0%, 100%), hsl(57, 95%, 55%));
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate-gradient 2.5s linear infinite;
}

@keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}

.home-info-description {
  font-size: var(--small-font-size);
  color: var(--black-color);
}

.home-images {
  position: relative;
  box-shadow: 0 10px 300px hsla(0, 0%, 20%, .1);
  justify-self: center;
}

.home-img-1 {
  width: 250px;
  margin-left: 3.5rem;
  box-shadow: 0 15px 65px hsla(0, 0%, 20%, 0.6);
}

.home-img-2 {
  width: 150px;

  position: absolute;
  left: 0;
  bottom: -3.5rem;
  box-shadow: 0 15px 65px hsla(0, 0%, 20%, 0.6);
}

.home-lines {
  position: absolute;
  color: #2F80ED14;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

/*-----------------------------ABOUT-----------------------------*/
.about-container {
  row-gap: 8rem;
}

.about-data {
  text-align: center;
}

.about-description {
  margin-bottom: 2rem;
}

.about-list {
  text-align: initial;
  grid-template-columns: repeat(2, 130px);
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-list-item {
  display: flex;
  column-gap: .5rem;
  color: var(--title-color);
}

.about-list-item i {
  font-size: 1.25rem;
  color: var(--first-color);
}

.about-images {
  position: relative;
  width: 420px;
  height: 360px;
  justify-self: center;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 15%;
  width: 260px;
  height: auto;
  box-shadow: 0 15px 50px hsla(0, 0%, 20%, 0.5);
}

/* OVERLAY IMAGE */
.about-img-1 {
  position: absolute;
  width: 60%;
  height: auto;
  border: 5px solid var(--body-color);

  /* KEY PART */
  top: 0;
  right: 0;
  transform: translate(-10%, 30%);
  z-index: 1;
  
}

/*-----------------------------TESTIMONI-----------------------------*/
.testimoni {
  position: relative;
}

.testimoni-container {
  position: relative;
  row-gap: 3rem;
}

.testimoni-data {
  text-align: center;
}

.testimoni-description {
  margin-bottom: 2rem;
}

.testimoni-card {
  width: 260px;
  background-color: var(--container-color);
  border: 2px solid var(--gray-border);
  padding: 2rem 1rem 3.5rem;
  transition: border-color .4s;
}

.testimoni-card:hover {
  border-color: var(--first-color);
}

.testimoni-icon {
  width: 70px;
  height: 70px;
  background-color: var(--black-color);
  color: var(--white-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.testimoni-title {
  font-size: var(--h2-font-size);
  margin-bottom: .5rem;
}

.testimoni-shape {
  position: absolute;
  width: 100%;
  height: 245px;
  background-color: var(--black-color);
  bottom: 0;
  left: 0;
}

.testimoni-rating {
  margin-top: 1rem;
  display: flex;
  gap: .25rem;
  justify-content: left;
  font-size: 1.4rem;
  color: var(--stars-color);
}

/* Swiper class */
.swiper {
    margin-inline: initial;
    padding-bottom: 4rem;
}

.swiper-button-prev:after, .swiper-button-next:after {
  content: '';
}

.swiper-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 50;
}

.swiper-button-next,
.swiper-button-prev {
    position: static; 
    width: 35px;
    height: 35px;
    background-color: var(--container-color);
    box-shadow: 0 4px 12px hsla(0, 0%, 20%, .1);
    padding: .25rem;
    font-size: 1.5rem;
    color: var(--title-color);
    border-radius: 50%;
}

/*-----------------------------PROJECTS-----------------------------*/
.projects {
  background-color: var(--black-color);
}

.projects .section-title {
  color: var(--white-color);
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding-block: 1.5rem 3rem;
}

.projects-container .projects-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .4s ease, box-shadow .4s ease;
}

/* VIDEO WRAPPER */
.video-wrapper {
  position: relative;
  width: 100%;
  max-height: 250px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  object-fit: contain; 
  background: #000;
  border-radius: 12px;
  transition: transform .4s ease, box-shadow .4s ease;
}

/* PLAY BUTTON OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: auto;
  cursor: pointer;
}

.video-overlay i {
  font-size: 3rem;
  color: #fff;
}

.video-wrapper:hover video {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0,0,0,0.35);
}

.video-wrapper:hover .video-overlay {
  opacity: 1;
}

video::-webkit-media-controls-play-button {
  opacity: 0; 
}

/*-----------------------------SERVICES-----------------------------*/
.services {
  background: var(--black-color);
  min-height: 110vh;
}

.services-title {
  color: var(--white-color);
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem; 
    margin-top: 5rem;
    max-width: 900px;
    margin-inline: auto;
    justify-content: center;
}

.box{
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 1;
    transition: all .45s ease;
}

.box-border{
    position: relative;
    background: var(--white-color);
    border-radius: 8px;
    max-width: 450px;
    padding: 35px 45px;

    transition: all 0.45s ease
}

.box .button {
  margin-top: -5px;
}

.services-img{
  border-radius: 10px;
    margin-bottom: 25px;
}

.box h3{
    font-size: 2.25rem;
    font-weight: var(--font-bold);
    color: var(--black-color);
    margin-bottom: 15px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box p{
    color: #2e2e2e;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.box:hover .box-border {
    transform: translateY(-15px);
    background: var(--first-color);
    box-shadow: 0 8px 150px var(--first-color);
}

.box i, .box h3, .box p, .box .button {
    transition: all 0.35s ease;
}

.box:hover i, .box:hover h3, .box:hover p {
    color: var(--white-color);
}

.box:hover .button {
    background: var(--white-gradient);
    color: var(--first-color);
}

/*-----------------------------RATING-----------------------------*/
.rating-page {
  background: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.rate-wrapper {
  background: var(--white-color);
  padding: 2rem;
  max-width: 576px;
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.rate-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 0.5rem;
  font-size: 2rem;
  color: #FFBD13;
  margin-bottom: 2rem;
}

.rating .star {
  cursor: pointer;
}

.rating .star.active-star {
  opacity: 0;
  animation: animate 0.5s calc(var(--i) * 0.1s) ease-in-out forwards;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.rating .star:hover {
  transform: scale(1.1);
}

.rate-wrapper .name-input {
  width: 100%;
  background: #F5F5F5;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  outline: none;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.rate-wrapper textarea {
  width: 100%;
  background: #F5F5F5;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  outline: none;
  resize: none;
  margin-bottom: 0.5rem;
}

.btn-group {
  display: flex;
  grid-gap: 0.5rem;
  align-items: center;
}

.btn-group .btn {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
}

.btn-group .btn.submit{
  background: var(--first-color);
  color: var(--white-color);
}

.btn-group .btn.cancel {
  background: var(--white-color);
  color: var(--first-color);
}

/*-----------------------------CONTACT-----------------------------*/
.contact-container {
  row-gap: 3rem;
  padding-block: 1.5rem 3rem;
}

.contact-img {
  width: 320px;
  justify-self: center;
}

.contact-data {
  grid-template-columns: 230px;
  justify-content: center;
  row-gap: 1.5rem;
}

.contact-card {
  background-color: var(--container-color);
  border: 2px solid var(--gray-border);
  padding: 1.5rem 2rem;
  text-align: center;
  transition: border-color .4s;
}

.contact-card:hover {
  border-color: var(--first-color);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: var(--black-color);
  color: var(--white-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
}

.contact-title {
  font-size: var(--h2-font-size);
  margin-bottom: .5rem;
}

.contact-info {
  font-style: normal;
}

.contact-social {
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}

.contact-social-link {
  font-size: 1.5rem;
  color: var(--first-color);
  transition: transform .4s;
}

.contact-social-link:hover {
  transform: translateY(-.25rem);
}

.contact-clickable {
    text-decoration: underline;
    color: var(--text-color);
    transition: color 0.4s;
}

.contact-clickable:hover {
    color: var(--first-color);
}

/*-----------------------------FOOTER-----------------------------*/
.footer {
    background-color: var(--black-color);
    color: var(--text-color-light);
    padding-block: 3.5rem 2rem;
}

.footer-container {
    row-gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--black-border);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    column-gap: 0.25rem;
}

.footer-logo span {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
}

.footer-logo i {
    color: var(--first-color);
    font-size: 1.5rem;
}

.footer-description {
    margin-block: 1rem;
}

.footer-email, .footer-info {
    font-style: normal;
}

.footer-email a {
    text-decoration: underline;
    color: var(--white-color);
    transition: color 0.4s;
}

.footer-email a:hover {
    color: var(--first-color);
}

.footer-content { 
    grid-template-columns: repeat(2, max-content);
    gap: 4rem 3rem;
}

.footer-title {
    font-size: var(--h3-font-size);
    color: var(--white-color);
    margin-bottom: 1rem;
}

.footer-links, .footer-list {
    display: grid;
    row-gap: 0.5rem;
}

.footer-link {
    color: var(--text-color-light);
    transition: color 0.4s;
}

.footer-link:hover {
    color: var(--first-color);
}

.footer-copy {
    display: block;
    text-align: center;
    font-size: var(--small-font-size);
    margin-top: 4rem;
}

/*-----------------------------SCROLL BAR-----------------------------*/
::-webkit-scrollbar {
    width: 0.6rem;
    background-color: hsl(255, 5%, 75%);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(255, 5%, 65%);
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(255, 5%, 55%);
}

/*-----------------------------SCROLL UP-----------------------------*/
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -50%;
    background-color: var(--body-color);
    box-shadow: 0 4px 16px hsla(255, 90%, 8%, 0.15);
    color: var(--title-color);
    display: inline-flex;
    padding: 6px;
    font-size: 1.25rem;
    z-index: var(--z-tooltip);
    transition: bottom 0.4s, transform 0.4s;
}

.scrollup:hover {
    transform: translateY(-0.5rem);
}

.show-scroll {
    bottom: 3rem;
}

.active-link {
    color: var(--first-color);
}

/*-----------------------------LIGHTBOX-----------------------------*/
.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.image-lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    touch-action: pinch-zoom; /* mobile zoom */
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
}

/* pointer feedback */
.projects-img {
    cursor: zoom-in;
}

/*-----------------------------BREAKPOINTS-----------------------------*/
/*For small devices*/
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .home-title {
    font-size: 1.75rem;
  }

  .home-buttons {
    flex-direction: column;
  }

  .home-img-1 {
    width: 200px;
    margin-left: 1.5rem;
  }
  
  .about-list {
    grid-template-columns: repeat(1, 200px);
  }

  .footer-content {
    grid-template-columns: repeat(1, max-content);
  }
}

/*For medium devices*/
@media screen and (min-width: 540px) {
  .home-container, .about-container, .testimoni-container, .projects-container, .contact-container {
    grid-template-columns: 360px;
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: repeat(3, max-content);
  }
}

@media screen and (max-width: 600px) {
  .home-lines {
    display: none;
  }

  .video-wrapper {
    max-height: 180px;
  }

  .video-wrapper video,
  .projects-container .projects-img {
    transform: none !important;
  }

  .video-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.25);
  }

  .about-images {
    width: 100%;
    height: 300px;
  }

  .about-img-2 {
    width: 275px;
    margin-bottom: 100px;
  }

  .about-img-1 {
    width: 50%;
    transform: translate(-10%, -30%);
  }
}

@media screen and (min-width: 768px) {
  .nav-menu {
    width: 50%;
  }

  .projects-container {
    grid-template-columns: repeat(2, 330px);
  }

  .contact-data {
    grid-template-columns: repeat(2, 240px);
  }

  .footer-container {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
    .services {
      min-height: 130vh;
    }

    .services-content {
        grid-template-columns: 1fr;
        max-width: 50%;
        gap: 2rem;
    }

    .rate-wrapper {
      width: 90%;
    }
}

@media (max-width: 1150px) {
  .about-images {
      width: 100%;
      height: 300px;
    }

    .about-img-2 {
      width: 400px;
      margin-bottom: 50px;
    }

    .about-img-1 {
      width: 65%;
      transform: translate(10%, -20%);
    }
}

/*For large devices*/
@media screen and (min-width: 1150px) {
    .container {
        margin-inline: auto;
    }

    .section {
        padding-block: 7rem 2rem;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
    }

    .navToggle, .navClose {
        display: none;
    }

    .navList {
        flex-direction: row;
        align-items: center;
        column-gap: 4rem;
    }

    .bg-header .navLink {
        color: var(--text-color);
    }

    .bg-header .active-link, .bg-header .navLink:hover {
        color: var(--first-color);
    }

    .bg-header .button, .bg-header .button:hover {
        color: var(--white-color);
    }

    .home-container {
        grid-template-columns: 475px 550px;
        column-gap: 6rem;
        align-items: flex-start;
        padding-top: 5.5rem;
    }

    .home-content{
        row-gap: 4.5rem;
    }

    .home-data {
        text-align: initial;
    }

    .home-description {
        margin-bottom: 3rem;
    }

    .home-buttons {
        justify-content: initial;
        column-gap: 3rem;
    }

    .home-info {
        justify-content: initial;
        column-gap: 5.5rem;
    }

    .home-info-description {
        font-size: var(--normal-font-size);
    }

    .home-img-1 {
        width: 550px;
        margin-left: 0;
    }

    .home-img-2 {
        width: 350px;
        border-width: 10px;
        left: -7rem;
        bottom: -8rem
    }

    .about-container {
        grid-template-columns: repeat(2, 480px);
        column-gap: 9rem;
        padding-block: 9rem 2rem;
    }

    .about-images {
      width: 100%;
      height: 300px;
    }

    .about-img-2 {
      width: 400px;
      margin-bottom: 0;
    }

    .about-img-1 {
      width: 60%;
      transform: translate(-10%, -30%);
    }

    .about-data, .about-data :is(.section-title, .section-subtitle) {
        text-align: initial;
    }

    .about-list {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 3.5rem
    }

    .testimoni-container {
        grid-template-columns: initial;
        row-gap: 5rem;
        padding-bottom: 4.5rem;
    }
    .testimoni-data {
        display: grid;
        grid-template-columns: 415px 370px max-content;
        justify-content: space-between;
        align-items: center;
    }

    .testimoni-data :is(.section-title, .section-subtitle), .testimoni-description {
        text-align: initial;
    }

    .testimoni-data .section-title {
        margin-bottom: 0;
    }
    .testimoni-swiper {
        max-width: 1100px;
    }
    .testimoni-card {
        width: 348px;
        border-width: 3px;
        padding: 3.5rem 2rem 6rem;
    }
    .testimoni-shape {
        height: 330px;
    }

    .projects-container {
        grid-template-columns: repeat(3, 350px);
        column-gap: 2rem;
        padding-block: 5rem 4rem;
    }
    .projects-card {
        border-width: 3px;
    }
    .projects-data {
        padding: 2rem 1.5rem 4rem;
    }

    .contact :is(.section-title, .section-subtitle) {
        text-align: initial;
    }

    .contact-container {
        grid-template-columns: 530px 515px;
        justify-content: initial;
        align-items: flex-start;
        column-gap: 3.5rem;
        padding-block: 3.5rem 4rem;
    }

    .contact-img {
        width: 530px;
    }

    .contact-data {
        gap: 2rem;
    }

    .contact-card {
        border-width: 3px;
    }

    .contact-title {
        font-size: var(--h3-font-size);
    }

    .footer {
        padding-block: 4.5rem 3rem;
    }

    .footer-container {
        padding-bottom: 6rem;
    }

    .footer-content {
        column-gap: 7rem;
    }

    .footer-description {
        margin-block: 1.5rem;
    }

    .footer-title {
        margin-bottom: 1.5rem;
    }

    .footer-links, .footer-list {
        row-gap: 1rem;
    }

    .scrollup {
        right: 3rem;
    }
}