/* Variables — Texas theme (Blue #002868 · Red #BF0A30 · Gold #C8922A) */
:root {
  --violet-color: #1B56B5;        /* Texas Blue — кнопки, ссылки, акценты */
  --violet-accent-color: #154499; /* тёмнее при hover */
  --violet-light-color: #E4EDF8;  /* светло-синий фон hero */
  --violet-dark-color: #0D2451;   /* Deep Texas Navy — футер */
  --red-color: #BF0A30;           /* официальный Texas Red */
  --green-color: #C8922A;         /* Texas Gold — второстепенный акцент */
  --text-color: #4A4A4A;
  --black-color: #1C1C2E;
  --white-color: #fff;
  --grey-color: #9E9E9E;
  --grey-bg-color: #F0F4FA;
  --grey-medium-color: #D8DCE6;
  --grey-light-color: #F5F7FC;

  --primary-font: open-sans;

  --transition: all .3s ease-in-out;
}

/* Grid */
:root {
  --grid-width: 1160px;
  --grid-gutter: 15px;
}

.oo8mty {
  max-width: calc(var(--grid-width) + var(--grid-gutter) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
}

.oo8mty.sm {
  max-width: calc(962px + var(--grid-gutter) * 2);
}

.x7zxf6 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--grid-gutter) * -1);
}

.v6aspi {
  flex-direction: column-reverse;
}

.coury1 {
  flex-direction: column-reverse;
}

.p6arfb {
  width: fit-content;
  padding: 0 var(--grid-gutter);
}

.re10ph {
  width: 25%;
}

.hia78t {
  width: 33.3333%;
}

.rnse48 {
  width: 41.666667%;
}

.kxuh4j {
  width: 50%;
}

.gmkpjq {
  width: 100%;
}

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

.l4o89p {
  flex: 1;
}

.ns9cc5 {
  justify-content: flex-start;
}

.b5nh86 {
  justify-content: flex-end;
}

@media (min-width: 992px) {
  .fict1t {
    width: 25%;
  }

  .xsoj8w {
    width: 58.3333%;
  }

  .if6p57 {
    width: 50%;
  }

  .abjd59 {
    width: 41.6666%;
  }

  .tpd35o {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .golw2b {
    width: 50%;
  }

  .etkfbc {
    width: 58.3333%;
  }

  .hcgppj {
    width: 41.6666%;
  }

  .ruez3w {
    justify-content: flex-start;
  }

  .qm8mku {
    justify-content: flex-end;
  }

  .gdhbxf {
    flex-direction: row;
  }
}

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

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

body, html {
  height: 100%;
  min-height: 100%;
}

html {
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  line-height: 1;
  background-color: var(--white-color);
  color: var(--text-color);
  font-family: var(--primary-font), sans-serif;
  font-size: 18px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-color);
  font-family: var(--primary-font), sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 42px;
  line-height: 57px;
  margin: 60px 0 30px;
}

h2 {
  font-size: 40px;
  line-height: 54px;
  margin: 60px 0 30px;
}

h3 {
  font-size: 38px;
  line-height: 52px;
  margin: 60px 0 30px;
}

h4 {
  font-size: 36px;
  line-height: 50px;
  margin: 60px 0 30px;
}

h5 {
  font-size: 32px;
  line-height: 43px;
  margin: 60px 0 30px;
}

h6 {
  font-size: 28px;
  line-height: 38px;
  margin: 60px 0 30px;
}

ul {
  list-style-type: none;
  margin: 20px 0;
  padding: 0;
}

ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-color);
}

ul li::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--black-color);
}

ol {
  margin: 20px 0 20px 22px;
}

ol li {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 30px;
}

blockquote {
  position: relative;
  display: block;
  background-color: var(--grey-light-color);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  padding: 16px 78px 16px 80px;
  margin: 15px 0;
}

blockquote::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 58px;
  height: calc(100% - 10px);
  width: 2px;
  background-color: var(--grey-medium-color);
}

kbd {
  letter-spacing: .05em;
  font-family: var(--primary-font);
  font-weight: 400;
}

code,
samp {
  display: inline-block;
  padding: 0 2px;
  font-family: inconsolata;
  font-weight: 400;
  background-color: var(--grey-light-color);
  font-size: 18px;
  line-height: 30px;
  letter-spacing: .05em;
}

p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-color);
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

a {
  color: var(--violet-color);
  line-height: 1;
  outline: none;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}

