@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap");
:root {
  --size-container: 1320px;
  --text-color-primary: #fff;
  --text-color-secondary: #000;
  --text-color-accent: #05281c;
  --background-color-primary: #ebeded;
  --background-color-secondary: #1f1f1f;
  --background-color-accent: #91cd70;
}

.button {
  position: relative;
  padding: 24px 44px;
  min-width: 246px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  border-radius: 8px;
  text-decoration: none;
  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: var(--text-color-secondary);
}
.button--accent:hover {
  background: var(--background-color-primary);
  color: var(--text-color-secondary);
}

.h1 {
  position: relative;
  font-weight: 400;
  font-size: 58px;
  line-height: 125%;
}
.h1--white {
  color: var(--text-color-primary);
}

.h2 {
  position: relative;
  font-weight: 400;
  font-size: 46px;
  line-height: 125%;
  color: #05281C;
}
.h2--white {
  color: var(--text-color-primary);
}
.h2 span {
  font-weight: 600;
}

.description {
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: #3D3D3D;
}
.description--white {
  color: var(--text-color-primary);
}
.description span {
  font-weight: 500;
}

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

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

.input {
  position: relative;
  display: flex;
  width: 100%;
}
.input input {
  position: relative;
  display: flex;
  border: none;
  background: transparent;
  border-bottom: 1px solid #fdfdfd;
  padding: 14px 12px 14px;
  border-radius: 0px;
  width: 100%;
  font-size: 16px;
  color: #fff;
  outline: none;
  line-height: 100%;
  font-family: "Geologica", sans-serif;
}
.input input::placeholder {
  font-size: 16px;
  color: #fff;
  font-family: "Geologica", sans-serif;
}

.textarea {
  position: relative;
  display: flex;
  width: 100%;
}
.textarea textarea {
  position: relative;
  resize: vertical;
  min-height: 99px;
  display: flex;
  background: transparent;
  border: 1px solid #fdfdfd;
  padding: 14px 12px 14px;
  border-radius: 0px;
  width: 100%;
  font-size: 16px;
  outline: none;
  line-height: 100%;
  font-family: "Geologica", sans-serif;
  color: #fff;
}
.textarea textarea::placeholder {
  font-size: 16px;
  color: #fff;
  font-family: "Geologica", sans-serif;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color-primary);
  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: 19px;
}
.checkbox__box {
  width: 100%;
  height: 100%;
  border: 1px solid #3D3D3D;
  border-radius: 0px;
  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: 4px;
  height: 9px;
  border: solid #1A8B32;
  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: #3D3D3D;
}
.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-weight: 600;
  font-size: 14px;
  color: #fff;
  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 #fff;
  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 {
  border: 2px solid var(--background-color-accent);
}
.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;
}

.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: #005a30;
  border: 1px solid #bfe7cb;
  color: #fff;
}
.form-status.error {
  display: block;
  background: #e74c3c;
  border: 1px solid #ffc1c1;
  color: #fff;
}

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

html {
  overflow-x: hidden;
  min-width: calc(var(--size-container) - 100px);
}

body {
  font-family: "Geologica", sans-serif;
  font-size: 20px;
  font-weight: 300;
  min-width: calc(var(--size-container) - 100px);
  color: var(--text-color-secondary);
  line-height: 125%;
  overflow-x: hidden;
  background: var(--background-color-primary);
}

