/* === main.css === */
/* inlined: ../css/vars.css */
:root {
  --purple-color: #595AA3;
  --purple-light-color: #B0B1F7;
  --pink-color: #B259C2;
  --pink-dark-color: #8E379D;
  --text-color: #272727;
  --black-color: #252525;
  --black-color-2: #262727;
  --white-color: #fff;
  --grey-color: #9E9E9E;
  --grey-medium-color: #DADADA;

  --primary-font: 'Open Sans';

  --transition: all .3s ease-in-out;
}
/* inlined: ../css/grid.css */
:root {
  --grid-width: 1160px;
  --grid-gutter: 15px;
}

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

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

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

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

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

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

.pmeyhv {
  width: 25%;
}

.lwvp7u {
  width: 33.3333%;
}

.cnvzwg {
  width: 41.666667%;
}

.h9tljw {
  width: 50%;
}

.f620eu {
  width: 100%;
}

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

.eoars0 {
  flex: 1;
}

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

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

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

  .du15gt {
    width: 33.3333%;
  }

  .xkt8qe {
    width: 58.3333%;
  }

  .zjngat {
    width: 66.6666%;
  }

  .ofcpbt {
    width: 50%;
  }

  .jr156o {
    width: 41.6666%;
  }

  .p13bc9 {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .kxzeda {
    width: 25%;
  }

  .yz3row {
    width: 50%;
  }

  .ahlyq6 {
    width: 58.3333%;
  }

  .k5dd5o {
    width: 41.6666%;
  }

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

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

  .mgwqkb {
    flex-direction: row;
  }
}

* {
  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: #F5F5F5;
  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: #F5F5F5;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: .05em;
}

p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--text-color);
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

