@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Dosis:wght@200..800&family=Epilogue:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Epilogue", sans-serif;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #FFF;
}

[class*=__container] {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  flex: 1 1 auto;
}

section {
  scroll-margin-top: 100px;
}

.text-center {
  text-align: center;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #002C9A;
  z-index: 60;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .header__content {
    justify-content: center;
  }
}
.header__logo {
  color: #FFF;
  font-family: Dosis;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.6px;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .header__menu {
    display: none;
  }
}
.header__link {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.36px;
  border: 1px solid transparent;
  background: transparent;
  padding: 12px 16px;
}
.header__link:hover {
  color: #0040A0;
  border-radius: 20px;
  border: 1px solid #121BC4;
  background: #FFF;
  padding: 12px 16px;
}

.footer {
  padding: 40px 0 0;
  border-top: 1px solid #000;
}
.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .footer__content {
    flex-direction: column;
    gap: 24px;
  }
}
.footer__logo {
  color: #000;
  font-family: Dosis;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.6px;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__link {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}
.footer__text {
  background: #717171;
  padding: 25px 0;
  margin-top: 40px;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

.hero {
  margin: 109px 0 0;
  background: url(../img/banner.png) no-repeat center/cover;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .hero {
    margin: 98px 0 0;
  }
}
.hero__title {
  color: #FFF;
  font-size: 50px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 34px;
  }
}
.hero__text {
  color: #FFF;
  font-size: 26px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.52px;
  margin-bottom: 40px;
}
.hero__link {
  display: block;
  color: #121BC4;
  font-family: "Plus Jakarta Sans";
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.48px;
  border-radius: 20px;
  border: 1px solid #121BC4;
  background: #FFF;
  padding: 20px 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 429px) {
  .hero__link {
    font-size: 16px;
  }
}

.about {
  padding: 60px 0;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about__title {
  color: #0040A0;
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
}
@media (max-width: 767px) {
  .about__title {
    font-size: 30px;
  }
}
.about__text {
  color: #717171;
  font-size: 26px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.52px;
}
.about__row {
  border-radius: 16px;
  background: #E6EEEE;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 32px 20px;
}
.about__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px;
  max-width: 448px;
}
.about__img {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 575px) {
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about__name {
  color: #002C9A;
  font-family: "DM Sans";
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
}
.about__line {
  width: 100%;
  height: 1px;
  background: #000;
}
.about__subtext {
  color: #717171;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.36px;
}

.testimonios {
  padding: 60px 0;
}
.testimonios__title {
  margin-bottom: 40px;
}
.testimonios__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .testimonios__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.testimonios__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonios__name {
  color: #383838;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  margin: 8px 0 24px;
}
.testimonios__text {
  color: #383838;
  text-align: center;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 140%;
}

.services {
  padding: 60px 0;
}
.services__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.services__text {
  color: #717171;
  font-size: 26px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.52px;
}
.services__row {
  display: flex;
  gap: 40px;
}
@media (max-width: 991px) {
  .services__row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .services__img {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .services__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.services__column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.services__name {
  color: #717171;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.36px;
}
.services__subtext {
  color: #717171;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.36px;
}

.info {
  padding: 60px 0;
}
.info__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact {
  padding: 0 0 60px;
}
.contact__content {
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .contact__content {
    flex-direction: column;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 75%;
}
@media (max-width: 767px) {
  .contact__form {
    width: 100%;
  }
}
.contact__inp {
  border-radius: 10px;
  background: #ECF1F7;
  padding: 30px;
  color: #6B6E85;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.36px;
}
.contact__inp_message {
  height: 250px;
  position: relative;
}
.contact__inp_message::-moz-placeholder {
  position: absolute;
  top: 30px;
  left: 30px;
}
.contact__inp_message::placeholder {
  position: absolute;
  top: 30px;
  left: 30px;
}
.contact__btn {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  border-radius: 20px;
  background: #121BC4;
  padding: 20px 0;
  width: 100%;
}
.contact__address {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__title {
  color: #0040A0;
  font-size: 24px;
  font-weight: 800;
  line-height: 45px;
  letter-spacing: 0.24px;
}
.contact__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact__link {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #1D048C;
  font-size: 14px;
  font-weight: 400;
}

.privacy {
  margin: 109px 0 0;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .privacy {
    margin: 98px 0 0;
  }
}
.privacy__title {
  color: #000;
  text-align: center;
  font-size: clamp(30px, 6vw, 60px);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.privacy__text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.183);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.popup__content {
  border-radius: 16px;
  background: #002C9A;
  padding: 40px;
  max-width: 587px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 767px) {
  .popup__content {
    padding: 24px;
  }
}
.popup__title {
  color: #FFF;
  font-family: Dosis;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-align: center;
}
.popup__text {
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
}
.popup__btn {
  color: #0040A0;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  border-radius: 16px;
  border: 1px solid #0040A0;
  background: #FFF;
  padding: 16px 32px;
}