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

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

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

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

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

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

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

.hscy44 {
  width: 25%;
}

.srajq5 {
  width: 33.3333%;
}

.cw4ecu {
  width: 41.666667%;
}

.ubyx7z {
  width: 50%;
}

.kcjobc {
  width: 100%;
}

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

.x96573 {
  flex: 1;
}

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

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

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

  .mvkhtf {
    width: 33.3333%;
  }

  .tvh16w {
    width: 58.3333%;
  }

  .vf9eek {
    width: 66.6666%;
  }

  .ttooh1 {
    width: 50%;
  }

  .gc3m4v {
    width: 41.6666%;
  }

  .ornm5e {
    flex-direction: row;
  }
}

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

  .a7hgbe {
    width: 50%;
  }

  .jzxk39 {
    width: 58.3333%;
  }

  .wfupfe {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.lzqa7z:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.k9pi6m {
  flex-shrink: 0;
}

.k9pi6m .cuj29p {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.was6r6 {
  padding: 60px 0;
}

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

.bmpcnh {
  margin-bottom: 60px;
}

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

.aaa3g2.k9rtb4 {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

.sotrpz::before {
  display: none;
}

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

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

.vjqrg8 .szigwl,
.vjqrg8 p {
  color: var(--white-color);
}

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

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

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

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

.ev7fpm {
  padding: 60px 0;
}

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

.kv5w71 .tydhkf {
  margin-bottom: 25px;
}

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

.vlbn1h .tydhkf {
  background-color: var(--white-color);
  padding: 20px;
}

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

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

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

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

.gy701l::before {
  display: none;
}

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

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

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

.uwtfuk ul {
  margin: 0;
}

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

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

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

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

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

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

.hq1ms9 {
  margin: 20px auto 0;
}

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

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

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

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

.gqwnfk,
.y8lshf {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.ut36os textarea {
  height: 155px;
}

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

.ut36os.tbgxl9 {
  min-height: 460px;
}

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

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

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

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

.z98wtg {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.a044ot {
  margin: 0 15px;
}

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

.duqyly:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.qvzfrw {
  margin: 0;
}

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

.qvzfrw.kw2qec li {
  width: calc(50% - 5px);
}

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

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

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

.c82wyf {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.sbiq2x {
  display: flex;
}

.gjebvd {
  text-align: center;
}

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

.m0xnwm {
  align-items: center;
} 

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

.u39dex {
  justify-content: center;
}

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

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

  .qx37rd {
    display: inline-flex;
  }

  .lzqa7z,
  .duqyly {
    max-width: 60px;
  }

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

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

  .wu6j4u ul {
    display: block;
  }

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

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

  .k9pi6m {
    margin-top: 15px;
  }

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

  .v53jye {
    margin-right: 0;
  }
}

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

  .gvv3e1 {
    margin-bottom: 30px;
  }

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

  .ocf8ip {
    margin-right: 7px;
  }

  .xwrnzq {
    width: 152px;
  }

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

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

  .v53jye {
    display: none;
  }

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

  .lm5jkj,
  .gxct33 {
    text-align: center;
  }

  .ze8ti7 {
    margin: 10px 0;
  }

  .lucz3h {
    padding: 80px 0;
  }

  .ho7lzp,
  .ilmx8n {
    margin-left: auto;
    margin-right: auto;
  }

  .ykkp64 {
    max-width: 100%;
  }

  .usnx5c {
    width: 100%;
  }

  .ut36os {
    margin-bottom: 40px;
  }

  .hlyeiq {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .hlyeiq {
    padding: 6px 0;
  }

  .lzqa7z {
    max-width: 54px;
  }

  .duqyly {
    max-width: 54px;
  }

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

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

  .hevpv6 {
    margin-top: 25px;
  }

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

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

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

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

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

  .vjqrg8 {
    padding: 40px 0;
  }

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

  .vlbn1h {
    padding: 40px 0;
  }

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

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

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

  .ycd5k4 .dkxyr0 {
    display: block;
  }

  .ycd5k4 .sotrpz {
    width: 100%;
    display: block;
  }

  .tvv89c {
    padding-top: 75px;
  }

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

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

  .osipxs {
    width: 100%;
  }

  .wpqwfd {
    margin-right: 10px;
  }

  .vlbn1h .tydhkf {
    padding: 20px 10px;
  }

  .w2rc8y,
  .ze8ti7 {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .ma6ati {
    padding: 25px;
  }

  .lm5jkj {
    margin-bottom: 20px;
  }

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

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

  .bmpcnh {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .hq1ms9 {
    margin-top: 20px;
  }

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

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

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

  .sn8540 {
    display: block;
  }

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

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

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

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

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

  .gqwnfk,
  .y8lshf {
    padding: 45px 0 60px;
  }

  .efh4rp {
    display: block;
  }

  .p8pel6 {
    flex-direction: row;
  }

  .ish8uu {
    margin-right: 15px;
  }

  .z98wtg {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .ut36os textarea {
    height: 99px;
  }

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

  .rm87hu {
    margin-top: 20px;
  }

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

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

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

  .p8pel6 {
    margin-bottom: 8px;
  }

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

  .sotrpz {
    margin-bottom: 20px;
  }

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

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

  .h0exup {
    padding-top: 47px;
  }

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

  .epba4c {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .a044ot {
    margin: 0;
  }

  .c82wyf {
    margin-top: 15px;
  }

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

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

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

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

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

  .xqcfb1 {
    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.irz9ap.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.rtoy9z/necolas/normalize.css */

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

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


.d1lx5h{display:none!important;}
.p9zb2a{text-align:center!important;}
form .sg4gax p, form .sg4gax input, form .rm87hu p, form .rm87hu input{margin-bottom:0px!important;}
/* ===== PACK5 CUSTOM STYLES ===== */

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

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

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

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

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

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

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

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

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

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

.t06dpf[open] .o5n5ko::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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