@import url("https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --text-color-primary: #000;
  --text-color-secondary: #3D3D3D;
  --text-color-accent: #F3BA82;
  --text-color-additional: #B9A782;
  --text-color-additional-2: #666666;
  --background-color-primary: #ffffff;
  --background-color-secondary: #FBEBDA;
  --background-color-accent: #E67707;
}

.button {
  position: relative;
  padding: 16px 47px;
  min-width: 269px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  border-radius: 52px;
  text-decoration: none;
  box-shadow: 0px 2px 14px 1px rgba(0, 0, 0, 0.13);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.button:active {
  transform: scale(0.98);
}
.button--full {
  width: 100%;
}
.button--accent {
  background: var(--background-color-accent);
  color: #fff;
}
.button--accent:hover {
  opacity: 0.8;
}
.button--white {
  border-radius: 52px;
  background: #fff;
  color: var(--text-color-primary);
}
.button--white:hover {
  opacity: 0.8;
}

.h1 {
  position: relative;
  font-weight: 700;
  font-size: 64px;
  line-height: 90px;
}
.h1 span {
  color: var(--text-color-additional-2);
}

.h2 {
  position: relative;
  font-weight: 700;
  font-size: 36px;
  line-height: 156%;
}
.h2 span {
  color: var(--text-color-additional-2);
}

.description {
  font-size: 18px;
}
.description span {
  color: var(--text-color-additional-2);
}

.input input.error,
.textarea textarea.error {
  border: 1px solid #e74c3c;
  background: #fff5f5;
}

.input-error {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 4px;
}

.input {
  position: relative;
  display: flex;
  width: 100%;
}
.input__icon {
  position: absolute;
  left: 34px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  margin: auto;
  z-index: 1;
}
.input__icon img {
  position: relative;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.input input {
  position: relative;
  display: flex;
  background: #FFFFFF;
  box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.08);
  border-radius: 32px;
  padding: 22px 34px 22px 68px;
  width: 100%;
  font-size: 16px;
  border: none;
  outline: none;
  line-height: 100%;
}
.input input::placeholder {
  font-size: 16px;
  color: var(--text-color-secondary);
  font-family: "Roboto", sans-serif;
}

.textarea {
  position: relative;
  display: flex;
  width: 100%;
}
.textarea textarea {
  position: relative;
  resize: vertical;
  min-height: 154px;
  display: flex;
  background: #FFFFFF;
  box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.08);
  border-radius: 32px;
  padding: 22px 34px 22px 34px;
  width: 100%;
  font-size: 16px;
  border: none;
  outline: none;
  line-height: 100%;
  font-family: "Roboto", sans-serif;
}
.textarea textarea::placeholder {
  font-size: 16px;
  color: var(--text-color-secondary);
  font-family: "Roboto", sans-serif;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  color: #333;
  line-height: 100%;
}
.checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.checkbox__wrapper {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.checkbox__box {
  width: 100%;
  height: 100%;
  border: 2px solid #4CAF50;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.checkbox__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 3px;
  height: 8px;
  border: solid #4CAF50;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.1s ease;
}
.checkbox__input:checked + .checkbox__box {
  background-color: #fff;
  border-color: #4CAF50;
}
.checkbox__input:checked + .checkbox__box::after {
  opacity: 1;
}
.checkbox__label {
  user-select: none;
}

.radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  color: #333;
  line-height: 100%;
  text-transform: uppercase;
}
.radio__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.radio__wrapper {
  position: relative;
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.radio__box {
  width: 100%;
  height: 100%;
  border: 2px solid var(--background-color-accent);
  display: inline-block;
  border-radius: 100px;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.radio__box::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background: var(--background-color-accent);
  opacity: 0;
  transition: opacity 0.1s ease;
}
.radio__input:checked + .radio__box::after {
  opacity: 1;
}
.radio__label {
  user-select: none;
}

.link-line {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.link-line:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  left: 0;
  bottom: -2px;
  background: var(--background-color-accent);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.link-line--reverse {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.link-line--reverse:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  transform: scaleX(1);
  transform-origin: bottom left;
  left: 0;
  bottom: -2px;
  background: var(--background-color-accent);
  transition: transform 0.25s ease-out;
}
.link-line--reverse:hover {
  color: var(--background-color-accent);
}
.link-line--reverse:hover:before {
  background: var(--background-color-accent);
  transform: scaleX(0);
  transform-origin: bottom right;
}
.link-line:hover {
  color: var(--text-color-primary);
}
.link-line:hover:before {
  width: 100%;
  transform: scaleX(1);
  transform-origin: bottom left;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  min-width: 1300px;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  min-width: 1300px;
  color: var(--text-color-primary);
  line-height: 125%;
  overflow-x: hidden;
}
@media (max-width:1440px){
  html, body {
    min-width: 1200px;
  }
}

.container {
  position: relative;
  max-width: 1350px;
  margin: 0 auto;
}
@media (max-width:1440px){
  .container{
    max-width: 1200px;
  }
}

.header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  min-width: 1300px;
  z-index: 100;
  margin-top: 24px;
}
.header__logo {
  display: flex;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  background: #FFFFFF;
  box-shadow: 0px 2px 14px 1px rgba(0, 0, 0, 0.13);
  border-radius: 52px;
  padding: 26px 57px;
}
.header__nav ul {
  list-style: none;
  display: flex;
  gap: 65px;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
}
.header__nav ul a {
  text-decoration: none;
  color: var(--text-color-secondary);
}
.header__nav ul a.active {
  color: var(--text-color-primary);
}
.header__lang ul {
  list-style: none;
  display: flex;
  gap: 18px;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
}
.header__lang ul a {
  text-decoration: none;
  color: #B2B2B2;
}
.header__lang ul a.active {
  color: var(--text-color-primary);
}

.hero {
  position: relative;
  padding: 251px 0 212px;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 850px;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__header {
  text-align: center;
}
.hero__desc {
  font-weight: 500;
  font-size: 22px;
  line-height: 125%;
  margin-top: 35px;
  text-align: center;
}
.hero__buttons {
  position: relative;
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.quality {
  position: relative;
  padding: 102px 0;
}
.quality__inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 78px;
  gap: 81px;
}
.quality__image {
  position: relative;
  left: -291px;
  width: 573px;
  flex-shrink: 0;
}
.quality__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  width: 860px;
  height: 454px;
}
.quality__image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.quality__image img:hover {
  transform: scale(1.02);
}
.quality__header {
  text-align: center;
}
.quality__content {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 696px;
}
@media (max-width:1440px){
.quality__content{
 max-width: 512px;
}
}

.quality__item {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #FFFDF9 0%, #FFF8E9 100%);
  border-radius: 22px;
  padding: 16px 18px;
  gap: 35px;
}
.quality__item-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 155%;
}
.quality__item-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color-secondary);
}

