/* Global */
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Bold.otf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Medium.otf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Roman.otf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Light.otf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Thin.otf") format("truetype");
  font-weight: 200;
}

* {
  box-sizing: border-box;
  font-family: "Helvetica Neue", sans-serif;
}

body {
  background-color: #f3f0eb;
  overflow-x: hidden;
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 120rem;
  z-index: 1000;
  pointer-events: none;
  transition: all 0.2s ease;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 6.5rem;
  padding: 0 3.75rem;
  width: 50%;
  background-color: transparent;
  pointer-events: auto;
}

.header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .logo img {
  width: 100%;
}
.header .logo img.logo-mob {
  display: none;
}
.header .nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header .nav a {
  color: #18181b;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s;
  white-space: nowrap;
}
.header .nav a:hover {
  opacity: 0.6;
}
.header .btn-contact {
  position: relative;
  border-radius: 2.25rem;
  background: #18181b;
  color: #ffffff;
  width: 8.75rem;
  height: 2.25rem;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-radius 0.2s;
}
.header .btn-contact:after {
  content: "";
  position: absolute;
  background-color: #18181b;
  background-image: url(../img/arr-white.svg);
  background-size: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 2.25rem;
  right: -2.25rem;
  top: 0rem;
  transition: border-radius 0.2s;
}
.header .btn-contact:hover {
  border-radius: 2.25rem 0rem 0rem 2.25rem;
}
.header .btn-contact:hover:after {
  border-radius: 0rem 2.25rem 2.25rem 0rem;
}
.header.white .nav a {
  color: #ffffff;
}

.header.white .logo img {
  filter: brightness(0) invert(1);
}
.header.white .btn-contact {
  background: #ffffff;
  color: #18181b;
}
.header.white .btn-contact:after {
  background-color: #ffffff;
  background-image: url(../img/arr-black.svg);
}

.section1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  align-items: stretch;
}

.section1 .section1-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.75rem;
  min-height: calc(100vh - 6.5rem);
  margin-top: 6.5rem;
  padding-right: 0;
}

.section1 h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #18181b;
  line-height: 140%;
}

.section1 p {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  color: #52525b;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 160%;
}

