* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --white-80: #FFFFFFCC;
  --black-80: #111111CC;
  --black: #000000;
  --primary: #4260CB;
  --gradient: -webkit-linear-gradient(135.34deg, #F4E683 34.91%, #BF923D 50.85%, #F1EA82 86.26%);
  --solid-color: #9D4007;
}

.black-gradient-text {
  background: linear-gradient(135.34deg, #111 34.91%, #111 50.85%, #111 86.26%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
  opacity: 1 !important;
}

.white-gradient-text {
  background: linear-gradient(135.34deg, #FFF 34.91%, #FFF 50.85%, #FFF 86.26%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
  opacity: 1 !important;
}

.brown-gradient-text {
  background: linear-gradient(135.34deg, #9D4007 34.91%, #9D4007 50.85%, #9D4007 86.26%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
  opacity: 1 !important;
}

@keyframes shine {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 100% 0;
  }
}

body {
  font-family: "Golos Text", sans-serif;
  background-color: var(--white);
  background-image: url(../images/page-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;

}

html{
  scroll-margin-top: 400px;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.container-fluid {
  padding: 0 52px;
  position: relative;
  z-index: 2;
}

.btn-primary {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  padding: 8px 8px 8px 22px;
  border-radius: 30px;
  gap: 24px;
  display: flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--white);
  position: relative;
  border: none !important;
  transition: all .4s ease-in-out;
}

.btn-primary:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  border: 1px solid transparent;
  background: var(--gradient);
  transition: all .4s ease-in-out;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.btn-primary span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 100%;
}

.btn-primary span svg {
  rotate: -45deg;
  transition: all .4s ease-in-out;
}

.btn-primary:hover {
  background: var(--gradient);
  color: var(--black);
}


.btn-primary:hover span {
  background: var(--white);
}

.btn-primary:hover span svg {
  rotate: 0deg;
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(324deg) brightness(96%) contrast(104%);
}

.section-line {
  width: 100%;
  margin-bottom: 48px;
  min-height: 34px;
}

.badge {
  display: block;
  margin: 0 auto 12px;
  padding: 12px 24px;
  border-radius: 8px;
  position: relative;
  background: #FFFFFF1A;
  width: fit-content;
}

.badge::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--gradient);
  transition: all .4s ease-in-out;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.badge span {
  font-size: 14px;
  font-weight: 400;
}

.body-main {
  overflow-x: hidden;
}

/* Light Theme */

.body-main.light-theme .btn-primary {
  color: var(--solid-color);
}

.body-main.light-theme .btn-primary:after {
  background: var(--solid-color);
}

.body-main.light-theme .btn-primary span {
  background: var(--solid-color);
}

.body-main.light-theme .btn-primary:hover {
  background: var(--solid-color);
  color: #fff;
}

.body-main.light-theme .btn-primary:hover span {
  background: #fff;
}

.body-main.light-theme .btn-primary span svg {
  max-width: none;
  margin-bottom: 0;
}

.body-main.light-theme .btn-primary span svg path {
  fill: none;
  stroke: var(--white);
}

.body-main.light-theme .btn-primary:hover span svg path {
  stroke: var(--solid-color);
}

.body-main.light-theme .badge {
  display: block;
  margin: 0 auto 12px;
  padding: 12px 24px;
  border-radius: 8px;
  position: relative;
  background: #9D40071A;
  width: fit-content;
}

.body-main.light-theme .badge::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--solid-color);
  transition: all .4s ease-in-out;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.body-main.light-theme .white-title .badge::after {
  background: var(--white);
  transition: all .4s ease-in-out;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.body-main.light-theme .white-title .badge {
  background: #FFFFFF1A;
}