html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Inter-Regular-400.ttf") format("ttf");
  font-display: swap;
}

/* Inter-500 - latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Inter-Medium-500.ttf") format("ttf");
  font-display: swap;
}

/* Inter-600 - latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Inter-SemiBold-600.ttf") format("ttf");
  font-display: swap;
}

/* Inter-700 - latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Inter-Bold-700.ttf") format("ttf");
  font-display: swap;
}

:root {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: 'Inter', sans-serif;
  color: #000;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
figure {
  padding: 0;
  margin: 0;
}

ul {
  list-style-type: none;
}

a {
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}

button,
input[type='submit'] {
  padding: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: none;
}

.button {
  display: flex;
  margin: 0 auto;
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid #1B083F;
  background: #C20020;
  color: #FFF;
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: #1B083F;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  cursor: pointer;
}

.hidden {
  display: none;
}

.button__orange {
  width: 384px;
}

@media (max-width:450px) {
  .button__orange {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}

.container {
  max-width: 1440px;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
}

.min_container {
  max-width: 1216px;
  margin: 0 auto;
}

@media (max-width:1216px) {
  .min_container {
    padding-right: 15px;
    padding-left: 15px;
  }
}


.modal {
  /* Modal Inner */
  --modal-all-texts-color: inherit;
  --modal-bg-color: #fff;

  /* Image */
  --modal-img-width: 120px;
  --modal-img-height: 40px;
  --modal-img-width-mobile: 110px;
  --modal-img-height-mobile: 30px;

  /* Title */
  --modal-title-fz: 22px;
  --modal-title-fw: 700;
  --modal-title-fz-mobile: 20px;
  --modal-title-fw-mobile: 700;

  /* Text */
  --modal-text-fz: 18px;
  --modal-text-fw: 400;
  --modal-text-fz-mobile: 16px;
  --modal-text-fw-mobile: 400;

  /* Tel Description */
  --modal-tel-descr-fz: 16px;
  --modal-tel-descr-fw: 400;

  /* Submit Form Button */
  --modal-button-fz: 18px;
  --modal-button-fw: 400;
  --modal-button-fz-mobile: 16px;
  --modal-button-fw-mobile: 700;
  --modal-button-color: #fff;
  --modal-button-bg-color: #C20020;

  /* Legal Text */
  --modal-legal-fz: 14px;
  --modal-legal-fw: 400;
  --modal-legal-fz-mobile: 14px;
  --modal-legal-fw-mobile: 400;

  /* Close Button */
  --modal-close-button-color: #000;

  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding-right: 15px;
  padding-left: 15px;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal--visible {
  display: flex;
}

.modal__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 640px;
  padding: 36px 24px;
  color: var(--modal-all-texts-color);
  background-color: var(--modal-bg-color);
}