.section1 .mob .scroll-label {
  display: none;
}
.section1 .scroll-label {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.section1 .scroll-label .vertical-line {
  width: 0.25rem;
  height: 10rem;
  background: linear-gradient(180deg, #18181b 0%, rgba(24, 24, 27, 0) 100%);
  position: relative;
  overflow: hidden;
}

.section1 .scroll-label .vertical-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, #18181b, transparent);
  animation: lineScroll 2s infinite linear;
}

@keyframes lineScroll {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

.section1 .scroll-label p {
  color: #52525b;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 0px;
}

.section1 .section1-visual {
  padding: 0 3.75rem;
  overflow: hidden;
  position: relative;
}
.section1 .section1-visual:after {
  content: "";
  background: linear-gradient(0deg, #f3f0eb 0%, rgba(243, 240, 235, 0) 100%);
  position: absolute;
  width: 100%;
  left: 0rem;
  bottom: -0.0625rem;
  height: 6.25rem;
  z-index: 1;
}
.section1 .section1-visual:before {
  content: "";
  background: linear-gradient(180deg, #f3f0eb 0%, rgba(243, 240, 235, 0) 100%);
  position: absolute;
  width: 100%;
  left: 0rem;
  top: -0.0625rem;
  height: 6.25rem;
  z-index: 1;
}
.section1 .gallery-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 3.75rem;
  right: 3.75rem;
  height: 100%;
}

.section1 .column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  will-change: transform;
}

.section1 .col-up {
  animation: scrollUp 60s infinite linear;
}

.section1 .col-down {
  animation: scrollDown 60s infinite linear;
}
.section1 .pic {
  flex-shrink: 0;
}
.section1 .pic img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.section2 {
  background-color: #18181b;
  max-width: 120rem;
  margin: 0 auto;
  padding: 3.75rem;
  border-radius: 1.5rem;
  position: relative;
}

.section2 p {
  font-size: clamp(1.5rem, 3.5vw, 4rem);
  font-weight: 400;
  line-height: 160%;
  text-transform: uppercase;
  color: #ffffff;
}

.section3 {
  max-width: 120rem;
  margin: 0 auto;
  padding: clamp(3.75rem, 8vw, 7.5rem) 3.75rem;
  padding-top: 15rem;
  background-image: url(../img/bg.svg);
  background-repeat: no-repeat;
  background-position: top right;
  display: flex;
  justify-content: space-between;
  gap: clamp(2.5rem, 5vw, 6.25rem);
}

.section3 .section3-left h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 140%;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.08rem;
  margin-bottom: 3.75rem;
  color: #18181b;
}
.section3 .section3-left img {
  width: 100%;
}
.section3 .section3-left {
  max-width: 35.1875rem;
  width: 100%;
}
.section3 .section3-right {
  max-width: 64.1875rem;
  width: 100%;
}

.section3 .section3-right p {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  line-height: 160%;
  color: #52525b;
  margin-bottom: 6.25rem;
  max-width: 45rem;
}

.section3 .section3-list {
  display: flex;
  flex-direction: column;
}

.section3 .service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 0.0625rem solid #18181b;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}

.section3 .service-item .service-name {
  color: rgba(24, 24, 27, 0.5);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 140%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section3 .service-item:hover .service-name {
  color: #18181b;
  padding-left: 3.75rem;
}

.section3 .service-item:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.section4 {
  max-width: 120rem;
  margin: 0 auto;
  padding: clamp(3.75rem, 8vw, 7.5rem) 3.75rem;
  display: flex;
  justify-content: space-between;
  gap: clamp(2.5rem, 5vw, 6.25rem);
}

.section4 .section4-left {
  max-width: 54.5rem;
  width: 100%;
  padding-top: 2.5rem;
}

.section4 .section4-left .list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.section4 .section4-left .list .itm {
  padding-bottom: 2.5rem;
  border-bottom: 0.0625rem solid #18181b;
}

.section4 .section4-left .list .itm h6 {
  color: #52525b;
  margin-bottom: 0.75rem;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.section4 .section4-left .list .itm h2 {
  color: #18181b;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 140%;
}

.section4 .section4-left .list .itm p {
  color: #52525b;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  line-height: 160%;
}

.section4 .section4-right {
  max-width: 44.8125rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.section4 .section4-right h3 {
  color: #18181b;
  margin-bottom: 3.5rem;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.08rem;
  text-transform: uppercase;
}

.section4 .section4-right img {
  width: 100%;
  border-radius: 1.5rem;
  display: block;
}

.section5 {
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
  border-radius: 2rem;
  background: #18181b;
  background-image: url(../img/bg2.svg);
  background-repeat: no-repeat;
  background-position: top left;
  padding: clamp(3.75rem, 8vw, 7.5rem) 3.75rem;
  margin-top: -15rem;
  overflow: hidden;
}

.section5 .section5-top {
  max-width: 54.5rem;
  width: 100%;
  margin-bottom: 7.5rem;
}
.section5 .section5-top h2 {
  color: #fff;
  margin-bottom: 2.25rem;
  font-size: clamp(2rem, 4vw, 4rem);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -1.28px;
}
.section5 .section5-top p {
  color: #d4d4d8;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  line-height: 160%;
}

.section5 .section5-bottom {
  position: relative;
  width: 100%;
}

.section5 .list .slick-list {
  overflow: visible !important;
  clip-path: inset(0 -100vw 0 0);
}

.section5 .list .itm {
  width: 38vw !important;
  padding-right: 2.5rem;
  outline: none;
}

.section5 .list .itm .img-box {
  width: 100%;
  aspect-ratio: 717 / 480;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 1.25rem;
}
.section5 .list .itm .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section5 .list .itm h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: 140%;
}
.section5 .list .itm p {
  color: #d4d4d8;
  font-size: clamp(0.875rem, 1.2vw, 1.5rem);
  font-weight: 400;
  line-height: 160%;
}

.section5 .line-arrow {
  position: absolute;
  right: 0;
  top: -7.5rem;
  display: flex;
  align-items: center;
  gap: 3.75rem;
  transform: translateY(-100%);
}

.section5 .line-arrow p {
  color: #d4d4d8;
  font-size: clamp(1.5rem, 2vw, 3rem);
  text-align: center;
}
.section5 .line-arrow .slick-arr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 0.125rem solid #fff;
  transition: all 0.2s;
}
.section5 .line-arrow .slick-arr:hover {
  opacity: 0.6;
}
.section5 .line-arrow .slick-arr.arr-left {
  transform: rotate(-180deg);
}
.section5 .line-arrow .slick-arr img {
  width: 24px;
}

.section6 {
  position: relative;
  max-width: 120rem;
  margin: 0 auto;
  padding: clamp(3.75rem, 8vw, 7.5rem) 3.75rem;
  padding-top: 15rem;
  background-image: url(../img/bg.svg);
  background-repeat: no-repeat;
  background-position: top right;
}
.section6 .list .itm {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 3.5rem;
}
.section6 .list .itm .left-side {
  flex: 0 1 65%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section6 .list .itm .left-side img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.section6 .list .itm .right-side {
  flex: 0 1 35%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.section6 h2 {
  color: #18181b;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.075rem;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
  position: absolute;
  right: 3.75rem;
  top: 15rem;
  max-width: calc(45% - 3.5rem);
  z-index: 1;
}
.section6 .list .itm p {
  color: #18181b;
  margin-bottom: 3.125rem;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
}

.section6 .list .itm .avatar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}
.section6 .list .itm .avatar img {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  object-fit: cover;
}
.section6 .list .itm .avatar .text h5 {
  color: #18181b;
  font-size: clamp(1.125rem, 1.2rem, 1.5rem);
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 0.5rem;
}
.section6 .list .itm .avatar .text h6 {
  color: #52525b;
  font-size: clamp(1rem, 1.05rem, 1.25rem);
  font-weight: 400;
  line-height: 160%;
}
.section6 .line-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  position: absolute;
  bottom: 7.5rem;
  right: 3.75rem;
  z-index: 1;
}
.section6 .line-arrow .slick-arr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 0.125rem solid #18181b;
  transition: all 0.2s;
}
.section6 .line-arrow .slick-arr.arr-left {
  transform: rotate(-180deg);
}
.section6 .line-arrow .slick-arr img {
  width: 24px;
}
.section6 .line-arrow .slick-arr:hover {
  opacity: 0.6;
}

.section7 {
  max-width: 120rem;
  margin: 0 auto;
  padding: clamp(3.75rem, 8vw, 7.5rem) 3.75rem;
}
.section7 .btn-contact {
  color: #fff;
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 400;
  line-height: 140%;
  position: relative;
  border-radius: 62.5rem;
  background: #18181b;
  width: calc(100% - 15.375rem);
  height: clamp(8rem, 15.375rem, 15.375rem);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.section7 .btn-contact:after {
  content: "";
  position: absolute;
  background-color: #18181b;
  background-image: url(../img/arr-white.svg);
  background-size: clamp(3rem, 7.5rem, 7.5rem);
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(8rem, 15.375rem, 15.375rem);
  height: clamp(8rem, 15.375rem, 15.375rem);
  border-radius: 62.5rem;
  right: clamp(-15.375rem, -15.375rem, -15.375rem);
  top: 0rem;
  transition: all 0.2s;
}
.section7 .btn-contact:hover {
  border-radius: 62.5rem 0rem 0rem 62.5rem;
}
.section7 .btn-contact:hover:after {
  border-radius: 0rem 62.5rem 62.5rem 0rem;
}

.footer {
  max-width: 120rem;
  margin: 0 auto;
  padding: 3.75rem;
}

.footer .top-side {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.25rem;
  border-bottom: 0.0625rem solid rgba(24, 24, 27, 0.85);
  margin-bottom: 2.25rem;
  gap: 1.75rem;
}
.footer .top-side .left-side .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.footer .top-side .left-side p {
  color: #18181b;
  margin-bottom: 1.5rem;
  font-size: clamp(1.125rem, 1.3rem, 1.5rem);
  font-weight: 400;
  line-height: 160%;
}
.footer .top-side .left-side .list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}
.footer .top-side .left-side .list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 6.25rem;
  border: 0.125rem solid #18181b;
  transition: all 0.2s;
}
.footer .top-side .left-side .list a:hover {
  opacity: 0.6;
}
.footer .top-side .left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer .top-side .right-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer .top-side .right-side .nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.25rem;
  margin-bottom: 1.5rem;
}
.footer .top-side .right-side .nav a {
  color: #18181b;
  font-size: clamp(1.125rem, 1.3rem, 1.5rem);
  font-weight: 400;
  line-height: 160%;
  transition: all 0.2s;
}
.footer .top-side .right-side nav a:hover {
  opacity: 0.6;
}
.footer .top-side .right-side p {
  color: #18181b;
  text-align: right;
  font-size: clamp(1.125rem, 1.3rem, 1.5rem);
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 0.75rem;
}
.footer .top-side .right-side p:last-child {
  margin-bottom: 0rem;
}
.footer .top-side .right-side a {
  display: block;
  width: max-content;
  text-align: right;
  color: #18181b;
  font-size: clamp(1.125rem, 1.3rem, 1.5rem);
  font-weight: 400;
  line-height: 160%;
  transition: all 0.2s;
}
.footer .top-side .right-side a:hover {
  opacity: 0.6;
}
.footer .bottom-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .bottom-side p {
  color: #18181b;
  font-size: clamp(1.125rem, 1.3rem, 1.5rem);
  font-weight: 400;
  line-height: 160%;
}
.footer .bottom-side nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.25rem;
}
.footer .bottom-side nav a {
  color: #18181b;
  font-size: clamp(1.125rem, 1.3rem, 1.5rem);
  font-weight: 400;
  line-height: 160%;
  transition: all 0.2s;
}
.footer .bottom-side nav a:hover {
  opacity: 0.6;
}
.custom-cursor {
  position: fixed;
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition:
    opacity 0.3s,
    transform 0.3s ease-out;
}
.custom-cursor.active {
  opacity: 1;
  transform: scale(1);
}