.container {
  position: relative;
  max-width: var(--size-container);
  margin: 0 auto;
}
.container-large {
  position: relative;
  max-width: 1565px;
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  min-width: 1120px;
  z-index: 100;
  background: rgba(1, 34, 26, 0.57);
}
.header__logo {
  display: flex;
}
.header__logo img {
  width: 210px;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 33px 24px;
}
.header__content {
  display: flex;
  align-items: center;
  gap: 44px;
}
.header__nav ul {
  list-style: none;
  display: flex;
  gap: 38px;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
}
.header__nav ul a {
  text-decoration: none;
  color: var(--text-color-primary);
}
.header__lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.header__lang-current a {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-color-primary);
}
.header__lang-current a.active {
  text-decoration: none;
}
.header__lang-current .header__lang-arrow {
  transition: transform 0.3s;
  display: flex;
  align-items: center;
}
.header__lang-list {
  list-style: none;
  position: absolute;
  top: 100%;
  left: -11px;
  background: var(--background-color-accent);
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  z-index: 10;
}
.header__lang-list a {
  text-decoration: none;
  color: var(--text-color-secondary);
  transition: color 0.3s;
}
.header__lang-list a:hover {
  opacity: 0.6;
}
.header__lang:hover .header__lang-list {
  display: flex;
}
.header__lang:hover .header__lang-arrow {
  transform: rotate(180deg);
}

.hero {
  position: relative;
  padding: 276px 0 330px;
  overflow: hidden;
}
.hero__background {
  position: absolute;
  left: -8px;
  top: 0;
  width: calc(100% + 16px);
  height: 100%;
  border-top: none;
  overflow: hidden;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__buttons {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  margin-top: 64px;
}
.hero__phone {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color-primary);
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  padding: 0 30px;
  font-family: sans-serif !important;
}
.hero__wrapper {
  display: flex;
  gap: 53px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex-shrink: 0;
  max-width: 750px;
  width: 100%;
  margin-top: 40px;
}
.hero__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1100px;
  width: 100%;
}
.hero__description {
  max-width: 544px;
  width: 100%;
  margin-top: 25px;
  font-size: 18px;
}
.hero__description p {
  margin-top: 30px;
}
.hero__description p:first-child {
  font-weight: 500;
}
.hero__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 825px;
  width: 100%;
  flex-shrink: 0;
}
.hero__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  transition: all 0.3s ease;
  transform: scale(1.02);
}
.hero__gallery img:hover {
  transform: scale(1.04);
}
.hero__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.hero__image:nth-child(2), .hero__image:nth-child(3) {
  border: 7px solid var(--background-color-accent);
}
.hero__image:last-child:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(69, 137, 215, 0.8);
}
.hero__image span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 32px;
  line-height: 53px;
  padding: 0 70px;
  color: #FFFFFF;
  z-index: 2;
}

.about {
  position: relative;
  padding: 112px 0;
}
.about__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__items {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
.about__image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  transform: scale(1.01);
}
.about__image img:hover {
  transform: scale(1.02);
}
.about__item {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  width: 376px;
  min-height: 470px;
  flex-shrink: 0;
}
.about__item-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background: #F8FAFF;
  padding: 32px 30px;
  border-radius: 8px 8px 172px 8px;
  height: 100%;
}
.about__item-wrapper p {
  font-size: 18px;
}
.about__item-wrapper p:first-child {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #3D3D3D;
}
.about__item-wrapper p:nth-child(2) {
  margin-top: 57px;
}
.about__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.about__button:hover {
  color: var(--text-color-secondary);
}

.cooperation {
  position: relative;
  padding: 141px 0 141px;
  background: linear-gradient(180deg, #05281C 0%, #2C5331 100%);
}
.cooperation__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cooperation__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cooperation__wrapper {
  display: flex;
  align-items: center;
  gap: 150px;
}
.cooperation__header {
  position: relative;
  max-width: 505px;
  width: 100%;
}
.cooperation__items {
  max-width: 545px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 68px;
}
.cooperation__description {
  margin-top: 18px;
}
.cooperation__button {
  display: flex;
  justify-content: flex-start;
  margin-top: 65px;
}
.cooperation__item {
  position: relative;
}
.cooperation__item-title {
  position: relative;
  font-weight: 300;
  font-size: 22px;
  line-height: 26px;
  color: #FFFFFF;
  padding-left: 28px;
}
.cooperation__item-title:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 14px;
  height: 14px;
  border-radius: 100px;
  background: #639553;
}
.cooperation__item-content {
  font-weight: 200;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  margin-top: 18px;
}

