* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  max-width: var(--container-width);
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.--text-medium {
  font-size: 17px;
  /* line-height: 23px; */
}
.--text-small {
  font-size: 16px;
}
.--text-big {
  font-size: 23px;
}

.--relative {
  position: relative;
}

a {
  display: inline-block;
}
img {
  display: inline-block;
  max-width: 100%;
}
section.section {
  padding: 50px 0;
}

button,
input:not([type="checkbox"]) {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  box-shadow: none;
  font-family: var(--font-main);
  box-sizing: border-box;
}

.button {
  text-align: center;
  border-radius: 30px;
  background: #1c2445;
  border: 2px solid #1c2445;
  padding: 18px 23px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
}
.button:hover {
  background: #2d4d76;
  border-color: #2d4d76;
}
.button.--medium {
  padding: 13px 18px;
}
.button.--blue {
  background: #8dc8e6;
  border-color: #8dc8e6;
  color: #1c2445;
  box-shadow: 0px 10px 20px 0px rgba(141, 200, 230, 0.15);
}
.button.--blue:hover {
  background: #2d4d76;
  border-color: #2d4d76;
  color: #fff;
}
.button.--white {
  background: #fff;
  border-color: #fff;
  color: #1c2445;
}
.button.--white:hover {
  background: #1c2445;
  border-color: #1c2445;
  color: #fff;
}

.button.--outline {
  background: none;
  color: #1c2445;
}
.button.--outline:hover,
.button.--outline.--active {
  background: #1c2445;
  border-color: #1c2445;
  color: #fff;
}
.button.--outline.--white {
  color: #fff;
  border-color: #fff;
}
.button.--outline.--white:hover {
  background: #fff;
  color: #1c2445;
}
.button.--icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.button.--w-170 {
  width: 170px;
  text-align: center;
  justify-content: center;
}
.button.--full {
  width: 100%;
}
.input-text {
  border-radius: 50px;
  border: 2px solid #fff !important;
  padding: 20px 25px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  outline: none;
  width: 100%;
}
.input-text:focus {
  border-color: #8dc8e6 !important;
}
.input-text::placeholder {
  color: #9199ac;
}

h1,
.h1,
h2,
.h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 45px; /* 118.421% */
}
h1,
.h1 {
  line-height: 49px; /* 128.947% */
  font-weight: 900;
}
h3,
.h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}
h4,
.h4 {
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}
h5,
.h5 {
  font-size: 23px;
  font-weight: 500;
  line-height: normal;
}
.--color-main {
  color: #1c2445;
}
.--color-white {
  color: #fff;
}
.--color-blue {
  color: #69b4d7;
}
.--mt-5 {
  margin-top: 5px;
}

.--mt-10 {
  margin-top: 10px;
}
.--mt-12 {
  margin-top: 12px;
}

.--mt-15 {
  margin-top: 15px;
}

.--mt-20 {
  margin-top: 20px;
}

.--mt-25 {
  margin-top: 25px;
}

.--mt-30 {
  margin-top: 30px;
}

.--mt-35 {
  margin-top: 35px;
}

.--mt-40 {
  margin-top: 40px;
}

.--mt-45 {
  margin-top: 45px;
}

.--mt-50 {
  margin-top: 50px;
}
.--mt-60 {
  margin-top: 60px;
}
.--mt-100 {
  margin-top: 100px;
}
.--pt-70 {
  padding-top: 70px !important;
}
.--pb-70 {
  padding-bottom: 70px !important;
}
.--pb-100 {
  padding-bottom: 100px !important;
}
.db {
  display: block;
}
.dib {
  display: inline-block;
}
.df {
  display: flex;
}
.--aic {
  align-items: center;
}
.--jcsb {
  justify-content: space-between;
}
.--jcc {
  justify-content: center;
}
.--aifs {
  align-items: flex-start;
}
.--fdc {
  flex-direction: column;
}
.--fwrap {
  flex-wrap: wrap;
}
.dg {
  display: grid;
}
.--gtc-2 {
  grid-template-columns: repeat(2, 1fr);
}
.--gtc-3 {
  grid-template-columns: repeat(3, 1fr);
}
.--gtc-4 {
  grid-template-columns: repeat(4, 1fr);
}
.--gtc-5 {
  grid-template-columns: repeat(5, 1fr);
}
.--gtc-6 {
  grid-template-columns: repeat(6, 1fr);
}
.--gap-5 {
  gap: 5px;
}
.--gap-10 {
  gap: 10px;
}
.--gap-15 {
  gap: 15px;
}
.--gap-20 {
  gap: 20px;
}
.--gap-25 {
  gap: 25px;
}
.--gap-30 {
  gap: 30px;
}
.--gap-35 {
  gap: 35px;
}
.--gap-40 {
  gap: 40px;
}
.--gap-45 {
  gap: 45px;
}
.--gap-50 {
  gap: 50px;
}
.--gap-60 {
  gap: 60px;
}

.--fz-15 {
  font-size: 15px;
}
.--fz-16 {
  font-size: 16px;
}
.--fz-17 {
  font-size: 17px;
}
.--fz-18 {
  font-size: 18px;
}
.--fz-20 {
  font-size: 20px;
}
.--fz-25 {
  font-size: 25px;
}
.--fz-50 {
  font-size: 50px;
}
.--fw-400 {
  font-weight: 400;
}
.--fw-500 {
  font-weight: 500;
}
.--fw-600 {
  font-weight: 600;
}
.--fw-700 {
  font-weight: 700;
}

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

.--max-width-980 {
  max-width: 980px;
  margin: 0 auto;
}
.--max-width-910 {
  max-width: 910px;
  margin: 0 auto;
}
.--max-width-800 {
  max-width: 800px;
  margin: 0 auto;
}

.card {
  border-radius: 40px;
  border: 1px solid #1c2445;
  background: #fff;
  color: #1c2445;
  box-shadow: 10px 10px 0px 0px rgba(28, 36, 69, 0.1);
  padding: 40px 30px;
  position: relative;
  box-sizing: border-box;
}
.card__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}

.card__title {
  color: inherit;
  font-size: 23px;
  font-weight: 500;
}

.card__text {
  color: inherit;
  font-size: 16px;
  margin-top: 15px;
  line-height: 21px; /* 131.25% */
}

.card.--dark-blue {
  background: #2d4d76;
  color: #fff;
  border-color: #2d4d76;
}
.card.--light-gray {
  background: #f1f6f9;
  border-color: #f1f6f9;
}

.card.--light-blue {
  background: #8dc8e6;
  border-color: #8dc8e6;
}
.card.--lighter-blue {
  background: #b6d9ed;
  border-color: #b6d9ed;
}
.card.--num {
  counter-increment: card_inc;
}
.card.--num:before {
  content: counter(card_inc);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #d9f1ff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1c2445;
  font-weight: 800;
  position: absolute;
  font-size: 23px;
  top: -30px;
}
.card.--horizontal {
  padding: 45px;
}
.card.--horizontal .card__inner {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 40px;
}
.card.--horizontal .card__title {
  flex: 0 0 355px;
}
.card.--horizontal .card__text {
  margin-top: 0;
}
.form {
}

.form.--horizontal.--col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
