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

input,
button,
textarea {
  border: 0;
  background: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #0036ae;
  background-color: #fff;
}

.container {
  width: 95%;
  margin: 0 auto;
  max-width: 1748px;
}

header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5em;
  background-color: #0036ae;
  height: 80px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 99;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 45px;
  height: 100%;
}

.burger {
  width: 45px;
  height: 45px;
  display: flex;
}
.burger svg {
  width: 100%;
  height: 100%;
}
.burger svg path {
  fill: #fff;
}

.menu {
  display: flex;
  height: 100%;
}
.menu li {
  height: 100%;
}
.menu li a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  position: relative;
}
.menu li a:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 95%;
  transform: translate(-50%, 0);
  display: block;
  content: "";
  height: 4px;
  background-color: #fff;
}

.logo {
  width: 266px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 10%);
}
.logo img {
  width: 100%;
}

.header__right {
  display: flex;
  gap: 0.5em;
  align-items: center;
}

.search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.3);
}
.search svg {
  width: 20px;
  height: 20px;
}

.header__btn {
  width: 141px;
  display: flex;
  align-items: center;
  font-size: 0.875em;
  background-color: #f2f4f8;
  color: #000;
  justify-content: center;
  height: 35px;
  border-radius: 100px;
  line-height: 35px;
}
.header__btn:last-child {
  width: 128px;
  background: #ffde00;
  color: #0036ae;
}

.top {
  margin-top: 30px;
}

.banner {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
}
.banner img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.arrows {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: calc(100% + 60px);
  left: -30px;
}
.arrows span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  width: 50px;
  height: 50px;
}
.arrows span svg {
  width: 31px;
  height: 31px;
}
.arrows span svg path {
  stroke: #00bdb9;
}

.dots {
  position: absolute;
  display: flex;
  align-items: center;
  right: 0;
  top: -25px;
  gap: 10px;
}
.dots span {
  background-color: #25d5c0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7px;
  height: 7px;
}
.dots span:first-child {
  width: 22px;
  height: 22px;
  border: 1px solid #25d5c0;
  background-color: #fff;
}
.dots span:first-child::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #25d5c0;
  border-radius: 50%;
}

.top__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5em 0;
  gap: 50px;
}
.top__icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 105px;
}
.top__icons a img {
  width: 160px;
}
.top__icons a:last-child {
  color: #ffde00;
  font-weight: 700;
  text-align: right;
}

.cards {
  background: linear-gradient(to bottom, #25d5c0 0%, #0589b8 100%);
  padding-bottom: 40px;
}

.cards__title {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 19px 0 19px 0;
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  gap: 10px;
}
.cards__title svg {
  width: 28px;
  height: 28px;
}

.cards__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em 1%;
}
.cards__list a img {
  width: 100%;
  border-radius: 5px;
  aspect-ratio: 420/200;
  margin-bottom: 0.25em;
}
.cards__list a p {
  display: flex;
  flex-direction: column;
}
.cards__list a p span {
  font-size: 1.3em;
  margin: 0 0 3px 0;
  height: 1.2em;
  color: #fff;
  font-weight: bold;
}
.cards__list a p span:last-child {
  font-size: 1em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
}

.content {
  padding: 40px 0;
  position: relative;
}

