:root {
  --main-font: "Montserrat", sans-serif;
  --fluid-spacer: 0.052vw;
  --base-size: calc(16 * var(--fluid-spacer));
  --container-size: 102.5rem;
  --container-padding: .625rem;
  --title-size-base: 2.75rem;
  --title-size-big: 6.25rem;
  --text-size-base: 1.125rem;
  --text-size-middle: 1.375rem;
  --color-dark: #1C2125;
  --color-white: #fff;
  --color-grey: #42474B;
  --color-accent: #F8AF07;
  --color-green: #2BCF35;
  --color-light: #F3F3F3;
  --header-height:0rem;
}

@media screen and (max-width: 767px) {
  :root {
    --fluid-spacer: 0.25vw;
    --text-size-base:.875rem;
    --text-size-middle: .875rem;
    --title-size-base: 1.125rem;
    --title-size-big: 2rem;
  }
}
html {
  font-size: var(--base-size);
  scroll-behavior: smooth;
}

body {
  font-family: var(--main-font);
  background-color: #0E0E0F;
  color: #fff;
  font-size: 1rem;
}

body.no-scroll {
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  border: 1px solid transparent;
}
.button--base {
  font-size: var(--text-size-middle);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  min-width: 12.5rem;
  height: 3.125rem;
  gap: 1rem;
  border-radius: 1.75rem;
  --icon-size:1.25rem;
}
.button--middle {
  font-size: var(--text-size-middle);
  font-weight: 500;
  height: 4.0625rem;
  border-radius: 2.875rem;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .button--middle {
    height: 2.5rem;
    padding: 1rem;
    border-radius: 1.75rem;
  }
}
.button--big {
  font-size: var(--title-size-base);
  font-weight: 500;
  padding: 1.375rem;
  height: 6.25rem;
  gap: 1.25rem;
  border-radius: 3.25rem;
  min-width: 33.125rem;
  --icon-size:2rem;
  border-width: 2px;
}
@media screen and (max-width: 767px) {
  .button--big {
    border-width: 1px;
    height: 3.125rem;
    padding: 1rem 1.625rem;
    min-width: unset;
    --icon-size:1.25rem;
    gap: 0.625rem;
    font-size: 1.375rem;
  }
}
.button--accent {
  background-color: var(--color-accent);
  color: #000;
}
.button--bordered {
  border-color: #fff;
  color: #Fff;
  transition: 0.3s border-color;
}
.button--bordered:hover {
  border-color: var(--color-accent);
}
.button--full {
  width: 100%;
  max-width: 100%;
}
.button__icon {
  width: var(--icon-size);
  height: var(--icon-size);
  flex-shrink: 0;
}

.title--base {
  font-size: var(--title-size-base);
  line-height: 1;
  font-weight: 500;
}
.title--big {
  font-size: var(--title-size-big);
  line-height: 0.9;
  font-weight: 600;
}
.title--semibold {
  font-weight: 600;
}

