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

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

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

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

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

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

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

.akw18w {
  width: 25%;
}

.sc50d3 {
  width: 33.3333%;
}

.vpy5ol {
  width: 41.666667%;
}

.bt0ps3 {
  width: 50%;
}

.d5j7og {
  width: 100%;
}

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

.azcome {
  flex: 1;
}

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

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

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

  .f95fm2 {
    width: 58.3333%;
  }

  .dooy6n {
    width: 50%;
  }

  .ldwc6q {
    width: 41.6666%;
  }

  .om9tdv {
    flex-direction: row;
  }
}

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

  .dhfdm8 {
    width: 58.3333%;
  }

  .xmzh6m {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.q9lpxx:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.n16ov6 {
  flex-shrink: 0;
}

.n16ov6 .ni35oa {
  padding-left: 42px;
  padding-right: 42px;
}

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

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

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

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

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

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

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

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

.t39jo6.zc430v .ojm5od {
  border-color: var(--violet-color);
}

.t39jo6.ls63b5 .ojm5od {
  border-color: var(--green-color);
}

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

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

.f87hse .ojm5od:first-child::before,
.f87hse .ojm5od:last-child::before,
.aadw96 .ojm5od:first-child::before {
  content: '';
  position: absolute;
  width: 62px;
  height: 58px;
}

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

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

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

.t39jo6.ls63b5 .f87hse .ojm5od:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.t39jo6.ls63b5 .f87hse .ojm5od:last-child::before {
  background-image: url(../images/arrow-4.svg);
}

.t39jo6.ls63b5 .aadw96 .ojm5od:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.f87hse .ojm5od:last-child,
.aadw96 .ojm5od:last-child { 
  margin-left: auto;
}

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

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

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

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

.cflwjx {
  flex: 1;
}

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

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

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

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

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

.g104ti {
  margin-top: 20px;
}

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

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

.j986yr {
  margin: 20px 0;
}

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

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

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


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

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

.xwew8b {
  margin: 0 15px;
}

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

.xwgbd4:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.xer3qy {
  margin-top: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

.wxxsch {
  display: flex;
}

.ul9kyj {
  text-align: center;
}

.qe57wq {
  align-items: center;
} 

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

.a7l1y9 {
  justify-content: center;
}

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

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

  .f87hse .ojm5od:first-child::before,
  .aadw96 .ojm5od:first-child::before {
    left: 50px;
  }

  
}

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

  .f87hse .ojm5od:first-child::before,
  .aadw96 .ojm5od:first-child::before {
    left: 0;
  }

  .e62ay3 {
    display: inline-flex;
  }

  .y1g3kl {
    height: 90px;
  }

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

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

  .uqp09g ul {
    display: block;
  }

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

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

  .n16ov6 {
    display: none;
  }

  .n16ov6 .ni35oa {
    width: 180px;
  }

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

  .e2nri6 {
    margin-right: 0;
  }
}

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

  .xto5t2 {
    margin-bottom: 30px;
  }

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

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

  .ow5cq5 {
    margin-right: 5px;
  }

  .yhomh6 {
    width: 152px;
  }

  .txzn5z {
    margin-bottom: 30px;
  }

  .lx78ew,
  .k1r46p {
    margin-bottom: 25px;
    text-align: center;
  }

  .e2nri6 {
    display: none;
  }

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

  .bs37ag,
  .ipwn8k {
    text-align: center;
  }

  .qnx0sr {
    padding: 80px 0;
  }

  

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

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

  .q9lpxx {
    max-width: 69px;
  }

  .ao6zje {
    text-align: center;
  }

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

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

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

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

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

  .f87hse, .aadw96 {
    width: 100%;
    margin: 0;
  }

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

  .t39jo6.ls63b5 .f87hse .ojm5od:last-child::before {
    background-image: url(../images/arrow-3.svg);
    left: -20px;
    bottom: 0;
    top: calc(100% - 15px);
  }

  .f87hse .ojm5od:first-child::before,
  .aadw96 .ojm5od:first-child::before {
    top: calc(100% - 15px);
    left: -20px;
  }

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

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

  

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

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

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

  .n16ov6 .ni35oa {
    width: 114px;
  }

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

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

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

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

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

  .ojm5od {
    padding: 15px;
  }

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

  .m26vny {
    width: 100%;
  }

  .rhggt0 {
    margin-right: 10px;
  }

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

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

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

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

  .qz6xrx {
    padding: 30px 25px;
  }

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

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

  .bs37ag {
    margin-bottom: 20px;
  }

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

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

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

  

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

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

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

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

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

  

  

  

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

  


  

  

  

  

  


  

  

  
  
  
  
  

  .xwgbd4 {
    max-width: 98px;
  }

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

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

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

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

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

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

  .xwew8b {
    margin: 0;
  }

  .xer3qy {
    margin-top: 40px;
  }

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

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

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

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

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

  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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