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

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

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

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

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

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

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

.hu3erq {
  width: 25%;
}

.wmvala {
  width: 33.3333%;
}

.wo7pbj {
  width: 41.666667%;
}

.sjxl1d {
  width: 50%;
}

.gd6q3d {
  width: 100%;
}

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

.th03yn {
  flex: 1;
}

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

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

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

  .rlhvdd {
    width: 58.3333%;
  }

  .vbanly {
    width: 50%;
  }

  .r5bofk {
    width: 41.6666%;
  }

  .r4cnyf {
    flex-direction: row;
  }
}

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

  .eqsaxa {
    width: 58.3333%;
  }

  .cl01k2 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.o2bt9o:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.rgm9vt {
  flex-shrink: 0;
}

.rgm9vt .iyosq6 {
  padding-left: 42px;
  padding-right: 42px;
}

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

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

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

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

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

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

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

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

.s8w7k9.t5kgqy .k5k1r1 {
  border-color: var(--violet-color);
}

.s8w7k9.r1negh .k5k1r1 {
  border-color: var(--green-color);
}

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

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

.al5jud .k5k1r1:first-child::before,
.al5jud .k5k1r1:last-child::before,
.izp1jp .k5k1r1:first-child::before {
  content: '';
  position: absolute;
  width: 62px;
  height: 58px;
}

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

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

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

.s8w7k9.r1negh .al5jud .k5k1r1:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.s8w7k9.r1negh .al5jud .k5k1r1:last-child::before {
  background-image: url(../images/arrow-4.svg);
}

.s8w7k9.r1negh .izp1jp .k5k1r1:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.al5jud .k5k1r1:last-child,
.izp1jp .k5k1r1:last-child { 
  margin-left: auto;
}

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

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

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

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

.bpzsxu {
  flex: 1;
}

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

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

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

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

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

.wp3asx {
  margin-top: 20px;
}

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

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

.wlldgc {
  margin: 20px 0;
}

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

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

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


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

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

.tuuh34 {
  margin: 0 15px;
}

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

.lzglmr:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.as2uij {
  margin-top: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

.jodbjy {
  display: flex;
}

.czy3ah {
  text-align: center;
}

.cogde1 {
  align-items: center;
} 

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

.sxvcte {
  justify-content: center;
}

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

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

  .al5jud .k5k1r1:first-child::before,
  .izp1jp .k5k1r1:first-child::before {
    left: 50px;
  }

  
}

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

  .al5jud .k5k1r1:first-child::before,
  .izp1jp .k5k1r1:first-child::before {
    left: 0;
  }

  .bzycxy {
    display: inline-flex;
  }

  .ehh3v0 {
    height: 90px;
  }

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

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

  .qbl8go ul {
    display: block;
  }

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

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

  .rgm9vt {
    display: none;
  }

  .rgm9vt .iyosq6 {
    width: 180px;
  }

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

  .sp4asj {
    margin-right: 0;
  }
}

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

  .oark8n {
    margin-bottom: 30px;
  }

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

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

  .kboq16 {
    margin-right: 5px;
  }

  .pvt8lx {
    width: 152px;
  }

  .p9vc2x {
    margin-bottom: 30px;
  }

  .wcwdiq,
  .w6qwnz {
    margin-bottom: 25px;
    text-align: center;
  }

  .sp4asj {
    display: none;
  }

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

  .uejobq,
  .op17n7 {
    text-align: center;
  }

  .egqtmt {
    padding: 80px 0;
  }

  

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

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

  .o2bt9o {
    max-width: 69px;
  }

  .tlk17j {
    text-align: center;
  }

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

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

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

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

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

  .al5jud, .izp1jp {
    width: 100%;
    margin: 0;
  }

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

  .s8w7k9.r1negh .al5jud .k5k1r1:last-child::before {
    background-image: url(../images/arrow-3.svg);
    left: -20px;
    bottom: 0;
    top: calc(100% - 15px);
  }

  .al5jud .k5k1r1:first-child::before,
  .izp1jp .k5k1r1:first-child::before {
    top: calc(100% - 15px);
    left: -20px;
  }

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

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

  

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

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

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

  .rgm9vt .iyosq6 {
    width: 114px;
  }

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

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

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

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

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

  .k5k1r1 {
    padding: 15px;
  }

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

  .thr2d4 {
    width: 100%;
  }

  .xp3woe {
    margin-right: 10px;
  }

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

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

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

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

  .atee6q {
    padding: 30px 25px;
  }

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

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

  .uejobq {
    margin-bottom: 20px;
  }

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

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

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

  

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

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

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

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

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

  

  

  

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

  


  

  

  

  

  


  

  

  
  
  
  
  

  .lzglmr {
    max-width: 98px;
  }

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

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

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

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

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

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

  .tuuh34 {
    margin: 0;
  }

  .as2uij {
    margin-top: 40px;
  }

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

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

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

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

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

  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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