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

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

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

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

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

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

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

.oh0soc {
  width: 25%;
}

.hka96q {
  width: 33.3333%;
}

.zte4f1 {
  width: 41.666667%;
}

.cl89r4 {
  width: 50%;
}

.wexdbi {
  width: 100%;
}

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

.jokiyj {
  flex: 1;
}

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

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

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

  .hdomgw {
    width: 58.3333%;
  }

  .id8ewo {
    width: 50%;
  }

  .e476to {
    width: 41.6666%;
  }

  .tx61h8 {
    flex-direction: row;
  }
}

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

  .ioi4h6 {
    width: 58.3333%;
  }

  .xrh4b3 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.ekjp2h:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.af4phc {
  flex-shrink: 0;
}

.af4phc .s1cphb {
  padding-left: 42px;
  padding-right: 42px;
}

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

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

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

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

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

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

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

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

.o9xbzj.ivq2vh .wfrvoc {
  border-color: var(--violet-color);
}

.o9xbzj.zron6j .wfrvoc {
  border-color: var(--green-color);
}

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

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

.lflfg3 .wfrvoc:first-child::before,
.lflfg3 .wfrvoc:last-child::before,
.lm8ept .wfrvoc:first-child::before {
  content: '';
  position: absolute;
  width: 62px;
  height: 58px;
}

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

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

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

.o9xbzj.zron6j .lflfg3 .wfrvoc:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.o9xbzj.zron6j .lflfg3 .wfrvoc:last-child::before {
  background-image: url(../images/arrow-4.svg);
}

.o9xbzj.zron6j .lm8ept .wfrvoc:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.lflfg3 .wfrvoc:last-child,
.lm8ept .wfrvoc:last-child { 
  margin-left: auto;
}

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

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

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

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

.pkl05f {
  flex: 1;
}

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

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

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

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

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

.xdh84q {
  margin-top: 20px;
}

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

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

.e742jt {
  margin: 20px 0;
}

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

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

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


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

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

.tkm5mr {
  margin: 0 15px;
}

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

.yfdwax:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.qnce40 {
  margin-top: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

.ob18da {
  display: flex;
}

.dcm1id {
  text-align: center;
}

.juuq3n {
  align-items: center;
} 

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

.vy1u43 {
  justify-content: center;
}

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

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

  .lflfg3 .wfrvoc:first-child::before,
  .lm8ept .wfrvoc:first-child::before {
    left: 50px;
  }

  
}

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

  .lflfg3 .wfrvoc:first-child::before,
  .lm8ept .wfrvoc:first-child::before {
    left: 0;
  }

  .ayofjr {
    display: inline-flex;
  }

  .atgco1 {
    height: 90px;
  }

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

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

  .gvnjlu ul {
    display: block;
  }

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

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

  .af4phc {
    display: none;
  }

  .af4phc .s1cphb {
    width: 180px;
  }

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

  .g09rgz {
    margin-right: 0;
  }
}

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

  .esey8h {
    margin-bottom: 30px;
  }

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

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

  .pxp30n {
    margin-right: 5px;
  }

  .uh71iy {
    width: 152px;
  }

  .x4lj36 {
    margin-bottom: 30px;
  }

  .oaim5w,
  .k4zfst {
    margin-bottom: 25px;
    text-align: center;
  }

  .g09rgz {
    display: none;
  }

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

  .eral5s,
  .gjtmqf {
    text-align: center;
  }

  .mwygap {
    padding: 80px 0;
  }

  

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

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

  .ekjp2h {
    max-width: 69px;
  }

  .dn1y2b {
    text-align: center;
  }

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

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

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

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

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

  .lflfg3, .lm8ept {
    width: 100%;
    margin: 0;
  }

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

  .o9xbzj.zron6j .lflfg3 .wfrvoc:last-child::before {
    background-image: url(../images/arrow-3.svg);
    left: -20px;
    bottom: 0;
    top: calc(100% - 15px);
  }

  .lflfg3 .wfrvoc:first-child::before,
  .lm8ept .wfrvoc:first-child::before {
    top: calc(100% - 15px);
    left: -20px;
  }

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

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

  

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

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

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

  .af4phc .s1cphb {
    width: 114px;
  }

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

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

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

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

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

  .wfrvoc {
    padding: 15px;
  }

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

  .e76xla {
    width: 100%;
  }

  .yn4v1l {
    margin-right: 10px;
  }

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

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

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

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

  .hyxesk {
    padding: 30px 25px;
  }

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

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

  .eral5s {
    margin-bottom: 20px;
  }

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

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

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

  

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

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

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

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

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

  

  

  

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

  


  

  

  

  

  


  

  

  
  
  
  
  

  .yfdwax {
    max-width: 98px;
  }

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

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

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

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

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

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

  .tkm5mr {
    margin: 0;
  }

  .qnce40 {
    margin-top: 40px;
  }

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

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

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

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

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

  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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