.content__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content__item {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
.content__item a {
  text-decoration: underline;
}
.content__item strong,
.content__item h1,
.content__item h2,
.content__item h3,
.content__item h4 {
  font-weight: 900;
}
.content__item h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.content__item h2 {
  font-size: 35px;
  margin-bottom: 10px;
}
.content__item h3 {
  font-size: 27px;
  margin-bottom: 10px;
}
.content__item h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.content__item p,
.content__item .content__table,
.content__item ul,
.content__item ol {
  margin-bottom: 20px;
}
.content__item ol,
.content__item ul {
  padding-left: 50px;
  list-style: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.content__item ol p,
.content__item ul p {
  margin-bottom: 15px;
}
.content__item ul {
  list-style: disc;
}
.content__item h3:last-child,
.content__item ol:last-child,
.content__item p:last-child,
.content__item .content__table:last-child,
.content__item ul:last-child {
  margin-bottom: 0;
}
.content__item.faq .faq__item {
  margin-bottom: 25px;
}
.content__item.faq .faq__item p,
.content__item.faq .faq__item ol,
.content__item.faq .faq__item ul,
.content__item.faq .faq__item .content__table {
  margin-bottom: 15px;
}
.content__item.faq .faq__item p:last-child,
.content__item.faq .faq__item ol:last-child,
.content__item.faq .faq__item ul:last-child,
.content__item.faq .faq__item .content__table:last-child {
  margin-bottom: 0;
}
.content__item.faq .faq__item p:first-child {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 900;
}
.content__item.faq .faq__item:last-child {
  margin-bottom: 0;
}

.content__table table {
  border-collapse: collapse;
}
.content__table td {
  padding: 12px;
  border: 1px solid #0036ae;
  text-align: left;
  vertical-align: top;
}
.content__table tr:first-child td {
  text-align: center;
  font-weight: 900;
}

.table-color-head tr:first-child td {
  background: #0036ae;
  color: #fff;
  border-color: #fff;
}

footer {
  padding: 40px 0;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
}

.footer__left {
  width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer__left p:nth-child(1) {
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
}
.footer__left p:nth-child(3) {
  font-size: 14px;
  text-transform: uppercase;
}
.footer__left img {
  width: 250px;
  margin: 8px auto 0 auto;
}

.footer__right {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.footer__item {
  width: 334px;
}

.footer__item__title {
  height: 40px;
  padding: 0 0 8px 0;
  font-size: 17px;
  color: #0036ae;
  border-bottom: 1px solid #25d5c0;
  position: relative;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer__item__list {
  padding-top: 16px;
  -moz-columns: 2;
       columns: 2;
}
.footer__item__list li {
  padding: 8px 0;
  display: block;
  font-weight: 600;
  color: #0052b3;
  font-size: 15px;
}

@media (max-width: 1919px) {
  .banner {
    height: 370px;
  }
  .top__icons a {
    height: 105px;
  }
  .top__icons a img {
    width: 150px;
  }
  .top__icons {
    flex-wrap: wrap;
  }
  .footer {
    flex-direction: column;
  }
  .footer__item {
    width: calc(33% - 21.3333333333px);
  }
  .footer__left {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
  .footer__left img {
    width: 250px;
    margin: 8px 0 0 0;
  }
  .footer__right {
    flex-wrap: wrap;
  }
}
@media (max-width: 1290px) {
  .menu {
    display: none;
  }
  .logo {
    width: 190px;
    left: 100px;
    transform: none;
  }
  .arrows {
    display: none;
  }
  .banner {
    height: 250px;
  }
}
@media (max-width: 767px) {
  header {
    height: 49px;
  }
  .burger {
    width: 32px;
    height: 32px;
  }
  .logo {
    width: 41px;
    height: 40px;
    left: 50px;
    top: 5px;
  }
  .header__btn {
    font-size: 12px;
    width: -moz-max-content;
    width: max-content;
    padding: 0 1em;
  }
  .header__btn:last-child {
    width: -moz-max-content;
    width: max-content;
  }
  .arrows {
    display: flex;
  }
  .banner {
    height: 231px;
  }
  .banner picture {
    height: 100%;
    width: 100%;
  }
  .arrows {
    width: 100%;
    left: 0px;
  }
  .arrows span {
    width: 34px;
    height: 34px;
  }
  .arrows span svg {
    width: 24px;
    height: 24px;
  }
  .dots {
    top: -27px;
  }
  .top__icons a {
    height: 46px;
  }
  .top__icons a img {
    width: 100px;
  }
  .top__icons {
    justify-content: flex-start;
    padding: 0px 10px;
    margin: 1.5em 0;
    gap: 10px;
  }
  .cards__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em 1%;
  }
  .cards__list a p span {
    font-size: 1em;
  }
  .cards__list a p span:last-child {
    font-size: 0.75em;
  }
  .content__item ol,
  .content__item ul {
    padding-left: 30px;
  }
  .footer__item {
    width: 100%;
  }
  .content__table {
    padding-right: 2.5%;
    width: 102.5%;
    overflow-x: auto;
  }
  .content__table::-webkit-scrollbar {
    display: none;
  }
}/*# sourceMappingURL=styles.css.map */