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

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

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

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

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

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

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

.p0v4vk {
  width: 25%;
}

.ym0bvk {
  width: 33.3333%;
}

.e8hmuj {
  width: 41.666667%;
}

.kn0czz {
  width: 50%;
}

.s6weq1 {
  width: 100%;
}

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

.ulizsh {
  flex: 1;
}

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

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

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

  .b2kkxt {
    width: 33.3333%;
  }

  .gko2ff {
    width: 58.3333%;
  }

  .aauhkx {
    width: 66.6666%;
  }

  .sz6dt8 {
    width: 50%;
  }

  .veo640 {
    width: 41.6666%;
  }

  .kk8zg0 {
    flex-direction: row;
  }
}

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

  .wb0vrv {
    width: 50%;
  }

  .kgybph {
    width: 58.3333%;
  }

  .zjbmaj {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.pvsm3n:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.b028oa {
  flex-shrink: 0;
}

.b028oa .s1kqq3 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.nib28j {
  padding: 60px 0;
}

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

.si5xkh {
  margin-bottom: 60px;
}

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

.a3satw.eae7e1 {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

.ylqag4::before {
  display: none;
}

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

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

.y3qcyb .wbjm72,
.y3qcyb p {
  color: var(--white-color);
}

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

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

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

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

.uqvosj {
  padding: 60px 0;
}

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

.q1czf5 .n52zmq {
  margin-bottom: 25px;
}

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

.rrocu7 .n52zmq {
  background-color: var(--white-color);
  padding: 20px;
}

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

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

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

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

.fbcdkh::before {
  display: none;
}

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

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

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

.wlzyc3 ul {
  margin: 0;
}

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

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

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

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

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

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

.d44w61 {
  margin: 20px auto 0;
}

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

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

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

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

.l1t9q0,
.shx42w {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.v4ciri textarea {
  height: 155px;
}

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

.v4ciri.k8fh3j {
  min-height: 460px;
}

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

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

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

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

.n0c0ek {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.nh4aox {
  margin: 0 15px;
}

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

.z6jmp3:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.ffapwr {
  margin: 0;
}

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

.ffapwr.l1553x li {
  width: calc(50% - 5px);
}

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

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

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

.f1fjvb {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.j4ybgd {
  display: flex;
}

.bnzfrb {
  text-align: center;
}

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

.awnf9o {
  align-items: center;
} 

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

.hfwbe9 {
  justify-content: center;
}

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

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

  .dhnuyx {
    display: inline-flex;
  }

  .pvsm3n,
  .z6jmp3 {
    max-width: 60px;
  }

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

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

  .rai0hr ul {
    display: block;
  }

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

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

  .b028oa {
    margin-top: 15px;
  }

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

  .lx1vi2 {
    margin-right: 0;
  }
}

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

  .iqwxbe {
    margin-bottom: 30px;
  }

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

  .t31fj6 {
    margin-right: 7px;
  }

  .a7rgdz {
    width: 152px;
  }

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

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

  .lx1vi2 {
    display: none;
  }

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

  .sejqpz,
  .usizen {
    text-align: center;
  }

  .o0keho {
    margin: 10px 0;
  }

  .twzvnx {
    padding: 80px 0;
  }

  .w097e7,
  .ygt37u {
    margin-left: auto;
    margin-right: auto;
  }

  .r1ca3l {
    max-width: 100%;
  }

  .tpmk23 {
    width: 100%;
  }

  .v4ciri {
    margin-bottom: 40px;
  }

  .en1shz {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .en1shz {
    padding: 6px 0;
  }

  .pvsm3n {
    max-width: 54px;
  }

  .z6jmp3 {
    max-width: 54px;
  }

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

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

  .tin47a {
    margin-top: 25px;
  }

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

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

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

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

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

  .y3qcyb {
    padding: 40px 0;
  }

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

  .rrocu7 {
    padding: 40px 0;
  }

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

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

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

  .zgvpqj .am1xzn {
    display: block;
  }

  .zgvpqj .ylqag4 {
    width: 100%;
    display: block;
  }

  .g6ox8a {
    padding-top: 75px;
  }

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

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

  .bq4g2j {
    width: 100%;
  }

  .tousnp {
    margin-right: 10px;
  }

  .rrocu7 .n52zmq {
    padding: 20px 10px;
  }

  .oz0eta,
  .o0keho {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .sp1jnq {
    padding: 25px;
  }

  .sejqpz {
    margin-bottom: 20px;
  }

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

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

  .si5xkh {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .d44w61 {
    margin-top: 20px;
  }

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

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

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

  .sn92p3 {
    display: block;
  }

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

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

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

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

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

  .l1t9q0,
  .shx42w {
    padding: 45px 0 60px;
  }

  .x8a8qg {
    display: block;
  }

  .gqgrkl {
    flex-direction: row;
  }

  .t1pxh8 {
    margin-right: 15px;
  }

  .n0c0ek {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .v4ciri textarea {
    height: 99px;
  }

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

  .w8id1v {
    margin-top: 20px;
  }

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

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

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

  .gqgrkl {
    margin-bottom: 8px;
  }

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

  .ylqag4 {
    margin-bottom: 20px;
  }

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

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

  .n0ia7l {
    padding-top: 47px;
  }

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

  .to5347 {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .nh4aox {
    margin: 0;
  }

  .f1fjvb {
    margin-top: 15px;
  }

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

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

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

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

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

  .trok82 {
    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.gpn5dp.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.j52z13/necolas/normalize.css */

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

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


.pxe496{display:none!important;}
.xl9jq8{text-align:center!important;}
form .ymminf p, form .ymminf input, form .w8id1v p, form .w8id1v input{margin-bottom:0px!important;}
/* ===== PACK5 CUSTOM STYLES ===== */

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

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

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

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

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

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

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

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

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

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

.c5efq2[open] .rz3kag::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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