.custom-cursor img:not(.arrow img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-cursor .arrow {
  position: absolute;
  width: 6.25rem;
  height: 6.25rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-cursor .arrow img {
  width: 3.5rem;
}

.section3 .service-item {
  cursor: none;
}

@media only screen and (max-width: 1700px) {
  .section5 {
    margin-top: -13rem;
  }
}
@media only screen and (max-width: 1500px) {
  .header .logo {
    max-width: 150px;
  }
  .header .nav {
    gap: 1rem;
  }
  .section5 {
    margin-top: 0rem;
  }
  .section5 .section5-top {
    max-width: 45rem;
  }
  .section6 .list .itm .left-side {
    flex: 0 1 55%;
  }
  .section6 .list .itm .right-side {
    flex: 0 1 45%;
  }
}
@media only screen and (max-width: 1300px) {
  .header {
    padding: 0 1.75rem;
    padding-right: 0px;
  }
  .section1 .section1-info {
    padding: 1.75rem;
    padding-right: 0px;
  }
  .section1 .section1-visual {
    padding: 0 1.75rem;
  }
  .section2 {
    padding: 1.75rem;
  }
  .section3 {
    padding: 2.75rem 1.75rem;
  }
  .section4 {
    padding: 2.75rem 1.75rem;
  }
  .section3 .service-item {
    padding: 1.5rem 0;
  }
  .section3 .section3-left {
    max-width: 23.1875rem;
  }
  .section1 .gallery-columns,
  .section1 .column {
    gap: 1rem;
  }
  .header .logo {
    max-width: 130px;
  }
  .header .nav {
    gap: 0.5rem;
  }
  .section3 .section3-right p {
    margin-bottom: 3rem;
  }
  .section5 {
    padding: 2.75rem 1.75rem;
  }
  .section4 .section4-left {
    padding-top: 0px;
  }
  .section5 .section5-top {
    max-width: 35rem;
  }
  .section6 {
    padding: 2.75rem 1.75rem;
  }
  .section6 .list .itm .left-side {
    flex: 0 1 50%;
  }
  .section6 .list .itm .right-side {
    flex: 0 1 50%;
  }
  .section7 {
    padding: 2.75rem 1.75rem;
  }
  .footer {
    padding: 2.75rem 1.75rem;
  }
  .section7 .btn-contact {
    height: 8rem;
    width: calc(100% - 8rem);
  }
  .section7 .btn-contact:after {
    height: 8rem;
    width: 8rem;
    right: -8rem;
    background-size: 3rem;
  }
  .section1 .gallery-columns {
    left: 1.75rem;
    right: 1.75rem;
  }
  .section6 .line-arrow {
        bottom: 2.75rem;
    right: 1.75rem;
  }
  .section6 h2 {
    top: 2.75rem;
    right: 1.75rem;
    max-width: calc(50% - 3.5rem);
  }
}
@media only screen and (max-width: 992px) {
  .header {
    width: 100%;
  }
  .header .btn-contact {
    margin-right: 2.25rem;
  }
  .header {
    padding: 0 1.75rem;
  }
  .section3 .section3-right p {
    margin-bottom: 1rem;
  }
  .section4 .section4-left .list .itm {
    padding-bottom: 1rem;
  }
  .section4 .section4-left .list {
    gap: 1rem;
  }
  .section4 .section4-left .list .itm h2 {
    margin-bottom: 1rem;
  }
  .section5 .section5-top {
    margin-bottom: 3rem;
  }
  .section5 .line-arrow {
    gap: 1.75rem;
    top: -3rem;
  }
  .section6 .list .itm {
    gap: 1.75rem;
  }
  .section3 {
    gap: 1.75rem;
  }
  .section4 {
    gap: 1.75rem;
  }
  .section5 .list .itm {
    padding-right: 1.75rem;
  }
  .section7 .btn-contact {
    font-size: clamp(2rem, 5vw, 6rem);
  }
  .footer .top-side .right-side .nav {
    gap: 1rem;
  }
  .footer .bottom-side nav {
    gap: 1rem;
  }
  .footer .bottom-side nav a,
  .footer .bottom-side p,
  .footer .top-side .left-side p,
  .footer .top-side .right-side .nav a,
  .footer .top-side .right-side p,
  .footer .top-side .right-side a {
    font-size: 1.125rem;
  }
  .footer .top-side .left-side .list {
    gap: 1rem;
  }
  .custom-cursor {
    width: 8.5rem;
    height: 8.5rem;
  }
  .custom-cursor .arrow {
    width: 4.25rem;
    height: 4.25rem;
  }
  .custom-cursor .arrow img {
    width: 1.5rem;
  }
  .section5 .section5-top {
    max-width: 25rem;
  }
  .section6 .list .itm .avatar {
    gap: 8px;
  }
  .section6 .list .itm .avatar img {
    width: 44px;
    height: 44px;
  }
  .section6 .line-arrow {
    gap: 24px;
  }
  .section6 .list .itm .left-side {
    flex: 0 1 45%;
  }
  .section6 .list .itm .right-side {
    flex: 0 1 55%;
  }
  .section6 h2 {
    position: static;
    margin-bottom: 30px;
    max-width: 100%;
    font-size: 32px;
  }
}

@media only screen and (max-width: 768px) {
  .header .nav {
    display: none;
  }
  .header {
    height: 76px;
    padding: 0 15px;
  }
  .header .logo {
    max-width: 56px;
  }
  .header .logo img {
    display: none;
  }
  .header .logo img.logo-mob {
    display: block;
  }
  .header .btn-contact {
    font-size: 16px;
  }
  .section1 {
    padding: 0px 15px;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .section1 .section1-info {
    padding: 0px;
    margin-top: 85px;
    margin-bottom: 30px;
    min-height: auto;
    justify-content: flex-start;
  }
  .section1 h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .section1 p {
    margin-bottom: 0px;
    font-size: 16px;
  }
  .section1 .scroll-label {
    display: none;
  }
  .section1 .gallery-columns {
    position: static;
  }
  .section1 .section1-visual {
    padding: 0px;
    max-height: 560px;
  }
  .section2 {
    padding: 30px 15px;
  }
  .section2 p {
    font-size: 20px;
  }
  .section1 .gallery-columns,
  .section1 .column {
    gap: 15px;
  }
  .section3 {
    padding: 30px 15px;
    gap: 15px;
    flex-direction: column;
    background-image: none;
  }
  .section3 .section3-left h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .section3 .section3-left {
    max-width: 100%;
  }
  .section3 .section3-right p {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .section3 .service-item:hover .service-name {
    padding-left: 0px;
  }
  .section3 .service-item {
    padding: 15px 0px;
    font-size: 24px;
  }
  .section4 {
    flex-direction: column-reverse;
    padding: 30px 15px;
  }
  .section4 .section4-right h3 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .section4 .section4-left .list .itm {
    padding-bottom: 15px;
  }
  .section4 .section4-left .list .itm h6 {
    margin-bottom: 8px;
    font-size: 12px;
  }
  .section4 .section4-left .list .itm h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .section4 .section4-left .list .itm p {
    font-size: 16px;
  }
  .section5 {
    padding: 30px 15px;
    background-image: none;
  }
  .section5 .section5-top {
    max-width: 100%;
    margin-bottom: 45px;
  }
  .section5 .section5-top h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .section5 .section5-top p {
    font-size: 16px;
  }
  .section5 .line-arrow {
    position: initial;
    transform: none;
    justify-content: space-between;
    margin-top: 30px;
  }
  .section5 .line-arrow p {
    font-size: 24px;
  }
  .section5 .list .itm {
    padding-right: 30px;
  }
  .section5 .section5-bottom {
    display: flex;
    flex-direction: column-reverse;
  }
  .section5 .list .itm h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .section5 .list .itm .img-box {
    margin-bottom: 24px;
  }
  .section5 .list .itm {
    width: 60vw !important;
  }
  .section5 .list .itm p {
    font-size: 16px;
  }
  .section6 {
    padding: 30px 15px;
    background-image: none;
  }
  .section6 .list .itm {
    flex-direction: column;
    gap: 30px;
  }
  .section6 .list .itm p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .section6 .list .itm .avatar .text h5 {
    font-size: 16px;
    margin-bottom: 0px;
  }
  .section6 .list .itm .avatar .text h6 {
    font-size: 12px;
  }
  .section7 {
    padding: 30px 15px;
  }
  .section7 .btn-contact {
    font-size: 26px;
    height: 82px;
    width: calc(100% - 80px);
  }
  .section7 .btn-contact:after {
    height: 82px;
    width: 82px;
    right: -82px;
    background-size: 40px;
  }
  .footer {
    padding: 30px 15px;
  }
  .footer .top-side {
    flex-direction: column;
  }
  .footer .top-side .left-side {
    width: 100%;
  }
  .footer .top-side .right-side {
    width: 100%;
  }
  .footer .bottom-side {
    flex-direction: column;
  }
  .footer .top-side .left-side .logo {
    margin-bottom: 15px;
  }
  .footer .top-side .left-side p {
    margin-bottom: 15px;
  }
  .footer .bottom-side nav a,
  .footer .bottom-side p,
  .footer .top-side .left-side p,
  .footer .top-side .right-side .nav a,
  .footer .top-side .right-side p,
  .footer .top-side .right-side a {
    font-size: 14px;
  }
  .footer .top-side .left-side .list {
    gap: 24px;
  }
  .footer .top-side .right-side .nav {
    gap: 24px;
    margin-bottom: 15px;
  }
  .footer .top-side .right-side p {
    margin-bottom: 15px;
  }
  .footer .bottom-side {
    gap: 30px;
    align-items: flex-start;
  }
  .footer .top-side {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .footer .bottom-side nav {
    gap: 10px;
    width: 100%;
    justify-content: space-between;
  }
  .section1 .mob {
    display: flex;
    align-items: normal;
    gap: 15px;
  }
  .section1 .mob .scroll-label {
    display: flex;
    gap: 15px;
  }
  .section1 .scroll-label p {
    font-size: 16px;
    white-space: nowrap;
  }
  .section1 .scroll-label .vertical-line {
    height: 100%;
    width: 4px;
  }
      .section6 .line-arrow {
        bottom: 30px;
        right: 15px;
    }
}

@media only screen and (max-width: 576px) {
  .section5 .list .itm {
    width: 85vw !important;
  }
  .section7 .btn-contact {
    font-size: 16px;
  }
}

@media only screen and (max-width: 375px) {
  .section6 .line-arrow .slick-arr {
    width: 50px;
    height: 50px;
  }
  .section6 .line-arrow {
    gap: 14px;
  }
  .section1 .mob .scroll-label,
  .section1 .mob {
    gap: 10px;
  }
  .section7 .btn-contact:after {
    background-size: 30px;
  }
}
/* @media only screen and (max-width: 64rem) {
}

@media only screen and (max-width: 62rem) {
}

@media only screen and (max-width: 48rem) {
}

@media only screen and (max-width: 36rem) {
}

@media only screen and (max-width: 23.4375rem) {
} */