.text--base {
  font-size: var(--text-size-base);
  line-height: 1.2;
}
.text--middle {
  font-size: var(--text-size-middle);
  line-height: 1.2;
}
.text--medium {
  font-weight: 500;
}
.text--semibold {
  font-weight: 600;
}
.text--link {
  transition: 0.3s color;
}
.text--link:hover {
  color: var(--color-accent);
}
.text--accent {
  color: var(--color-accent);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.container {
  max-width: calc(var(--container-size) + 2 * var(--container-padding));
  width: 100%;
  padding: 0 var(--container-padding);
  margin: 0 auto;
}

.header__logo {
  max-width: 11.25rem;
}
@media screen and (max-width: 767px) {
  .header__button, .header__phone {
    display: none;
  }
}
.header__call {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.875rem;
  width: 3.75rem;
  border-radius: 1.75rem;
  background-color: #fff;
  color: #000;
}
.header__call .icon {
  width: 1rem;
  height: 1rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .header__call {
    display: none;
  }
}
.header__row {
  display: flex;
  align-items: center;
  gap: 4.75rem;
  padding: 1.875rem 0 1.25rem 0;
  border-bottom: 1px solid #fff;
}
.header__row--form {
  border-bottom: none;
  border-top: 1px solid #fff;
}
.header__logo {
  margin-right: auto;
}

.page-wrapper {
  padding: 1.125rem 1.125rem 0 1.125rem;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-wrapper {
    padding: 0.75rem 0.75rem 0 0.75rem;
  }
}
.page-wrapper__content {
  border-radius: 1.875rem;
  background-color: #000000;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.page-wrapper__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.header, .content, .footer {
  position: relative;
  z-index: 3;
}

.content {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.content__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4.75rem;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .content__wrapper {
    gap: 2.625rem;
    padding: 3rem 0;
    min-height: calc(100svh - 16rem);
  }
}
.content__header {
  display: flex;
  flex-direction: column;
  gap: 2.875rem;
}
@media screen and (max-width: 767px) {
  .content__header {
    gap: 1.375rem;
  }
}
.content__title {
  max-width: 75rem;
  width: 100%;
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .footer-block {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-block--address {
    grid-row-start: 2;
    grid-column: 1/-1;
  }
}
.footer__wrapper {
  border-top: 1px solid #fff;
  padding: 3.125rem 0 2.25rem 0;
}
@media screen and (max-width: 767px) {
  .footer__wrapper {
    padding: 1.25rem 0;
  }
}
.footer__sub {
  padding: 1.125rem 0;
}
@media screen and (max-width: 767px) {
  .footer__sub {
    padding: 2.5rem 0;
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 2fr) minmax(0, 3fr) minmax(0, 1fr);
}
@media screen and (max-width: 767px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
  }
  .footer__grid--sub {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__country {
    text-align: right;
  }
}

.form {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 4;
  left: 0;
  top: 0;
  background-color: #0E0E0F;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s visibility, 0.5s opacity;
}
.form--active {
  opacity: 1;
  visibility: visible;
}
.form__title {
  font-size: var(--title-size-base);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .form__title {
    font-size: 2.25rem;
  }
}
.form__close {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
}
.form__close:hover {
  cursor: pointer;
}
.form__close:hover::before, .form__close:hover::after {
  background-color: var(--color-accent);
}
.form__close::before, .form__close::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: block;
  top: calc(50% - 1px);
  left: 0;
  position: absolute;
}
.form__close::before {
  transform: rotate(45deg);
}
.form__close::after {
  transform: rotate(-45deg);
}
.form__wrapper {
  padding: 1.25rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .form__wrapper {
    padding: 0.75rem;
  }
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background-color: #000000;
  min-height: calc(100svh - 2.5rem);
  border-radius: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__grid {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 0.625rem;
    gap: 2rem;
    min-height: calc(100svh - 1.5rem);
  }
}
@media screen and (min-width: 768px) {
  .form__header {
    display: none;
  }
}
.form-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .form-content {
    align-items: flex-start;
  }
}
.form-content__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form-content__row {
    grid-template-columns: minmax(0, 1fr);
  }
}
.form-content__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  max-width: 36.25rem;
  width: 100%;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .form-content__wrapper {
    gap: 1.25rem;
    padding: 0;
  }
}
.form-content__box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .form-content__box {
    gap: 1.25rem;
  }
}
.form-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form-img {
    display: none;
  }
}
.form-img__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.form-img__logo {
  position: absolute;
  width: 8.375rem;
  height: 6.25rem;
  object-fit: contain;
  bottom: 1.625rem;
  left: 1.625rem;
}
.form-img__item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2rem;
  object-position: bottom center;
}

