:root {
  --black-color: #232323;
  --grey-color:#C2C2C2;
  --text-color: #F3F8FF;
  --main-font:"Inter", sans-serif;
  --title-font:"Oswald", sans-serif;
}

body {
  background-color: var(--black-color);
  font-family: var(--main-font);
  font-size: 16px;
  line-height: 22px;
}
body.no-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.button {
  -webkit-appearance: none;
  user-select: none;
  -webkit-user-select: none;
  width: 100%;
  font-size: 16px;
  text-align: center;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
}
.button--blue {
  color: #fff;
  background: #1B63EB;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-wrapper__content {
  flex-grow: 1;
}

.logo {
  display: flex;
  align-items: center;
}
.logo__img {
  width: 172px;
  height: 27px;
  object-fit: contain;
}
@media screen and (max-width: 500px) {
  .logo__img {
    width: 130px;
    height: 21px;
  }
}

.title {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 54px;
  line-height: 70px;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 500px) {
  .title {
    font-size: 28px;
    line-height: 36px;
  }
}
.title--blue {
  color: #1B63EB;
}
.title--white {
  color: var(--text-color);
}
.title--black {
  color: var(--black-color);
}
.title--small {
  font-size: 26px;
  line-height: 31px;
}
@media screen and (max-width: 500px) {
  .title--small {
    font-size: 20px;
    line-height: 25px;
  }
}
.title--middle {
  font-size: 45px;
  line-height: 58px;
}
@media screen and (max-width: 500px) {
  .title--middle {
    font-size: 20px;
    line-height: 25px;
  }
}
.title--center {
  display: flex;
  align-items: center;
  gap: 10px;
}
.title--center--mobile {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 500px) {
  .title--center--mobile {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }
}
@media screen and (max-width: 500px) {
  .title--center--mobile--column {
    flex-direction: column;
    align-items: flex-start;
  }
}
.title--line--height--normal {
  line-height: 1;
}
.title--size--small {
  max-width: 280px;
}

.text {
  font-family: var(--main-font);
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
}
.text--grey {
  color: var(--grey-color);
}
.text--black {
  color: var(--black-color);
}
.text--white {
  color: #fff;
}
.text--bold {
  font-weight: 700;
}
.text--small {
  font-size: 14px;
  line-height: 20px;
}
.text--smallest {
  font-size: 12px;
  line-height: 16px;
}
.text--regular {
  font-weight: 400;
  text-transform: none;
}
.text--size--small {
  max-width: 386px;
}
.text--exclamatory {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.text--exclamatory::before {
  content: "";
  width: 20px;
  min-height: 100%;
  height: 44px;
  flex-shrink: 0;
  display: block;
  transform: translateY(5px);
  background: url("../image/icons/exclamatory.svg") center center/contain no-repeat;
}

.link {
  text-decoration: underline;
  text-underline-position: under;
}

.header {
  background: #FFFFFF;
  border-radius: 0px 0px 20px 20px;
}
.header__wrapper {
  padding: 20px 0;
}
.header__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .header__block--button {
    display: none;
  }
}
.header__block--contacts {
  margin: 0 0 0 auto;
}

