.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.hidden {
  display: none;
}
.inline {
  display: inline !important;
}
.inline-block {
  display: inline-block !important;
}
.block {
  display: block !important;
}
.text--left {
  text-align: left;
}
.text--right {
  text-align: right;
}
.text--center {
  text-align: center;
}
.text--justify {
  text-align: justify;
}
.img--fluid {
  max-width: 100%;
  height: auto;
}
.img--div {
  height: 100%;
  width: auto;
  max-width: 100%;
}
.img--icon {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.pointer {
  cursor: pointer;
}
sup {
  vertical-align: super;
  font-size: smaller;
}
a {
  text-decoration: none;
  color: #000;
  transition: color 0.5s ease;
}
a:hover {
  text-decoration: none;
  color: #1a3c90;
  transition: color 0.5s ease;
}
h1 {
  color: #f39b0a;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.02em;
  margin: 20px 0;
  font-family: "Baloo 2", sans-serif;
}
.like-h1 {
  color: #f39b0a;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.02em;
  margin: 20px 0;
  font-family: "Baloo 2", sans-serif;
}
h2,
.like-h2 {
  font-family: "Baloo 2", sans-serif;
}
h3,
.like-h3 {
  color: #4aa144;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
  font-family: "Baloo 2", sans-serif;
}
h3,
.like-h3 {
  color: #4aa144;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
  font-family: "Baloo 2", sans-serif;
}
.subtitle {
  font-style: normal;
  font-weight: 700;
}

::-webkit-input-placeholder {
  color: #b5b5b5;
}
::-moz-placeholder {
  color: #b5b5b5;
}
:-ms-input-placeholder {
  color: #b5b5b5;
}
:-moz-placeholder {
  color: #b5b5b5;
}

.flex {
  display: flex;
  width: 100%;
}
.flex--centered {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.flex--42-58 > *:first-child {
  flex-basis: 42%;
}
.flex--42-58 > *:last-child {
  text-align: right;
  flex-basis: 58%;
}
.flex--50-50 > * {
  flex-basis: 50%;
}
.flex--50-50 > *:last-child {
  text-align: right;
}
.flex--58-42 > *:first-child {
  flex-basis: 58%;
}
.flex--58-42 > *:last-child {
  text-align: right;
  flex-basis: 42%;
}
.flex--65-35 > *:first-child {
  flex-basis: 65%;
}
.flex--65-35 > *:last-child {
  text-align: left;
  flex-basis: 35%;
}

.flex--center {
  align-items: center;
}
.flex--start {
  align-items: flex-start;
}
.flex--end {
  align-items: flex-end;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--content-center {
  justify-content: center;
}
.flex--space-between {
  justify-content: space-between;
}
.flex--space-around {
  justify-content: space-around;
}
.flex--column {
  flex-direction: column;
}
.flex--content-end {
  justify-content: flex-end;
}

.white {
  color: #fff;
}
.brown {
  color: #a56a1d;
}
.black {
  color: #000;
}
.red {
  color: #e10022;
}
.dark-blue {
  color: #1d3247;
}
.gold {
  color: #ebc491;
}
.bold,
b,
strong {
  font-weight: 700;
}
.italic {
  font-style: i talic;
}
.super {
  vertical-align: super;
  font-size: 50%;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: none;
}
.line-through {
  text-decoration: line-through;
}
.nodecoration {
  text-decoration: none;
}
.nowrap {
  white-space: nowrap;
}
.absolute--full {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.slick-arrow {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #f2f2f2;
  position: absolute;
  top: calc(50% - 47px);
  font-size: 0;
  width: 60px;
  cursor: pointer;
  height: 60px;
  border-radius: 50%;
  z-index: 10;
  border: 0;
}
.slick-arrow.slick-disabled,
.slick-arrow.slick-disabled:hover,
.slick-arrow.slick-disabled:active {
  background-color: #f7f7f7;
}
.slick-next {
  right: -70px;
  background-image: url(/img/icons/icon__arrow--right.svg);
}
.slick-prev {
  left: -70px;
  background-image: url(/img/icons/icon__arrow--left.svg);
}
.slick-arrow.slick-disabled.slick-next,
.slick-arrow.slick-disabled.slick-next:hover,
.slick-arrow.slick-disabled.slick-next:active {
  right: -70px;
  background-image: url(/img/icons/icon__arrow--right--disable.svg);
}
.slick-arrow.slick-disabled.slick-prev,
.slick-arrow.slick-disabled.slick-prev:hover,
.slick-arrow.slick-disabled.slick-prev:active {
  left: -70px;
  background-image: url(/img/icons/icon__arrow--left--disable.svg);
}
.slick-arrow:hover,
.slick-arrow:active {
  background-color: #e2e2e2;
}
.slick-prev:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
}
.slick-next:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
}
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 0;
}
.slick-dots li {
  text-indent: -99999px;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  border-radius: 50%;
  background: none #f2f2f2;
  list-style: none;
}
.slick-dots li.slick-active {
  background: none #1a3c90;
}

@media only screen and (max-width: 640px) {
  h2 {
    font-size: 29px;
  }
  .slick-arrow {
    top: calc(50% - 35px);
    font-size: 0;
    width: 40px;
    cursor: pointer;
    height: 40px;
    z-index: 10;
  }
  .slick-prev:after {
    width: 50%;
    height: 50%;
    margin: 0 auto;
    background-size: contain;
  }
  .slick-next:after {
    width: 50%;
    height: 50%;
    margin: 0 auto;
    background-size: contain;
  }
  .slick-next {
    right: -50px;
  }
  .slick-prev {
    left: -50px;
  }
  .slick-arrow.slick-disabled.slick-next,
  .slick-arrow.slick-disabled.slick-next:hover,
  .slick-arrow.slick-disabled.slick-next:active {
    right: -50px;
  }
  .slick-arrow.slick-disabled.slick-prev,
  .slick-arrow.slick-disabled.slick-prev:hover,
  .slick-arrow.slick-disabled.slick-prev:active {
    left: -50px;
  }
  .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    border-radius: 50%;
  }
}
