@font-face {
  font-family: "GeneralSans-m";
  src: url("../fonts/GeneralSans-Medium.eot");
  src: url("../fonts/GeneralSans-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/GeneralSans-Medium.woff2") format("woff2"),
    url("../fonts/GeneralSans-Medium.woff") format("woff"),
    url("../fonts/GeneralSans-Medium.ttf") format("truetype"),
    url("../fonts/GeneralSans-Medium.svg#GeneralSans-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GeneralSans-r";
  src: url("../fonts/GeneralSans-Regular.eot");
  src: url("../fonts/GeneralSans-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/GeneralSans-Regular.woff2") format("woff2"),
    url("../fonts/GeneralSans-Regular.woff") format("woff"),
    url("../fonts/GeneralSans-Regular.ttf") format("truetype"),
    url("../fonts/GeneralSans-Regular.svg#GeneralSans-Regular") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GeneralSans-b";
  src: url("../fonts/GeneralSans-Bold.eot");
  src: url("../fonts/GeneralSans-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/GeneralSans-Bold.woff2") format("woff2"),
    url("../fonts/GeneralSans-Bold.woff") format("woff"),
    url("../fonts/GeneralSans-Bold.ttf") format("truetype"),
    url("../fonts/GeneralSans-Bold.svg#GeneralSans-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta-r";
  src: url("../fonts/Recoleta-Regular.eot");
  src: url("../fonts/Recoleta-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Recoleta-Regular.woff2") format("woff2"),
    url("../fonts/Recoleta-Regular.woff") format("woff"),
    url("../fonts/Recoleta-Regular.ttf") format("truetype"),
    url("../fonts/Recoleta-Regular.svg#Recoleta-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta-m";
  src: url("../fonts/Recoleta-Medium.eot");
  src: url("../fonts/Recoleta-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Recoleta-Medium.woff2") format("woff2"),
    url("../fonts/Recoleta-Medium.woff") format("woff"),
    url("../fonts/Recoleta-Medium.ttf") format("truetype"),
    url("../fonts/Recoleta-Medium.svg#Recoleta-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #eda9b4;
  --secondary-color: #da5f6f;
  --quaternary-color: rgb(237 169 180 / 17%);
  --font-family-r: "Montserrat", sans-serif;
  --font-family-m: "Montserrat", sans-serif;
  --font-family-b: "Montserrat", sans-serif;
  --font-family-second-r: "Montserrat", sans-serif;
  --font-family-second-m: "Montserrat", sans-serif;
  --text-color: #2a2b2b;
  --text-color-2: #abb1ba;
  --bg-primary-color: #eee;
  --color-pink: #fec5fb;
  --color-shockingly-pink: #f100cb;
  --color-orangey: #ff8709;
  --color-lilac: #9d95ff;
  --color-lt-green: #abff84;
  --color-blue: #00bae2;
}

body {
  font-family: var(--font-family-m);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  top: 0 !important;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
}
p {
  margin: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rounded-md {
  border-radius: 1.5rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

/* Header */
.skiptranslate {
  display: none;
}
.lang {
  padding: 5px 20px 5px 10px;
  border-radius: 30px;
  font-family: var(--font-family-m);
  font-size: 1rem;
  outline: none;
}
.section-header {
  position: fixed;
  top: 1rem;
  width: 100%;
  z-index: 999;
}
.logo img {
  max-width: 150px;
}
.section-header .headerInner {
  min-width: 30vw;
  background: #fff;
  border-radius: 1.875rem;
  padding: 0.625rem 1.25rem;
  box-shadow: rgba(186, 186, 186, 0.447) 0px 0.602187px 0.602187px -1.25px,
    rgba(186, 186, 186, 0.392) 0px 2.28853px 2.28853px -2.5px,
    rgba(186, 186, 186, 0.157) 0px 10px 10px -3.75px;
}

.headerInner li {
  color: var(--text-color-2);
  font-family: var(--font-family-m);
  font-size: 1.125rem;
  cursor: pointer;
  font-weight: 500;
}
.headerInner li:hover,
.headerInner li.active {
  color: var(--text-color-);
}

.headerInner .btnNavbar-toggler {
  display: none;
  background: var(--tertiary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-direction: column;
}
.headerInner .btnNavbar-toggler span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 3.5px 0px;
  position: relative;
}

.headerInner .btnNavbar-toggler.active span:nth-child(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  top: 8.7px;
}
.headerInner .btnNavbar-toggler.active span:nth-child(2) {
  opacity: 0;
}
.headerInner .btnNavbar-toggler.active span:nth-child(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
  top: -8.7px;
}

.headerInner .navbar-collapse {
  flex-basis: inherit;
}

/* section-1 */
.section-1 {
  overflow: hidden;
}
.section-1 .sectionInner {
  padding: 11.25rem 2rem 4.75rem;
  position: relative;
  z-index: 1;
}

.section-1 .subTitle {
  font-size: 1.5rem;
  display: block;
  font-weight: 500;
}
.section-1 h1 {
  font-family: var(--font-family-second-m);
  font-size: 3.75rem;
  font-weight: 700;
}
.section-1 p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.section-1 .btn-view {
  background: var(--tertiary-color);
  color: #fff;
  padding: 1.125rem 1.5rem;
  border-radius: 9999px;
  font-size: 1.25rem;
}

.section-1 .btn-view:hover {
  background: var(--secondary-color);
}
.section-1 .photo {
  margin: auto;
  height: 63vh;
}
.section-1 .photo img {
  height: 100%;
  object-fit: cover;
}

.section-1 .section-frame {
  position: absolute;
  right: -10vh;
  transform: rotate(25deg);
  top: 40vh;
  z-index: -1;
}
.section-1 .section-frame span {
  -webkit-filter: blur(6px);
  filter: blur(6px);
  border-radius: 72px;
}

.section-1 .section-frame span:nth-child(1) {
  background: linear-gradient(
    269.9173895347253deg,
    #ffcac5 0%,
    rgba(254, 232, 178, 1) 100%
  );
  height: 95px;
  width: 40vw;
}

.section-1 .section-frame span:nth-child(2) {
  background: linear-gradient(
    269.9173895347253deg,
    #fb9e9d 0%,
    rgba(209, 178, 234, 1) 100%
  );
  height: 95px;
  filter: blur(1px);
  width: 45vw;
}
.section-video iframe {
  border-radius: 24px;
}
.js-section-video {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
/* section-2 */
.section-2 {
  background: linear-gradient(
    144.02deg,
    var(--color-blue) 4.56%,
    var(--color-pink) 72.98%
  );
  overflow: hidden;
}
.section-2 .sectionInner {
  padding: 3.75rem 2rem;
}

.section-2 h2 {
  font-family: var(--font-family-second-m);
  font-size: 3.2rem;
  line-height: 1.2;
}
.section-2 .achievementItem span {
  font-size: 2rem;
  font-family: var(--font-family-b);
}
.section-2 .achievementItem p {
  font-size: 1rem;
}

.section-2 .service {
  background: #fff;
  border-radius: 999px;
  padding: 1rem !important;
  font-family: var(--font-family-m);
  font-size: 1.2rem;
  overflow: hidden;
}
.section-2 .service span {
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  position: relative;
}
.section-2 .service span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* section-3 */
.section-3 .sectionInner {
  padding: 3.75rem 2rem;
}
.section-3 h2 {
  font-family: var(--font-family-second-m);
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
}

.section-3 p {
  font-family: var(--font-family-r);
  font-size: 1.2rem;
  line-height: 1.7;
}

.section-3 .skills h3 {
  font-family: var(--font-family-b);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.section-3 .skill span {
  min-width: 25%;
  width: 25%;
  display: inline-block;
}

.section-3 .dot {
  width: 15px;
  height: 15px;
  background-color: var(--tertiary-color);
  border-radius: 50%;
  opacity: 0;
}

.section-3 .dot.empty {
  background-color: #eee;
}

.section-3 .percentage {
  display: inline-block;
  background: var(--tertiary-color);
  color: #fff;
  padding: 0.2rem 1rem;
  border-radius: 999px;
  width: auto !important;
  min-width: auto !important;
}

.section-3 .photo {
  position: relative;
  overflow: hidden;
}

.section-3 .photo .mask {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: #fff;
  left: 0px;
  transition: all 0.2s;
}

/* section-4 */
.section-4 .sectionInner {
  padding: 3.75rem 2rem;
}
.section-4 h2 {
  font-family: var(--font-family-second-m);
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
}
.section-4 p {
  font-family: var(--font-family-r);
  font-size: 1.2rem;
  line-height: 1.7;
}

.section-4 .galleryItem {
  color: var(--text-color);
  cursor: pointer;
}
.section-4 .galleryInfo {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  top: 0px;
  padding: 2rem;
  z-index: 1;
}

.section-4 .galleryInfo:after {
  content: "";
  position: absolute;
  left: 0px;
  width: 100%;
  left: 0px;
  top: 1px;
  z-index: 1;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 52.47%,
    #fefefef5 80.97%
  );
}

.section-4 .galleryInfo h3 {
  font-family: var(--font-family-second-m);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.section-4 .galleryInfo p {
  font-family: var(--font-family-r);
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0;
}

.section-4 .galleryItem:hover .galleryInfo p {
  opacity: 1;
}

.section-4 .galleryInfo .inner {
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  transform: translateY(10vh);
}
.section-4 .galleryItem:hover .inner {
  transform: translateY(0);
}

/* section-5 */
.section-5 .sectionInner {
  padding: 3.75rem 2rem;
}

.section-5 h2 {
  font-family: var(--font-family-second-m);
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
}

.section-5 .testimonialContent {
  max-width: 700px;
  text-align: center;
  margin: auto;
}

.section-5 .testimonialItem p {
  font-family: var(--font-family-r);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.section-5 .testimonialItem h3 {
  font-family: var(--font-family-second-m);
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.section-5 .testimonialItem span {
  font-family: var(--font-family-m);
  font-size: 1.2rem;
  color: var(--text-color-2);
}

.section-5 .testimonialItem .photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
}

.section-5 .swiper-button-next,
.section-5 .swiper-button-prev {
  color: var(--tertiary-color);
}
.section-5 .swiper-button-next:after,
.section-5 .swiper-button-prev:after {
  font-size: 2.5rem;
}

/* section-6 */
.section-6 {
  padding-bottom: 5rem;
  margin: 2rem 0px;
  color: #fff;
  overflow: hidden;
}

.section-6 .sectionInner {
  padding: 3.75rem 3rem;
  background: url("../images/map.png") no-repeat right center,
    linear-gradient(111.45deg, var(--color-orangey) 19.42%, #f7bdf8 73.08%);
  position: relative;
  z-index: 1;
}

.section-6 .subTitle {
  position: relative;
  font-size: 1rem;
  padding: 1rem 2rem;
  background: url(../images/border-2.png) no-repeat center;
  background-size: 100% 100%;
}

.section-6 h2 {
  font-family: var(--font-family-second-m);
  font-size: 4.5rem;
  line-height: 1.1;
}
.section-6 p {
  font-family: var(--font-family-r);
  font-size: 1.2rem;
  line-height: 1.7;
}

.section-6 .view {
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  font-family: var(--font-family-m);
}

.section-6 .view:hover {
  background: #fff;
  color: var(--primary-color);
}

.section-6 .photo {
  position: absolute;
  right: 2vw;
  bottom: -17vh;
  width: 50%;
  border-radius: 9999px;
  z-index: -1;
}

.section-6 .fill-text {
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 auto;
  text-align: center;
  color: transparent;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1px;
}

/* section-7 */

.section-7 {
  padding-top: 3.75rem;
  background: var(--bg-primary-color);
  overflow: hidden;
}
.section-7 h2 {
  font-family: var(--font-family-second-m);
  font-size: 5.2rem;
  margin-bottom: 4rem;
  font-weight: 700;
  text-align: center;
}

.section-7 .contactItem {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.section-7 .contactItem svg {
  width: 37px;
  margin-bottom: 10px;
  fill: var(--tertiary-color);
}

.section-7 .contactItem p {
  font-family: var(--font-family-m);
  font-size: 1.2rem;
}

.section-7 .contact-info {
  padding-right: 3rem !important;
}

.contact-form form {
  padding-left: 3rem;
  padding-bottom: 3rem;
  border-left: 1px solid var(--text-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form .form-group label {
  font-family: var(--font-family-m);
  font-size: 1.2rem;
}

.contact-form .form-group input,
.contact-form .form-group select {
  padding: 1rem;
  border: 1px solid var(--text-color-2);
  border-radius: 5px;
  font-family: var(--font-family-r);
  font-size: 1.2rem;
}

.contact-form .form-group textarea {
  resize: none;
}

.contact-form input[type="submit"] {
  background: var(--tertiary-color);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-family: var(--font-family-m);
  font-size: 1.2rem;
  cursor: pointer;
  outline: none;
  border: none;
  width: max-content;
}

@media (max-width: 992px) {
  .nav {
    width: 100%;
    margin: 2rem 0px 1rem 0px;
  }
  .nav ul {
    flex-direction: column;
    align-items: center;
  }
  .headerInner li {
    font-size: 1.7rem;
    font-family: var(--font-family-b);
  }
  .section-header .headerInner {
    width: 95%;
  }
  .navbar-collapse {
    display: none;
  }
  .headerInner .btnNavbar-toggler {
    display: flex;
  }
  .headerInner .navbar-collapse {
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  .center-layout {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  html {
    font-size: 14px;
  }
  .section-1 .sectionInner {
    padding: 9.25rem 0rem 3rem !important;
  }
  .sectionInner {
    padding: 3rem 0rem !important;
  }
  .section-1 span {
    font-size: 1.2;
    color: var(--secondary-color);
  }
  .section-1 h1 {
    font-size: 2.3rem;
  }
  .section-1 p {
    margin-bottom: 1rem;
  }
  .section-1 .sLeft {
    text-align: center;
  }
  .section-1 .sRight {
    margin-top: 3rem;
  }
  .section-1 .section-frame {
    right: 2vw;
  }
  .section-1 .btn-view {
    font-size: 1.1rem;
  }

  .section-2 h2 {
    font-size: 2.3rem;
  }
  .section-2 .sRight {
    margin-top: 3rem;
  }

  .section-3 h2 {
    font-size: 2.3rem;
  }
  .section-3 .sRight {
    margin-top: 3rem;
  }
  .section-3 .percentage {
    font-size: 0.7rem;
    min-width: inherit !important;
  }
  .section-3 .dots {
    gap: 0.5rem !important;
  }
  .section-3 .dot {
    width: 0.6rem;
    height: 0.6rem;
  }
  .section-3 .skill span {
    font-size: 0.8rem;
  }

  .section-4 .sectionInner {
    padding-top: 0px !important;
  }
  .section-4 h2 {
    font-size: 2.3rem;
  }
  .section-4 .galleryInfo {
    padding: 1rem;
  }
  .section-4 .galleryInfo h3 {
    margin-bottom: 0px;
    font-size: 1.2rem;
  }
  .section-4 .galleryInfo p {
    opacity: 1;
  }
  .section-4 .galleryInfo .inner {
    transform: inherit;
  }

  .section-5 .sectionInner {
    padding-top: 0px !important;
  }
  .section-5 .swiper-button-next,
  .section-5 .swiper-button-prev {
    top: 75%;
  }

  .section-6 {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  .section-6 .container {
    padding: 0px;
  }
  .section-6 h2 {
    font-size: 2.5rem;
  }
  .section-6 .sectionInner {
    padding: 3rem 1rem !important;
  }
  .section-6 .photo {
    position: static;
    width: 100%;
    margin-top: 2rem;
  }

  .section-7 h2 {
    font-size: 3.2rem;
    padding-left: 0;
    text-align: center;
    margin-bottom: 2rem;
  }
  .section-7 .contact-info {
    padding: 0;
    align-items: center !important;
  }
  .section-7 .contactItem {
    align-items: center !important;
  }
  .contact-form form {
    padding: 2rem 0;
    border: none;
  }
}
@media (max-width: 576px) {
  .headerInner .btnNavbar-toggler span {
    margin: 2px 0px;
    width: 20px;
  }
  .headerInner .btnNavbar-toggler.active span:nth-child(3) {
    top: -4.7px;
  }
  .logo img {
    max-height: 34px;
  }
  .lang {
    font-size: 14px;
    padding: 5px 10px;
  }
  .headerInner .btnNavbar-toggler {
    width: 40px;
    height: 40px;
  }
  .headerInner .gap-4 {
    gap: 10px !important;
  }
}

#cursor {
  position: fixed;
  z-index: 99999;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  top: 0%;
  left: 0%;
  background: var(--secondary-color);
  pointer-events: none;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  transition: opacity 0.5s ease-in-out, border-width 0.5s ease-in-out,
    box-shadow 0.5s ease-in-out;
}

#cursor.active {
  opacity: 0.5;
  width: 30px;
  height: 30px;
}
