/* ===== VARIABLES ===== */
:root {
  --green-color: #009990;
  --green-dark-color: #0E6A65;
  --blue-color: #3E5879;
  --blue-dark-color: #213555;
  --sandy-color: #E9D8CD;
  --body-color: #FFFDF9;
  --text-color: #272727;
  --black-color: #252525;
  --white-color: #fff;
  --grey-color: #9E9E9E;
  --grey-medium-color: #DADADA;

  --primary-font: 'Open Sans';

  --transition: all .3s ease-in-out;
}

/* ===== GRID ===== */
:root {
  --grid-width: 1160px;
  --grid-gutter: 15px;
}

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

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

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

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

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

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

.zqxj12 {
  width: 25%;
}

.cu9trl {
  width: 33.3333%;
}

.ustyy3 {
  width: 41.666667%;
}

.nsuu7f {
  width: 50%;
}

.s95btr {
  width: 100%;
}

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

.h7tuci {
  flex: 1;
}

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

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

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

  .zprp53 {
    width: 33.3333%;
  }

  .bj1f1r {
    width: 58.3333%;
  }

  .mwqi1g {
    width: 66.6666%;
  }

  .afdlo7 {
    width: 50%;
  }

  .lz1d3r {
    width: 41.6666%;
  }

  .m5mbbp {
    flex-direction: row;
  }
}

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

  .nwu9na {
    width: 50%;
  }

  .cvx6qb {
    width: 58.3333%;
  }

  .blk6o0 {
    width: 41.6666%;
  }

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

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

  .ar86ks {
    flex-direction: row;
  }
}

/* ===== MAIN ===== */