.candidate {
  position: relative;
  padding: 98px 0;
  background: var(--background-color-secondary);
}
.candidate__wrapper {
  display: flex;
  gap: 140px;
}
.candidate__content {
  width: 660px;
}
.candidate__desc {
  margin-top: 12px;
}
.candidate__button {
  display: flex;
  justify-content: flex-start;
  margin-top: 38px;
}
.candidate__items {
  width: 550px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.candidate__item {
  position: relative;
  width: 255px;
  height: 212px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  background: #FFFFFF;
  border-radius: 22px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.candidate__item:hover {
  transform: scale(0.95);
}
.candidate__item:nth-child(1), .candidate__item:nth-child(4n) {
  border: 1px solid #E67707;
  box-shadow: 0px 2px 14px 1px rgba(0, 0, 0, 0.13);
}
.candidate__item-icon {
  position: relative;
  width: 37px;
  height: 37px;
}
.candidate__item-icon img {
  width: 100%;
  height: 100%;
}
.candidate__item-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
}
.candidate__subtitle {
  position: relative;
  left: -50px;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: rgba(230, 119, 7, 0.42);
  margin-bottom: 12px;
}

.partners {
  position: relative;
  padding: 78px 0;
}
.partners__wrapper {
  display: flex;
  gap: 151px;
}
.partners__button {
  display: flex;
  justify-content: flex-start;
  margin-top: 38px;
}
.partners__subtitle {
  position: relative;
  left: -50px;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: rgba(185, 167, 130, 0.42);
  margin-bottom: 12px;
}
.partners__content {
  width: 591px;
}
.partners__items {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 608px;
}
.partners__item {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #FFFDF9 0%, #FFF8E9 100%);
  border-radius: 22px;
  padding: 16px 18px;
  gap: 35px;
}
.partners__item-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 155%;
}

.contact {
  position: relative;
  padding: 78px 0;
}
.contact__decor {
  position: absolute;
  right: -400px;
  top: -300px;
  width: 822px;
  height: 822px;
}
.contact__decor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact__header {
  text-align: center;
}
.contact__form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact__radios {
  position: relative;
  display: flex;
  gap: 34px;
}
.contact__radio {
  position: relative;
  display: flex;
  background: #FFFFFF;
  box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.08);
  border-radius: 32px;
  padding: 22px 34px 22px 34px;
  width: 100%;
  font-size: 16px;
}
.contact__radio.active {
  border: 1px solid var(--background-color-accent);
}
.contact__input {
  width: 100%;
}
.contact__button {
  position: relative;
  display: flex;
  width: 100%;
}

.footer {
  position: relative;
  padding: 52px 0;
  background: linear-gradient(0deg, rgba(255, 253, 249, 0.88), rgba(255, 253, 249, 0.88)), linear-gradient(180deg, #FFFDF9 0%, #E67707 100%);
}
.footer:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  background: linear-gradient(to right, rgba(230, 119, 7, 0) 0%, rgb(230, 119, 7) 51%, rgba(230, 119, 7, 0) 100%);
  height: 1px;
}
.footer__logo {
  position: relative;
  display: flex;
}
.footer__logo img {
  width: 107px;
  height: 16px;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
}
.footer__nav ul {
  list-style: none;
  display: flex;
  gap: 65px;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
}
.footer__nav ul a {
  text-decoration: none;
  color: var(--text-color-secondary);
}
.footer__nav ul a.active {
  color: var(--text-color-primary);
}
.footer__info {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin-right: 170px;
}
.footer__info span:nth-child(1), .footer__info span:nth-child(2) {
  font-weight: 600;
}

.form-status {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
}
.form-status.success {
  display: block;
  background: #e8f7ee;
  border: 1px solid #bfe7cb;
}
.form-status.error {
  display: block;
  background: #ffecec;
  border: 1px solid #ffc1c1;
}

.input-error {
  color: #d32f2f;
  font-size: 12px;
  margin-top: 6px;
}

.input .error,
.textarea .error,
.checkbox .error {
  outline: none;
  border-color: #d32f2f;
}


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