@media (max-width: 768px) {
  .modal__inner {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .modal__inner {
    width: 100%;
  }
}

.modal__inner-upper {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 40px;
}

@media (max-width: 576px) {
  .modal__inner-upper {
    padding-bottom: 30px;
  }
}

.modal__logo-img {
  display: block;
  width: var(--modal-img-width);
  height: var(--modal-img-height);
  object-fit: contain;
}

@media (max-width: 576px) {
  .modal__logo-img {
    width: var(--modal-img-width-mobile);
    height: var(--modal-img-height-mobile);
  }
}

.modal__inner-central {
  display: flex;
}

@media (max-width: 576px) {
  .modal__inner-central {
    flex-direction: column;
  }
}

.modal__inner-left {
  width: 50%;
  padding-right: 30px;
}

@media (max-width: 576px) {
  .modal__inner-left {
    width: 100%;
    padding-right: 0;
  }
}

.modal__title {
  margin-bottom: 20px;
  font-size: var(--modal-title-fz);
  font-weight: var(--modal-title-fw);
}

@media (max-width: 576px) {
  .modal__title {
    margin-bottom: 10px;
    font-size: var(--modal-title-fz-mobile);
    font-weight: var(--modal-title-fw-mobile);
  }
}

.modal__text {
  margin-bottom: 20px;
  font-size: var(--modal-text-fz);
  font-weight: var(--modal-text-fw);
}

@media (max-width: 576px) {
  .modal__text {
    margin-bottom: 16px;
    font-size: var(--modal-text-fz-mobile);
    font-weight: var(--modal-text-fw-mobile);
  }
}

.modal__descr {
  font-size: var(--modal-tel-descr-fz);
  font-weight: var(--modal-tel-descr-fw);
  line-height: 140%;
}

@media (max-width: 576px) {
  .modal__descr {
    margin-bottom: 18px;
  }
}

.modal__descr-span {
  display: block;
}

.modal__descr-link {
  position: relative;
  padding-left: 22px;
  color: inherit;
}

.modal__descr-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 13px;
  height: 13px;
  content: '';
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11.9168 9.16522V10.7902C11.9174 10.9411 11.8865 11.0904 11.826 11.2286C11.7656 11.3668 11.677 11.4909 11.5658 11.5929C11.4547 11.6949 11.3234 11.7725 11.1805 11.8208C11.0376 11.8692 10.8862 11.8871 10.7359 11.8735C9.06914 11.6924 7.46806 11.1229 6.06136 10.2106C4.7526 9.37899 3.643 8.26939 2.81136 6.96063C1.89593 5.54753 1.32624 3.93867 1.14844 2.26438C1.1349 2.11459 1.15271 1.96363 1.20071 1.8211C1.24872 1.67856 1.32587 1.54759 1.42727 1.43651C1.52867 1.32543 1.65208 1.23668 1.78966 1.17591C1.92724 1.11515 2.07596 1.08369 2.22636 1.08355H3.85136C4.11423 1.08096 4.36908 1.17405 4.56839 1.34546C4.76771 1.51687 4.8979 1.75492 4.93469 2.01522C5.00328 2.53525 5.13048 3.04586 5.31386 3.5373C5.38673 3.73117 5.40251 3.94188 5.35931 4.14444C5.3161 4.34701 5.21574 4.53294 5.07011 4.68022L4.38219 5.36813C5.15328 6.72422 6.2761 7.84704 7.63219 8.61813L8.32011 7.93022C8.46738 7.78458 8.65331 7.68422 8.85588 7.64102C9.05844 7.59782 9.26915 7.61359 9.46302 7.68647C9.95446 7.86985 10.4651 7.99705 10.9851 8.06563C11.2482 8.10275 11.4885 8.23529 11.6603 8.43803C11.8321 8.64077 11.9234 8.89957 11.9168 9.16522Z' fill='%23444444'/%3e%3cpath d='M8.15186 2.70817C8.68092 2.81139 9.16715 3.07014 9.54831 3.4513C9.92947 3.83246 10.1882 4.31869 10.2914 4.84775M8.15186 0.541504C9.25105 0.663615 10.2761 1.15585 11.0586 1.93738C11.8411 2.71892 12.3346 3.7433 12.4581 4.84234' stroke='%23444444' stroke-width='1.08333' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  transform: translateY(-50%);
}

.modal__inner-right {
  width: 50%;
}

@media (max-width: 576px) {
  .modal__inner-right {
    width: 100%;
  }
}

.modal__form {
  display: flex;
  flex-direction: column;
}

.modal__input {
  padding: 12px 24px;
  margin-bottom: 18px;
}

.modal__submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-size: var(--modal-button-fz);
  font-weight: var(--modal-button-fw);
  color: var(--modal-button-color);
  background-color: var(--modal-button-bg-color);
}

@media (max-width: 576px) {
  .modal__submit-button {
    font-size: var(--modal-button-fz-mobile);
    font-weight: var(--modal-button-fw-mobile);
  }
}

.modal__inner-lower {
  padding-top: 50px;
}

@media (max-width: 576px) {
  .modal__inner-lower {
    padding-top: 30px;
  }
}

.modal__legal {
  font-size: var(--modal-legal-fz);
  font-weight: var(--modal-legal-fw);
}

@media (max-width: 576px) {
  .modal__legal {
    font-size: var(--modal-legal-fz-mobile);
    font-weight: var(--modal-legal-fw-mobile);
    text-align: center;
  }
}

