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

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

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

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

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

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

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

.lwhg7d {
  width: 25%;
}

.y0mi56 {
  width: 33.3333%;
}

.c4w99x {
  width: 41.666667%;
}

.ab7xpp {
  width: 50%;
}

.v29pg6 {
  width: 100%;
}

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

.b0jfir {
  flex: 1;
}

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

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

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

  .e6ngcg {
    width: 33.3333%;
  }

  .a0jycp {
    width: 58.3333%;
  }

  .xehlhy {
    width: 66.6666%;
  }

  .q1xshj {
    width: 50%;
  }

  .tlg7zn {
    width: 41.6666%;
  }

  .rly1oi {
    flex-direction: row;
  }
}

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

  .y0x8wb {
    width: 50%;
  }

  .rrpfpq {
    width: 58.3333%;
  }

  .f8oro1 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.j4guoo:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.swfun6 {
  flex-shrink: 0;
}

.swfun6 .ssp6eo {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.c67o1z {
  padding: 60px 0;
}

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

.gaw424 {
  margin-bottom: 60px;
}

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

.bnoyqf.iddyui {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

.mqnbrp::before {
  display: none;
}

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

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

.dwdyv0 .qf7js0,
.dwdyv0 p {
  color: var(--white-color);
}

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

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

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

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

.qexbnt {
  padding: 60px 0;
}

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

.r8qzf3 .lzzcoq {
  margin-bottom: 25px;
}

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

.ih7rqx .lzzcoq {
  background-color: var(--white-color);
  padding: 20px;
}

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

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

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

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

.vgkyqm::before {
  display: none;
}

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

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

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

.osv4h8 ul {
  margin: 0;
}

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

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

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

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

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

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

.lom6q2 {
  margin: 20px auto 0;
}

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

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

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

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

.dtmrh4,
.htjib8 {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.kwlpz5 textarea {
  height: 155px;
}

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

.kwlpz5.gtxvtx {
  min-height: 460px;
}

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

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

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

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

.z62liu {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.g3fhfv {
  margin: 0 15px;
}

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

.xymtqy:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.tj2nkv {
  margin: 0;
}

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

.tj2nkv.tbex7l li {
  width: calc(50% - 5px);
}

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

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

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

.bydx2g {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.pm87ze {
  display: flex;
}

.ufmu0t {
  text-align: center;
}

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

.n0rr8g {
  align-items: center;
} 

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

.tlpxjd {
  justify-content: center;
}

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

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

  .qujyml {
    display: inline-flex;
  }

  .j4guoo,
  .xymtqy {
    max-width: 60px;
  }

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

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

  .lxskn5 ul {
    display: block;
  }

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

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

  .swfun6 {
    margin-top: 15px;
  }

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

  .jl25pu {
    margin-right: 0;
  }
}

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

  .wz9oyo {
    margin-bottom: 30px;
  }

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

  .zrx7ha {
    margin-right: 7px;
  }

  .rmv6h9 {
    width: 152px;
  }

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

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

  .jl25pu {
    display: none;
  }

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

  .wtgkrk,
  .g58wyr {
    text-align: center;
  }

  .sbeifa {
    margin: 10px 0;
  }

  .h9pkix {
    padding: 80px 0;
  }

  .zprut9,
  .x5bebh {
    margin-left: auto;
    margin-right: auto;
  }

  .suesr9 {
    max-width: 100%;
  }

  .w0dvhm {
    width: 100%;
  }

  .kwlpz5 {
    margin-bottom: 40px;
  }

  .y1ma49 {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .y1ma49 {
    padding: 6px 0;
  }

  .j4guoo {
    max-width: 54px;
  }

  .xymtqy {
    max-width: 54px;
  }

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

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

  .a8tycp {
    margin-top: 25px;
  }

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

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

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

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

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

  .dwdyv0 {
    padding: 40px 0;
  }

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

  .ih7rqx {
    padding: 40px 0;
  }

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

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

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

  .mj7uuo .jtb864 {
    display: block;
  }

  .mj7uuo .mqnbrp {
    width: 100%;
    display: block;
  }

  .u6xuuo {
    padding-top: 75px;
  }

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

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

  .rtc4br {
    width: 100%;
  }

  .p5nzgk {
    margin-right: 10px;
  }

  .ih7rqx .lzzcoq {
    padding: 20px 10px;
  }

  .ih5fv3,
  .sbeifa {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .ta48c9 {
    padding: 25px;
  }

  .wtgkrk {
    margin-bottom: 20px;
  }

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

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

  .gaw424 {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .lom6q2 {
    margin-top: 20px;
  }

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

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

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

  .nflztv {
    display: block;
  }

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

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

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

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

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

  .dtmrh4,
  .htjib8 {
    padding: 45px 0 60px;
  }

  .yu0uqi {
    display: block;
  }

  .c0jpra {
    flex-direction: row;
  }

  .m4jchj {
    margin-right: 15px;
  }

  .z62liu {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .kwlpz5 textarea {
    height: 99px;
  }

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

  .pacxvd {
    margin-top: 20px;
  }

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

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

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

  .c0jpra {
    margin-bottom: 8px;
  }

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

  .mqnbrp {
    margin-bottom: 20px;
  }

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

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

  .s4zdj5 {
    padding-top: 47px;
  }

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

  .nz35yn {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .g3fhfv {
    margin: 0;
  }

  .bydx2g {
    margin-top: 15px;
  }

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

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

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

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

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

  .ak489b {
    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.iqkatt.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.s57heb/necolas/normalize.css */

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

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


.orfwik{display:none!important;}
.eaqfo2{text-align:center!important;}
form .gfkdrt p, form .gfkdrt input, form .pacxvd p, form .pacxvd input{margin-bottom:0px!important;}
/* ===== PACK5 CUSTOM STYLES ===== */

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

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

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

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

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

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

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

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

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

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

.vzq90q[open] .sgpmm8::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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