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

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

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

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

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

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

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

.tl56rf {
  width: 25%;
}

.nmb937 {
  width: 33.3333%;
}

.vo47k4 {
  width: 41.666667%;
}

.mt3xk2 {
  width: 50%;
}

.s7rjfe {
  width: 100%;
}

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

.lx3isw {
  flex: 1;
}

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

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

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

  .fn20sa {
    width: 58.3333%;
  }

  .mn7fte {
    width: 50%;
  }

  .mee5mj {
    width: 41.6666%;
  }

  .xl7j1b {
    flex-direction: row;
  }
}

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

  .irhsgi {
    width: 58.3333%;
  }

  .g40s7u {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.j2r2yi:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.m6fdfb {
  flex-shrink: 0;
}

.m6fdfb .jgmlfz {
  padding-left: 42px;
  padding-right: 42px;
}

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

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

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

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

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

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

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

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

.zvsmox.a41p90 .zu5e1i {
  border-color: var(--violet-color);
}

.zvsmox.un63e2 .zu5e1i {
  border-color: var(--green-color);
}

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

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

.pd3a7j .zu5e1i:first-child::before,
.pd3a7j .zu5e1i:last-child::before,
.ujxkpy .zu5e1i:first-child::before {
  content: '';
  position: absolute;
  width: 62px;
  height: 58px;
}

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

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

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

.zvsmox.un63e2 .pd3a7j .zu5e1i:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.zvsmox.un63e2 .pd3a7j .zu5e1i:last-child::before {
  background-image: url(../images/arrow-4.svg);
}

.zvsmox.un63e2 .ujxkpy .zu5e1i:first-child::before {
  background-image: url(../images/arrow-3.svg);
}

.pd3a7j .zu5e1i:last-child,
.ujxkpy .zu5e1i:last-child { 
  margin-left: auto;
}

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

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

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

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

.trnzsq {
  flex: 1;
}

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

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

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

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

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

.cxfqqj {
  margin-top: 20px;
}

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

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

.n2bvek {
  margin: 20px 0;
}

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

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

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


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

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

.ok131c {
  margin: 0 15px;
}

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

.i1i9qv:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sogbz5 {
  margin-top: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

.vqb8bd {
  display: flex;
}

.six04z {
  text-align: center;
}

.l3qm69 {
  align-items: center;
} 

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

.a5gzjx {
  justify-content: center;
}

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

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

  .pd3a7j .zu5e1i:first-child::before,
  .ujxkpy .zu5e1i:first-child::before {
    left: 50px;
  }

  
}

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

  .pd3a7j .zu5e1i:first-child::before,
  .ujxkpy .zu5e1i:first-child::before {
    left: 0;
  }

  .kicq33 {
    display: inline-flex;
  }

  .q5d0e2 {
    height: 90px;
  }

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

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

  .ephbst ul {
    display: block;
  }

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

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

  .m6fdfb {
    display: none;
  }

  .m6fdfb .jgmlfz {
    width: 180px;
  }

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

  .y4d3om {
    margin-right: 0;
  }
}

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

  .mh7tx0 {
    margin-bottom: 30px;
  }

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

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

  .fp4qx0 {
    margin-right: 5px;
  }

  .l94a99 {
    width: 152px;
  }

  .h3o1yx {
    margin-bottom: 30px;
  }

  .a07xlr,
  .pein42 {
    margin-bottom: 25px;
    text-align: center;
  }

  .y4d3om {
    display: none;
  }

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

  .p6brri,
  .hjgtt9 {
    text-align: center;
  }

  .li08xp {
    padding: 80px 0;
  }

  

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

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

  .j2r2yi {
    max-width: 69px;
  }

  .qxuidd {
    text-align: center;
  }

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

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

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

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

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

  .pd3a7j, .ujxkpy {
    width: 100%;
    margin: 0;
  }

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

  .zvsmox.un63e2 .pd3a7j .zu5e1i:last-child::before {
    background-image: url(../images/arrow-3.svg);
    left: -20px;
    bottom: 0;
    top: calc(100% - 15px);
  }

  .pd3a7j .zu5e1i:first-child::before,
  .ujxkpy .zu5e1i:first-child::before {
    top: calc(100% - 15px);
    left: -20px;
  }

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

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

  

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

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

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

  .m6fdfb .jgmlfz {
    width: 114px;
  }

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

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

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

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

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

  .zu5e1i {
    padding: 15px;
  }

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

  .peqc8d {
    width: 100%;
  }

  .zcshad {
    margin-right: 10px;
  }

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

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

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

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

  .gv7zbf {
    padding: 30px 25px;
  }

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

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

  .p6brri {
    margin-bottom: 20px;
  }

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

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

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

  

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

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

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

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

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

  

  

  

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

  


  

  

  

  

  


  

  

  
  
  
  
  

  .i1i9qv {
    max-width: 98px;
  }

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

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

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

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

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

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

  .ok131c {
    margin: 0;
  }

  .sogbz5 {
    margin-top: 40px;
  }

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

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

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

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

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

  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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