/* Reset / base */
* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

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

body,
html {
  height: 100%;
  width: 100%;
  line-height: normal;
  font-size: 15px;
}

input,
textarea {
  outline: 0;
}

*,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

input:focus {
  outline: 0;
  box-shadow: none;
}

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

button {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: 0;
}

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

a {
  line-height: 1;
}

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

ol li,
ul li {
  list-style: none;
}

li {
  line-height: normal;
}


/* Fonts */
@font-face {
  font-family: 'Inter';
  font-display: swap;
  src: url(../fonts/InterRegular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  font-display: swap;
  src: url(../fonts/InterMedium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Sansation';
  font-display: swap;
  src: url(../fonts/SansationItalic.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Sansation';
  font-display: swap;
  src: url(../fonts/SansationBoldItalic.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}

/* Utility classes */
.flex { display: flex; }
.flex--column { flex-direction: column; }
.flex--no-shrink { flex-shrink: 0; }
.align--center { align-items: center; }
.justify--center { justify-content: center; }
.justify--between { justify-content: space-between; }

.gap--8  { gap: 8px; }
.gap--16 { gap: 16px; }
.gap--24 { gap: 24px; }
.gap--32 { gap: 32px; }

.pl--16 { padding-left: 16px; }
.pl--22 { padding-left: 22px; }
.pl--24 { padding-left: 24px; }
.pl--32 { padding-left: 32px; }

.pr--16 { padding-right: 16px; }
.pr--24 { padding-right: 24px; }
.pr--32 { padding-right: 32px; }

.pt--8   { padding-top: 8px; }
.pt--16  { padding-top: 16px; }
.pt--32  { padding-top: 32px; }
.pt--168 { padding-top: 168px; }

.pb--8   { padding-bottom: 8px; }
.pb--16  { padding-bottom: 16px; }
.pb--32  { padding-bottom: 32px; }
.pb--168 { padding-bottom: 168px; }

.m--auto { margin-left: auto; margin-right: auto; }

.mb--8  { margin-bottom: 8px; }
.mb--24 { margin-bottom: 24px; }

.mr--4 { margin-right: 4px; }

.color--white        { color: var(--color--white); }
.color--dark-blue    { color: var(--color--dark-blue); }
.color--text-black   { color: var(--color--text-black); }
.color--text-gray    { color: var(--color--text-gray); }
.color--decor-blue   { color: var(--color--decor-blue); }

.bg--dark-blue        { background-color: var(--color--dark-blue); }
.bg--white            { background-color: var(--color--white); }
.bg--btn-secondary    { background-color: var(--color--btn-secondary); }
.bg--super-light-blue { background-color: var(--color--super-light-blue); }
.bg--decor-blue       { background-color: var(--color--decor-blue); }

.br--8      { border-radius: 8px; }

.font--normal   { font-weight: 400; }
.font--medium   { font-weight: 500; }
.font--bold     { font-weight: 700; }
.font--primary  { font-family: 'Inter', sans-serif; }
.font--secondary{ font-family: 'Sansation', sans-serif; }

.font--16 { font-size: 1.06667rem; }
.font--18 { font-size: 1.2rem; }
.font--20 { font-size: 1.33333rem; }
.font--24 { font-size: 1.6rem; }
.font--32 { font-size: 2.13333rem; }

.position--fixed    { position: fixed; }
.position--absolute { position: absolute; }
.position--relative { position: relative; }

.lh--105 { line-height: 105%; }
.lh--150 { line-height: 150%; }

/* Buttons */
.btn {
  height: 56px;
  border-radius: 100px;
}

@media (min-width: 1024px) {
  .btn {
    height: 59px;
  }

  .btn--hover {
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: background-position .6s ease, color .6s ease;
    border-radius: 100px;
  }

  .btn--hover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    transform: translateX(-100%);
    transition: transform .7s ease;
    z-index: -1;
  }

  .btn--hover:hover {
    background-position: 0 0;
  }

  .btn--hover:hover:before {
    transform: translateX(0);
    transition: transform .45s ease;
  }

  .btn--hover-transparent-header:before {
    background-color: var(--color--super-light-blue);
  }

  .btn--hover-transparent-header {
    background: linear-gradient(90deg, var(--color--super-light-blue) 50%, var(--color--dark-blue) 50%) 100% 0/200% no-repeat;
  }

  .btn--hover-transparent-header:hover * {
    color: var(--color--dark-blue);
    fill: var(--color--dark-blue);
  }

    .encore{
    padding-left:64px;
    padding-right:64px;
    gap:32px
    }

    .encore__title{
    font-size:3.2rem
    }
 }   

.btn--secondary    { width: 169px; }
.divider { height: 1px; width: 100%; }
.hidden  { display: none; }

.container { max-width: 1312px; }

.full--width  { width: 100%; }
.full--height { height: 100%; }

/* Root colors */
:root {
  --color--dark-blue: #00309F;
  --color--btn-secondary: #3A75FF;
  --color--blue-hover: #2F5ECB;
  --color--text-black: #2B2B2B;
  --color--text-gray: #707070;
  --color--decor-blue: #A9C3FF;
  --color--deco-blue: #D4E1FF;
  --color--super-light-blue: #EFF4FF;
  --color--white: #FFFFFF;
}

/* Layout basics */
body {
  padding-top: 80px;
}

main { flex: 1; }

/* Header */
.header {
  height: 80px;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
}

blockquote li{
    list-style: disc;
    line-height: 150%;
}

@media (min-width: 1024px) {
  .header { padding: 0 64px; }
}

/* Burger */
.header__burger {
  height: 30px;
  width: 36px;
  overflow: visible;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .header__burger { display: none; }
}

.header__burger .header__burger-line,
.header__burger .header__burger-line::after,
.header__burger .header__burger-line::before {
  background: #fff;
  display: block;
  height: 2px;
  opacity: 1;
  position: absolute;
  transition: .3s ease-in-out;
  border-radius: 2px;
  content: '';
}

.header__burger .header__burger-line {
  left: 13px;
  top: 50%;
  width: 23px;
  transform: translateY(-50%);
}

.header__burger .header__burger-line::before {
  right: 0;
  top: -8px;
  width: 36px;
}

.header__burger .header__burger-line::after {
  right: 0;
  top: 8px;
  width: 36px;
}

.header__burger.close .header__burger-line {
  transform: rotate(45deg);
  top: 13px;
  width: 27px;
}

.header__burger.close .header__burger-line::before {
  top: 0;
  transform: rotate(90deg);
  width: 27px;
  right: 0;
}

.header__burger.close .header__burger-line::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
  opacity: 0;
  width: 0;
}

/* Footer (desktop adjustments) */
@media (min-width: 1024px) {
  .footer {
    padding-left: 64px;
    padding-right: 64px;
    gap: 32px;
  }

  .footer__nav,
  .footer__nav-container { flex-direction: row; gap: normal; width: 100%; }
  .footer__nav-links { display: none; }
  .footer__nav-link { transition: .4s ease; }
  .footer__nav-link:hover { color: var(--color--blue-hover); }
  .footer__header-links { display: flex; }
  .footer__container { flex-direction: row; gap: normal; }
}

@media (min-width: 1024px) {
    .footer__nav {
        justify-content: space-evenly;
    }
}

@media (min-width: 1280px) {
  .footer__form { flex-direction: row; }
  .footer__form-container { width: 517px; }
}

.footer__form-field {
  max-width: 330px;
  width: 100%;
}

.footer__form-field::placeholder {
  font-family: 'Inter';
  font-size: 1.06667rem;
  font-weight: 400;
  color: var(--color--text-gray);
  line-height: 150%;
}

/* Page-specific sections with responsive rules */
@media (min-width: 1024px) {
  .breadcrumbs { padding-top: 64px; padding-left: 64px; padding-right: 64px; }
}

/* Encore (used for main content) */
@media (min-width: 1024px) {
  .encore { padding-left: 64px; padding-right: 64px; }
  .encore__title { font-size: 2.13333rem; }
  .encore__text {
    font-size: 1.06667rem;
    max-width: 831px;
  }
}

/* Mobile menu */
.mobile-menu {
  top: 80px;
  left: 0;
  right: 0;
  height: calc(100dvh + 80px);
  transform: translateY(calc(100dvh + 80px));
  transition: transform .4s ease, opacity .2s ease;
  z-index: 998;
  pointer-events: none;
  opacity: 0;
}

.mobile-menu.open {
  transform: translateY(0);
  pointer-events: auto;
  overflow: auto;
  height: calc(100dvh - 80px);
  opacity: 1;
}

.mobile-menu__list-item:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 1px;
  background-color: var(--color--deco-blue);
}

.mobile-menu__list-icon { transition: transform .4s ease; }
.mobile-menu__list-icon.open { transform: rotate(-180deg); }

.mobile-menu__btn {
  border: 1px solid var(--color--white);
  width: fit-content;
  height: 43px;
}

.mobile-menu__dropdown { height: 160px; }
.mobile-menu__dropdown-btn { background-color: transparent; border: 0; }

/* Desktop menu */
@media (min-width: 1024px) {
  .desktop-menu { display: flex; }

  .desktop-menu__btn {
    border: 1px solid var(--color--white);
    width: fit-content;
    height: 43px;
  }

  .desktop-menu__btn * { transition: all .4s ease-in-out; }

  .desktop-menu__btn-sign { display: flex; }

  .desktop-menu__drop-item { border-bottom: 1px solid var(--color--deco-blue); }
  .desktop-menu__drop-item:first-child { border-top: 1px solid var(--color--deco-blue); }

  .desktop-menu__dropdown-btn { padding: 28px 0; }

  .desktop-menu__services {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .4s ease, transform .4s ease, visibility .4s;
    z-index: 1000;
    border: 1px solid var(--color--decor-blue);
  }

  .desktop-menu__list-icon { transition: transform .4s ease-in-out; }
}