* {
  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(--body-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(--blue-dark-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(--blue-dark-color);
}

.vnxizf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 34px;
  background-color: var(--green-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);
}

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

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

.nav5jq {
  max-width: 258px;
  width: 100%;
  transition: var(--transition);
  border: 0;
  font-weight: 600;
}

.nav5jq:hover {
  opacity: .9;
}

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

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

.deeyfj.b3amds {
  transform: translateX(0);
}

.afyok4.b3amds {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

.wo48g1 ul li a:hover {
  color: var(--blue-dark-color);
  border-color: var(--blue-dark-color);
}

.ufef01 {
  flex-shrink: 0;
}

.ufef01 .vnxizf {
  padding-left: 45px;
  padding-right: 45px;
}

.ge55ua {
  position: relative;
  background-color: var(--blue-color);
  padding: 60px 0 47px;
}

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

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

.n60cfq {
  padding: 60px 0;
}

.d19td8 {
  margin: 5px 0 20px;
}

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

.u9fi21,
.xyeh8h {
  width: calc(50% - 15px);
}

.u9fi21 .hjlxfq:first-child,
.xyeh8h .hjlxfq:last-child {
  height: 240px;
}

.u9fi21 .hjlxfq:last-child,
.xyeh8h .hjlxfq:first-child {
  height: 140px;
}

.hjlxfq {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 30px;
  background-color: var(--blue-color);
}

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

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

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

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

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

.xn5ys6 {
  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(--blue-dark-color);
  background-color: var(--sandy-color);
  transition: background-color var(--transition);
}

.xn5ys6:hover {
  background-color: #dccfc3;
}

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

.omu7d9[open] .xn5ys6::after {
  transform: rotate(90deg);
}

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

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

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

.alyl6u li a:hover {
  background: var(--body-color);
  color: var(--blue-dark-color);
}

/* ===== CONTENT TYPOGRAPHY (s-intro + article-content) ===== */
.n60cfq,
.gdp8ma {
  line-height: 1.7;
}

.n60cfq p,
.gdp8ma p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.n60cfq ul,
.gdp8ma ul {
  list-style-type: disc;
}

.n60cfq ol,
.gdp8ma ol {
  list-style-type: decimal;
}

.n60cfq li,
.gdp8ma li {
  margin-bottom: 6px;
  padding-left: 0;
}

.n60cfq li::before,
.gdp8ma li::before {
  display: none;
}

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

.fi3e22.thiykx {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

.ho2aur {
  font-family: 'Oldenburg';
  text-align: center;
  font-size: 30px;
  line-height: 37px;
  min-width: 26px;
  margin-right: 20px;
}

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

.tzse10::before {
  display: none;
}

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

.kushto {
  padding: 50px 0 80px;
  background-color: var(--blue-color);
}

.kushto .sncruy,
.kushto p {
  color: var(--white-color);
}

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

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

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

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

.x6twvp {
  padding: 60px 0;
}

.x6twvp .fi3e22 {
  margin-top: 45px;
}

.v7brjt {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin: -115px -15px 0;
}

.dh806l {
  padding: 20px 25px;
  width: calc(33.3333% - 30px);
  margin: 0 15px 30px;
  background-color: var(--white-color);
  border: 1px solid var(--blue-color);
}

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

.ww53m6 {
  float: right;
  margin-left: 30px;
  margin-top: 20px;
}

.ipcxvm {
  padding: 50px 0;
  background-color: var(--blue-color);
  color: var(--white-color);
}

.ipcxvm .sncruy,
.ipcxvm p {
  color: var(--white-color);
}

.ipcxvm .md1xvg {
  background-color: var(--white-color);
  padding: 20px 25px;
  margin: 10px 0 30px;
}

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

.md1xvg {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

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

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

.tzse10::before {
  display: none;
}

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

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

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

.j4qkqg ul {
  margin: 0;
}

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

.acuyia {
  padding: 30px 20px;
  width: 100%;
  margin: 0 auto;
}

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

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

.g1ghmb {
  margin: 20px auto 0;
}

.ph2sjo {
  font-size: 11px;
  line-height: 15px;
  margin: 15px auto 0;
  width: 100%;
  max-width: 335px;
  text-align: center;
  font-weight: 300;
  color: var(--text-color);
}

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

.sncruy {
  margin: 0 0 24px;
  font-size: 34px;
  color: var(--black-color);
  line-height: 1.25;
  font-weight: 600;
}

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

.kny8sb,
.a94ky0 {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.p9v1v0 textarea {
  height: 155px;
}

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

.p9v1v0.qwpude {
  min-height: 460px;
}

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

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

.yewzit {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 40px;
  border: 1px solid var(--blue-color);
  padding: 20px 25px;
  max-width: 495px;
  width: 100%;
}

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

.buwud2 {
  padding-top: 2px;
}

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

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

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

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

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

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

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

.pj6i6q {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  border: 1px solid var(--blue-color);
  padding: 20px 25px;
  width: 100%;
  max-width: 495px;
} 

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

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

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

.tnunom {
  padding-top: 60px;
  background-color: var(--blue-dark-color);
}

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

.zud9c9 {
  margin: 0 15px;
}

.vamv10 {
  max-width: 254px;
  width: 100%;
  font-weight: 600;
  color: var(--white-color);
}

.vamv10:hover {
  opacity: .9;
}

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

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

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

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

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

.ya7wdl li a:hover {
  background-color: var(--green-dark-color);
}

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

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

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

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

.dk5s46 {
  margin: 0;
}

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

.dk5s46.hwq3pc li {
  width: calc(50% - 5px);
}

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

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

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

.lwgo5e {
  margin-top: 35px;
}

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

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

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

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

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

.h5aaqd {
  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; }
  .h5aaqd:hover {
    opacity: 0.7; }
  .h5aaqd.b3amds:hover {
    opacity: 0.7; }
  .h5aaqd.b3amds .jyil57,
  .h5aaqd.b3amds .jyil57::before,
  .h5aaqd.b3amds .jyil57::after {
    background-color: var(--blue-dark-color); }

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

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

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

.np4g7x.b3amds .jyil57 {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .np4g7x.b3amds .jyil57::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .np4g7x.b3amds .jyil57::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

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

.yikb78 {
  display: flex;
}

.d12rgk {
  text-align: center;
}

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

.earbs4 {
  align-items: center;
} 

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

.q8kizz {
  justify-content: center;
}

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

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

  .h5aaqd {
    display: inline-flex;
  }

  .nav5jq,
  .vamv10 {
    max-width: 157px;
  }

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

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

  .wo48g1 ul {
    display: block;
  }

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

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

  .ufef01 {
    margin-top: 15px;
  }

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

  .f941ag {
    margin-right: 0;
  }
}

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

  .llq2ph {
    margin-bottom: 30px;
  }

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

  .zjuq03 {
    margin-right: 7px;
  }

  .kywui7 {
    width: 152px;
  }

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

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

  .u9fi21 .hjlxfq:first-child,
  .xyeh8h .hjlxfq:last-child {
    height: 150px;
  }

  .u9fi21 .hjlxfq:last-child,
  .xyeh8h .hjlxfq:first-child {
    height: 114px;
  }

  .f941ag {
    display: none;
  }

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

  .ww53m6 {
    float: none;
    margin: 0 0 25px;
    text-align: center;
  }

  .sjw7rl,
  .wh74rw {
    text-align: center;
  }

  .ckvqvj {
    margin: 10px 0;
  }

  .n09cye {
    padding: 80px 0;
  }

  .pj6i6q,
  .yewzit {
    margin-left: auto;
    margin-right: auto;
  }

  .s2k9ql {
    max-width: 100%;
  }

  .p9v1v0 {
    margin-bottom: 40px;
  }

  .ymeiyv {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .ymeiyv {
    padding: 6px 0;
  }

  .nav5jq,
  .vamv10 {
    max-width: 157px;
  }

  .x6twvp {
    padding: 50px 0 80px;
  }

  .v7brjt {
    margin-top: -90px;
  }

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

  .zoc5py {
    max-width: 21px;
    margin-right: 10px;
  }

  .hjlxfq {
    margin-bottom: 10px;
  }

  .hjlxfq img {
    max-width: 40%;
  }

  .u9fi21, 
  .xyeh8h {
    width: calc(50% - 5px);
  }

  .pwgnab {
    margin-bottom: 15px;
  }

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

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

  .kushto {
    padding: 40px 0 64px;
  }

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

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

  .x6twvp .fi3e22 {
    margin-top: 35px;
  }

  .ww53m6 {
    max-width: 300px;
    margin: 0 auto 25px;
  }

  .ipcxvm .md1xvg {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

  .ho2aur {
    font-size: 24px;
    line-height: 20px;
    margin-right: 10px;
    margin-top: 5px;
    min-width: 21px;
  }

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

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

  .x9aerx .md1xvg {
    display: block;
  }

  .x9aerx .tzse10 {
    width: 100%;
    display: block;
  }

  .deeyfj {
    padding-top: 75px;
  }

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

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

  .z5efto {
    width: 100%;
  }

  .n9xtlv {
    margin-right: 10px;
  }

  .ipcxvm .j5uns7 {
    padding: 20px 10px;
  }

  .m1ez1q,
  .ckvqvj {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .acuyia {
    padding: 25px;
  }

  .sjw7rl {
    margin-bottom: 20px;
  }

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

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

  .rtxz81 {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .g1ghmb {
    margin-top: 20px;
  }

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

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

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

  .fwgnup {
    display: block;
  }

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

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

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

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

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

  .kny8sb,
  .a94ky0 {
    padding: 45px 0 60px;
  }

  .ifjocs {
    display: block;
  }

  .eelveq {
    flex-direction: row;
  }

  .bwi825 {
    margin-right: 15px;
  }

  .buwud2 {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .p9v1v0 textarea {
    height: 99px;
  }

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

  .m1dtqz {
    margin-top: 20px;
  }

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

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

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

  .eelveq {
    margin-bottom: 8px;
  }

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

  .tzse10 {
    margin-bottom: 20px;
  }

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

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

  .tnunom {
    padding-top: 47px;
  }

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

  .ig2z6m {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .zud9c9 {
    margin: 0;
  }

  .lwgo5e {
    margin-top: 15px;
  }

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

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

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

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

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

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