@import url(https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
/* Main CSS */
:root {
  --color-background: linear-gradient(120deg, #2F8CAB 10.31%, #6DA2DA 33.75%, #99B6EE 50.86%, #CCD3FE 84.71%);
  --color-main-1: #FFF;
  --color-main-2: #000;
  --color-main-3: rgba(0, 0, 0, 0.12);
  --font-main: "Rubik", sans-serif;
  --font-additional: "Inter", sans-serif;
  --color-text: #FFF;
  --color-link: #FFF;
  --color-label: rgba(255, 255, 255, 0.60);
  --color-error: #FF6267;
}

.font-additional {
  font-family: var(--font-additional);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin-bottom: 0 !important;
  background: var(--color-background);
  overflow-x: hidden;
  background-repeat: no-repeat;
}

.container {
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

header {
  position: relative;
  z-index: 20;
}

h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
  color: var(--color-text);
}
@media (max-width: 1424px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  line-height: 100%;
  color: var(--color-text);
}

h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  line-height: 100%;
  color: var(--color-text);
}
@media (max-width: 1424px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
  color: var(--color-text);
}

h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  color: var(--color-text);
  font-family: var(--font-additional);
  text-transform: uppercase;
}

h6 {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 160%;
  color: var(--color-text);
}

p, span, a, li {
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: var(--color-text);
}

a {
  color: var(--color-link);
}

ul, ol {
  padding-left: 30px;
}

label {
  margin-bottom: 4px;
  padding: 0 8px;
  display: block;
  font-family: var(--font-additional);
  color: var(--color-label);
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
}

input {
  width: 100%;
  height: 52px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  border: none;
  font-family: var(--font-additional);
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
input::-moz-placeholder {
  color: #FFF;
}
input::placeholder {
  color: #FFF;
}
input:focus-visible {
  outline: none;
}
input.is-invalid {
  color: var(--color-error);
  outline: none;
  border: 1px solid var(--color-error);
}
input.is-invalid::-moz-placeholder {
  color: var(--color-error);
}
input.is-invalid::placeholder {
  color: var(--color-error);
}

select:not(.ui-datepicker-month):not(.ui-datepicker-year) {
  width: 100%;
  height: 52px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  border: none;
  font-family: var(--font-additional);
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  background-image: url("/img/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: center right 12px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
}
select:not(.ui-datepicker-month):not(.ui-datepicker-year) option {
  color: #000;
}
select:not(.ui-datepicker-month):not(.ui-datepicker-year):focus-visible {
  outline: none;
}
select:not(.ui-datepicker-month):not(.ui-datepicker-year)::-ms-expand {
  display: none;
}
select:not(.ui-datepicker-month):not(.ui-datepicker-year).is-invalid {
  color: var(--color-error);
  outline: none;
  border: 1px solid var(--color-error);
}
select:not(.ui-datepicker-month):not(.ui-datepicker-year).is-invalid option {
  color: var(--color-error) !important;
}
select:not(.ui-datepicker-month):not(.ui-datepicker-year).is-invalid::-moz-placeholder {
  color: var(--color-error);
}
select:not(.ui-datepicker-month):not(.ui-datepicker-year).is-invalid::placeholder {
  color: var(--color-error);
}

.invalid-feedback, span.errorText {
  color: var(--color-error);
  margin: 8px 0 0 8px;
  font-family: var(--font-additional);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  display: block;
}

span.errorText {
  display: none;
}

form span.is-invalid {
  display: block;
}

.checkbox-wrapper {
  position: relative;
}
.checkbox-wrapper input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.checkbox-wrapper label {
  height: -moz-fit-content;
  height: fit-content;
  padding-left: 35px;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  transition: 0.3s;
}
.checkbox-wrapper label a {
  color: var(--color-link);
  transition: 0.3s;
}
.checkbox-wrapper label:before {
  position: absolute;
  left: 0;
  content: "";
  cursor: pointer;
  width: 22px;
  height: 22px;
  top: 0;
  margin-top: 1px;
  border: 1px solid #FFF;
  background: transparent;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: 0.3s;
}
.checkbox-wrapper label:after {
  content: url("/img/checkbox.svg");
  position: absolute;
  top: 0px;
  left: 0px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  padding-top: 7px;
  background: #FFF;
  border-radius: 4px;
  border-color: #FFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  opacity: 0;
  transition: 0.3s;
}
@-moz-document url-prefix() {
  .checkbox-wrapper label:after {
    padding-top: 2px;
  }
}
.checkbox-wrapper input:checked + label:after {
  opacity: 1;
  transition: 0.3s;
}

.ui-datepicker-calendar span {
  color: #000;
}

.main-button-1 {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  -moz-column-gap: 6px;
       column-gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  height: 52px;
  border-radius: 15px;
  border: 1px solid #FFF;
  background: #FFF;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #000;
  text-align: center;
  font-size: 14px;
  font-family: var(--font-additional);
  font-weight: 600;
  line-height: 160%;
  text-decoration: none;
  cursor: pointer;
}

/* Main CSS - END */
/* Page elements */
.section-elements {
  padding: 100px 0;
}
.section-elements .container .section-inner {
  max-width: 800px;
}
.section-elements .container .section-inner .section-title {
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
}
.section-elements .container .section-inner .subsection {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding: 50px 0;
  border-top: 1px dotted #eee;
}
.section-elements .container .section-inner .subsection:first-child {
  padding-top: 0;
  border: none;
}
.section-elements .container .section-inner .subsection:last-child {
  padding-bottom: 0;
}
.section-elements .container .section-inner .subsection .colors-wrapper {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.section-elements .container .section-inner .subsection .colors-wrapper div {
  width: 50px;
  height: 50px;
  border: 1px solid #eee;
}
.section-elements .container .section-inner .subsection .colors-wrapper div:nth-child(1) {
  background: var(--color-main-1);
}
.section-elements .container .section-inner .subsection .colors-wrapper div:nth-child(2) {
  background: var(--color-main-2);
}
.section-elements .container .section-inner .subsection .colors-wrapper div:nth-child(3) {
  background: var(--color-main-3);
}
.section-elements .container .section-inner .subsection .colors-wrapper div:nth-child(4) {
  background: var(--color-main-4);
}
.section-elements .container .section-inner .subsection .forms-wrapper {
  padding: 72px 36px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  background: #000;
  border-radius: 18px;
}
.section-elements .container .section-inner .subsection .buttons-wrapper {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
}

/* Page elements - END */