.modal__legal-link {
  color: inherit;
  text-decoration: underline;
}

.modal__close-button {
  position: absolute;
  top: 34px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-color: var(--modal-close-button-color);
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;
}

.modal__close-button::before {
  position: absolute;
  top: 47%;
  left: 18%;
  width: 20px;
  height: 2px;
  content: '';
  background-color: var(--modal-close-button-color);
  transform: rotate(45deg);
}

.modal__close-button::after {
  position: absolute;
  top: 47%;
  left: 18%;
  width: 20px;
  height: 2px;
  content: '';
  background-color: var(--modal-close-button-color);
  transform: rotate(135deg);
}


.section-title {
  color: #222;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 41.6px */
}

.thanks-title {
  color: #4b9c57;
  font-size: 28px;
}

.topline {
  /* Topline Block */
  --topline-bg-color: #07033D;

  /* Logo */
  --topline-logo-width: 126px;
  --topline-logo-height: 24px;
  --topline-logo-width-mobile: 126px;
  --topline-logo-height-mobile: 24px;

  background-color: var(--topline-bg-color);
  border-bottom: 1px solid white;

}

.topline__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  padding-right: 24px;
  padding-left: 24px;
  padding-top: 24px;
  padding-bottom: 8px;
  margin: 0 auto;

}

.topline__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.topline__logo-img {
  object-fit: contain;
}

@media (max-width: 576px) {
  .topline__logo-img {
    width: var(--topline-logo-width-mobile);
    height: var(--topline-logo-height-mobile);
  }
}

.nav__links {
  display: flex;
  gap: 89px;
}

@media (max-width: 1280px) {
  .nav__links {
    display: none;
  }
}

.nav__link {
  border: 1px solid #C20020;
  border-radius: 16px;
  max-width: 256px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__link>a {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  padding: 10px 10px;
}

#panelcontainer {
  z-index: 10;
  height: 32px;
  display: flex;
  justify-content: end;
  padding: 12px;
}


main {
  background-image: url(../img/main/MainBg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 20px;
}

h1 {
  color: #FFF;
  font-family: Roboto;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width:1280px) {
  h1 {
    font-size: 32px;
    text-align: center;
  }
}

@media (max-width:1080px) {
  h1 {
    font-size: 28px;
  }
}

@media (max-width:600px) {
  h1 {
    font-size: 22px;
  }
}

.main__inner {
  padding-top: 50px;
}

.main__list {
  padding-top: 54px;
  padding-left: 48px;
}

@media (max-width:800px) {
  .main__list {
    padding-left: 10px;
  }
}

.main__list-element {
  display: flex;
  align-items: end;
  gap: 6px;
}

@media (max-width:600px) {
  .main__list-element>img {
    display: none;
  }
}

/* .main__list-element:last-child {
  padding-top: 36px;
  padding-left: 124px;
}

@media (max-width:800px) {
  .main__list-element:last-child {
    padding-left: 0px;
  }
} */

.main__list-element>p {
  color: #FFF;
  font-size: 28px;
  font-weight: 400;
}

@media (max-width:600px) {
  .main__list-element>p {
    font-size: 20px;
  }
}

.main__list-element>p>a {
  text-transform: uppercase;
  text-align: center;
  padding: 0 10px;
  color: #C20020;
  border-bottom: 1px solid #C20020;
  font-size: 24px;
  font-weight: 900;
}

.main__form {
  padding-top: 38px;
}

.main__form-container {
  border-radius: 30px;
  border: 3px solid #C20020;
  background: #FFF;
  width: 45%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width:1280px) {
  .main__form-container {
    width: 60%;
  }
}

@media (max-width:600px) {
  .main__form-container {
    width: 90%;
  }
}

.main__form-title {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  padding: 12px 0px;
}

.callback__form {
  padding: 0px 70px;
  padding-bottom: 20px;
}

.callback__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 22px;
}

@media (max-width:1080px) {
  .callback__block {
    grid-template-columns: 1fr;
  }
}

.callback__input-container:nth-child(5) {
  grid-area: 2/3/3/4;
}

@media (max-width:1080px) {
  .callback__input-container:nth-child(5) {
    grid-area: auto;
  }
}

