@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

svg {
  pointer-events: none;
}

html {
  font-size: 10px;
  line-height: 1.15;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar-thumb {
  display: none;
}

body {
  font-size: 1.6rem;
  font-family: "Outfit", sans-serif;
  line-height: 1.15;
  font-weight: 400;
  overflow-x: hidden;
  overflow-y: scroll;
  background: #fffff6;
}

.container {
  width: 100%;
  padding: 0 128px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 1px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}
@media (min-width: 577px) {
  .container {
    padding: 0 64px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
    padding: 0 128px;
  }
}
a {
  text-decoration: none;
  color: unset;
  cursor: pointer;
}

.g-wrap {
  min-width: 375px;
  margin: 0 auto;
}

.outer-bg {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  overflow: hidden;
}

main {
  padding-top: 107.4px;
}
@media (max-width: 1139px) {
  main {
    padding-top: 64px;
  }
}

.stop-scroll {
  overflow: hidden !important;
}
.stop-scroll ::-webkit-scrollbar {
  width: 0;
}

.show {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.h2 {
  font-size: 88px;
  line-height: 105px;
  text-transform: uppercase;
  font-weight: 900;
  width: fit-content;
}
.h2 span.gradient {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(48deg, #1d1e1c 0%, #1d1e1c 20%, blue 100%);
}
@media (max-width: 1139px) {
  .h2 {
    font-size: 65px;
    line-height: 75px;
  }
}
@media (max-width: 678px) {
  .h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .h2 span.gradient {
    background-image: linear-gradient(48deg, #1d1e1c 0%, blue 100%);
  }
}

.gif-round {
  width: 260px;
  height: 104px;
  border-radius: 64px;
  overflow: hidden;
}
.gif-round .img-cage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
}
.gif-round .img-cage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  background: #fffff6;
}
.header .logo {
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 768px) {
  .header .logo {
    font-size: 24px;
    height: auto;
  }
}

@media (max-width: 1139px) {
  .header__desktop {
    display: none;
  }
}
.header__desktop .header__row {
  padding-top: 26px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__desktop .header__col.nav {
  width: fit-content;
}
.header__desktop .header__col.nav nav {
  width: fit-content;
}
.header__desktop .header__col.nav ul {
  display: flex;
  align-items: center;
}
.header__desktop .header__col.nav ul li {
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  margin-right: 48px;
  text-transform: uppercase;
}
.header__desktop .header__col.nav ul li:last-of-type {
  margin-right: 0;
}
.header__desktop .header__col.nav ul li a {
  transition: all ease-in-out 0.2s;
}
.header__desktop .header__col.nav ul li a:hover {
  color: #a2a2a2;
}

.header__mobile {
  display: none;
}
@media (max-width: 1139px) {
  .header__mobile {
    display: block;
  }
}
.header__mobile .header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #fffff6;
}
.header__mobile .header__col.logo {
  width: auto;
}
.header__mobile .header__col.logo .img-cage {
  width: 100%;
  height: 100%;
}
.header__mobile .header__col.logo .img-cage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__mobile .header__col.burger .burger-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e8e8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header__mobile .header__col.burger .burger-btn img {
  transition: all ease-in-out 0.2s;
}
.header__mobile .header__col.burger .burger-btn:hover img {
  opacity: 0.6;
}
.header__mobile .header__col.burger .burger-menu {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fffff6;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.2s;
}
.header__mobile .header__col.burger .burger-menu.show {
  top: 0;
}
.header__mobile .header__col.burger .burger-menu .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 16px;
}
.header__mobile .header__col.burger .burger-menu .menu__nav {
  margin-top: 48px;
}
.header__mobile .header__col.burger .burger-menu .menu__nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header__mobile .header__col.burger .burger-menu .menu__nav ul li {
  list-style: none;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 44px;
  transition: all ease-in-out 0.2s;
}
@media (max-width: 678px) {
  .header__mobile .header__col.burger .burger-menu .menu__nav ul li {
    font-size: 20px;
  }
}
.header__mobile .header__col.burger .burger-menu .menu__nav ul li:hover {
  color: #a2a2a2;
}

.main-banner .banner__wrapper {
  position: relative;
  height: fit-content;
}
.main-banner .banner-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.main-banner .banner-wrap .img-cage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: blur(6px);
}
.main-banner .banner-wrap .img-cage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-banner .banner__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 121px;
  padding-bottom: 80px;
}
@media (max-width: 1139px) {
  .main-banner .banner__wrap {
    padding-top: 80px;
    padding-bottom: 65px;
  }
}
@media (max-width: 678px) {
  .main-banner .banner__wrap {
    padding-top: 41px;
    padding-bottom: 57px;
  }
}
.main-banner .banner__title {
  max-width: 1192px;
  font-size: 110px;
  line-height: 128px;
  font-weight: 900;
  text-shadow: 4px 4px #1d1e1c;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1139px) {
  .main-banner .banner__title {
    font-size: 80px;
    line-height: 90px;
  }
}
@media (max-width: 678px) {
  .main-banner .banner__title {
    font-size: 58px;
    line-height: 68px;
    text-shadow: 2px 2px #1d1e1c;
  }
}
.main-banner .banner__title span.green {
  color: blue;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.main-banner .banner__btn {
  margin-top: 96px;
}
@media (max-width: 1139px) {
  .main-banner .banner__btn {
    margin-top: 60px;
  }
}
@media (max-width: 678px) {
  .main-banner .banner__btn {
    display: none;
  }
}
.main-banner .banner__btn .circle {
  width: 140px;
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-banner .banner__btn .circle .img-big {
  animation: spin 10s linear infinite;
}
.main-banner .banner__btn .circle .img-sm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-about .about__wrapper {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 1139px) {
  .main-about .about__wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 678px) {
  .main-about .about__wrapper {
    padding-top: 80px;
    padding-bottom: 72px;
  }
}
.main-about .about__title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.main-about .about__gif {
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
}
.main-about .about__text {
  font-size: 38px;
  line-height: 46px;
  text-align: center;
  font-weight: 300;
  margin-top: 24px;
}
@media (max-width: 1139px) {
  .main-about .about__text {
    font-size: 31px;
    line-height: 35px;
  }
}
@media (max-width: 678px) {
  .main-about .about__text {
    margin-top: 32px;
    font-size: 24px;
    line-height: 28px;
  }
}

.main-services .services__wrapper {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 1139px) {
  .main-services .services__wrapper {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media (max-width: 678px) {
  .main-services .services__wrapper {
    padding-top: 48px;
    padding-bottom: 16px;
  }
}
.main-services .services__title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 678px) {
  .main-services .services__title span {
    display: block;
    margin-top: 136px;
  }
}
.main-services .services__gif {
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 678px) {
  .main-services .services__gif {
    margin-top: -182px;
  }
}
.main-services .services__cards {
  display: flex;
  gap: 52px;
  margin-top: 56px;
}
@media (max-width: 1139px) {
  .main-services .services__cards {
    margin-top: 108px;
    flex-wrap: wrap;
    gap: 54px;
  }
}
.main-services .services__card {
  flex-grow: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 1139px) {
  .main-services .services__card {
    width: 100%;
  }
}
.main-services .services__card .card__icon {
  width: 100px;
  height: 100px;
  background: blue;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-services .services__card .card__icon .img-cage {
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.main-services .services__card .card__icon .img-cage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-services .services__card .card__title {
  margin-top: 22px;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 678px) {
  .main-services .services__card .card__title {
    font-size: 30px;
  }
}
.main-services .services__card .card__text {
  margin-top: 22px;
  font-size: 28px;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 678px) {
  .main-services .services__card .card__text {
    font-size: 24px;
    line-height: 28px;
  }
}

.main-values .values__wrapper {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 1139px) {
  .main-values .values__wrapper {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media (max-width: 678px) {
  .main-values .values__wrapper {
    padding-top: 80px;
    padding-bottom: 33px;
  }
}
.main-values .values__title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.main-values .values__gif {
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  margin-bottom: 103px;
}
@media (max-width: 678px) {
  .main-values .values__gif {
    margin-bottom: 0;
  }
}

.running-line {
  position: relative;
  margin-top: 79px;
}
@media (max-width: 678px) {
  .running-line {
    margin-top: 60px;
  }
}
.running-line .line-bg {
  position: relative;
  background: blue;
  width: calc(100% + 10px);
  margin-left: -10px;
  height: 140px;
  transform: rotate(2deg);
  transform-origin: right;
}
.running-line .line-cage {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.running-line .line-wrap {
  transform: rotate(2deg);
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
  transform-origin: right;
}
.running-line .line-items {
  flex-shrink: 0;
  display: flex;
  gap: 24px;
  justify-content: space-around;
  min-width: 100%;
}
.running-line .item {
  padding: 0 12px;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  transition: all 0.1s ease-in-out;
}
.running-line .animated {
  animation: scroll 20s linear infinite;
}
.running-line .line-wrap:hover .animated {
  animation-play-state: paused;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 20px));
  }
}

.main-vacancies .vacancies__wrapper {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 1139px) {
  .main-vacancies .vacancies__wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 678px) {
  .main-vacancies .vacancies__wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.main-vacancies .vacancies__title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.main-vacancies .vacancies__gif {
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
}
.main-vacancies .vacancies__cards {
  display: flex;
  gap: 44px;
  margin-top: 56px;
  padding-right: 0;
  margin-right: 0;
  padding-left: 0;
  margin-left: calc((100vw - 1184px) / 2);
  overflow: auto;
}
@media (max-width: 1139px) {
  .main-vacancies .vacancies__cards {
    margin-left: 16px;
  }
}
@media (max-width: 678px) {
  .main-vacancies .vacancies__cards {
    flex-direction: column;
    margin-left: 0;
    margin-top: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.main-vacancies .vacancies__cards:not(:has(.vacancies__card:nth-of-type(2))) {
  margin-left: 0;
  display: flex;
  justify-content: center;
}
.main-vacancies .vacancies__cards:not(:has(.vacancies__card:nth-of-type(2))) .slick-list {
  display: flex;
  justify-content: center;
}
.main-vacancies .vacancies__cards:not(:has(.vacancies__card:nth-of-type(2))) .slick-track {
  display: flex;
  justify-content: center;
  transform: none !important;
}
.main-vacancies .vacancies__cards:not(:has(.vacancies__card:nth-of-type(2))) .vacancies__card {
  margin-left: auto;
  margin-right: auto;
}
.main-vacancies .vacancies__cards:not(:has(.vacancies__card:nth-of-type(2))) .vacancies__card .card__wrap {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.main-vacancies .vacancies__cards:not(:has(.vacancies__card:nth-of-type(2))) .vacancies__card .card__location {
  margin-left: auto;
  margin-right: auto;
}
.main-vacancies .vacancies__cards:not(:has(.vacancies__card:nth-of-type(2))) .vacancies__card .card__title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.main-vacancies .vacancies__cards:not(:has(.vacancies__card:nth-of-type(2))) .vacancies__card .card__text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.main-vacancies .vacancies__card {
  max-width: calc((100% - 128px - 44px) * 0.7);
  min-width: calc((100% - 128px - 44px) * 0.7);
}
@media (max-width: 1139px) {
  .main-vacancies .vacancies__card {
    max-width: 70%;
    min-width: 70%;
  }
}
@media (max-width: 678px) {
  .main-vacancies .vacancies__card {
    min-width: 100%;
    max-width: 100%;
    margin-bottom: 54px;
  }
  .main-vacancies .vacancies__card:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 678px) {
  .main-vacancies .vacancies__card .card__wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
.main-vacancies .vacancies__card .card__location {
  background: #fbc899;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 150%;
  text-transform: uppercase;
  width: fit-content;
}
.main-vacancies .vacancies__card .card__title {
  margin-top: 16px;
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 678px) {
  .main-vacancies .vacancies__card .card__title {
    font-size: 30px;
  }
}
.main-vacancies .vacancies__card .card__text {
  font-weight: 300;
  font-size: 28px;
  line-height: 35px;
  margin-top: 8px;
}
@media (max-width: 1139px) {
  .main-vacancies .vacancies__card .card__text {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 678px) {
  .main-vacancies .vacancies__card .card__text {
    font-size: 24px;
    line-height: 28px;
    text-align: center;
  }
}
.main-vacancies .card__btn {
  background: blue;
  color: #fff;
  border-radius: 60px;
  font-size: 24px;
  font-weight: 600;
  padding: 22px 73.5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}
.main-vacancies .card__btn:hover {
  background: #1d1e1c;
  color: #ffffff;
}
.main-vacancies .slick-track {
  display: flex;
  width: 100% !important;
  gap: 44px;
}
.main-vacancies .slick-list {
  width: 100%;
}
.main-vacancies .vacancies__count {
  color: #1d1e1c;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  margin-top: 56px;
}
@media (max-width: 678px) {
  .main-vacancies .vacancies__count {
    margin-top: 32px;
    font-size: 18px;
  }
}

.main-contact .contact__wrapper {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 1139px) {
  .main-contact .contact__wrapper {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media (max-width: 678px) {
  .main-contact .contact__wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.main-contact .contact__title {
  margin-left: auto;
  margin-right: auto;
}
.main-contact .contact__title .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 678px) {
  .main-contact .contact__title .row {
    flex-direction: column;
    text-align: center;
  }
}
.main-contact .contact__title .row:last-of-type {
  margin-top: 8px;
}
.main-contact .contact__title .contact__gif {
  margin-left: 24px;
}
@media (max-width: 678px) {
  .main-contact .contact__title .contact__gif {
    margin-left: 0;
    margin-top: 8px;
  }
}
.main-contact .contact__text {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 300;
  max-width: 692px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 1139px) {
  .main-contact .contact__text {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 678px) {
  .main-contact .contact__text {
    font-size: 24px;
    line-height: 28px;
  }
}
.main-contact .contact__btn {
  background: #1d1e1c;
  color: #ffffff;
  padding: 22px 160px;
  width: fit-content;
  border-radius: 60px;
  margin-left: auto;
  margin-right: auto;
  font-size: 32px;
  font-weight: 600;
  margin-top: 44px;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}
@media (max-width: 678px) {
  .main-contact .contact__btn {
    padding: 22px 10px;
    width: 100%;
    text-align: center;
  }
}
.main-contact .contact__btn:hover {
  background: blue;
}

.footer {
  border-top: 1px solid #ddddd5;
}
.footer .footer__wrapper {
  padding-top: 48px;
  padding-bottom: 42px;
}
@media (max-width: 678px) {
  .footer .footer__wrapper {
    padding-bottom: 74px;
  }
}
.footer .row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1139px) {
  .footer .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 678px) {
  .footer .row {
    flex-direction: column;
    align-items: center;
  }
}
.footer .row.lower {
  align-items: center;
  margin-top: 48px;
  color: #a5a59f;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 1139px) {
  .footer .row.lower {
    flex-direction: column;
  }
  .footer .row.lower .copyright {
    margin-bottom: 10px;
  }
}
@media (max-width: 678px) {
  .footer .row.lower {
    margin-top: 32px;
    text-align: center;
  }
  .footer .row.lower .copyright {
    margin-bottom: 25px;
  }
}
.footer .footer__logo {
  font-weight: 600;
  font-size: 32px;
}
.footer .footer__logo .img-cage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer__logo .img-cage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 678px) {
  .footer .footer__nav {
    margin-top: 32px;
  }
}
.footer .footer__nav ul {
  display: flex;
  align-items: center;
}
@media (max-width: 678px) {
  .footer .footer__nav ul {
    flex-direction: column;
  }
}
.footer .footer__nav ul li {
  list-style: none;
  margin-right: 23px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 678px) {
  .footer .footer__nav ul li {
    margin-right: 0;
    margin-bottom: 24px;
    font-size: 20px;
  }
}
.footer .footer__nav ul li:last-of-type {
  margin-right: 0;
}
@media (max-width: 678px) {
  .footer .footer__nav ul li:last-of-type {
    margin-bottom: 0;
  }
}
.footer .footer__nav ul li a {
  transition: all ease-in-out 0.2s;
}
.footer .footer__nav ul li a:hover {
  color: #a2a2a2;
}

.company-info {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .company-info {
    text-align: center;
  }
}
.company-info__title {
  font-size: 24px;
  font-weight: bold;
}
.company-info__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.company-info__list-el a {
  font-size: 16px;
  translate: 0.3s;
}
.company-info__list-el a:hover {
  color: #a2a2a2;
}

.modal {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background: #fffff6;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.2s;
}
.modal.show {
  top: 0;
}

.modal__head {
  position: fixed;
  top: 0;
  padding-top: 26px;
  padding-bottom: 26px;
  left: 0;
  width: 100%;
  background: #fffff6;
  z-index: 9999999;
}
@media (max-width: 678px) {
  .modal__head {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.modal__wrapper {
  padding-top: 26px;
  min-height: 100vh;
  position: relative;
  padding-bottom: 117px;
  overflow-y: auto;
  height: 100vh;
}
@media (max-width: 678px) {
  .modal__wrapper {
    padding-top: 64px;
  }
}

.modal__bottom {
  position: absolute;
  left: 0;
  width: 100%;
  border-top: 1px solid #ddddd5;
  padding: 48px 0;
  color: #a5a59f;
  font-size: 14px;
  line-height: 20px;
}
.modal__bottom .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 678px) {
  .modal__bottom .wrap {
    flex-direction: column;
    text-align: center;
  }
  .modal__bottom .wrap span:first-of-type {
    margin-bottom: 25px;
  }
}

.modal__close {
  position: absolute;
  border: 1px solid #e8e8e0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal__close img {
  transition: all ease-in-out 0.2s;
}
.modal__close:hover img {
  opacity: 0.4;
}

.modal__logo {
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 768px) {
  .modal__logo {
    font-size: 24px;
    height: auto;
  }
}
.modal__logo .img-cage {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
@media (max-width: 678px) {
  .modal__logo .img-cage {
    height: 44px;
  }
}
.modal__logo .img-cage img {
  height: 100%;
  width: auto;
}

.modal__row {
  display: flex;
  justify-content: space-between;
  padding-top: 159px;
  min-height: calc(100vh - 143px);
}
@media (max-width: 678px) {
  .modal__row {
    padding-top: 48px;
    min-height: calc(100vh - 246px);
  }
}

.modal__col.detail {
  width: calc(100% - 270px - 104px);
}
@media (max-width: 930px) {
  .modal__col.detail {
    width: 100%;
  }
}

.modal__col.info {
  width: 270px;
  margin-left: 104px;
}
@media (max-width: 930px) {
  .modal__col.info {
    display: none;
  }
}
.modal__col.info .info__item {
  margin-bottom: 24px;
}
.modal__col.info .info__item:last-of-type {
  margin-bottom: 0;
}
.modal__col.info .info__item .title {
  font-size: 28px;
  font-weight: 600;
}
.modal__col.info .info__item .text {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 300;
}

.modal__title {
  font-size: 48px;
  font-weight: 900;
}
@media (max-width: 678px) {
  .modal__title {
    font-size: 44px;
    line-height: 48px;
    text-align: center;
  }
}

.modal__text {
  font-size: 22px;
  font-weight: 300;
  margin-top: 16px;
}
@media (max-width: 678px) {
  .modal__text {
    margin-top: 24px;
    text-align: center;
    font-size: 24px;
    line-height: 28px;
  }
}

.modal__form .form__field {
  margin-bottom: 24px;
}
.modal__form .form__field:last-of-type {
  margin-bottom: 0;
}
.modal__form .form__field label {
  width: 100%;
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.modal__form .form__field label span {
  color: #ff1a06;
}
.modal__form .form__field input {
  width: 100%;
  outline: none;
  border-radius: 12px;
  border: 1px solid #dbdbd3;
  padding: 20px;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 300;
  background: #fffff6;
  transition: all ease-in-out 0.2s;
}
.modal__form .form__field input:focus {
  border-color: #777778;
}
.modal__form .form__field input:not(:invalid) {
  border-color: #1c1c1e;
}
.modal__form .form__submit {
  margin-top: 48px;
  width: 100%;
  border: none;
  background: #1d1e1c;
  color: #ffffff;
  padding: 24px;
  border-radius: 60px;
  font-size: 24px;
  font-weight: 600;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}
@media (max-width: 678px) {
  .modal__form .form__submit {
    margin-top: 36px;
  }
}
.modal__form .form__submit svg path {
  transition: all ease-in-out 0.2s;
}
.modal__form .form__submit:hover {
  background: blue;
}
.modal__form .form__submit:hover svg path {
  fill: #fff;
}
.modal__form .form__submit .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__form .form__submit span {
  margin-right: 12px;
}
.modal__form .file-container {
  width: 100%;
  border: 1px dashed #dbdbd3;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  background: #fffff6;
  transition: all ease-in-out 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__form .file-container.error {
  border: 1px solid red;
}
@media (max-width: 678px) {
  .modal__form .file-container {
    flex-direction: column;
    padding: 20px;
  }
}
.modal__form .file-container.uploaded {
  border: 1px solid blue;
  background: blue;
  color: #fff;
}
.modal__form .file-container.dragging {
  border-color: blue;
  background: rgba(0, 0, 255, 0.6);
}
.modal__form input[type=file] {
  display: none;
}
.modal__form .upload-button {
  background: #ffffff;
  color: #1d1e1c;
  border: 1px solid #1d1e1c;
  padding: 10px 18px;
  border-radius: 24px;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  display: flex;
  align-items: center;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-right: 8px;
  white-space: nowrap;
}
@media (max-width: 678px) {
  .modal__form .upload-button {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.modal__form .upload-button svg {
  margin-right: 4px;
}
.modal__form .upload-button:hover {
  background: blue;
  color: #fff;
}
.modal__form .upload-button:hover path {
  fill: #fff;
}
.modal__form .upload-text {
  font-size: 18px;
  font-weight: 300;
}
@media (max-width: 678px) {
  .modal__form .upload-text {
    font-size: 16px;
  }
}

.modal__info-inner {
  display: block;
  margin-bottom: 32px;
}
.modal__info-inner.hide {
  display: none;
}

.popup-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  opacity: 0;
  z-index: -1;
}
.popup-success.show {
  z-index: 100000;
  opacity: 1;
}
.popup-success-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  padding: 30px 20px;
  border-radius: 10px;
  background: #fffff6;
}
@media (max-width: 500px) {
  .popup-success-content {
    width: 350px;
  }
}
.popup-success__i {
  width: 100px;
}
.popup-success__i svg {
  width: 100%;
}
.popup-success__text {
  font-size: 40px;
}

/*# sourceMappingURL=main.css.map */