.candidate {
  position: relative;
  padding: 28px 0 122px;
  background: #2C5331;
  color: #fff;
}
.candidate__decor-right {
  position: absolute;
  right: 0;
  bottom: 20px;
}
.candidate__decor-left {
  position: absolute;
  left: 0;
  top: 20px;
}
.candidate__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.candidate__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.candidate__title {
  font-weight: 300;
  font-size: 24px;
  line-height: 26px;
}
.candidate__categories {
  display: flex;
  gap: 32px;
  margin-top: 45px;
  margin-bottom: 45px;
}
.candidate__category {
  position: relative;
  display: flex;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 34px;
  width: 100%;
  padding: 16px;
  background: rgba(1, 33, 24, 0.53);
  border: 1px solid #FFFFFF;
  border-radius: 8px;
}
.candidate__items {
  position: relative;
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.candidate__button {
  display: flex;
  justify-content: flex-start;
  margin-top: 45px;
}
.candidate__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  background: rgba(1, 33, 24, 0.67);
  border-radius: 8px;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
}
.candidate__item:nth-child(1) {
  grid-column: 1/3;
}
.candidate__item:nth-child(2) {
  grid-column: 3/4;
}
.candidate__item:nth-child(3) {
  grid-column: 1/2;
}
.candidate__item:nth-child(4) {
  grid-column: 2/4;
}

.reviews {
  position: relative;
  padding: 122px 0;
  background: var(--background-color-primary);
}
.reviews__decor {
  position: absolute;
  left: 130px;
  bottom: -10px;
}
.reviews__items {
  display: flex;
  gap: 22px;
  margin-top: 48px;
  /*    @media (max-width:1900px){
        flex-wrap: wrap;
      }*/
}
.reviews__item {
  position: relative;
  flex-shrink: 0;
  max-width: 382px;
  width: 100%;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 8px;
  line-height: 30px;
}
.reviews__item-title {
  font-weight: 500;
  font-size: 20px;
}
.reviews__item-decor {
  margin-top: 24px;
}
.reviews__item-content {
  margin-top: 24px;
  font-size: 18px;
}

.contact {
  position: relative;
  padding: 112px 0;
  background: var(--background-color-primary);
  overflow: hidden;
}
.contact__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.contact__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact__button {
  margin-top: 10px;
}
.contact__header {
  position: relative;
  z-index: 10;
  max-width: 710px;
  width: 100%;
  text-align: center;
}
.contact__h2 {
  font-size: 40px;
  font-weight: 600;
}
.contact__description {
  position: relative;
  font-size: 20px;
}
.contact__form {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  max-width: 795px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px;
  background: rgba(1, 33, 24, 0.67);
  border-radius: 8px 8px 185px 8px;
  margin-top: 70px;
}
.contact__radios {
  position: relative;
  display: flex;
  justify-content: flex-start;
  gap: 34px;
}
.contact__radio {
  position: relative;
  display: flex;
  padding: 19px 22px;
  font-size: 16px;
  opacity: 0.8;
}
.contact__radio.active {
  opacity: 1;
}

.footer {
  position: relative;
  padding: 73px 0 73px;
  background: #EDEFEF;
}
.footer__wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 100px;
  color: var(--text-color-secondary);
}
.footer__name {
  width: 350px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  min-width: 351px;
  text-align: right;
}
.footer__nav ul li:first-child {
  display: inline-flex;
  justify-content: flex-start;
  gap: 50px;
}
.footer__nav ul li a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color-secondary);
  text-decoration: none;
}
.footer__nav ul li a svg {
  flex-shrink: 0;
}
.footer__nav ul li:last-child {
  font-weight: 400;
  font-size: 18px;
  margin-top: 8px;
}
.footer__nav ul li:last-child b {
  font-weight: 500;
}
.footer__info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.footer__info ul li {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color-secondary);
  text-decoration: none;
}

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