.input {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #6D6D6D;
  border-radius: 2.75rem;
  height: 4rem;
  max-height: 8svh;
  transition: 0.3s border-color;
}
.input:has(:hover), .input:has(:focus) {
  border-color: #fff;
}
@media screen and (max-width: 767px) {
  .input {
    height: 2.5rem;
    border-radius: 1.75rem;
  }
}
.input--textarea {
  height: 10rem;
  max-height: 18svh;
}
@media screen and (max-width: 767px) {
  .input--textarea {
    height: 6.25rem;
  }
}
.input.error {
  border-color: #FF0000;
}
.input__item {
  width: 100%;
  height: 100%;
  color: white;
  padding: 1.375rem;
  font-weight: 500;
  font-size: var(--text-size-middle);
}
.input__item::placeholder {
  color: #D6D6D6;
}
@media screen and (max-width: 767px) {
  .input__item {
    padding: 0.875rem;
  }
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  --checkmark-size:1.75rem;
  position: relative;
  transition: 0.3s color;
}
@media screen and (max-width: 767px) {
  .checkbox {
    gap: 0.625rem;
  }
}
.checkbox:hover {
  cursor: pointer;
}
.checkbox:has(:checked) .checkbox__checkmark {
  border-color: #fff;
}
.checkbox:has(:checked) .checkbox__checkmark::before {
  opacity: 1;
}
.checkbox.error {
  color: #FF0000;
}
.checkbox.error .checkbox__checkmark {
  border-color: #FF0000;
}
.checkbox__item {
  width: var(--checkmark-size);
  height: var(--checkmark-size);
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.checkbox__checkmark {
  width: var(--checkmark-size);
  height: var(--checkmark-size);
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.62px solid rgba(217, 217, 217, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s border-color;
}
.checkbox__checkmark::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url("../../images/check.svg") center center/contain no-repeat;
  opacity: 0;
  transition: 0.3s opacity;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  overflow: hidden;
  transition: 0.5s 0.5s visibility, 0.5s 0.5s opacity;
}
.preloader.loaded .preloader__svg {
  opacity: 0;
  transform: scale(0.8);
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.preloader.loaded::before {
  animation: loaderAnimation 0.2s 0.4s forwards;
}
.preloader.loaded::after {
  animation: loaderAnimationButton 0.2s 0.4s forwards;
}
.preloader::before, .preloader::after {
  content: "";
  width: 100%;
  height: 50%;
  background-color: #000;
  position: absolute;
  left: 0;
  z-index: 2;
}
.preloader::before {
  top: 0;
}
.preloader::after {
  bottom: 0;
}
.preloader__svg {
  position: relative;
  z-index: 4;
  transition: 0.4s opacity, 0.4s transform;
}

@keyframes loaderAnimation {
  0% {
    top: 0;
  }
  100% {
    top: -50%;
  }
}
@keyframes loaderAnimationButton {
  0% {
    bottom: 0;
  }
  100% {
    bottom: -50%;
  }
}
/***************************************************
 * Generated by SVG Artista on 9/11/2025, 11:36:00 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
  animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
  animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
  animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
  animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-5 {
  -webkit-animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
  animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
}

@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-6 {
  -webkit-animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
  animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-7 {
  -webkit-animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
  animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
}

@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-8 {
  -webkit-animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
  animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-9 {
  -webkit-animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
  animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.svg-elem-10 {
  -webkit-animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
  animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
}

@-webkit-keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(118, 188, 33);
  }
}
@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(118, 188, 33);
  }
}
.svg-elem-11 {
  -webkit-animation: animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
  animation: animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}

@-webkit-keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(118, 188, 33);
  }
}
@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(118, 188, 33);
  }
}
.svg-elem-12 {
  -webkit-animation: animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
  animation: animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
}

@-webkit-keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 121, 52);
  }
}
@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 121, 52);
  }
}
.svg-elem-13 {
  -webkit-animation: animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

@-webkit-keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 121, 52);
  }
}
@keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 121, 52);
  }
}
.svg-elem-14 {
  -webkit-animation: animate-svg-fill-14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
  animation: animate-svg-fill-14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
}

@-webkit-keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 121, 52);
  }
}
@keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 121, 52);
  }
}
.svg-elem-15 {
  -webkit-animation: animate-svg-fill-15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
  animation: animate-svg-fill-15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
}

@-webkit-keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 121, 52);
  }
}
@keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 121, 52);
  }
}
.svg-elem-16 {
  -webkit-animation: animate-svg-fill-16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
  animation: animate-svg-fill-16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
}

@-webkit-keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 121, 52);
  }
}
@keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 121, 52);
  }
}
.svg-elem-17 {
  -webkit-animation: animate-svg-fill-17 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
  animation: animate-svg-fill-17 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
}

@-webkit-keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(248, 175, 7);
  }
}
@keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(248, 175, 7);
  }
}
.svg-elem-18 {
  -webkit-animation: animate-svg-fill-18 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
  animation: animate-svg-fill-18 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
}

@-webkit-keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(248, 175, 7);
  }
}
@keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(248, 175, 7);
  }
}
.svg-elem-19 {
  -webkit-animation: animate-svg-fill-19 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both;
  animation: animate-svg-fill-19 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both;
}

@-webkit-keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(248, 175, 7);
  }
}
@keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(248, 175, 7);
  }
}
.svg-elem-20 {
  -webkit-animation: animate-svg-fill-20 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s both;
  animation: animate-svg-fill-20 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s both;
}

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