.contact-list__wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media screen and (max-width: 991px){
  .contact-list__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.contact-item__link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: var(--black-color);
  display: flex;
  align-items: center;
  gap: 10px;
  /*max-width: 215px;*/
}
.contact-item__link::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 500px) {
  .contact-item__link {
    font-size: 12px;
  }
  .contact-item__link::before {
    width: 18px;
    height: 18px;
  }
}
.contact-item__link--phone::before {
  background-image: url("../image/icons/phone.svg");
}
.contact-item__link--email {
  text-decoration: underline;
  text-underline-position: under;
}
.contact-item__link--email::before {
  background-image: url("../image/icons/email.svg");
}
.contact-item__link--address {
  align-items: flex-start;
}
.contact-item__link--address::before {
  background-image: url("../image/icons/address.svg");
}
.contact-item__link--foter {
  font-size: 14px;
  line-height: 20px;
}
.contact-item__link--foter::before {
  width: 20px;
  height: 20px;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(27, minmax(0, 1fr));
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
}
.hero__wrapper {
  padding: 67px 0;
}
@media screen and (max-width: 500px) {
  .hero__wrapper {
    padding: 30px 0 60px 0;
  }
}
.hero__block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  grid-column-end: span 11;
}
.hero__block--big {
  grid-column-end: span 16;
}
.hero__block--biggest {
  grid-column-end: span 19;
}
.hero__block--middle {
  grid-column-end: span 14;
}
.hero__block--middle--small {
  grid-column-end: span 13;
}
.hero__block--row--big {
  grid-row-end: span 2;
}
.hero__block--small {
  grid-column-end: span 8;
}
@media screen and (max-width: 1024px) {
  .hero__block {
    grid-column-end: span 1;
    gap: 20px;
  }
}
.hero__block--gap--small {
  gap: 20px;
}
.hero__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 500px) {
  .hero__header {
    gap: 10px;
  }
}
.hero__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 20px;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .hero__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
}
.hero__content--big {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hero__content--small {
  grid-template-columns: minmax(0, 1fr);
}
.hero__footer {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.hero-info--big {
  grid-column-end: span 2;
}
@media screen and (max-width: 500px) {
  .hero-info--big--mobile--small {
    grid-column-end: span 1;
  }
}
.hero-info__wrapper {
  padding: 20px 40px;
  height: 100%;
  background: #FFFFFF;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 500px) {
  .hero-info__wrapper {
    padding: 20px;
  }
}
.hero-info__wrapper--row {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media screen and (max-width: 650px) {
  .hero-info__wrapper--row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero-info__content--small {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-info__content--big {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 650px) {
  .hero-info__content--big {
    gap: 10px;
  }
}

.info__wrapper {
  padding: 45px 40px;
  border: 1px solid var(--text-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info__wrapper--big {
  padding: 75px 40px;
}
.info__wrapper--normall {
  padding: 40px;
}
.info__wrapper--middle {
  padding: 30px 40px;
}
.info__wrapper--small {
  padding: 20px 40px;
}
@media screen and (max-width: 500px) {
  .info__wrapper {
    padding: 20px;
  }
}
.info__wrapper--border--none {
  padding: 0;
  border: none;
}
.info__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--grey-color);
  border-radius: 20px;
  height: 68px;
  padding: 0 31px;
  transition: 0.3s border-color;
}
.form__input::placeholder {
  opacity: 1;
  color: var(--grey-color);
}
.form__input--error {
  border-color: #EB5757;
}
.form__input--error::placeholder {
  color: #EB5757;
}
.form__block {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .form__block {
    justify-content: center;
  }
}
.form__block--center {
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .form__text {
    text-align: center;
  }
}
.form__submit {
  width: 100%;
  height: 65px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background: #1B63EB;
  border-radius: 100px;
  max-width: 350px;
}
.form__submit:hover {
  cursor: pointer;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.list--numeric {
  counter-reset: numeric;
}
.list__item {
  padding-left: 12px;
  position: relative;
}
.list__item::before {
  content: "";
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
  background: #fff;
  display: inline-block;
}
.list__item--numeric {
  counter-increment: numeric;
  align-items: center;
  padding-left: 30px;
  min-height: 30px;
}
.list__item--numeric::before {
  content: counter(numeric);
  background: none;
  width: 20px;
  height: 30px;
  top: 0;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  color: #1B63EB;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s opacity, 0.3s visibility;
}
.popup--active {
  visibility: visible;
  z-index: 20;
  opacity: 1;
}
.popup__wrapper {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 10vh 20px;
  overflow-y: auto;
  overflow-x: hidden;
}
.popup__container {
  max-width: 600px;
  background: #232323;
  border-radius: 20px;
  padding: 30px;
  margin: 10% auto;
  position: relative;
}
.popup__close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
}
.popup__close:hover {
  cursor: pointer;
}
.popup__close:hover::before, .popup__close:hover::after {
  background-color: rgba(255, 255, 255, 0.6);
}
.popup__close::before, .popup__close::after {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 2px;
  display: block;
  transition: 0.3s background-color;
}
.popup__close::before {
  transform: rotate(45deg);
  left: 0;
  top: 14px;
}
.popup__close::after {
  transform: rotate(-45deg);
  right: 0;
  top: 14px;
}

.footer__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 500px) {
  .footer__row {
    flex-direction: column;
  }
}
.footer__wrapper {
  padding: 35px 0;
  background: #FFFFFF;
  border-radius: 20px 20px 0px 0px;
}
@media screen and (max-width: 500px) {
  .footer__wrapper {
    padding: 40px 0 60px 0;
  }
}

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