input, 
select,
textarea {
  width: 100%;
  position: relative;
  display: block;
  padding: 11px 14px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 24px;
  font-family: var(--primary-font), sans-serif;
  font-weight: 400;
  background-color: var(--white-color);
  outline: none;
  border-radius: 5px;
  border: 1px solid var(--grey-medium-color);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

textarea {
  resize: none;
}

select {
  padding-right: 50px;
  background: url(../images/select-arrow.svg) no-repeat calc(100% - 15px) var(--white-color);
}

::-webkit-input-placeholder {
  color: var(--grey-color);
  opacity: 1;
}
::-moz-placeholder {
  color: var(--grey-color);
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--grey-color);
  opacity: 1;
}
:-moz-placeholder {
  color: var(--grey-color);
  opacity: 1;
}

input:active,
input:focus,
textarea:active,
textarea:focus {
  border: 1px solid var(--violet-light-color);
}

.iypgpp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 34px;
  background-color: var(--violet-color);
  color: var(--white-color);
  outline: none;
  font-family: var(--primary-font), sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  border-radius: 10px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: var(--transition);
}

.iypgpp:hover,
.iypgpp:active {
  background-color: var(--violet-accent-color);
  text-decoration: none;
}

.ckli7y {
  position: relative;
  z-index: 1;
  padding: 11px 0;
  box-shadow: 0 1px 4px 0 rgba(132, 133, 204, .25);
  background-color: var(--white-color);
}

.ld99z6 {
  max-width: 130px;
  width: 100%;
  transition: var(--transition);
  border: 0;
}

.ld99z6:hover {
  opacity: .9;
}

.rfzmbr {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  transition: var(--transition);
}

.gdnnug {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, .5);
}

.rfzmbr.is-active {
  transform: translateX(0);
}

.gdnnug.is-active {
  opacity: 1;
  z-index: 9;
}

.azss5q {
  width: 100%;
  margin-right: 30px;
}

.azss5q ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.azss5q ul li {
  margin: 0 40px 0 0;
  padding: 0;
}

.azss5q ul li::before {
  display: none;
}

.azss5q ul li:last-child {
  margin-right: 0;
}

.azss5q ul li * {
  display: inline-flex;
  color: var(--black-color);
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

.azss5q ul li a:hover {
  color: var(--violet-color);
  border-color: var(--violet-color);
}

.m5ooio {
  flex-shrink: 0;
}

.m5ooio .iypgpp {
  padding-left: 42px;
  padding-right: 42px;
}

.t9rvg7 {
  position: relative;
  background-color: var(--violet-light-color);
  padding: 60px 0 45px;
}

.s3fe5c {
  font-size: 18px;
  line-height: 30px;
}

.hv9dnn {
  margin: 30px 0 20px 0;
  font-size: 42px;
  line-height: 57px;
  font-weight: 600;
  color: var(--black-color);
}

.ipapt6 {
  padding: 60px 0 20px;
}

.ipapt6 p,
.ipapt6 li {
  text-align: justify;
}

.jyysaj {
  padding: 50px 0 10px;
  background-color: var(--grey-bg-color);
}

.w036b0 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 30px -15px 0;
}

.x1qw84,
.d9xkaz {
  width: calc(50% - 30px);
  margin: 0 15px;
}

.w036b0.bo947d .mid7b8 {
  border-color: var(--violet-color);
}

.w036b0.vfb5m8 .mid7b8 {
  border-color: var(--green-color);
}

.mid7b8 {
  position: relative;
  background-color: var(--white-color);
  padding: 20px;
  margin-bottom: 30px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border: 1px solid var(--violet-color);
  width: 100%;
  max-width: 367px;
}

.mid7b8 p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 27px;
}

.x1qw84 .mid7b8:first-child::before,
.x1qw84 .mid7b8:last-child::before,
.d9xkaz .mid7b8:first-child::before {
  content: '';
  position: absolute;
  width: 62px;
  height: 58px;
}

.x1qw84 .mid7b8:first-child::before {
  top: calc(100% + 15px);
  left: 120px;
  background: url(../images/arrow-1.svg) no-repeat center;
}

.x1qw84 .mid7b8:last-child::before {
  bottom: calc(100% + 15px);
  right: 0;
  background: url(../images/arrow-2.svg) no-repeat center;
}

.d9xkaz .mid7b8:first-child::before {
  top: calc(100% + 15px);
  left: 120px;
  background: url(../images/arrow-1.svg) no-repeat center;
}

