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

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

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

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

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

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

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

.yzx86e {
  width: 25%;
}

.g9jfg3 {
  width: 33.3333%;
}

.a683em {
  width: 41.666667%;
}

.dg4mys {
  width: 50%;
}

.k1koqw {
  width: 100%;
}

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

.s3dvbk {
  flex: 1;
}

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

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

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

  .z2reko {
    width: 58.3333%;
  }

  .v2g826 {
    width: 50%;
  }

  .she593 {
    width: 41.6666%;
  }

  .tbc7c6 {
    flex-direction: row;
  }
}

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

  .fcyabu {
    width: 58.3333%;
  }

  .o96ypu {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.zl7jc8:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.grmk64 {
  flex-shrink: 0;
}

.grmk64 .ftzzhk {
  padding-left: 42px;
  padding-right: 42px;
}

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

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

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

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

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

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

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

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

.toquga.v6p925 .fa48kw {
  border-color: var(--violet-color);
}

.toquga.nvl6xf .fa48kw {
  border-color: var(--green-color);
}

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

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

.e4koq1 .fa48kw:first-child::before,
.e4koq1 .fa48kw:last-child::before,
.j8a8i6 .fa48kw:first-child::before {
  content: '';
  position: absolute;
  width: 62px;
  height: 58px;
}

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

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

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

.toquga.nvl6xf .e4koq1 .fa48kw:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.toquga.nvl6xf .e4koq1 .fa48kw:last-child::before {
  background-image: url(../images/arrow-4.svg);
}

.toquga.nvl6xf .j8a8i6 .fa48kw:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.e4koq1 .fa48kw:last-child,
.j8a8i6 .fa48kw:last-child { 
  margin-left: auto;
}

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

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

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

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

.cfkq3v {
  flex: 1;
}

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

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

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

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

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

.rkks3s {
  margin-top: 20px;
}

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

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

.myo3h9 {
  margin: 20px 0;
}

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

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

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


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

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

.bqb1np {
  margin: 0 15px;
}

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

.bqj2j6:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.xfjopt {
  margin-top: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

.o3x1sj {
  display: flex;
}

.lbr3j1 {
  text-align: center;
}

.xark1s {
  align-items: center;
} 

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

.axamcw {
  justify-content: center;
}

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

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

  .e4koq1 .fa48kw:first-child::before,
  .j8a8i6 .fa48kw:first-child::before {
    left: 50px;
  }

  
}

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

  .e4koq1 .fa48kw:first-child::before,
  .j8a8i6 .fa48kw:first-child::before {
    left: 0;
  }

  .aug7eu {
    display: inline-flex;
  }

  .wf41mc {
    height: 90px;
  }

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

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

  .hv2djs ul {
    display: block;
  }

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

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

  .grmk64 {
    display: none;
  }

  .grmk64 .ftzzhk {
    width: 180px;
  }

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

  .s1oieh {
    margin-right: 0;
  }
}

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

  .f3lfso {
    margin-bottom: 30px;
  }

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

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

  .dt5dyq {
    margin-right: 5px;
  }

  .af55g2 {
    width: 152px;
  }

  .fva0o6 {
    margin-bottom: 30px;
  }

  .avhaup,
  .i3y8em {
    margin-bottom: 25px;
    text-align: center;
  }

  .s1oieh {
    display: none;
  }

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

  .tdqfae,
  .kc9hwf {
    text-align: center;
  }

  .da7okl {
    padding: 80px 0;
  }

  

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

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

  .zl7jc8 {
    max-width: 69px;
  }

  .vbnueu {
    text-align: center;
  }

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

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

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

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

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

  .e4koq1, .j8a8i6 {
    width: 100%;
    margin: 0;
  }

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

  .toquga.nvl6xf .e4koq1 .fa48kw:last-child::before {
    background-image: url(../images/arrow-3.svg);
    left: -20px;
    bottom: 0;
    top: calc(100% - 15px);
  }

  .e4koq1 .fa48kw:first-child::before,
  .j8a8i6 .fa48kw:first-child::before {
    top: calc(100% - 15px);
    left: -20px;
  }

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

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

  

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

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

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

  .grmk64 .ftzzhk {
    width: 114px;
  }

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

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

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

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

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

  .fa48kw {
    padding: 15px;
  }

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

  .hu7qfr {
    width: 100%;
  }

  .h6v87e {
    margin-right: 10px;
  }

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

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

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

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

  .bpme38 {
    padding: 30px 25px;
  }

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

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

  .tdqfae {
    margin-bottom: 20px;
  }

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

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

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

  

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

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

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

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

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

  

  

  

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

  


  

  

  

  

  


  

  

  
  
  
  
  

  .bqj2j6 {
    max-width: 98px;
  }

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

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

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

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

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

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

  .bqb1np {
    margin: 0;
  }

  .xfjopt {
    margin-top: 40px;
  }

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

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

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

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

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

  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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