.callback__input {
  padding: 8px 10px;
  border-radius: 32px;
}

.callback__button {
  border-radius: 20px;
  color: white;
  background: #C20020;
  display: flex;
  margin: 0 auto;
  padding: 6px 22px;
}

.automation {
  background: linear-gradient(180deg, rgba(7, 3, 61, 1) 0%, rgba(245, 245, 245, 1) 100%);
  border-bottom: 2px solid #07033D;
}

.automation__inner {
  padding-top: 125px;
  padding-bottom: 50px;
}

.automation__title {
  color: #FFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

@media (max-width:1280px) {
  .automation__title {
    font-size: 32px;
  }
}

@media (max-width:800px) {
  .automation__title {
    font-size: 28px;
  }
}

@media (max-width:600px) {
  .automation__title {
    font-size: 22px;
  }
}

.automation__textContent {
  display: flex;
  align-items: start;
  padding-top: 64px;
}

@media (max-width:600px) {
  .automation-img {
    display: none;
  }
}


.automation__text {
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (max-width:1280px) {
  .automation__text {
    font-size: 24px;
  }
}

@media (max-width:800px) {
  .automation__text {
    font-size: 20px;
  }
}

.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
}

.person>p {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  padding-top: 24px;
}

@media (max-width:700px) {
  .person>p {
    font-size: 22px;
  }
}

.automationFooter {
  background-color: rgba(245, 245, 245, 1);
  border-bottom: 2px solid #C10020;
}

.automationFooter__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 47px;
  padding-bottom: 56px;
}

.automationFooter-block {
  background-color: #E5EDF5;
  border: 1px solid #C10020;
  border-radius: 24px;
  padding: 20px 48px;
}

.underline {
  text-decoration: underline;
  color: #000;
}

.automationFooter-block>p {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 16px;
}

@media (max-width:1280px) {
  .automationFooter-block>p {
    font-size: 28px;
  }
}

@media (max-width:800px) {
  .automationFooter-block>p {
    font-size: 22px;
  }

  .automationFooter-block {
    padding: 20px 22px;
  }
}

@media (max-width:800px) {
  .automationFooter-block>p {
    font-size: 20px;
  }
}