.w036b0.vfb5m8 .x1qw84 .mid7b8:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.w036b0.vfb5m8 .x1qw84 .mid7b8:last-child::before {
  background-image: url(../images/arrow-4.svg);
}

.w036b0.vfb5m8 .d9xkaz .mid7b8:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.x1qw84 .mid7b8:last-child,
.d9xkaz .mid7b8:last-child { 
  margin-left: auto;
}

.yuwcuk {
  padding: 30px 0;
  background-color: var(--grey-bg-color);
}

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

.bexe1d {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: calc(50% - 15px);
}

.aih0z7 {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

.tc1k2w {
  flex: 1;
}

.pn1dwo {
  padding: 70px 0 90px;
}

.n9rqub {
  padding: 30px;
  width: 100%;
  max-width: 415px;
  background-color: var(--white-color);
  text-align: center;
  margin-left: auto;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.y6ax3h {
  max-width: 335px;
  width: 100%;
  margin: 0 auto;
}

.n9rqub select {
  margin-bottom: 15px;
}

.ha0wb2 {
  margin: 0 auto 25px;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: var(--black-color);
  max-width: 335px;
}

.lnnha5 {
  margin-top: 20px;
}

.fwl000 {
  font-size: 12px;
  line-height: 15px;
  margin: 15px auto 0;
  width: 100%;
  max-width: 335px;
  text-align: center;
  font-weight: 300;
  color: var(--text-color);
}

.fwl000 a {
  font-weight: 400;
  color: var(--text-color);
}

.cfrj56 {
  margin: 20px 0;
}

.cfrj56 li {
  padding-left: 43px;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 16px;
}

.cfrj56 li::before {
  width: 28px;
  height: 28px;
  left: 0;
  top: 1px; 
  border-radius: 5px;
  background: url(../images/check-icon.svg) no-repeat center var(--green-color);
}

.c8hwkm {
  margin: 0 0 30px;
  font-size: 40px;
  color: var(--black-color);
  line-height: 54px;
  font-weight: 600;
}


.u8mmza {
  padding-top: 70px;
  background-color: var(--violet-dark-color);
}

.ktc82d {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}

.a80lhh {
  margin: 0 15px;
}

.y2bk1i {
  max-width: 147px;
  width: 100%;
}

.y2bk1i:hover {
  opacity: .9;
}

.knpirp {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 20px 0;
}

.knpirp li {
  margin: 0 20px 0 0;
  padding: 0;
}

.knpirp li:last-child {
  margin-right: 0;
}

.knpirp li::before {
  display: none;
}

.knpirp li a {
  width: 36px;
  height: 36px;
  padding: 4px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border: 0;
}

.knpirp li a:hover {
  opacity: .8;
}

.lbv1xw {
  display: flex;
  align-items: flex-start;
  width: 158px;
}

.lbv1xw p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 0;
  color: var(--white-color);
}

.wnxehb {
  margin-right: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.wdol9s {
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--grey-medium-color);
}

.vuwmac {
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 19px;
  font-weight: 600;
  color: var(--white-color);
}

.xlx2uw {
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.xlx2uw li {
  margin: 0 0 15px 0;
  padding: 0 15px 0 0;
  line-height: 19px;
  width: 25%;
}

.xlx2uw li::before {
  display: none;
}

.xlx2uw li a {
  display: inline-block;
  font-size: 15px;
  line-height: 19px;
  font-weight: 500;
  color: var(--white-color);
}

.rwjqou {
  margin-top: 50px;
}

.jwp2gc {
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  text-align: justify;
}

.jwp2gc p {
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  margin-bottom: 0;
  color: var(--white-color);
}

.kipf78 {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 15px;
  font-weight: 400;
  text-align: left;
  color: var(--white-color);
}

.hox0xo {
  text-align: center;
  padding-top: 24px;
}

.hox0xo p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 16px;
  color: var(--white-color);
}

.muhgw5 {
  position: relative;
  display: none;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  z-index: 100;
  overflow: visible; }
  .muhgw5:hover {
    opacity: 0.7; }
  .muhgw5.is-active:hover {
    opacity: 0.7; }
  .muhgw5.is-active .vk2lco,
  .muhgw5.is-active .vk2lco::before,
  .muhgw5.is-active .vk2lco::after {
    background-color: var(--violet-accent-color); }

.m91094 {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.vk2lco {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .vk2lco, .vk2lco::before, .vk2lco::after {
    width: 40px;
    height: 3px;
    background-color: var(--violet-accent-color);
    border-radius: 3px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .vk2lco::before, .vk2lco::after {
    content: "";
    display: block; }
  .vk2lco::before {
    top: -10px; }
  .vk2lco::after {
    bottom: -10px; }

.nncx0u .vk2lco {
  top: 2px; }
  .nncx0u .vk2lco::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .nncx0u .vk2lco::after {
    top: 20px; }

.nncx0u.is-active .vk2lco {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .nncx0u.is-active .vk2lco::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .nncx0u.is-active .vk2lco::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

.kd3bi1 {
  margin-top: 60px!important;
}

.h4eht6 {
  display: flex;
}

.x7nup4 {
  text-align: center;
}

.di0v1u {
  align-items: center;
} 

.fzrjp7 {
  justify-content: space-between;
}

.zc9e5u {
  justify-content: center;
}

.vs1sib {
  justify-content: flex-start;
}

/* Media queries */
@media (max-width: 1199px) {
  
  
  
  
  

  .x1qw84 .mid7b8:first-child::before,
  .d9xkaz .mid7b8:first-child::before {
    left: 50px;
  }

  
}

@media (max-width: 1025px) {
  .azss5q ul li {
    margin-right: 25px;
    border-bottom: 1px solid var(--milk-color);
  }

  .x1qw84 .mid7b8:first-child::before,
  .d9xkaz .mid7b8:first-child::before {
    left: 0;
  }

  .muhgw5 {
    display: inline-flex;
  }

  .ckli7y {
    height: 90px;
  }

  .rfzmbr {
    padding: 30px;
    position: fixed;
    top: 91px;
    right: 0;
    bottom: 0;
    height: calc(100% - 91px);
    width: 100%;
    z-index: 99;
    background-color: var(--white-color);
    transform: translateX(100%);
  }

  .azss5q {
    margin-right: 0;
    width: auto;
    text-align: right;
    width: 100%;
  }

  .azss5q ul {
    display: block;
  }

  .azss5q ul li {
    margin-right: 0;
    margin-bottom: 15px; 
    padding-bottom: 10px;
  }

  .azss5q ul li * {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }

  .m5ooio {
    display: none;
  }

  .m5ooio .iypgpp {
    width: 180px;
  }

  .iypgpp {
    font-size: 20px;
    padding: 10px 20px;
  }

  .t2k95g {
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  .u8mmza {
    padding-top: 60px;
  }

  .ktc82d {
    margin-bottom: 30px;
  }

  .usku96 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .y2bk1i {
    margin-bottom: 0;
    justify-content: flex-start;
  }

  .wnxehb {
    margin-right: 5px;
  }

  .lbv1xw {
    width: 152px;
  }

  .knpirp {
    margin-bottom: 30px;
  }

  .cb0zw1,
  .i05ne9 {
    margin-bottom: 25px;
    text-align: center;
  }

  .t2k95g {
    display: none;
  }

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

  .hv9dnn,
  .s3fe5c {
    text-align: center;
  }

  .qm01u7 {
    padding: 80px 0;
  }

  

  .ckli7y {
    padding: 10px 0;
    height: 75px;
  }

  .rfzmbr {
    top: 76px;
    height: calc(100% - 76px);
  }

  .ld99z6 {
    max-width: 69px;
  }

  .c8hwkm {
    text-align: center;
  }

  .ipapt6 {
    padding: 70px 0 40px;
  }

  .k0l0l1 {
    padding: 50px 0 10px;
  }

  .m0ny1q {
    padding: 40px 0 10px;
  }

  .nddul0 {
    padding: 25px 0 65px;
  }

  .w036b0 {
    flex-direction: column;
    margin: 20px 0 0;
  }

  .x1qw84, .d9xkaz {
    width: 100%;
    margin: 0;
  }

  .x1qw84 .mid7b8:last-child::before {
    background-image: url(../images/arrow-1.svg);
    left: -20px;
    bottom: 0;
    top: calc(100% - 15px);
  }

  .w036b0.vfb5m8 .x1qw84 .mid7b8:last-child::before {
    background-image: url(../images/arrow-3.svg);
    left: -20px;
    bottom: 0;
    top: calc(100% - 15px);
  }

  .x1qw84 .mid7b8:first-child::before,
  .d9xkaz .mid7b8:first-child::before {
    top: calc(100% - 15px);
    left: -20px;
  }

  .mid7b8 {
    max-width: 100%;
    width: calc(100% - 10px);
    margin-left: auto;
    margin-bottom: 20px;
  }

  .mid7b8::before {
    background-size: contain!important;
    width: 37px!important;
    height: 40px!important;
    transform: rotate(60deg);
  }
}

@media (max-width: 767px) {
  p,
  ul li,
  ol li,
  blockquote,
  code, 
  samp,
  input, 
  select, 
  textarea {
    font-size: 15px;
    line-height: 25px;
  }

  ul li {
    padding-left: 20px;
    margin-bottom: 15px;
  }

  ol li {
    margin-bottom: 15px;
  }

  ul li::before {
    top: 10px;
    left: 9px;
    width: 3px;
    height: 3px;
  }

  blockquote {
    margin: 15px 0;
    padding: 14px 18px 14px 27px; 
  }

  blockquote::before {
    left: 17px;
    width: 1px;
  }

  h1 {
    font-size: 32px;
    line-height: 43px;
    margin: 50px 0 25px;
  }

  h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 50px 0 25px;
  }

  h3 {
    font-size: 28px;
    line-height: 38px;
    margin: 50px 0 25px;
  }

  h4 {
    font-size: 26px;
    line-height: 35px;
    margin: 50px 0 25px;
  }

  h5 {
    font-size: 24px;
    line-height: 32px;
    margin: 50px 0 25px;
  }

  h6 {
    font-size: 20px;
    line-height: 27px;
    margin: 50px 0 25px;
  }

  input, 
  select, 
  textarea {
    padding: 9px 12px;
  }

  select {
    padding-right: 35px;
    background-size: 13px;
    background-position-x: calc(100% - 12px);
  }

  p {
    margin-bottom: 15px;
  }

  

  .iypgpp {
    font-size: 18px;
    line-height: 24px;
    padding: 11px 20px;
  }

  .m5ooio .iypgpp {
    padding: 5px 11px;
    font-size: 16px;
    line-height: 21px;
  }

  .ckli7y {
    height: 50px;
    padding: 4px 0;
  }

  .m5ooio .iypgpp {
    width: 114px;
  }

  .rfzmbr {
    top: 51px;
    height: calc(100% - 51px);
  }

  .t9rvg7 {
    padding: 40px 0 5px;
  }

  .jyysaj {
    padding: 30px 0 10px;
  }

  .yuwcuk {
    padding: 20px 0 15px;
  }

  .pn1dwo {
    padding: 50px 0 65px;
  }

  .mid7b8 {
    padding: 15px;
  }

  .mid7b8 p {
    font-size: 14px;
    line-height: 23px;
  }

  .bexe1d {
    width: 100%;
  }

  .aih0z7 {
    margin-right: 10px;
  }

  .i05ne9 {
    max-width: 331px;
    margin-left: auto;
    margin-right: auto;
  }

  .cb0zw1 {
    max-width: 264px;
    margin-left: auto;
    margin-right: auto;
  }

  .hv9dnn {
    font-size: 32px;
    line-height: 43px;
  }

  .bcgrjq {
    max-width: 207px;
    font-size: 10px;
    line-height: 13px;  
  }

  .n9rqub {
    padding: 30px 25px;
  }

  .n9rqub select {
    padding: 11px 15px;
  }

  .ha0wb2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 25px;
  }

  .hv9dnn {
    margin-bottom: 20px;
  }

  .ipapt6 {
    padding: 40px 0 35px;
  }

  .cfrj56 li {
    font-size: 15px;
    line-height: 25px;
    padding-left: 34px;
    margin-bottom: 15px;
  }

  .cfrj56 li::before {
    width: 24px;
    height: 24px;
    background-size: 60%;
    top: 0;
  }

  

  .c8hwkm {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 40px;
  }

  .bcgrjq {
    margin-top: 15px;
    margin-bottom: 0;
  }

  .lnnha5,
  .fwl000 {
    margin-top: 15px;
    font-size: 10px;
    line-height: 13px;
  }

  .n9rqub .iypgpp {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
  }

  .s3fe5c {
    font-size: 15px;
    line-height: 25px;
  }

  

  

  

  .oiv718 p {
    font-size: 14px;
    line-height: 21px;
  }

  


  

  

  

  

  


  

  

  
  
  
  
  

  .y2bk1i {
    max-width: 98px;
  }

  .knpirp li a {
    width: 32px;
    height: 32px;
  }

  .wdol9s {
    margin-bottom: 30px;
    padding-bottom: 5px;
  }

  .knpirp li a img {
    max-height: 80%;
  }

  .lbv1xw p {
    font-size: 15px;
    line-height: 22px;
  }

  .vuwmac,
  .xlx2uw li a {
    font-size: 15px;
    line-height: 20px;
  }

  .xlx2uw li {
    line-height: 18px;
    width: 50%;
    padding-right: 7px;
  }

  .a80lhh {
    margin: 0;
  }

  .rwjqou {
    margin-top: 40px;
  }

  .jwp2gc p {
    font-size: 12px;
    line-height: 16px;
  }

  .jwp2gc {
    margin-bottom: 30px;
    text-align: left;
  }

  .hox0xo {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--grey-medium-color);
  }

  .hox0xo p {
    font-size: 12px;
    line-height: 16px;
  }
}

@media (max-width: 575px) {
  .t2k95g {
    max-width: 161px;
  }
  .ha0wb2 {
    max-width: 213px;
    margin-left: auto;
    margin-right: auto;

  }
}

/* ===== TEXT LOGO OVERRIDES (domain name instead of SVG) ===== */
.ld99z6 {
  max-width: none !important;
  width: auto;
  font-weight: 600;
  font-size: 20px;
  color: var(--black-color);
  text-decoration: none;
}

.ld99z6:hover {
  opacity: 1;
  color: var(--violet-color);
  text-decoration: none;
}

.y2bk1i {
  max-width: none !important;
  width: auto;
  font-weight: 600;
  font-size: 18px;
  color: var(--white-color);
  text-decoration: none;
}

.y2bk1i:hover {
  color: var(--violet-light-color);
  text-decoration: none;
  opacity: 1;
}

/* Footer top — выравнивание по центру (нет address-блока) */
.ktc82d {
  align-items: center;
}

/* ===== S-CITIES — Choose your city block ===== */
.mfvpi9 {
  padding: 0 0 60px;
}

.hdbjlq {
  font-size: 22px;
  font-weight: 600;
  color: var(--violet-color);
  margin-bottom: 1.25rem;
}

.x4ydoq {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--grey-medium-color);
  border-radius: 8px;
  overflow: hidden;
}

.zt0wpe {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--violet-color);
  text-decoration: none;
  border-right: 1px solid var(--grey-medium-color);
  border-bottom: 1px solid var(--grey-medium-color);
  transition: background var(--transition), color var(--transition);
  line-height: 1.4;
}

.zt0wpe:hover {
  background-color: var(--violet-light-color);
  color: var(--violet-accent-color);
  text-decoration: none;
}

.zt0wpe:nth-child(4n) {
  border-right: none;
}

@media (max-width: 992px) {
  .x4ydoq {
    grid-template-columns: repeat(3, 1fr);
  }
  .zt0wpe:nth-child(4n) {
    border-right: 1px solid var(--grey-medium-color);
  }
  .zt0wpe:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .x4ydoq {
    grid-template-columns: repeat(2, 1fr);
  }
  .zt0wpe:nth-child(3n) {
    border-right: 1px solid var(--grey-medium-color);
  }
  .zt0wpe:nth-child(2n) {
    border-right: none;
  }
}

/* ===== ARTICLE CONTENT TYPOGRAPHY ===== */
.voxlsx {
  line-height: 1.7;
}

.voxlsx p {
  margin: 0 0 18px;
}

.voxlsx h1 {
  font-size: 34px;
  line-height: 1.25;
  margin: 0 0 24px;
}

.voxlsx h2 {
  font-size: 26px;
  line-height: 1.3;
  margin: 44px 0 16px;
}

.voxlsx h3 {
  font-size: 21px;
  line-height: 1.35;
  margin: 36px 0 12px;
}

.voxlsx h4 {
  font-size: 18px;
  line-height: 1.4;
  margin: 28px 0 10px;
}

.voxlsx h5 {
  font-size: 16px;
  line-height: 1.45;
  margin: 22px 0 8px;
}

.voxlsx h6 {
  font-size: 14px;
  line-height: 1.5;
  margin: 18px 0 8px;
}

.voxlsx ul,
.voxlsx ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.voxlsx ul {
  list-style-type: disc;
}

.voxlsx ol {
  list-style-type: decimal;
}

.voxlsx li {
  margin-bottom: 6px;
  padding-left: 0;
}

.voxlsx li::before {
  display: none;
}

/* ===== LANGUAGE SWITCHER ===== */
.bk8mvi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.bk8mvi a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.bk8mvi a:hover,
.bk8mvi a.is-active {
  color: var(--white-color);
  text-decoration: none;
}

.bk8mvi span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== DISCLAIMER paragraph spacing ===== */
.jwp2gc p + p {
  margin-top: 8px;
}
