/* 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;
}

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

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

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

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

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

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

.urikyd {
  width: 25%;
}

.eqwdnj {
  width: 33.3333%;
}

.ftuh3u {
  width: 41.666667%;
}

.ma11qg {
  width: 50%;
}

.pc413f {
  width: 100%;
}

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

.aqexk1 {
  flex: 1;
}

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

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

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

  .pxh512 {
    width: 58.3333%;
  }

  .y9gy5h {
    width: 50%;
  }

  .h5zbg6 {
    width: 41.6666%;
  }

  .ldwu2d {
    flex-direction: row;
  }
}

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

  .gpjn86 {
    width: 58.3333%;
  }

  .dz7rqf {
    width: 41.6666%;
  }

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

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

  .r82dap {
    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);
}

.mwdso2 {
  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);
}

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

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

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

.tce3k2:hover {
  opacity: .9;
}

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

.tasuuz {
  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);
}

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

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

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

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

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

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

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

.h7auys 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;
}

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

.eawv1o {
  flex-shrink: 0;
}

.eawv1o .mwdso2 {
  padding-left: 42px;
  padding-right: 42px;
}

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

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

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

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

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

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

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

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

.gztwxk.z5ehxz .io748u {
  border-color: var(--violet-color);
}

.gztwxk.h8tobr .io748u {
  border-color: var(--green-color);
}

.io748u {
  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;
}

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

.l8pai6 .io748u:first-child::before,
.l8pai6 .io748u:last-child::before,
.snye3j .io748u:first-child::before {
  content: '';
  position: absolute;
  width: 62px;
  height: 58px;
}

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

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

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

.gztwxk.h8tobr .l8pai6 .io748u:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.gztwxk.h8tobr .l8pai6 .io748u:last-child::before {
  background-image: url(../images/arrow-4.svg);
}

.gztwxk.h8tobr .snye3j .io748u:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.l8pai6 .io748u:last-child,
.snye3j .io748u:last-child { 
  margin-left: auto;
}

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

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

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

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

.xlxypn {
  flex: 1;
}

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

.tim9a1 {
  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;
}

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

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

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

.ceapvy {
  margin-top: 20px;
}

.doukyg {
  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);
}

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

.apb40h {
  margin: 20px 0;
}

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

.apb40h 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);
}

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


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

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

.j7dilv {
  margin: 0 15px;
}

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

.itv0rj:hover {
  opacity: .9;
}

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

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

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

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

.ufoocf 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;
}

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

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

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

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

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

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

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

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

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

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

.g102cs {
  margin-top: 50px;
}

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

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

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

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

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

.ungk5a {
  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; }
  .ungk5a:hover {
    opacity: 0.7; }
  .ungk5a.is-active:hover {
    opacity: 0.7; }
  .ungk5a.is-active .n8gda7,
  .ungk5a.is-active .n8gda7::before,
  .ungk5a.is-active .n8gda7::after {
    background-color: var(--violet-accent-color); }

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

.n8gda7 {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .n8gda7, .n8gda7::before, .n8gda7::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; }
  .n8gda7::before, .n8gda7::after {
    content: "";
    display: block; }
  .n8gda7::before {
    top: -10px; }
  .n8gda7::after {
    bottom: -10px; }

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

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

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

.bpr90g {
  display: flex;
}

.d69euh {
  text-align: center;
}

.g461xk {
  align-items: center;
} 

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

.kykia1 {
  justify-content: center;
}

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

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

  .l8pai6 .io748u:first-child::before,
  .snye3j .io748u:first-child::before {
    left: 50px;
  }

  
}

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

  .l8pai6 .io748u:first-child::before,
  .snye3j .io748u:first-child::before {
    left: 0;
  }

  .ungk5a {
    display: inline-flex;
  }

  .oq809c {
    height: 90px;
  }

  .slwglv {
    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%);
  }

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

  .h7auys ul {
    display: block;
  }

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

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

  .eawv1o {
    display: none;
  }

  .eawv1o .mwdso2 {
    width: 180px;
  }

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

  .ltgou5 {
    margin-right: 0;
  }
}

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

  .fsh25e {
    margin-bottom: 30px;
  }

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

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

  .kfxt4c {
    margin-right: 5px;
  }

  .tpist1 {
    width: 152px;
  }

  .ufoocf {
    margin-bottom: 30px;
  }

  .kp0vqj,
  .l4j0ci {
    margin-bottom: 25px;
    text-align: center;
  }

  .ltgou5 {
    display: none;
  }

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

  .y00szi,
  .sjpv7y {
    text-align: center;
  }

  .co0ttt {
    padding: 80px 0;
  }

  

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

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

  .tce3k2 {
    max-width: 69px;
  }

  .ze05oa {
    text-align: center;
  }

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

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

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

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

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

  .l8pai6, .snye3j {
    width: 100%;
    margin: 0;
  }

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

  .gztwxk.h8tobr .l8pai6 .io748u:last-child::before {
    background-image: url(../images/arrow-3.svg);
    left: -20px;
    bottom: 0;
    top: calc(100% - 15px);
  }

  .l8pai6 .io748u:first-child::before,
  .snye3j .io748u:first-child::before {
    top: calc(100% - 15px);
    left: -20px;
  }

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

  .io748u::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;
  }

  

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

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

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

  .eawv1o .mwdso2 {
    width: 114px;
  }

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

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

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

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

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

  .io748u {
    padding: 15px;
  }

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

  .sqbhke {
    width: 100%;
  }

  .pxamza {
    margin-right: 10px;
  }

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

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

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

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

  .tim9a1 {
    padding: 30px 25px;
  }

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

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

  .y00szi {
    margin-bottom: 20px;
  }

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

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

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

  

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

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

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

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

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

  

  

  

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

  


  

  

  

  

  


  

  

  
  
  
  
  

  .itv0rj {
    max-width: 98px;
  }

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

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

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

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

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

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

  .j7dilv {
    margin: 0;
  }

  .g102cs {
    margin-top: 40px;
  }

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

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

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

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

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

  }
}

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

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

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

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

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

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

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

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

.p469iv {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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