.automationFooter-block>button {
  display: flex;
  margin: 0 auto;

  border-radius: 41.5px;
  border: 1px solid #000;
  background: #C10020;
  padding: 8px 20px;

  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.automationFooter-block>button>a {
  color: white;
}

@media (max-width:600px) {
  .automationFooter-block>button {
    font-size: 18px;
  }
}

.automation__list {
  /* list-style-image: url(../img/automation/listArrow.png); */
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width:600px) {
  .automation__list {
    gap: 12px;
  }
}

.automation__list-item {
  color: #000;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 125% */
}

@media (max-width:1280px) {
  .automation__list-item {
    font-size: 24px;
  }
}

@media (max-width:800px) {
  .automation__list-item {
    font-size: 22px;
    line-height: 30px;
  }
}

@media (max-width:600px) {
  .automation__list-item {
    font-size: 18px;
    line-height: 30px;
  }
}

.automation__list-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info {
  background-color: rgba(245, 245, 245, 1);
  padding-bottom: 70px;
  border-bottom: 1px solid #07033D;
}

.info__inner {
  padding-top: 90px;
  padding-bottom: 64px;
}

.info-title {
  color: #07033D;
  text-align: center;
  font-family: Roboto;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width:1280px) {
  .info-title {
    font-size: 32px;
  }
}

@media (max-width:800px) {
  .info-title {
    font-size: 24px;
  }
}

.info-text {
  background-color: rgba(27, 15, 171, 0.06);
  padding-top: 26px;
  padding-bottom: 16px;
  margin-bottom: 33px;
}

.info-textContent {}

.info-subtitle {
  color: #000;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 125% */
}

@media (max-width:1280px) {
  .info-subtitle {
    font-size: 24px;
  }
}

@media (max-width:800px) {
  .info-subtitle {
    font-size: 20px;
    line-height: 30px;
  }
}

.info__list-title {
  color: #C10020;
  font-family: Inter;
  font-size: 33px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  padding: 24px 0px;
}

@media (max-width:1280px) {
  .info__list-title {
    font-size: 28px;
  }
}

@media (max-width:800px) {
  .info__list-title {
    font-size: 24px;
  }
}

.info__list {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.info__list-item {
  display: flex;
  align-items: center;
  gap: 42px;

  color: #000;
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width:1280px) {
  .info__list-item {
    font-size: 24px;
  }

  .info__list-item>img {
    width: 70px;
  }
}

@media (max-width:800px) {
  .info__list-item {
    font-size: 22px;
  }

  .info__list-item>img {
    width: 50px;
  }
}

@media (max-width:600px) {
  .info__list-item {
    font-size: 20px;
  }
}

.document {
  background-color: #f5f5f5;
  padding-top: 87px;
  padding-bottom: 108px;
  border-bottom: 2px solid #07033D;
}

@media (max-width:1280px) {
  .document {
    padding-bottom: 80px;
  }
}

@media (max-width:800px) {
  .document {
    padding-bottom: 40px;
  }
}


.document-title {
  color: #07033D;
  text-align: center;
  font-family: Roboto;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width:1280px) {
  .document-title {
    font-size: 32px;
  }
}

@media (max-width:800x) {
  .document-title {
    font-size: 24px;
  }
}

.document-subtitle {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 95px 0px;
}

@media (max-width:1280px) {
  .document-subtitle {
    font-size: 28px;
    padding: 60px 0px;
  }
}

@media (max-width:800px) {
  .document-subtitle {
    font-size: 24px;
    padding: 30px 0px;
  }
}

.document__list {
  display: flex;
  flex-direction: column;
  gap: 113px;
  padding-bottom: 180px;
}

@media (max-width:1280px) {
  .document__list {
    padding-bottom: 120px;
  }
}

@media (max-width:800px) {
  .document__list {
    padding-bottom: 60px;
  }
}

.document__list-item {
  background-image: url(../img/document/documentBG.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 440px;

  position: relative;
}

@media (max-width:1280px) {
  .document__list-item {
    background-position: center;
  }
}

.document__list-item>div {
  /* padding-left: 240px;
  padding-right: 215px; */
  padding-left: 20%;
  padding-right: 15%;
  padding-bottom: 3%;
}

@media (max-width:1280px) {
  .document__list-item>div {
    padding-left: 15%;
    padding-right: 10%;
  }
}

@media (max-width:1000px) {
  .document__list-item>div {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.document__list-item:nth-child(2) {
  padding-top: 12px;
}

.list-item--title {
  color: #FFF;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 48px;
}

.list-item--subtitle {
  color: #FFF;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width:1280px) {
  .list-item--title {
    font-size: 24px;
    padding-bottom: 24px;
  }

  .list-item--subtitle {
    font-size: 24px;
  }
}

@media (max-width:800px) {
  .list-item--title {
    font-size: 22px;
  }

  .list-item--subtitle {
    font-size: 18px;
  }
}

.download__button {
  padding: 26px 30px;
  position: absolute;

  border-radius: 20px;
  background: #C20020;
  color: #FFF;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  bottom: -8%;
  right: 20%;
}

@media (max-width:600px) {
  .download__button {
    padding: 18px 15px;
    font-size: 20px;
  }
}

@media (max-width:1200px) {}

.document__footer-title {
  color: #07033D;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  padding-bottom: 119px;
}

@media (max-width:1280px) {
  .document__footer-title {
    font-size: 32px;
    padding-bottom: 80px;
  }
}

@media (max-width:800px) {
  .document__footer-title {
    font-size: 24px;
    padding-bottom: 40px;
  }
}

.document__footer-title>span {
  color: #C20020;
  text-decoration: underline;
}

.msg__block {
  display: flex;
  margin: 0 auto;
  background-image: url(../img/document/MsgBG.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 231px;
  max-width: 1119px;
}

@media (max-width:1280px) {
  .msg__block {
    background-position: center;
  }
}

@media (max-width:800px) {
  .msg__block {
    height: auto;
  }
}

@media (max-width:600px) {
  .msg__block {
    background-size: contain;
    background-position: bottom;
  }
}

.document__footer-subtitle {
  color: #07033D;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

  padding: 30px 16px
}

@media (max-width:1280px) {
  .document__footer-subtitle {
    font-size: 32px;
    text-align: center;
  }
}

@media (max-width:800px) {
  .document__footer-subtitle {
    font-size: 24px;
  }
}

@media (max-width:600px) {
  .document__footer-subtitle {
    font-size: 18px;
  }
}

.access {
  background: linear-gradient(0deg, rgba(202, 34, 62, 0.36458333333333337) 0%, rgba(245, 245, 245, 1) 80%);
}

.access__inner {
  padding-top: 105px;
  padding-bottom: 200px;
  background-image: url(../img/access/accessBG.png);
  background-repeat: no-repeat;
  background-position: bottom;
}



.access-title {
  color: #07033D;
  font-family: Inter;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 88px;
}

@media (max-width:1280px) {
  .access-title {
    text-align: center;
    font-size: 32px;
    padding-bottom: 60px;
  }
}

@media (max-width:800px) {
  .access-title {
    font-size: 28px;
    padding-bottom: 30px;
  }
}

.access-subtitle {
  color: #000;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 67px;
}

@media (max-width:1280px) {
  .access-subtitle {
    font-size: 32px;
  }
}

@media (max-width:800px) {
  .access-subtitle {
    font-size: 24px;
  }
}

@media (max-width:600px) {
  .access-subtitle {
    font-size: 20px;
  }
}

.access-button {
  padding: 19px 42px;
  display: flex;
  margin: 0 auto;

  color: #FFF;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  border-radius: 20px;
  background: #C20020;
}

@media (max-width:600px) {
  .access-button {
    font-size: 20px;
    padding: 16px 28px;
  }
}

.footer {
  /* Footer Block */
  --footer-offset-top: 80px;
  --footer-offset-bottom: 80px;
  --footer-offset-top-mobile: 60px;
  --footer-offset-bottom-mobile: 60px;
  --footer-all-text-color: #FFFFFF;
  --footer-bg-color: #07033D;

  /* Logo Image 1 */
  --footer-logo-img-1-width: 110px;
  --footer-logo-img-1-height: 40px;
  --footer-logo-img-1-width-mobile: 110px;
  --footer-logo-img-1-height-mobile: 40px;

  /* Logo Image 2 */
  --footer-logo-img-2-width: 110px;
  --footer-logo-img-2-height: 40px;
  --footer-logo-img-2-width-mobile: 110px;
  --footer-logo-img-2-height-mobile: 40px;

  /* Copyright Text */
  --footer-copy-fz: 16px;
  --footer-copy-fw: 400;
  --footer-copy-fz-mobile: 16px;
  --footer-copy-fw-mobile: 400;

  /* Legal Text */
  --footer-legal-fz: 16px;
  --footer-legal-fw: 400;
  --footer-legal-fz-mobile: 16px;
  --footer-legal-fw-mobile: 400;

  /* Phone Number Link */
  --footer-tel-fz: 15px;
  --footer-tel-fw: 400;
  --footer-tel-fz-mobile: 16px;
  --footer-tel-fw-mobile: 400;

  /* Phone Call Info Text */
  --footer-info-fz: 16px;
  --footer-info-fw: 400;
  --footer-info-fz-mobile: 16px;
  --footer-info-fw-mobile: 400;

  /* Social Images */
  --footer-socials-img-size: 32px;
  --footer-socials-img-size-mobile: 32px;

  color: var(--footer-all-text-color);
  background-color: var(--footer-bg-color);
}

.footer__container {
  padding-top: var(--footer-offset-top);
  padding-bottom: var(--footer-offset-bottom);
}

@media (max-width: 576px) {
  .footer__container {
    padding-top: var(--footer-offset-top-mobile);
    padding-bottom: var(--footer-offset-bottom-mobile);
  }
}

.footer__upper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  padding-bottom: 34px;
}

@media (max-width: 576px) {
  .footer__upper {
    row-gap: 10px;
    padding-bottom: 20px;
  }
}

.footer__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .footer__logo-link {
    margin: 16px;
    margin-left: 0;
  }
}

.footer__logo-img {
  object-fit: contain;
}

.footer__logo-img--1 {
  width: var(--footer-logo-img-1-width);
  height: var(--footer-logo-img-1-height);
}

@media (max-width: 576px) {
  .footer__logo-img--1 {
    width: var(--footer-logo-img-1-width-mobile);
    height: var(--footer-logo-img-1-height-mobile);
  }
}

.footer__logo-img--2 {
  width: var(--footer-logo-img-2-width);
  height: var(--footer-logo-img-2-height);
}

@media (max-width: 576px) {
  .footer__logo-img--2 {
    width: var(--footer-logo-img-2-width-mobile);
    height: var(--footer-logo-img-2-height-mobile);
  }
}

.footer__lower {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer__left {
  width: 70%;
}

@media (max-width:1080px) {
  .footer__left {
    width: 100%;
  }
}

.footer__logo {
  padding-bottom: 46px;
}

.social__links {
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
}

@media (max-width: 576px) {
  .footer__lower {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .footer__left {
    padding-bottom: 30px;
  }
}

.footer__copy {
  margin-bottom: 20px;
  font-size: var(--footer-copy-fz);
  font-weight: var(--footer-copy-fw);
}

@media (max-width: 576px) {
  .footer__copy {
    margin-bottom: 14px;
    font-size: var(--footer-copy-fz-mobile);
    font-weight: var(--footer-copy-fw-mobile);
  }
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 400px;
  font-size: var(--footer-legal-fz);
  font-weight: var(--footer-legal-fw);
  line-height: 130%;
}

@media (max-width: 576px) {
  .footer__legal {
    font-size: var(--footer-legal-fz-mobile);
    font-weight: var(--footer-legal-fw-mobile);
  }
}

.footer__legal-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__central {
  align-self: flex-start;
}

.footer__tel {
  display: block;
  margin-bottom: 18px;
  font-size: var(--footer-tel-fz);
  font-weight: var(--footer-tel-fw);
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 576px) {
  .footer__tel {
    margin-bottom: 14px;
    font-size: var(--footer-tel-fz-mobile);
    font-weight: var(--footer-tel-fw-mobile);
  }
}

.footer__info-text {
  margin-bottom: 30px;
  font-size: var(--footer-info-fz);
  font-weight: var(--footer-info-fw);
}

@media (max-width: 576px) {
  .footer__info-text {
    font-size: var(--footer-info-fz-mobile);
    font-weight: var(--footer-info-fw-mobile);
  }
}

.footer__info-subtitle {
  color: rgba(255, 255, 255, 0.51);
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__right {
  align-self: flex-start;
  width: 30%;
}

@media (max-width:1080px) {
  .footer__right {
    width: 100%;
    padding-top: 60px;
  }
}

@media (max-width: 576px) {
  .footer__right {
    justify-content: flex-start;
  }
}

.footer__rigth-text {
  display: flex;
  padding-top: 26px;
  gap: 16px;
}

.footer__rigth-text>p {
  color: #FFF;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

}

.politics {
  margin-top: 8px;

  color: rgba(255, 255, 255, 0.41);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__socials-list {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width:1080px) {
  .footer__socials-list {
    flex-wrap: wrap;
    flex-direction: inherit;
  }
}

.footer__socials-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__socials-img {
  display: block;
  width: var(--footer-socials-img-size);
  height: var(--footer-socials-img-size);
  object-fit: contain;
}

@media (max-width: 576px) {
  .footer__socials-img {
    width: var(--footer-socials-img-size-mobile);
    height: var(--footer-socials-img-size-mobile);
  }
}

.callback {
  /* Callback Block */
  --callback-offset-top: 80px;
  --callback-offset-bottom: 80px;
  --callback-offset-top-mobile: 60px;
  --callback-offset-bottom-mobile: 60px;
  --callback-all-texts-color: inherit;
  --callback-bg-color: inherit;

  /* Title */
  --callback-title-fz: 32px;
  --callback-title-fw: 700;
  --callback-title-fz-mobile: 24px;
  --callback-title-fw-mobile: 700;

  /* List Item Image */
  --callback-item-img-size: 30px;
  --callback-item-img-size-mobile: 20px;

  /* List Item Text */
  --callback-item-text-fz: 16px;
  --callback-item-text-fw: 400;
  --callback-item-text-fz-mobile: 16px;
  --callback-item-text-fw-mobile: 400;

  /* Button */
  --callback-button-fz: 18px;
  --callback-button-fw: 400;
  --callback-button-fz-mobile: 16px;
  --callback-button-fw-mobile: 400;
  --callback-button-color: #fff;
  --callback-button-bg-color: #C20020;

  /* Legal Text */
  --callback-legal-fz: 14px;
  --callback-legal-fw: 400;
  --callback-legal-fz-mobile: 14px;
  --callback-legal-fw-mobile: 400;

  color: var(--callback-all-texts-color);
  background-color: var(--callback-bg-color);
}

.callback__container {
  display: flex;
  padding-top: var(--callback-offset-top);
  padding-bottom: var(--callback-offset-top);
}

@media (max-width: 768px) {
  .callback__container {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .callback__container {
    padding-top: var(--callback-offset-top-mobile);
    padding-bottom: var(--callback-offset-top-mobile);
  }
}

.callback__left {
  width: 50%;
}

@media (max-width: 768px) {
  .callback__left {
    width: 100%;
    padding-bottom: 30px;
  }
}

.callback__left-upper {
  padding-bottom: 30px;
}

.callback__title {
  margin-bottom: 16px;
  font-size: var(--callback-title-fz);
  font-weight: var(--callback-title-fw);
}

@media (max-width: 576px) {
  .callback__title {
    font-size: var(--callback-title-fz-mobile);
    font-weight: var(--callback-title-fw-mobile);
  }
}

.callback__list {
  gap: 30px;
}

@media (max-width: 1024px) {
  .callback__list {
    gap: 20px;
  }
}

.callback__figure {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin: 0;
}

.callback__figure-img {
  width: var(--callback-item-img-size);
  height: var(--callback-item-img-size);
}

@media (max-width: 576px) {
  .callback__figure-img {
    width: var(--callback-item-img-size-mobile);
    height: var(--callback-item-img-size-mobile);
  }
}

.callback__figure-text {
  font-size: var(--callback-item-text-fz);
  font-weight: var(--callback-item-text-fw);
  line-height: 130%;
}

@media (max-width: 576px) {
  .callback__figure-text {
    font-size: var(--callback-item-text-fz-mobile);
    font-weight: var(--callback-item-text-fw-mobile);
  }
}

.callback__right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .callback__right {
    width: 100%;
    padding-left: 0;
  }
}

.callback__form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 380px;
}

.callback__form2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.callback__form--hidden {
  display: none;
}

.callback__input2 {
  padding: 16px 24px;
  font-size: 18px;
  border: 1px solid #222;
}

.callback__input2::placeholder {
  color: #a7a9ac;
}

.callback__button2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-size: var(--callback-button-fz);
  font-weight: var(--callback-button-fw);
  color: var(--callback-button-color);
  background-color: var(--callback-button-bg-color);
}

@media (max-width: 576px) {
  .callback__button2 {
    font-size: var(--callback-button-fz-mobile);
    font-weight: var(--callback-button-fw-mobile);
  }
}

.callback__legal {
  font-size: var(--callback-legal-fz);
  font-weight: var(--callback-legal-fw);
  text-align: center;
}

@media (max-width: 576px) {
  .callback__legal {
    font-size: var(--callback-legal-fz-mobile);
    font-weight: var(--callback-legal-fw-mobile);
    text-align: center;
  }
}

.callback__legal--hidden {
  display: none;
}

.callback__legal-link {
  color: inherit;
  text-decoration: underline;
}

.callback__message {
  display: none;
  margin-top: 14px;
  margin-bottom: 14px;
  text-align: center;
}

.callback__message--visible {
  display: block;
}

.callback__message--success {
  font-size: 28px;
  color: #4b9c57;
}

.callback__message--error {
  font-size: 20px;
  color: #dc291e;
}