:root {
  --font-family: "Poppins", sans-serif;
  --content-width: 1250px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --color-light: #EEE;
  --color-accent: #00ADB5;
  --color-gray: #393E46;
  --color-main: #222831;
}

/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

/* .custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
} */
.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
/* stylelint-disable */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/../fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/../fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
html.is-lock {
  overflow: hidden;
}

body {
  font-family: var(--font-family);
  font-style: normal;
  line-height: normal;
  background-color: var(--color-main);
  color: var(--color-light);
}

.page {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 390px;
  min-height: 100%;
}

img {
  -o-object-fit: cover;
  object-fit: cover;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

._container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  -webkit-transition-duration: var(--transition-duration);
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
a[class] {
  text-decoration: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

.button {
  color: var(--color-light);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  font-weight: 700;
  border-radius: 24px;
  -webkit-transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}

.button-accent {
  background-color: var(--color-accent);
}
@media (any-hover: hover) {
  .button-accent:hover {
    background-color: rgba(57, 62, 70, 0.75);
    color: var(--color-light);
    outline: 2px dashed var(--color-accent);
    outline-offset: 2px;
  }
}
@media (any-hover: none) {
  .button-accent:active {
    background-color: rgba(57, 62, 70, 0.75);
    color: var(--color-light);
    outline: 2px dashed var(--color-accent);
    outline-offset: 2px;
  }
}

.btn-transparent {
  background: rgba(57, 62, 70, 0.75);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
@media (any-hover: hover) {
  .btn-transparent:hover {
    outline: 2px dashed var(--color-light);
    outline-offset: 2px;
    background-color: var(--color-accent);
    color: var(--color-light);
  }
}
@media (any-hover: none) {
  .btn-transparent:active {
    outline: 2px dashed var(--color-light);
    outline-offset: 2px;
    background-color: var(--color-accent);
    color: var(--color-light);
  }
}

.header {
  padding-block: 15px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.1);
  background-color: var(--color-main);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  margin: 0 auto;
  -webkit-transition: -webkit-box-shadow 0.3s ease 0s;
  transition: -webkit-box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
}
.header.scrolling {
  -webkit-box-shadow: 0 0 7px rgba(238, 238, 238, 0.2);
  box-shadow: 0 0 7px rgba(238, 238, 238, 0.2);
}
.header__logo svg path.logo-animating {
  transform-box: fill-box;
  -webkit-transform-origin: 80% 50%;
  -ms-transform-origin: 80% 50%;
  transform-origin: 80% 50%;
}
@media (any-hover: hover) {
  .header__logo:hover svg path.logo-animating {
    -webkit-animation: animaitingLogo 3s linear 0s infinite forwards alternate;
    animation: animaitingLogo 3s linear 0s infinite forwards alternate;
  }
}
@media (any-hover: none) {
  .header__logo:active svg path.logo-animating {
    -webkit-animation: animaitingLogo 3s linear 0s infinite forwards alternate;
    animation: animaitingLogo 3s linear 0s infinite forwards alternate;
  }
}
.header__list {
  -webkit-column-gap: clamp(1.25rem, 0.6831395349rem + 2.3255813953vw, 2.5rem);
  -moz-column-gap: clamp(1.25rem, 0.6831395349rem + 2.3255813953vw, 2.5rem);
  column-gap: clamp(1.25rem, 0.6831395349rem + 2.3255813953vw, 2.5rem);
}
.header__link {
  font-size: 18px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
}
.header__link:hover {
  color: var(--color-accent);
}
.header__link:hover:after {
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.header__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: var(--color-accent);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.hero {
  padding-block: clamp(1.25rem, -1.0174418605rem + 9.3023255814vw, 6.25rem);
  margin-top: 84px;
}
.hero__body {
  padding-left: 85px;
  position: relative;
}
.hero__body::before {
  content: "";
  position: absolute;
  width: 79px;
  height: 261px;
  left: 0px;
  top: -20px;
  background: url("../img/hero-arrow.svg") left 30px/79px 261px no-repeat;
}
@media (max-width: 1199.98px) {
  .hero__body::before {
    background: url("../img/hero-arrow.svg") left 50px/79px 70% no-repeat;
  }
}
@media (max-width: 991.98px) {
  .hero__body {
    padding-left: 0;
    padding-right: 0;
  }
  .hero__body:before {
    content: none;
  }
}
.hero__title {
  font-size: 80px;
  color: var(--color-light);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.hero__title span {
  font-size: 68px;
}
@media (max-width: 1199.98px) {
  .hero__title span {
    font-size: 50px;
  }
}
@media (max-width: 1199.98px) {
  .hero__title {
    font-size: 63px;
  }
}
.hero__buttons {
  margin-top: 40px;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 15px;
}
@media (min-width: 481px) {
  .hero__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.hero__btn {
  padding: 10px 32px;
}
@media (max-width: 480.98px) {
  .hero__btn {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.hero__image {
  text-align: right;
}
@media (max-width: 991.98px) {
  .hero__image {
    text-align: center;
  }
  .hero__image svg {
    width: 500px;
    height: auto;
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  .hero__image svg {
    width: 100%;
  }
}
.hero .text-animate {
  position: relative;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.hero .text-animate h1 {
  max-width: 460px;
  text-shadow: 0px 0px 1px rgba(238, 238, 238, 0.2);
  color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), color-stop(50%, #00ADB5));
  background-image: linear-gradient(to bottom, #eee 50%, #00ADB5 50%);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-position: 0 0;
  -webkit-animation: heroBgText 8s linear infinite;
  animation: heroBgText 8s linear infinite;
}
@media (max-width: 1199.98px) {
  .hero .text-animate h1 {
    max-width: 360px;
  }
}
.hero .text-animate h1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  width: 0px;
  height: 100%;
  border-right: 2px solid rgba(0, 173, 181, 0.3);
  z-index: 1;
  -webkit-animation: heroCursorText 8s linear infinite;
  animation: heroCursorText 8s linear infinite;
}
@media (max-width: 991.98px) {
  .hero .text-animate {
    margin: 0 auto;
    text-align: center;
  }
}

@-webkit-keyframes heroBgText {
  0%, 10%, 100% {
    background-position: -29rem 0;
  }
  65%, 85% {
    background-position: 0 0;
  }
}

@keyframes heroBgText {
  0%, 10%, 100% {
    background-position: -29rem 0;
  }
  65%, 85% {
    background-position: 0 0;
  }
}
@media (max-width: 1199.98px) {
  @-webkit-keyframes heroBgText {
    0%, 10%, 100% {
      background-position: -22.5rem 0;
    }
    65%, 85% {
      background-position: 0 0;
    }
  }
  @keyframes heroBgText {
    0%, 10%, 100% {
      background-position: -22.5rem 0;
    }
    65%, 85% {
      background-position: 0 0;
    }
  }
}
@-webkit-keyframes heroCursorText {
  0%, 10%, 100% {
    width: 0;
  }
  65%, 78%, 85% {
    width: 100%;
    opacity: 1;
  }
  75%, 81% {
    opacity: 0;
  }
}
@keyframes heroCursorText {
  0%, 10%, 100% {
    width: 0;
  }
  65%, 78%, 85% {
    width: 100%;
    opacity: 1;
  }
  75%, 81% {
    opacity: 0;
  }
}
@-webkit-keyframes animaitingLogo {
  from {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
  to {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes animaitingLogo {
  from {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
  to {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
.about {
  padding-block: clamp(1.25rem, -1.0174418605rem + 9.3023255814vw, 6.25rem) clamp(6.25rem, 5.6831395349rem + 2.3255813953vw, 7.5rem);
}
@media (max-width: 991.98px) {
  .about .row > * {
    padding-inline: 0;
  }
}
.about__body {
  position: relative;
}
@media (max-width: 991.98px) {
  .about__body {
    text-align: center;
  }
}
.about__title {
  color: var(--color-light);
  font-size: 64px;
  font-weight: 700;
}
.about__title span {
  color: var(--color-accent);
}
@media (max-width: 575.98px) {
  .about__title {
    font-size: 46px;
  }
}
.about__text p {
  color: rgba(238, 238, 238, 0.75);
  font-size: 18px;
}
@media (max-width: 575.98px) {
  .about__text p {
    font-size: 14px;
  }
}
.about__smile {
  display: inline;
  width: 24px;
  height: 24px;
}
.about__image {
  text-align: right;
}
.about__image svg {
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1440.98px) {
  .about__image svg {
    width: 550px;
    height: auto;
  }
}
@media (max-width: 991.98px) {
  .about__image {
    text-align: center;
  }
  .about__image svg {
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  .about__image svg {
    width: 100%;
  }
}
.about .about-decorate-1,
.about .about-decorate-2,
.about .about-decorate-3 {
  position: absolute;
}
.about .about-decorate-1 {
  top: -100px;
  left: 0;
}
@media (max-width: 991.98px) {
  .about .about-decorate-1 {
    top: -70px;
  }
}
.about .about-decorate-2 {
  left: 90%;
  top: -10%;
}
@media (max-width: 991.98px) {
  .about .about-decorate-2 {
    top: -90px;
    left: auto;
    right: 0;
  }
}
.about .about-decorate-3 {
  left: 30%;
  top: 75%;
}
@media (max-width: 1440.98px) {
  .about .about-decorate-3 {
    top: 80%;
  }
}
@media (max-width: 991.98px) {
  .about .about-decorate-3 {
    display: none;
  }
}

.portfolio {
  padding-block: clamp(3.75rem, 2.6162790698rem + 4.6511627907vw, 6.25rem);
}
.portfolio__title {
  color: var(--color-light);
  font-size: 64px;
  font-weight: 700;
  margin-bottom: clamp(1.25rem, 0.6831395349rem + 2.3255813953vw, 2.5rem);
}
.portfolio__title span {
  color: var(--color-accent);
}
@media (max-width: 991.98px) {
  .portfolio__title {
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .portfolio__title {
    font-size: 46px;
  }
}
.portfolio__slider {
  border-radius: 16px;
  border: 40px solid rgba(57, 62, 70, 0.5);
  border-bottom: 0;
  position: relative;
}
@media (max-width: 991.98px) {
  .portfolio__slider {
    border: 20px solid rgba(57, 62, 70, 0.5);
    border-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .portfolio__slider {
    border: 10px solid rgba(57, 62, 70, 0.5);
    border-bottom: 0;
  }
}
.portfolio__slider:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 73px;
  background-color: rgba(57, 62, 70, 0.5);
}
.portfolio__slide {
  position: relative;
}
.portfolio__card-overlay img {
  -webkit-filter: brightness(85%);
  filter: brightness(85%);
}
.portfolio__wrapper {
  opacity: 0;
  padding-block: 15px;
}
.portfolio__link {
  padding: 8px 32px;
  margin-left: 4px;
}
@media (max-width: 991.98px) {
  .portfolio__link {
    padding: 4px 32px;
  }
}
.portfolio .swiper-slide-active .portfolio__wrapper,
.portfolio .swiper-slide-prev .portfolio__wrapper,
.portfolio .swiper-slide-next .portfolio__wrapper {
  opacity: 1;
}
@media (max-width: 991.98px) {
  .portfolio .swiper-button-prev:after,
  .portfolio .swiper-button-next:after {
    font-size: 30px;
  }
}
@media (max-width: 575.98px) {
  .portfolio .swiper-button-prev:after,
  .portfolio .swiper-button-next:after {
    font-size: 20px;
  }
}
@media (max-width: 991.98px) {
  .portfolio .swiper-button-prev,
  .portfolio .swiper-button-next {
    top: calc(var(--swiper-navigation-top-offset, 50%) - 30px);
  }
}
@media (max-width: 575.98px) {
  .portfolio .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 0);
  }
}
@media (max-width: 575.98px) {
  .portfolio .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 0);
  }
}
.portfolio .swiper-button-next,
.portfolio .swiper-button-prev {
  color: var(--color-accent);
}
.portfolio .swiper-pagination {
  bottom: 15px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  left: auto;
  right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  padding: 8px 15px;
  color: var(--color-light);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  font-weight: 700;
  border-radius: 24px;
  -webkit-transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
  background-color: var(--color-accent);
}
@media (max-width: 991.98px) {
  .portfolio .swiper-pagination {
    padding: 4px 15px;
  }
}

.footer {
  padding-block: clamp(2.5rem, 1.3662790698rem + 4.6511627907vw, 5rem) clamp(1.25rem, 0.9665697674rem + 1.1627906977vw, 1.875rem);
}
.footer__nav {
  margin-bottom: clamp(1.875rem, 1.5915697674rem + 1.1627906977vw, 2.5rem);
}
.footer__list {
  -webkit-column-gap: clamp(1.25rem, 0.6831395349rem + 2.3255813953vw, 2.5rem);
  -moz-column-gap: clamp(1.25rem, 0.6831395349rem + 2.3255813953vw, 2.5rem);
  column-gap: clamp(1.25rem, 0.6831395349rem + 2.3255813953vw, 2.5rem);
}
.footer__link {
  font-size: 18px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
}
@media (any-hover: hover) {
  .footer__link:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .footer__link:active {
    color: var(--color-accent);
  }
}
.footer__copyright a {
  font-size: clamp(0.875rem, 0.8183139535rem + 0.2325581395vw, 1rem);
  color: rgba(238, 238, 238, 0.75);
  text-decoration: none;
}
@media (any-hover: hover) {
  .footer__copyright a:hover {
    text-decoration: underline;
  }
}
@media (any-hover: none) {
  .footer__copyright a:active {
    text-decoration: underline;
  }
}/*# sourceMappingURL=main.css.map */