a {
  color: var(--purple-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: 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(--purple-color);
}

.e3heda {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 34px;
  background-color: var(--pink-color);
  color: var(--white-color);
  outline: none;
  font-family: var(--primary-font), sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: var(--transition);
}

.e3heda:hover,
.e3heda:active {
  background-color: var(--pink-dark-color);
  text-decoration: none;
}

.fqjiwn {
  position: relative;
  padding: 10px 0;
  background-color: var(--white-color);
  box-shadow: 0 1px 4px 0 rgba(132, 133, 204, 0.25)
}

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

.ealbol:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

.ausanp ul li * {
  display: inline-flex;
  color: var(--text-color);
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

.ausanp ul li a:hover {
  color: var(--purple-color);
  border-color: var(--purple-color);
}

.mlgqua {
  flex-shrink: 0;
}

.mlgqua .e3heda {
  padding-left: 45px;
  padding-right: 45px;
}

.qurv09 {
  position: relative;
  background-color: var(--purple-color);
  padding: 60px 0 45px;
}

.sa0s3b p {
  font-size: 18px;
  line-height: 30px;
  color: var(--white-color);
}

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

.lsk1q9 {
  padding: 60px 0;
}

.lsk1q9 h5 {
  margin-top: 50px;
}

.yoihnv {
  margin-bottom: 60px;
}

.h0023d {
  margin: 0 0 20px;
  font-size: 24px;
  display: inline-block;
  font-weight: 600;
  line-height: 32px;
  background-color: var(--purple-color);
  color: var(--white-color);
  padding: 5px 20px;
}

.h0023d.sl2eb9 {
  background-color: var(--white-color);
  color: var(--black-color);
}

.ctlze5 {
  margin: 20px 0 0;
  padding: 0;
  list-style-type: none;
}

.rjl1x5 {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}

.kmo4rn p:last-child {
  margin-bottom: 0;
}

.rjl1x5::before {
  display: none;
}

.rjl1x5 strong {
  font-weight: 700;
  margin-right: 15px;
  font-size: 24px;
  line-height: 30px;
  color: var(--white-color);
}

.w6ox0h {
  padding: 50px 0;
  background-color: var(--purple-color);
}

.w6ox0h .ypy6w8,
.w6ox0h p {
  color: var(--white-color);
}

.yonfxw {
  margin-top: 25px;
  padding: 20px;
  background-color: var(--white-color);
}

.wxbv57 {
  width: 100%;
  margin-bottom: 15px;
}

.wxbv57:last-child {
  margin-bottom: 0;
}

.va9e40 p {
  color: var(--black-color);
  margin-bottom: 0;
}

.yeqj6e {
  padding: 60px 0;
}

.n1sbyy {
  padding: 50px 0;
  background-color: var(--purple-light-color);
}

.n1sbyy .jqn171 {
  margin-bottom: 25px;
}

.v750a4 {
  padding: 50px 0;
  background-color: var(--purple-light-color);
}

.v750a4 .jqn171 {
  background-color: var(--white-color);
  padding: 20px;
}

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

.jqn171 {
  margin: 10px 0 0;
  padding: 0;
  list-style-type: none;
}

.mjl63z {
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 15px;
}

.mjl63z:last-child {
  margin-bottom: 0;
}

.mjl63z::before {
  display: none;
}

.nehsik {
  margin-right: 20px;
  margin-top: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mevn6l p {
  margin-bottom: 0;
  color: var(--black-color);
}

.mevn6l ul li {
  margin-bottom: 0;
}

.mevn6l ul {
  margin: 0;
}

.cqktw4 {
  padding: 60px 0 70px;
}

.vpdvud {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.t87ucu {
  width: 100%;
  max-width: 415px;
  background-color: var(--white-color);
  text-align: center;
  margin-left: auto;
}

.ckdbaq {
  padding: 30px 40px;
  width: 100%;
  margin: 0 auto;
}

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

.la8ecq {
  padding: 12px 40px;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: var(--black-color);
  background-color: var(--purple-light-color);
}

.bw9yv9 {
  margin: 20px auto 0;
}

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

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

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

.meiokd {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
  padding: 20px 15px 100px;
}

.sodooh,
.bbp9y4 {
  padding: 70px 0 80px;
}

.onqmey {
  max-width: 565px;
  width: 100%;
  margin: 0 auto 30px;
  background-color: var(--white-color);
  box-shadow: 0px 0px 20px 0 rgba(142, 142, 142, 0.3);
}

.ifuwfr {
  padding: 30px 82px 40px;
}

.g62wcc {
  padding: 15px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: var(--black-color);
  background-color: var(--purple-light-color);
  margin: 0;
  text-align: center;
}

.gzajek {
  font-size: 12px;
  line-height: 16px;
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
  font-weight: 300;
}

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

.onqmey input,
.onqmey select,
.onqmey textarea {
  margin-bottom: 20px;
}

.onqmey textarea {
  height: 155px;
}

.flozwc {
  margin: 25px auto 0;
  max-width: 335px;
}

.onqmey.t3ifkt {
  min-height: 460px;
}

.a54p4q {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(12px * -1) 25px;
}

.d5vqqw {
  width: 50%;
  padding: 0 12px;
}

.vzovzx {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 40px;
  background-color: rgba(176, 177, 247, 0.2);
  border: 1px solid var(--purple-color);
  padding: 20px 25px;
  max-width: 495px;
  width: 100%;
}

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

.n72u1l {
  padding-top: 2px;
}

.vkuiz6 {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  flex-shrink: 0;
}

.okxo8l {
  margin: 0 0 8px;
  display: block;
  line-height: 24px;
  color: var(--black-color);
}

.ibx966 {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
}

.hehb7u {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.hehb7u:last-child {
  margin-bottom: 0;
}

.hehb7u p {
  margin-right: 10px;
  margin-bottom: 0;
  line-height: 22px;
  width: 125px;
  flex-shrink: 0;
}

.hehb7u span {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.hrmcoi {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background-color: rgba(176, 177, 247, 0.2);
  border: 1px solid var(--purple-color);
  padding: 20px 25px;
  width: 100%;
  max-width: 495px;
} 

.jpanoy {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  flex-shrink: 0;
}

.ype0se {
  display: block;
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: var(--black-color);
}

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

.nzxnh9 {
  padding-top: 60px;
  background-color: var(--black-color-2);
}

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

.pfi7dx {
  margin: 0 15px;
}

.qegots {
  max-width: 254px;
  width: 100%;
}

.qegots:hover {
  opacity: .9;
}

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

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

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

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

.i4nokn li a {
  width: 36px;
  height: 36px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--purple-light-color);
  border: 0;
}

.i4nokn li a:hover {
  background-color: var(--purple-color);
}

.gm0uht {
  display: flex;
  align-items: flex-start;
  width: 252px;
  margin-top: 30px;
}

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

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

.luxgko {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: var(--white-color);
}

.amgf2r {
  margin: 0;
}

.amgf2r.m234fz {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.amgf2r.m234fz li {
  width: calc(50% - 5px);
}

.amgf2r li {
  margin: 0 0 15px 0;
  padding: 0;
  line-height: 20px;
}

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

.amgf2r li a {
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: var(--white-color);
}

.gsl20k {
  margin-top: 35px;
}

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

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

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

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

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

.emyhm7 {
  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; }
  .emyhm7:hover {
    opacity: 0.7; }
  .emyhm7.is-active:hover {
    opacity: 0.7; }
  .emyhm7.is-active .dkm3ox,
  .emyhm7.is-active .dkm3ox::before,
  .emyhm7.is-active .dkm3ox::after {
    background-color: var(--purple-color); }

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

.dkm3ox {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .dkm3ox, .dkm3ox::before, .dkm3ox::after {
    width: 40px;
    height: 3px;
    background-color: var(--purple-color);
    border-radius: 3px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .dkm3ox::before, .dkm3ox::after {
    content: "";
    display: block; }
  .dkm3ox::before {
    top: -10px; }
  .dkm3ox::after {
    bottom: -10px; }

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

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

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

.wzwux5 {
  display: flex;
}

.z7l1a2 {
  text-align: center;
}

.rrxm1b {
  color: var(--white-color);
}

.aw9ldl {
  align-items: center;
} 

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

.puscao {
  justify-content: center;
}

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

/* === media.css === */
@media (max-width: 1025px) {
  .ausanp ul li {
    margin-right: 25px;
  }

  .emyhm7 {
    display: inline-flex;
  }

  .ealbol,
  .qegots {
    max-width: 60px;
  }

  .htcf7m {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 90px 30px 30px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: 330px;
    z-index: 99;
    background-color: var(--white-color);
    transform: translateX(100%);
  }

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

  .ausanp ul {
    display: block;
  }

  .ausanp ul li {
    margin-right: 0;
    margin-bottom: 15px; 
  }

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

  .mlgqua {
    margin-top: 15px;
  }

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

  .i377dz {
    margin-right: 0;
  }
}

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

  .qi4d9r {
    margin-bottom: 30px;
  }

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

  .zgjepz {
    margin-right: 7px;
  }

  .gm0uht {
    width: 152px;
  }

  .nbvsnx {
    margin-bottom: 25px;
    text-align: center;
  }

  .nbvsnx {
    float: none;
    margin-right: 0;
  }

  .i377dz {
    display: none;
  }

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

  .chkb6b,
  .sa0s3b {
    text-align: center;
  }

  .sen3ag {
    margin: 10px 0;
  }

  .vc7vzx {
    padding: 80px 0;
  }

  .hrmcoi,
  .vzovzx {
    margin-left: auto;
    margin-right: auto;
  }

  .birdw8 {
    max-width: 100%;
  }

  .hqk6uq {
    width: 100%;
  }

  .onqmey {
    margin-bottom: 40px;
  }

  .fqjiwn {
    padding: 10px 0;
  }

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

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

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

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

@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);
  }

  .meiokd {
    padding: 10px 15px 65px;
  }

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

  .fqjiwn {
    padding: 6px 0;
  }

  .ealbol {
    max-width: 54px;
  }

  .qegots {
    max-width: 54px;
  }

  .yeqj6e {
    padding: 50px 0 35px;
  }

  .n1sbyy {
    padding: 40px 0 25px;
  }

  .to6tno {
    margin-top: 25px;
  }

  .hqk6uq {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 20px 15px;
    margin-bottom: 20px;
  }

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

  .kno2gb {
    max-width: 45px;
    flex-shrink: 0;
    margin-right: 15px;
  }

  .qurv09 {
    padding: 45px 0 25px;
  }

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

  .w6ox0h {
    padding: 40px 0;
  }

  .yonfxw {
    padding: 20px 15px;
    margin-top: 20px;
  }

  .v750a4 {
    padding: 40px 0;
  }

  .nehsik {
    margin-right: 10px;
    max-width: 15px;
  }

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

  .g890uv {
    padding: 40px 0 20px;
  }

  .g890uv .ctlze5 {
    display: block;
  }

  .g890uv .rjl1x5 {
    width: 100%;
    display: block;
  }

  .htcf7m {
    padding-top: 75px;
  }

  .g890uv .rjl1x5 strong {
    font-size: 18px;
    line-height: 30px;
    margin-right: 0;
    margin-bottom: 5px;
    display: block;
  }

  .rjl1x5 strong {
    margin-right: 10px;
  }

  .c0ed23 {
    width: 100%;
  }

  .icz0wp {
    margin-right: 10px;
  }

  .v750a4 .jqn171 {
    padding: 20px 10px;
  }

  .nbvsnx,
  .sen3ag {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .t87ucu select {
    padding: 9px 15px;
  }

  .la8ecq {
    font-size: 24px;
    line-height: 32px;
    padding: 10px 25px;
  }

  .ckdbaq {
    padding: 25px;
  }

  .chkb6b {
    margin-bottom: 20px;
  }

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

  .lsk1q9 h5 {
    margin-top: 40px;
  }

  .yoihnv {
    margin-bottom: 50px;
  }

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

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

  .vkuiz6 {
    width: 40px;
    height: 40px;
    padding: 3px;
  }

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

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

  .bw9yv9 {
    margin-top: 20px;
  }

  .tk6ubc {
    font-size: 10px;
    line-height: 13px;
  }

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

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

  .mfias4 {
    display: block;
  }

  .hrmcoi {
    margin-bottom: 20px;
    padding: 15px;
    width: 100%;
  }

  .jpanoy {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    padding: 4px;
  }

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

  .a54p4q {
    display: block;
    margin-bottom: 15px;
  }

  .d5vqqw {
    width: 100%;
    margin-bottom: 15px;
  }

  .sodooh,
  .bbp9y4 {
    padding: 45px 0 60px;
  }

  .qzw1n8 {
    display: block;
  }

  .hehb7u {
    flex-direction: row;
  }

  .vkuiz6 {
    margin-right: 15px;
  }

  .n72u1l {
    padding-top: 0;
  }

  .vzovzx {
    padding: 15px;
    margin-bottom: 20px;
    width: 100%;
  }

  .hehb7u span {
    font-size: 14px;
    line-height: 19px;
  }
  
  .q1hgpl {
    padding: 19px 0;
  }

  .iwjygj {
    font-size: 20px;
    line-height: 27px;
  }

  .g62wcc {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 25px;
  }

  .ifuwfr {
    padding: 25px 25px 30px;
  }

  .i4nokn {
    margin-top: 5px;
    margin-bottom: 0;
  }

  .gzajek {
    font-size: 10px;
    line-height: 13px;
  }

  .onqmey input, .onqmey select, .onqmey textarea {
    margin-bottom: 15px;
  }

  .onqmey textarea {
    height: 99px;
  }

  .qi4d9r {
    margin-bottom: 22px;
    flex-wrap: wrap;
  }

  .flozwc {
    margin-top: 20px;
  }

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

  .vzovzx p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 8px;
  }

  .hehb7u p {
    margin-bottom: 0;
    width: 109px;
  }

  .hehb7u {
    margin-bottom: 8px;
  }

  .h0023d {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
    padding: 5px 10px;
  }

  .rjl1x5 {
    margin-bottom: 20px;
  }

  .bbp9y4 {
    padding: 40px 0 60px;
  }

  .hehb7u strong {
    font-size: 14px;
    line-height: 21px;
  }

  .nzxnh9 {
    padding-top: 47px;
  }

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

  .fgrjfk {
    margin-bottom: 20px;
  }

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

  .gm0uht {
    margin-top: 20px;
    margin-bottom: 15px;
  }

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

  .amgf2r li a {
    font-size: 15px;
    line-height: 20px;
  }

  .luxgko {
    font-size: 16px;
    line-height: 21px;
  }

  .amgf2r {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }

  .amgf2r li {
    line-height: 18px;
    width: calc(50% - 5px);
  }

  .pfi7dx {
    margin: 0;
  }

  .gsl20k {
    margin-top: 15px;
  }

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

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

  .aknj4f {
    padding-top: 0;
    margin-bottom: 40px;
  }

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

@media (max-width: 575px) {
  .i377dz {
    max-width: 161px;
  }

  .t87ucu {
    max-width: 335px;
  }
}


/* === style.css === */
/*!
Theme Name: trc
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: lndr
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

lndr is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.uy5ad7.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.yei2nn/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */


.tdpxue{display:none!important;}
.in7vq6{text-align:center!important;}
form .ch99tg p, form .ch99tg input, form .flozwc p, form .flozwc input{margin-bottom:0px!important;}
/* ===== PACK5 CUSTOM STYLES ===== */

/* Text logo overrides (не SVG) */
.ealbol {
  max-width: none;
  width: auto;
  font-weight: 600;
  font-size: 20px;
  color: var(--black-color);
  text-decoration: none;
}
.ealbol:hover {
  opacity: 1;
  color: var(--purple-color);
  text-decoration: none;
}
.qegots {
  max-width: none;
  width: auto;
  font-weight: 600;
  font-size: 18px;
  color: var(--white-color);
  text-decoration: none;
}
.qegots:hover {
  color: var(--purple-light-color);
  text-decoration: none;
  opacity: 1;
}

/* Footer top — align-items: center (нет блока address) */
.qi4d9r {
  align-items: center;
}

/* ===== CITIES ===== */
.kizsfr {
  padding: 0 0 60px;
}

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

.k44414 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .k44414 {
    grid-template-columns: 1fr;
  }
}

.mu0tt4 {
  border: 1px solid var(--grey-medium-color);
  border-radius: 6px;
  overflow: hidden;
}

.fctty5 {
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--purple-color);
  background-color: #E8E8F8;
  transition: background-color var(--transition);
  margin: 0;
}

.fctty5:hover {
  background-color: #c5c5ec;
}

.fctty5::after {
  content: "▸";
  margin-left: auto;
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.mu0tt4[open] .fctty5::after {
  transform: rotate(90deg);
}

.enrgz6 {
  padding: 0.25rem 0 0.5rem;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--grey-medium-color);
}

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

.enrgz6 li {
  margin: 0;
  padding: 0;
}

.enrgz6 li a {
  display: block;
  padding: 0.2rem 1rem;
  font-size: 0.9rem;
  color: var(--purple-color);
  text-decoration: none;
  transition: background 0.15s;
}

.enrgz6 li a:hover {
  background: #f5f5ff;
  color: var(--pink-dark-color);
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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