* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1360px) {
  .container {
    padding: 0 15px;
  }
}

h1 {
  font-size: 18px;
  margin: 0 0 15px;
}

h2 {
  font-size: 16px;
  margin: 0 0 15px;
}

img {
  width: 100%;
}

p, ul {
  margin: 0 0 15px;
}

ul {
  padding-left: 15px;
}
ul li {
  margin-bottom: 5px;
}

a {
  font-size: 18px;
  color: #4AA813;
}

.main .header .header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .main .header .header__logo a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.main .header .header__logo a img {
  max-width: 250px;
}
.main .site__content {
  margin: 50px 0;
}
.main .site__content .site__content-top {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 600;
}
.main .site__content .site__content-center {
  margin: 25px 0;
}
.main .site__content .site__content-center .swiper .swiper-button-prev, .main .site__content .site__content-center .swiper .swiper-button-next {
  background-color: #FFCE00;
  width: 44px;
  border-radius: 50%;
}
.main .site__content .site__content-center .swiper .swiper-button-prev::after, .main .site__content .site__content-center .swiper .swiper-button-next::after {
  color: #fff;
  font-size: 24px;
}
.main .site__content .site__content-bottom {
  position: relative;
}
.main .site__content .site__content-bottom::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 55px;
  left: 0;
  width: 100%;
  height: 4em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
}
.main .site__content .site__content-bottom #content {
  max-height: 210px;
  padding-bottom: 60px;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.main .site__content .site__content-bottom #readMore, .main .site__content .site__content-bottom #readLess {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #4AA813;
}
.main .site__content .site__content-bottom #readMore {
  margin-top: 25px;
}
.main .site__content .site__content-bottom #readLess {
  position: absolute;
  bottom: 10px;
}