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

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

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

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

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

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

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

.cr353h {
  width: 25%;
}

.b4kuej {
  width: 33.3333%;
}

.b32zw2 {
  width: 41.666667%;
}

.eba7ir {
  width: 50%;
}

.l1qe5r {
  width: 100%;
}

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

.spyqbi {
  flex: 1;
}

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

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

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

  .iu3bna {
    width: 33.3333%;
  }

  .s6mn5c {
    width: 58.3333%;
  }

  .esmawu {
    width: 66.6666%;
  }

  .tcmkuw {
    width: 50%;
  }

  .xtjzcr {
    width: 41.6666%;
  }

  .d42bqk {
    flex-direction: row;
  }
}

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

  .jghryl {
    width: 50%;
  }

  .sjpr1w {
    width: 58.3333%;
  }

  .mw72yq {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.olb7n7:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.t8gaau {
  flex-shrink: 0;
}

.t8gaau .tlizq8 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.ma3dxu {
  padding: 60px 0;
}

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

.imcpzi {
  margin-bottom: 60px;
}

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

.v1v146.liejsc {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

.drepl2::before {
  display: none;
}

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

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

.b4s0h5 .ox00c1,
.b4s0h5 p {
  color: var(--white-color);
}

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

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

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

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

.phh9h4 {
  padding: 60px 0;
}

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

.obckfa .l7nhzm {
  margin-bottom: 25px;
}

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

.ajny3t .l7nhzm {
  background-color: var(--white-color);
  padding: 20px;
}

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

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

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

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

.j9fgly::before {
  display: none;
}

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

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

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

.uxbd8e ul {
  margin: 0;
}

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

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

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

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

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

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

.tglfkn {
  margin: 20px auto 0;
}

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

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

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

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

.fhttq9,
.gn2w8x {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.w3u0y0 textarea {
  height: 155px;
}

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

.w3u0y0.qvgmi2 {
  min-height: 460px;
}

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

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

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

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

.dbzr9n {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.b305hj {
  margin: 0 15px;
}

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

.cd8rsn:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.yhxvrj {
  margin: 0;
}

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

.yhxvrj.k4drul li {
  width: calc(50% - 5px);
}

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

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

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

.xc3nmj {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.fdz2t4 {
  display: flex;
}

.oduocx {
  text-align: center;
}

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

.jkkk8v {
  align-items: center;
} 

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

.ld2nmg {
  justify-content: center;
}

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

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

  .fob2u1 {
    display: inline-flex;
  }

  .olb7n7,
  .cd8rsn {
    max-width: 60px;
  }

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

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

  .bl1tw8 ul {
    display: block;
  }

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

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

  .t8gaau {
    margin-top: 15px;
  }

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

  .l4ny2x {
    margin-right: 0;
  }
}

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

  .pd3fky {
    margin-bottom: 30px;
  }

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

  .j0hp9f {
    margin-right: 7px;
  }

  .qxyrjv {
    width: 152px;
  }

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

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

  .l4ny2x {
    display: none;
  }

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

  .iw9eee,
  .rvkduh {
    text-align: center;
  }

  .rmhyg5 {
    margin: 10px 0;
  }

  .e41uyb {
    padding: 80px 0;
  }

  .xa7pz9,
  .ix16ti {
    margin-left: auto;
    margin-right: auto;
  }

  .y9i6gz {
    max-width: 100%;
  }

  .ymskws {
    width: 100%;
  }

  .w3u0y0 {
    margin-bottom: 40px;
  }

  .f0rcsg {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .f0rcsg {
    padding: 6px 0;
  }

  .olb7n7 {
    max-width: 54px;
  }

  .cd8rsn {
    max-width: 54px;
  }

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

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

  .vyp3iu {
    margin-top: 25px;
  }

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

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

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

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

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

  .b4s0h5 {
    padding: 40px 0;
  }

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

  .ajny3t {
    padding: 40px 0;
  }

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

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

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

  .sjl1y9 .fybw39 {
    display: block;
  }

  .sjl1y9 .drepl2 {
    width: 100%;
    display: block;
  }

  .gt657i {
    padding-top: 75px;
  }

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

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

  .eax2ht {
    width: 100%;
  }

  .x49yrc {
    margin-right: 10px;
  }

  .ajny3t .l7nhzm {
    padding: 20px 10px;
  }

  .slmy4k,
  .rmhyg5 {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .zsqn9l {
    padding: 25px;
  }

  .iw9eee {
    margin-bottom: 20px;
  }

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

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

  .imcpzi {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .tglfkn {
    margin-top: 20px;
  }

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

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

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

  .ury4ul {
    display: block;
  }

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

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

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

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

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

  .fhttq9,
  .gn2w8x {
    padding: 45px 0 60px;
  }

  .u6r1yg {
    display: block;
  }

  .cco6sg {
    flex-direction: row;
  }

  .oxtnw7 {
    margin-right: 15px;
  }

  .dbzr9n {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .w3u0y0 textarea {
    height: 99px;
  }

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

  .ymwjb8 {
    margin-top: 20px;
  }

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

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

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

  .cco6sg {
    margin-bottom: 8px;
  }

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

  .drepl2 {
    margin-bottom: 20px;
  }

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

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

  .q4zd5g {
    padding-top: 47px;
  }

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

  .n9dm0c {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .b305hj {
    margin: 0;
  }

  .xc3nmj {
    margin-top: 15px;
  }

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

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

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

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

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

  .g515st {
    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.qcnpfp.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.q6hdg2/necolas/normalize.css */

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

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


.pn4uut{display:none!important;}
.gdy0ig{text-align:center!important;}
form .mgfgbx p, form .mgfgbx input, form .ymwjb8 p, form .ymwjb8 input{margin-bottom:0px!important;}
/* ===== PACK5 CUSTOM STYLES ===== */

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

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

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

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

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

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

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

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

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

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

.l4g52t[open] .dj6yy1::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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