@charset "UTF-8";
@import "../fonts/stylesheet.css";
@import "./rtl-support.css";
html, body {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #3c3c3c;
  line-height: 20px;
  font-weight: 400;
  background: #fff;
}
body.active {
  overflow: hidden;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

h1 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 900;
}
h1.ex {
  font-size: 35px;
  line-height: 40px;
}
h1.large {
  font-size: 60px;
  line-height: 80px;
  font-weight: 700;
}

h2 {
  font-size: 35px;
  line-height: 40px;
}
h2.sm {
  font-size: 30px;
  line-height: 35px;
}

h3 {
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
}

h5 {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

h6 {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
}
h6.big {
  font-size: 18px;
  line-height: 22px;
}

p.lg {
  font-size: 18px;
  line-height: 25px;
}
p.big {
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
}

.main {
  overflow: hidden;
}
.main.sm {
  /* padding-top: 60px; */
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 14px;
}
.button.secondary {
  background-color: #7BC8EB;
  color: #fff;
}
.button.secondary:hover {
  opacity: 1;
  background-color: #fff;
  color: #3c3c3c;
}
.button.secondary:hover span::before {
  border-color: #3c3c3c;
}
.button.secondary span::before {
  border-color: #fff;
}
.button.primary {
  background-color: #809C2A;
  color: #fff;
  border: 1px solid #809C2A;
}
.button.primary:hover {
  opacity: 1;
  background-color: #7BC8EB;
  border-color: #7BC8EB;
}
.button.primary span::before {
  border-color: #fff;
}
.button.primary svg {
  color: #fff;
}
.button span {
  width: 7px;
  height: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 16px;
  position: relative;
}
.button span::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  border-top: 2px solid #809C2A;
  border-right: 2px solid #809C2A;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.button svg {
  width: 18px;
  height: 16px;
  color: inherit;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-left: 20px;
}

.select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.select.uniq select {
  padding: 7px 35px 7px 15px;
  color: #fff;
  background-color: #3c3c3c;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #fff;
}
.select.uniq::before {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-60%) rotate(135deg);
          transform: translateY(-60%) rotate(135deg);
}
.select select {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  font-size: 15px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  flex-direction: column;
  position: relative;
}
.input__outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.input__outer p {
  color: #3c3c3c;
  font-weight: 500;
  margin-bottom: 15px;
}
.input__outer .input {
  width: 100%;
}
.input.cont input,
.input.cont textarea {
  height: 100%;
  padding: 12px 20px;
  color: #3c3c3c;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #7BC8EB;
}
.input.cont input::-webkit-input-placeholder, .input.cont textarea::-webkit-input-placeholder {
  color: #e2e2e2;
}
.input.cont input::-moz-placeholder, .input.cont textarea::-moz-placeholder {
  color: #e2e2e2;
}
.input.cont input:-ms-input-placeholder, .input.cont textarea:-ms-input-placeholder {
  color: #e2e2e2;
}
.input.cont input::-ms-input-placeholder, .input.cont textarea::-ms-input-placeholder {
  color: #e2e2e2;
}
.input.cont input::placeholder,
.input.cont textarea::placeholder {
  color: #e2e2e2;
}
.input.uniq input {
  font-weight: 500;
  padding: 10px 15px;
  color: #fff;
  background-color: #3c3c3c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #fff;
}
.input input,
.input textarea {
  width: 100%;
  font-size: 15px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  resize: unset;
}

.input.cont span {
  align-self: flex-start;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.map__bg {
  padding-bottom: 34%;
  position: relative;
  min-height: 460px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.map__bg img,
.map__bg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  z-index: 1;
}
.map__bg iframe {
  z-index: 2;
}

.banner {
  position: relative;
  padding: 50px 0;
}
.banner.sm {
  padding: 0;
}
.banner .auto__container {
  max-width: 1080px;
}
.banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.video {
  width: 100%;
  padding-bottom: 56%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.video iframe,
.video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.quote {
  color: #fff;
  position: relative;
}
.quote.center {
  text-align: center;
  padding: 15px 75px 0;
}
.quote.center span {
  position: absolute;
  top: 0;
  left: 0;
}
.quote__text {
  font-size: 30px;
  line-height: 35px;
  font-weight: 900;
  margin-bottom: 15px;
}
.quote h5 {
  font-weight: 500;
}
.quote span {
  width: 48px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
.quote span img {
  width: 100%;
}
.quote span img.mob {
  display: none;
}

.basket {
  min-width: 400px;
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
}
.basket.active {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}
.basket__inner {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-width: 400px;
  color: #fff;
  background-color: #1F61AB;
  overflow-y: auto;
}
.basket__inner-head {
  color: #fff;
  position: relative;
  padding: 32px 24px 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 36px;
}
.basket__inner-head h5 {
  font-weight: 700;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.basket__inner-close {
  cursor: pointer;
  width: 14px;
  height: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  -webkit-transform: translate(0, -40%) rotate(45deg);
          transform: translate(0, -40%) rotate(45deg);
}
.basket__inner-close::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  content: "";
  background-color: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.basket__inner-close::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.basket__inner-close:hover {
  opacity: 0.8;
}
.basket__inner-content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 24px;
  color: #ffff;
  margin-bottom: 30px;
}
.basket__inner-content p.sm {
  font-size: 12px;
  line-height: 150%;
}
.basket__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
}
.basket__inner-row h5,
.basket__inner-row h6 {
  font-weight: 700;
}
.basket__inner-remove {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-top: 20px;
}
.basket__inner-remove:hover {
  text-decoration: underline;
  text-underline-position: under;
}
.basket__inner-remove svg {
  pointer-events: none;
  width: 10px;
  height: 10px;
  color: #fff;
  margin-right: 8px;
}
.basket__total {
  width: 100%;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
}
.basket__total-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}
.basket__total-title h5 {
  color: #393939;
  font-weight: 700;
}
.basket__total .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600;
  padding: 13px 0 !important;
  margin-bottom: 15px;
  border-radius: 10px;
}
.basket__total .button.primary:hover {
  background-color: #313131;
}
.basket__total .button.secondary:hover {
  background-color: #809C2A;
  color: #fff;
}
.basket__total .button:last-child {
  margin: 0;
}
.basketBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  height: 60px;
  min-width: 44px;
  position: relative;
}
.basketBtn n3o-cart-items-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.basketBtn__number {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 10px;
  line-height: 100%;
  font-weight: 600;
  background-color: #7BC8EB;
  margin-right: 5px;
  color: #fff;
}
.basketBtn__icon {
  display: none;
}
.basketBtn > b {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: #3c3c3c;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 0 20px 0 34px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}
.search.active .dropMenu {
  opacity: 1;
  visibility: visible;
}
.search .dropMenu__inner {
  padding: 0;
}
.search__form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 20px 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 300px;
}
.search__form input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 15px 15px 15px 60px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #3c3c3c;
}
.search__form input::-webkit-input-placeholder {
  color: #707070;
}
.search__form input::-moz-placeholder {
  color: #707070;
}
.search__form input:-ms-input-placeholder {
  color: #707070;
}
.search__form input::-ms-input-placeholder {
  color: #707070;
}
.search__form input::placeholder {
  color: #707070;
}
.search__form input:focus ~ button svg {
  color: #3c3c3c;
}
.searchBtn {
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: transparent;
}
.searchBtn:hover svg {
  color: #809C2A;
}
.searchBtn svg {
  width: 100%;
  height: 100%;
  color: #7BC8EB;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.search__icon {
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: transparent;
}
.search__icon:hover svg {
  color: #3c3c3c;
}
.search__icon svg {
  width: 100%;
  height: 100%;
  color: #7BC8EB;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  margin-right: 20px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}
.lang::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #9c9c9c;
  border-right: 2px solid #9c9c9c;
  content: "";
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
.lang__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lang:hover .dropMenu {
  opacity: 1;
  visibility: visible;
}
.lang__icon {
  width: 26px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.5px solid #707070;
  border-radius: 50%;
  padding: 1px;
}
.lang__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 50%;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
.header.big {
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px #00000016;
          box-shadow: 0px 2px 4px 0px #00000016;
  padding: 0;
}
.header.big .header__inner {
  background-color: transparent;
  border-radius: unset;
  height: 60px;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  padding: 0;
}
.header .auto__container {
  max-width: 1200px;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation-name: sticky;
          animation-name: sticky;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}
.header__inner {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  position: relative;
}
.header__inner-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-buttons > .button {
  min-width: 145px;
  max-height: 40px;
}
.header__inner-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 88px;
}
.header__inner-logo img {
  width: 100%;
}

@-webkit-keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 18px;
}
.nav__inner-links > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.nav__inner-links > li:last-child {
  margin: 0;
}
.nav__inner-link {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: #3c3c3c;
  position: relative;
  padding: 20px 6px;
  text-transform: uppercase;
}
.nav__inner-link:hover {
  opacity: 1;
}
.nav__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav__inner .search {
  display: none;
}
.nav__inner .button {
  display: none;
}

.drop {
  position: relative;
  cursor: pointer;
}
.drop:hover {
  opacity: 1;
}
.drop:hover .dropMenu {
  opacity: 1;
  visibility: visible;
}
.dropMenu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.dropMenu__inner {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
}
.dropMenu__inner::before {
  position: absolute;
  content: "";
  bottom: calc(100% - 1px);
  left: 50%;
  width: 15px;
  height: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
          transform: translate(-50%, 50%) rotate(45deg);
  z-index: -1;
}
.dropMenu__flags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.dropMenu__flags li {
  margin-bottom: 15px;
}
.dropMenu__flags span {
  width: 23px;
  height: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
}
.dropMenu__flags span img {
  width: 100%;
}
.dropMenu__flags a {
  color: #3c3c3c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dropMenu__flags a:hover {
  opacity: 1;
  text-decoration: underline;
}
.dropMenu__flags p::before {
  display: none;
}
.dropMenu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 240px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.dropMenu__list a {
  color: #3c3c3c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dropMenu__list a:hover {
  opacity: 1;
  text-decoration: underline;
}
.dropMenu li {
  margin-bottom: 20px;
}
.dropMenu li:last-child {
  margin: 0;
}

.burger {
  display: none;
}

.footer {
  padding: 70px 0;
  background: #3c3c3c;
  color: #fff;
  position: relative;
}
.footer .auto__container {
  max-width: 1060px;
}
.footer__inner {
  padding-bottom: 20px;
  border-bottom: 1px solid #7BC8EB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__info {
  width: 220px;
  margin-right: 30px;
}
.footer__info.mob {
  display: none;
}
.footer__info h5 {
  margin-bottom: 20px;
}
.footer__info-logo {
  width: 90%;
  max-width: 153px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 35px;
}
.footer__info-logo.big {
  width: 100%;
  max-width: 166px;
  margin: 25px 0 0 0;
}
.footer__info-logo img {
  width: 100%;
}
.footer__form {
  width: calc(100% - 250px);
  max-width: 640px;
}
.footer__form h3 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #7BC8EB;
}
.footer__form p {
  margin-bottom: 10px;
}
.footer__form p:last-child {
  margin-bottom: 0;
}
.footer__form .button {
  margin-bottom: 20px;
  background-color: #7BC8EB;
  border-radius: 10px;
  color: #3c3c3c;
  padding: 10px 18px;
}
.footer__form .button:hover {
  background-color: #fff;
}
.footer__form .button span::before {
  border-color: #3c3c3c;
}
.footer .input {
  width: calc(50% - 20px);
  margin: 10px;
}
.footer .input__row {
  margin: 0 -10px 10px -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .input input {
  border: 1px solid #7BC8EB;
  background: transparent;
  color: #fff;
  border-radius: 10px;
  background: transparent;
  padding: 10px 16px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.footer .input input::-webkit-input-placeholder {
  color: #fff;
}
.footer .input input::-moz-placeholder {
  color: #fff;
}
.footer .input input:-ms-input-placeholder {
  color: #fff;
}
.footer .input input::-ms-input-placeholder {
  color: #fff;
}
.footer .input input::placeholder {
  color: #fff;
}
.footer .check {
  position: relative;
  margin-bottom: 20px;
}
.footer .check input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.footer .check input:checked + label::before {
  background: #7BC8EB;
  border: 1px solid #7BC8EB;
}
.footer .check input:checked + label::after {
  opacity: 1;
}
.footer .check label {
  display: block;
  padding-left: 32px;
  position: relative;
}
.footer .check label::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #7BC8EB;
  background: transparent;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0;
}
.footer .check label::after {
  position: absolute;
  content: "";
  width: 4px;
  left: 8px;
  top: 50%;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  opacity: 0;
}
.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px 0 35px;
}
.footer__main-row {
  width: calc(100% - 180px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__main-col {
  width: calc(25% - 6px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__main-col a {
  margin-bottom: 13px;
}
.footer__main-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__main-contact h6 {
  text-transform: uppercase;
  color: #7BC8EB;
  margin-bottom: 15px;
  font-weight: 600;
}
.footer__main-socials {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__main-socials a {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 16px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.footer__main-socials a:hover {
  opacity: 0.8;
}
.footer__main-socials a:last-child {
  margin-right: 0;
}
.footer__main-socials a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.footer__copy p {
  margin-bottom: 15px;
}
.footer__copy p:last-child {
  margin: 0;
}

.help {
  padding: 50px 0;
}
.help.gray {
  background-color: rgba(0, 0, 0, 0.05);
}
.help.big {
  padding-top: 0;
}
.help.big .help__inner-slider {
  padding: 0;
}
.help.big .help__inner .slick-dots {
  display: none !important;
}
.help__inner-title {
  margin-bottom: 40px;
  text-align: center;
}
.help__inner-slider {
  margin: 0 -15px;
}
.help__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.help__inner-row .helpItem {
  width: calc(33.3% - 10px);
  max-width: 382px;
}
.help__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.help__inner .slick-slide {
  height: unset !important;
  margin: 0 15px;
}
.help__inner .slick-dots {
  display: none;
}
.helpItem {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background-color: #e3e3e3;
}
.helpItem__content {
  padding: 20px 20px 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.helpItem__image {
  width: 100%;
  padding-bottom: 52%;
  position: relative;
}
.helpItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.helpItem__link {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: 600;
}
.helpItem__link:hover {
  opacity: 1;
  color: #F7D961;
}
.helpItem__link:hover span {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}
.helpItem__link:hover span::before {
  border-color: #F7D961;
}
.helpItem__link span {
  width: 7px;
  height: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 16px;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.helpItem__link span::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.helpItem .button {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
.helpItem .button:hover {
  background-color: #3c3c3c;
  color: #fff;
}
.helpItem .button:hover span::before {
  border-color: #fff;
}
.helpItem h6 {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  padding: 5px 10px;
  background-color: #1F61AB;
  margin-bottom: 10px;
}
.helpItem h6.blue {
  background-color: #7BC8EB;
}
.helpItem h5 {
  font-weight: 600;
  margin-bottom: 15px;
  max-width: 250px;
}
.helpItem p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about__inner {
  padding-bottom: 30px;
  position: relative;
}
.about__inner-slider {
  width: 50%;
}
.about__inner-content {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about__inner-content .aboutItem {
  padding: 80px 40px;
}
.about__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.about__inner .slick-slide {
  height: unset !important;
}
.about__inner .slick-list {
  height: 100% !important;
}
.about__inner .slick-arrow {
  width: 32px;
  height: 32px;
  position: absolute;
  z-index: 1;
  top: unset;
  bottom: 24px;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.about__inner .slick-arrow:hover {
  opacity: 1;
}
.about__inner .slick-arrow:hover::before {
  background: url("../images/icons/arrow-right-orange.svg") no-repeat center;
  background-size: contain;
}
.about__inner .slick-arrow::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 1;
}
.about__inner .slick-prev {
  right: calc(50% + 10px);
  left: unset;
}
.about__inner .slick-prev::before {
  content: "";
  background: url("../images/icons/arrow-right-blue.svg") no-repeat center;
  background-size: contain;
  opacity: 1;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.about__inner .slick-next {
  left: calc(50% + 10px);
  right: unset;
}
.about__inner .slick-next::before {
  content: "";
  background: url("../images/icons/arrow-right-blue.svg") no-repeat center;
  background-size: contain;
  opacity: 1;
}
.about__inner .slick-dots {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about__inner .slick-dots li {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 15px 0 0;
  background-color: #ededed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about__inner .slick-dots li.slick-active {
  background-color: #7BC8EB;
}
.about__inner .slick-dots li:last-child {
  margin: 0;
}
.about__inner .slick-dots li button {
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0;
  background-color: transparent;
}
.about__inner .slick-dots li button::before {
  display: none;
}
.aboutItem {
  padding: 40px 40px 120px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.aboutItem.pink h3 {
  color: #ff0973;
}
.aboutItem.pink h2 {
  color: #3c3c3c;
}
.aboutItem.pink p a {
  color: #ff0973;
}
.aboutItem.base {
  padding: 40px 40px 120px 40px;
}
.aboutItem.base .aboutItem__title-name {
  max-width: 450px;
}
.aboutItem.base h3 {
  color: #3c3c3c;
  font-weight: 700;
}
.aboutItem.base h2 {
  color: #3c3c3c;
}
.aboutItem__image {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  width: 100%;
}
.aboutItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.aboutItem__title {
  margin-bottom: 30px;
}
.aboutItem__title-name {
  color: #7BC8EB;
  max-width: 290px;
}
.aboutItem__content p a {
  color: #7BC8EB;
  text-decoration: underline;
}
.aboutItem h3 {
  margin-bottom: 30px;
  font-weight: 500;
}
.aboutItem h3 b {
  font-weight: 700;
}
.aboutItem h2 {
  margin-bottom: 20px;
  font-weight: 500;
}
.aboutItem h5 {
  font-weight: 500;
}
.aboutGallery {
  position: absolute !important;
  top: 0;
  right: -80px;
  width: calc(50% + 72px);
  height: 100%;
  min-height: 500px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.aboutGallery.nonSlide .slick-dots {
  display: none !important;
}
.aboutGallery.nonSlide .slick-arrow {
  display: none !important;
}
.aboutGallery .slick-arrow {
  bottom: 55px;
}
.aboutGallery .slick-arrow:hover {
  opacity: 1;
}
.aboutGallery .slick-arrow:hover::before {
  background: url("../images/icons/arrow-right-blue.svg") no-repeat center;
  background-size: contain;
}
.aboutGallery .slick-prev::before {
  background: url("../images/icons/arrow-right-pink.svg") no-repeat center;
  background-size: contain;
}
.aboutGallery .slick-next::before {
  background: url("../images/icons/arrow-right-pink.svg") no-repeat center;
  background-size: contain;
}
.aboutGallery .slick-dots {
  bottom: 30px;
}
.aboutGallery .slick-dots li.slick-active {
  background-color: #ff0973;
}
.aboutGallery__item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100% !important;
}
.aboutGallery__item img {
  width: 100%;
  /*height: 100%;*/
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.instant {
  width: 100%;
  max-width: 318px;
}
.instant__head {
  padding: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #1F61AB;
  margin-bottom: 10px;
}
.instant__btns {
  background: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 10px;
}
.instant__btn {
  position: relative;
  width: 50%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.instant__btn input {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}
.instant__btn input:checked + label {
  background: #7BC8EB;
  color: #fff;
}
.instant__btn label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 13px;
  line-height: 16px;
  font-family: "Montserrat", sans-serif;
  color: #3c3c3c;
  font-weight: 500;
  background: #fff;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  text-transform: uppercase;
}
.instant__select {
  width: 100%;
  position: relative;
}
.instant__select-icon {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 12px;
  height: 6px;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.instant__select-icon img {
  width: 100%;
  height: 100%;
}
.instant__select select {
  width: 100%;
  background: #fff;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  line-height: 20px;
  color: #3c3c3c;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
.instant__body {
  background: #1F61AB;
  padding: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.instant__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 14px;
}
.instant__radio {
  position: relative;
  width: calc(33.3% - 10px);
  overflow: hidden;
}
.instant__radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
  cursor: pointer;
}
.instant__radio input:checked + label {
  background: #F7D961;
}
.instant__radio label {
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  color: #3c3c3c;
  font-weight: 800;
  background: #fff;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.instant__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 14px;
}
.instant__row-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.instant__row-select select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 15px;
  line-height: 17px;
  color: #3c3c3c;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  background-color: transparent;
  padding: 10px 55px 10px 15px;
}
.instant__row-select-currency {
  width: 40px;
  height: 40px;
  margin-right: 3px;
  background-color: #fff;
}
.instant__row-select-icon {
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
}
.instant__row-select-icon img {
  width: 12px;
  height: 6px;
}
.instant__row-input {
  width: calc(100% - 100px);
  position: relative;
  overflow: hidden;
}
.instant__row-input input {
  width: 100%;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  color: #3c3c3c;
  text-transform: uppercase;
  height: 40px;
}
.instant__row-input input::-webkit-input-placeholder {
  color: rgba(60, 60, 60, 0.3);
}
.instant__row-input input::-moz-placeholder {
  color: rgba(60, 60, 60, 0.3);
}
.instant__row-input input:-ms-input-placeholder {
  color: rgba(60, 60, 60, 0.3);
}
.instant__row-input input::-ms-input-placeholder {
  color: rgba(60, 60, 60, 0.3);
}
.instant__row-input input::placeholder {
  color: rgba(60, 60, 60, 0.3);
}
.instant .button {
  width: 100%;
  margin-top: 14px;
}

.donate {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #3c3c3c;
  z-index: 99;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.donate__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.donate__inner-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.donate__inner-title > span {
  display: none;
}
.donate__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 170px);
  max-width: 880px;
  margin: 0 -5px;
}
.donate__inner-item {
  width: calc(28% - 10px);
  margin: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.donate__inner-item:first-child {
  width: calc(32% - 10px);
}
.donate__inner-item:nth-child(3) {
  width: calc(20% - 10px);
}
.donate__inner-item:last-child {
  width: calc(20% - 10px);
}
.donate__inner .button {
  width: 100%;
  padding: 6px 10px;
  border-radius: 10px;
  background-color: #E80914;
}
.donate__inner .button:hover {
  background-color: #FF0000;
}
.donate__inner .select {
  width: 100%;
}
.donate__inner .input {
  width: 100%;
}
.donate__inner .input input::-webkit-input-placeholder {
  color: #fff;
}
.donate__inner .input input::-moz-placeholder {
  color: #fff;
}
.donate__inner .input input:-ms-input-placeholder {
  color: #fff;
}
.donate__inner .input input::-ms-input-placeholder {
  color: #fff;
}
.donate__inner .input input::placeholder {
  color: #fff;
}
.donate__inner h5 {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
.donate__inner h5 b {
  color: #fff;
  font-weight: 700;
}

.info {
  padding: 40px 0;
}
.info__inner-content {
  max-width: 1040px;
  margin: 0 auto 40px;
  text-align: center;
}
.info__inner-content:last-child {
  margin: 0 auto;
}
.info__inner-content h2,
.info__inner-content h3 {
  font-weight: 700;
  max-width: 850px;
  margin: 0 auto 30px;
}
.info__inner-content h2.sm,
.info__inner-content h3.sm {
  color: #ff0000;
  font-weight: 500;
}
.info__inner-content h2.green,
.info__inner-content h3.green {
  color: #809C2A;
  font-weight: 500;
}
.info__inner-content h2.blue,
.info__inner-content h3.blue {
  color: #7BC8EB;
  max-width: 910px;
  font-weight: 500;
}
.info__inner-content p {
  margin-bottom: 20px;
}
.info__inner-content p:last-child {
  margin: 0;
}

.work {
  position: relative;
  padding-top: 35px;
}
.work .auto__container {
  max-width: 1140px;
}
.work__title {
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}
.workMain {
  background-color: #809C2A;
  padding: 40px 0 30px;
}
.workMain__inner-title {
  color: #fff;
  margin-bottom: 30px;
}
.workMain__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.workItem {
  width: calc(33.3% - 10px);
  max-width: 250px;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.workItem__icon {
  width: 102px;
  height: 102px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.workItem__icon.sm {
  width: 87px;
}
.workItem__icon.big {
  width: 110px;
}
.workItem__icon img {
  width: 100%;
}
.workItem h3 {
  font-size: 48px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq {
  padding: 40px 0;
  position: relative;
}
.faq.gray {
  background: #f8f8f8;
}
.faq.gray .faq__head p {
  color: #3c3c3c;
}
.faq.base .faq__inner-content {
  background-color: #fff;
}
.faq.base .faqItem__head:hover h6 {
  color: #3c3c3c;
}
.faq.base .faqItem__head:hover span::before {
  border-top: 2px solid #3c3c3c;
  border-right: 2px solid #3c3c3c;
}
.faq.base .faqItem__head:hover svg {
  color: #3c3c3c;
}
.faq.base .faqItem__head.active h6 {
  color: #3c3c3c;
}
.faq.base .faqItem__head.active span::before {
  border-top: 2px solid #3c3c3c;
  border-right: 2px solid #3c3c3c;
}
.faq.base .faqItem__head.active svg {
  color: #3c3c3c;
}
.faq.base .faqItem__title {
  width: 100%;
}
.faq.base .faqItem__title h6 {
  color: #7BC8EB;
}
.faq.base .faqItem__title span::before {
  border-color: #7BC8EB;
}
.faq.base .faqItem__body h5 {
  color: #7BC8EB;
}
.faq__head {
  margin-bottom: 30px;
  color: #3c3c3c;
  text-align: center;
}
.faq__head h2 {
  margin-bottom: 20px;
}
.faq__inner {
  padding-right: calc(100% - 370px);
  position: relative;
}
.faq__inner::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: calc(100% - 380px);
  background: #fff;
  height: 100%;
  border-radius: 10px;
}
.faq__inner-content {
  border-radius: 10px;
  background: #809C2A;
  padding: 20px 30px;
}
.faqItem {
  border-bottom: 1px solid #f8f8f8;
  cursor: pointer;
}
.faqItem:last-child {
  border-bottom: unset;
}
.faqItem__body {
  position: absolute;
  top: 0;
  right: 0;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: auto;
  width: calc(100% - 380px);
  height: 100%;
  display: none;
}
.faqItem__body::-webkit-scrollbar {
  display: block;
  width: 4px;
}
.faqItem__body::-webkit-scrollbar-track {
  background: transparent;
}
.faqItem__body.active {
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
  display: block;
}
.faqItem__body h5 {
  font-weight: 600;
  color: #809C2A;
  margin-bottom: 20px;
}
.faqItem__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  min-height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.faqItem__head:hover h6 {
  color: #e7eaae;
}
.faqItem__head:hover span::before {
  border-top: 2px solid #e7eaae;
  border-right: 2px solid #e7eaae;
}
.faqItem__head:hover svg {
  color: #e7eaae;
}
.faqItem__head.active h6 {
  color: #e7eaae;
}
.faqItem__head.active span::before {
  border-top: 2px solid #e7eaae;
  border-right: 2px solid #e7eaae;
}
.faqItem__head.active svg {
  color: #e7eaae;
}
.faqItem svg {
  width: 23px;
  height: 23px;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faqItem svg.sm {
  width: 20px;
  height: 20px;
}
.faqItem__icon {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.faqItem__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.faqItem__title {
  width: calc(100% - 48px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.faqItem__title h6 {
  font-weight: 600;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  color: #fff;
  width: calc(100% - 16px);
}
.faqItem__title span {
  width: 8px;
  height: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.faqItem__title span::before {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  width: 100%;
  height: 100%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.terms {
  padding: 50px 0 50px;
}
.terms__inner h2 {
  margin-bottom: 30px;
}
.terms__inner p {
  color: #3c3c3c;
  margin-bottom: 20px;
}
.terms__inner p:last-child {
  margin: 0;
}
.terms__inner p a {
  color: #7BC8EB;
}

.place {
  padding: 40px 0;
}
.place__inner-title {
  text-align: center;
  margin-bottom: 32px;
}
.place__inner-title h2 {
  text-transform: uppercase;
  margin-bottom: 18px;
}
.place__inner-col {
  display: none;
}
.placeContent {
  border: 1px solid #707070;
  border-radius: 10px;
  padding: 30px 30px 40px 30px;
}
.placeContent__head {
  width: 100%;
  max-width: 820px;
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.placeContent__main {
  max-width: 930px;
  margin: 0 auto;
}
.placeContent__body {
  text-align: center;
  color: #3c3c3c;
  display: none;
}
.placeContent__body.active {
  display: block;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}
.placeContent__body h5 {
  font-weight: 700;
  margin-bottom: 20px;
}
.placeContent__item {
  width: calc(14.2% - 12px);
  max-width: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.placeContent__item-icon {
  width: 100%;
  padding-bottom: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.placeContent__item-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.placeContent__item h6 {
  font-weight: 500;
}
.placeItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero.nonSlide .slick-dots {
  display: none !important;
}
.hero.nonSlide .slick-arrows {
  display: none !important;
}
.hero .auto__container {
  max-width: 1200px;
}
.hero .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.hero .slick-slide {
  height: unset !important;
}
.hero .slick-arrow {
  width: 32px;
  height: 32px;
  position: absolute;
  z-index: 1;
  top: unset;
  bottom: 80px;
}
.hero .slick-arrow:hover {
  opacity: 1;
}
.hero .slick-arrow:hover::before {
  background: url("../images/icons/arrow-right-orange.svg") no-repeat center;
  background-size: contain;
}
.hero .slick-arrow::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 1;
}
.hero .slick-prev {
  right: 135px;
  left: unset;
}
.hero .slick-prev::before {
  content: "";
  background: url("../images/icons/arrow-right-blue.svg") no-repeat center;
  background-size: contain;
  opacity: 1;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.hero .slick-next {
  right: 80px;
}
.hero .slick-next::before {
  content: "";
  background: url("../images/icons/arrow-right-blue.svg") no-repeat center;
  background-size: contain;
  opacity: 1;
}
.hero .slick-dots {
  bottom: 50px;
  right: 80px;
  left: unset;
  width: calc(100% - 160px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.hero .slick-dots li {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 15px 0 0;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero .slick-dots li.slick-active {
  background-color: #7BC8EB;
}
.hero .slick-dots li button {
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0;
  background-color: transparent;
}
.hero .slick-dots li button::before {
  display: none;
}
.hero__slider.big {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  /*height: 100%;*/
}
.hero__slider.big .heroItem__inner {
  min-height: 100vh;
}
.hero__slider.big .heroItem__content {
  display: none !important;
}
.heroItem {
  position: relative;
}
.heroItem__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.heroItem__bg::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(#545454), to(#00000000));
  background: linear-gradient(360deg, #545454, #00000000);
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}
.heroItem__bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  pointer-events: none;
}
.imagePortrait{
  display: none !important;
}
.heroItem__content {
  display: none;
}
.heroItem__inner {
  color: #fff;
  padding: 100px 0 180px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.heroItem__inner.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.heroItem__inner.center .quote {
  margin: 0;
}
.heroItem__inner .quote {
  width: calc(100% - 350px);
  max-width: 460px;
  margin-left: 36px;
}
.heroItem h1 {
  width: 100%;
  position: absolute;
  bottom: 44px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  color: #fff;
  padding: 0 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.heroItem .quote.mob {
  display: none;
}
.heroMain__inner {
  width: 100%;
  max-width: 354px;
  padding: 140px 0;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.heroMain__inner-text {
  display: none;
}
.heroMain__inner h1 {
  width: 100%;
  text-align: center;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.heroMain__inner .instant {
  width: 100%;
  margin-bottom: 15px;
}
.support {
  padding: 60px 0 40px;
}
.support__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.support__inner-row {
  width: calc(50% + 6px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -6px;
}
.supportItem {
  width: calc(50% - 12px);
  margin: 6px;
  border: 7px solid #809C2A;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.supportItem:hover {
  border-color: transparent !important;
}
.supportItem:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.supportItem.big {
  position: absolute;
  width: calc(50% - 8px);
  height: 100%;
  left: 0;
  top: 0;
  border-width: 10px;
  margin: 0;
}
.supportItem.big .supportItem__image {
  padding-bottom: 76%;
}
.supportItem.blue {
  border-color: #7BC8EB;
}
.supportItem.orange {
  border-color: #F7D961;
}
.supportItem.pink {
  border-color: #ff0973;
}
.supportItem.yellow {
  border-color: #e7eaae;
}
.supportItem__image {
  width: 100%;
  position: relative;
  padding-bottom: 77%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.supportItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.supportItem__tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 5px 10px;
  text-transform: uppercase;
  z-index: 2;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.supportItem__tag h6 {
  font-weight: 500;
}
.supportItem__content {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: calc(100% + 20px);
  background-color: #809C2A;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.supportItem__content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 10px;
  width: calc(39% - 5px);
  max-width: 195px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
}
.supportItem__content-title span {
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 8px;
}
.supportItem__content-title span img {
  width: 100%;
}
.supportItem__content-title h6 {
  font-weight: 600;
}
.supportItem__content-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(61% - 5px);
  max-width: 320px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.supportItem__content .input {
  width: calc(50% - 3px);
  max-width: 150px;
  border: 0.5px solid #3c3c3c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.supportItem__content .input input {
  padding: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  color: #3c3c3c;
}
.supportItem__content .button {
  width: calc(50% - 3px);
  max-width: 145px;
  background-color: #3c3c3c;
  color: #fff;
  border-color: #3c3c3c;
  padding: 9px 6px;
}
.supportItem__content .button:hover {
  border-color: #809C2A;
  background-color: #809C2A;
}
.supportItem h3 {
  position: absolute;
  bottom: 68px;
  left: 10px;
  color: #fff;
}
.supportItem h3 b {
  font-weight: 400;
  background-color: #809C2A;
  padding: 6px 20px 6px 10px;
}
.supportItem h3 b:last-child {
  padding-top: 0;
}

.involve {
  padding: 24px 0 30px;
  background-color: #7BC8EB;
}
.involve__inner {
  position: relative;
}
.involve__inner-title {
  text-align: center;
  margin-bottom: 24px;
  color: #fff;
}
.involve__inner-slider {
  margin: 0 -15px;
  padding-bottom: 84px;
}
.involve__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.involve__inner .slick-slide {
  height: unset !important;
  margin: 0 15px;
}
.involve__inner .slick-arrow {
  width: 32px;
  height: 32px;
  position: absolute;
  z-index: 1;
  top: unset;
  bottom: 24px;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.involve__inner .slick-arrow:hover {
  opacity: 1;
}
.involve__inner .slick-arrow:hover::before {
  background: url("../images/icons/arrow-right-orange.svg") no-repeat center;
  background-size: contain;
}
.involve__inner .slick-arrow::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 1;
}
.involve__inner .slick-prev {
  right: calc(50% + 10px);
  left: unset;
}
.involve__inner .slick-prev::before {
  content: "";
  background: url("../images/icons/arrow-right-white.svg") no-repeat center;
  background-size: contain;
  opacity: 1;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.involve__inner .slick-next {
  left: calc(50% + 10px);
  right: unset;
}
.involve__inner .slick-next::before {
  content: "";
  background: url("../images/icons/arrow-right-white.svg") no-repeat center;
  background-size: contain;
  opacity: 1;
}
.involve__inner .slick-dots {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.involve__inner .slick-dots li {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 15px 0 0;
  background-color: #ededed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.involve__inner .slick-dots li.slick-active {
  background-color: #f5b91e;
}
.involve__inner .slick-dots li:last-child {
  margin: 0;
}
.involve__inner .slick-dots li button {
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0;
  background-color: transparent;
}
.involve__inner .slick-dots li button::before {
  display: none;
}
.involveItem {
  overflow: hidden;
  position: relative;
  display: block;
}
.involveItem:hover {
  opacity: 1;
}
.involveItem:hover .involveItem__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.involveItem:hover h6 {
  color: #F7D961;
}
.involveItem:hover h6 span::before {
  border-color: #F7D961;
}
.involveItem__image {
  height: 100%;
  padding-bottom: 100%;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.involveItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.involveItem__content {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 30px 8px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.involveItem__content::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(transparent));
  background: linear-gradient(to top, #000000, transparent);
  pointer-events: none;
}
.involveItem__content h6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  padding-right: 30px;
}
.involveItem__content h6 span {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.involveItem__content h6 span::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.reports {
  padding: 30px 0;
}
.reports__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}
.reports__inner h2 {
  color: #809C2A;
}
.reports__inner .select {
  display: none;
}
.reportsItem {
  width: calc(50% - 40px);
  max-width: 540px;
  margin: 25px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px;
  color: #3c3c3c;
  border-radius: 10px;
  background-color: #e3e3e3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.reportsItem__image {
  position: relative;
  padding-bottom: 135%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}
.reportsItem__image-wrapper {
  width: 160px;
}
.reportsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.reportsItem__content {
  width: calc(100% - 180px);
  max-width: 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.reportsItem__content b {
  font-weight: 500;
  color: #7BC8EB;
  margin-bottom: 12px;
}
.reportsItem h5 {
  margin-bottom: 20px;
  font-weight: 600;
}
.reportsItem p {
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reportsItem .button {
  width: 100%;
  max-width: 140px;
  margin: auto 0 0 0;
  border-radius: 10px;
  background-color: #3c3c3c;
  border: unset;
  padding: 12px 14px;
}
.reportsItem .button:hover {
  background-color: #7BC8EB;
}

.blogs {
  padding: 40px 0 50px;
}
.blogs__inner-article {
  max-width: 700px;
  margin: 0 auto;
  border-bottom: 1px solid #eaeaea;
}
.blogs__inner-article p {
  margin-bottom: 30px;
}
.blogs__inner-article > b {
  display: block;
  font-weight: 400;
  color: #b5b5b5;
  margin-bottom: 6px;
}
.blogs__inner-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 67%;
  position: relative;
  margin-bottom: 40px;
}
.blogs__inner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.blogs__inner-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.blogs__inner-social:last-child {
  margin: 0;
}
.blogs__inner-social a {
  width: 17px;
  height: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
.blogs__inner-social a:last-child {
  margin: 0;
}
.blogs__inner-social a.sm {
  width: 10px;
}
.blogs__inner-social a.big {
  width: 22px;
}
.blogs__inner-social a img {
  width: 100%;
}
.blogs__inner-foot {
  padding-top: 30px;
  max-width: 700px;
  margin: 0 auto;
}
.blogs__inner h1 {
  margin-bottom: 28px;
  max-width: 612px;
  font-weight: 600;
}
.blogs__inner h1 span {
  color: #7BC8EB;
}
.blogs__inner h5 {
  margin-bottom: 20px;
  font-weight: 600;
}

.contact {
  background-color: #fff;
}
.contact .auto__container {
  max-width: 1200px;
}
.contact.uniq {
  background-color: #7bc8eb;
  padding: 40px 0;
}
.contact.uniq .contact__inner {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contact.uniq .contact__inner-form {
  margin: 0;
  max-width: unset;
  padding: 40px;
}
.contact.uniq .contact__inner-form-wrapper {
  width: 100%;
  max-width: 750px;
  border-radius: 12px;
}
.contact.uniq {
  background-color: #7bc8eb;
  padding: 40px 0;
}
.contact.uniq .contact__inner {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contact.uniq .contact__inner-form {
  margin: 0;
  max-width: unset;
  padding: 0 40px 40px 40px;
}
.contact.uniq .contact__inner-form legend{
  padding-top: 10px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact.uniq .contact__inner-form-wrapper {
  width: 100%;
  max-width: 750px;
  border-radius: 12px;
}
.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact__inner-content {
  padding: 45px 20px 90px 0;
  width: 40%;
  background-color: #7BC8EB;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact__inner-content::before {
  position: absolute;
  top: 0;
  right: calc(100% - 1px);
  width: 3000px;
  height: 100%;
  content: "";
  background-color: #7BC8EB;
}
.contact__inner-content h1 {
  margin-bottom: 100px;
}
.contact__inner-foot {
  margin: auto 0 0 0;
}
.contact__inner-foot h6 {
  margin-bottom: 18px;
}
.contact__inner-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.contact__inner-social a {
  width: 27px;
  height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
.contact__inner-social a:last-child {
  margin: 0;
}
.contact__inner-social a.sm {
  width: 16px;
}
.contact__inner-social a img {
  max-height: 100%;
  width: 100%;
}
.contact__inner-links {
  max-width: 340px;
  margin-bottom: 40px;
  position: relative;
}
.contact__inner-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 650px;
  margin: 0 0 0 auto;
  padding: 50px 0 50px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.contact__inner-form-wrapper {
  width: 60%;
  background-color: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.contact__inner-form .umbraco-forms-caption {
  margin-bottom: 20px;
  width: 100%;
}
.contact__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact__inner-group {
  width: calc(50% - 10px);
  max-width: 318px;
}
.contact__inner-group.big {
  width: 100%;
  max-width: unset;
}
.contact__inner-group .input.cont input,
.contact__inner-group .input.cont textarea {
  border-color: #3c3c3c;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contact__inner-group .input.cont input:focus,
.contact__inner-group .input.cont textarea:focus {
  border-color: #7BC8EB;
}
.contact__inner .input__outer {
  width: 100%;
  max-width: unset;
  margin: 15px 0;
}
.contact__inner .input__outer.big {
  width: 100%;
  max-width: unset;
}
.contact__inner .input__outer .radioc {
  margin-bottom: 12px;
}
.contact__inner .input__outer .radioc:last-child {
  margin: 0;
}
.contact__inner .input__outer .radioc label {
  padding-left: 32px;
  color: #3c3c3c;
}
.contact__inner .input__outer .radioc label::before {
  width: 16px;
  height: 16px;
  border-color: #7bc8eb;
}
.contact__inner .input__outer .radioc label::after {
  top: 10px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: #7bc8eb;
}
.contact__inner .input__outer .checkc {
  margin-bottom: 12px;
}
.contact__inner .input__outer .checkc:last-child {
  margin: 0;
}
.contact__inner .input__outer .checkc label {
  color: #3c3c3c;
}
.contact__inner .input__outer .checkc label::before {
  border-color: #7BC8EB;
}
.contact__inner .input__outer .checkc label::after {
  border-color: #7BC8EB;
}
.contact__inner .input__outer .check {
  position: relative;
  margin-top: 20px;
}
.contact__inner .input__outer .check input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.contact__inner .input__outer .check input:checked + label::before {
  background: #7BC8EB;
  border: 1px solid #7BC8EB;
}
.contact__inner .input__outer .check input:checked + label::after {
  opacity: 1;
}
.contact__inner .input__outer .check label {
  display: block;
  padding-left: 32px;
  position: relative;
}
.contact__inner .input__outer .check label::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #7BC8EB;
  background: transparent;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  top: 5px;
  left: 0;
}
.contact__inner .input__outer .check label::after {
  position: absolute;
  content: "";
  width: 4px;
  left: 8px;
  top: 10px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  opacity: 0;
}
.contact__inner .input__outer-label {
  margin-bottom: 15px;
}
.contact__inner .input__outer p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}
.contact__inner .input__outer p:last-child {
  margin: 0;
}
.contact__inner .input input[type=date] {
  padding: 11px 20px;
}
.contact__inner .button {
  width: 100%;
  max-width: 180px;
  margin: 20px 0 0 0;
  border-radius: 10px;
  padding: 12px 14px;
}
.contact__inner .button {
  width: 100%;
  max-width: 180px;
  margin: 20px 0 0 0;
  border-radius: 10px;
  padding: 12px 14px;
}
.contact__inner .button:hover {
  background-color: #3c3c3c;
  color: #fff;
}
.contact__inner .button:hover span::before {
  border-color: #fff;
}
.contact__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  margin-bottom: 10px;
}
.contact__link.big {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact__link.big span {
  margin-top: 6px;
}
.contact__link-wrapper {
  margin-bottom: 40px;
}
.contact__link-wrapper:last-child {
  margin: 0;
}
.contact__link:last-child {
  margin: 0;
}
.contact__link b {
  width: calc(100% - 30px);
  font-weight: 600;
}
.contact__link span {
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 14px;
}
.contact__link span img {
  width: 100%;
}

.donation {
  background-color: #e4e4e4;
}
.donationTop {
  position: relative;
}
.donationTop__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.donationTop__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -o-object-position: 70%;
     object-position: 70%;
}
.donationTop__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 0;
  min-height: calc(100vh - 60px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.donationMain {
  padding: 50px 0 60px;
}
.donationMain__inner-title {
  margin-bottom: 25px;
  text-align: center;
}
.donationMain__inner-title h3 {
  font-weight: 700;
  text-transform: uppercase;
}
.donationMain__inner-title p {
  display: none;
}
.donationMain__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 760px;
  margin:auto;
}
.donationText__wrapper h5{
  font-weight: 600;
}
.donationMain__inner-row p {
  font-weight: 500;
}
.donationMain__inner-tabs {
  display: none;
}

.checkout {
  padding: 40px 0;
  position: relative;
}
.checkout__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkout__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.checkout__inner {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 730px;
  -webkit-animation: 0.2s linear fadeUp;
          animation: 0.2s linear fadeUp;
  display: none;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  min-height: 620px;
}
.checkout__inner.last {
  background-color: transparent;
  padding: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.checkout__inner.last.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkout__inner.active {
  display: block;
}
.checkout__inner-thanks {
  width: 100%;
  max-width: 730px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 120px 30px;
  color: #3c3c3c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto 0;
  text-align: center;
}
.checkout__inner-thanks h1 {
  text-align: center;
  text-transform: uppercase;
  max-width: 510px;
  margin: 0 auto 20px;
}
.checkout__inner-thanks p {
  max-width: 510px;
  margin: 0 auto 30px;
}
.checkout__inner-thanks .button {
  border-radius: 10px;
  padding: 12px 15px;
}
.checkout__inner-thanks .button:hover {
  background-color: #3c3c3c;
}
.checkout__inner-image {
  display: none;
}
.checkout__group {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid #7BC8EB;
}
.checkout__group:last-child {
  border-bottom: unset;
  padding-bottom: 0;
  margin-bottom: 0;
}
.checkout__group .uniq {
  margin-bottom: 30px;
}
.checkout__group .uniq label {
  color: #809C2A;
}
.checkout__head {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  text-align: center;
}
.checkout__head .checkout__back {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 !important;
}
.checkout__head h6 {
  font-weight: 500;
}
.checkout__body h6 {
  margin-bottom: 20px;
}
.checkout__body h6 span {
  color: #e80914;
}
.checkout__body h6:last-child {
  margin-bottom: 0;
}
.checkout__body > h6 {
  font-weight: 500;
}
.checkout__body > p {
  margin-bottom: 22px;
}
.checkout__body > p:last-child {
  margin: 0;
}
.checkout__body .input {
  position: relative;
}
.checkout__body .input__outer {
  width: calc(50% - 5px);
  max-width: 325px;
  position: relative;
}
.checkout__body .input__outer p span {
  color: #e80914;
}
.checkout__body .input input {
  border-color: #3c3c3c;
}
.checkout__body .input input::-webkit-input-placeholder {
  color: #cccccc;
}
.checkout__body .input input::-moz-placeholder {
  color: #cccccc;
}
.checkout__body .input input:-ms-input-placeholder {
  color: #cccccc;
}
.checkout__body .input input::-ms-input-placeholder {
  color: #cccccc;
}
.checkout__body .input input::placeholder {
  color: #cccccc;
}
.checkout__body > .button {
  border-radius: 10px;
  padding: 12px 20px;
}
.checkout__body > .button:hover {
  background-color: #3c3c3c;
  color: #fff;
}
.checkout__body > .button:hover span::before {
  border-color: #fff;
}
.checkout__sub {
  max-width: inherit;
  margin-bottom: 30px;
}
.checkout__sub .input__outer {
  width: 100%;
}
.checkout__sub .select {
  width: 100%;
}
.checkout__sub .select::before {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #3c3c3c;
  border-right: 1px solid #3c3c3c;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-70%) rotate(135deg);
          transform: translateY(-70%) rotate(135deg);
}
.checkout__sub .select select {
  height: 100%;
  padding: 12px 20px;
  color: #3c3c3c;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #3c3c3c;
  -webkit-appearance: none;
}
.checkout__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.checkout__row.sm {
  margin-bottom: 15px;
}
.checkout__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: #809C2A;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-bottom: 28px;
}
.checkout__back:hover {
  color: #6ba324;
}
.checkout__back svg {
  width: 11px;
  height: 11px;
  margin-right: 5px;
}
.checkout__back b {
  display: none;
}
.checkout__total-rows {
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
}
.checkout__total-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 22px;
}
.checkout__total-row.last {
  display: none;
}
.checkout__total-row:last-child {
  margin: 0;
}
.checkout__total-row h6 {
  color: #809C2A;
}
.checkout__total-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
}
.checkout__total h6 {
  font-weight: 700;
}
.checkout__total-secure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 100%;
}
.checkout__total-secure span {
  width: 12px;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 8px;
}
.checkout__total-secure span img {
  width: 100%;
}
.checkout__total .button {
  width: 50%;
  max-width: 170px;
  margin-bottom: 15px;
  border-radius: 10px;
}
.checkout__total .button.primary {
  color: #fff;
  max-width: 170px;
  background-color: #e80914;
  border: unset;
}
.checkout__total .button.primary::before {
  border-left-color: #fff;
}
.checkout__total .button.primary:hover {
  background-color: #ff0000;
}
.checkout__total .button.paypal {
  background: #ffc43a;
}
.checkout__total .button.paypal:hover {
  opacity: 0.8;
}
.checkout__total .button.paypal img {
  width: 70px;
}
.checkout__total .button.apple {
  background: #243746;
}
.checkout__total .button.apple:hover {
  opacity: 0.8;
}
.checkout__total .button.apple img {
  width: 60px;
}
.checkout__total .button.google {
  background: #243746;
}
.checkout__total .button.google:hover {
  opacity: 0.8;
}
.checkout__total .button.google img {
  width: 64px;
}
.checkout__thanks {
  padding-top: 12px;
}
.checkout__thanks-inner {
  border-radius: 4px;
  border: 2px solid #809C2A;
  padding: 30px;
  margin-bottom: 40px;
}
.checkout__thanks-inner h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: "Montserrat", sans-serif;
}
.checkout__thanks-inner p.med {
  font-weight: 400;
}
.checkout__thanks .button {
  width: 222px;
}
.checkout__foot {
  padding-top: 30px;
  margin-bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.checkout__foot p {
  width: 100%;
  margin-bottom: 20px;
  font-weight: 500;
}
.checkout__foot .checkc {
  width: calc(50% - 6px);
  margin-bottom: 10px;
}
.checkout__foot .checkc label {
  color: #3c3c3c;
}
.checkout__foot .checkc label::after {
  border-color: #7BC8EB;
}
.checkout .formBtn {
  display: none;
  -webkit-animation: 0.2s linear fadeUp;
          animation: 0.2s linear fadeUp;
}
.checkout .formBtn.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkoutBasket {
  padding-top: 15px;
}
.checkoutBasket__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #809C2A;
  margin-bottom: 15px;
}
.checkoutBasket__title.blue {
  color: #7BC8EB;
}
.checkoutBasket__title h6 {
  font-weight: 700;
}
.checkoutBasket__title p {
  font-weight: 500;
  margin-right: 20px;
}
.checkoutBasket__rows {
  margin-bottom: 20px;
}
.checkoutBasket__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #eaeaea;
}
.checkoutBasket__row.last {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.checkoutBasket__row.last p {
  margin-right: 48px;
}
.checkoutBasket__row.blue h6 {
  color: #7BC8EB;
}
.checkoutBasket__row p {
  color: #414141;
}
.checkoutBasket__row h6 {
  color: #809C2A;
  font-weight: 700;
}
.checkoutBasket__support {
  margin-bottom: 30px;
}
.checkoutBasket__support > h6 {
  margin-bottom: 20px;
  font-weight: 700;
}
.checkoutBasket__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
}
.checkoutBasket__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
}
.checkoutBasket__item:last-child {
  margin: 0;
}
.checkoutBasket__item button {
  width: 80px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 12px;
  background-color: #fff;
  position: relative;
}
.checkoutBasket__item button:last-child {
  margin: 0;
}
.checkoutBasket__item button input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
}
.checkoutBasket__item button input:checked ~ span {
  background-color: #7BC8EB;
}
.checkoutBasket__item button span {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0.75px solid #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.checkoutBasket .checkc {
  margin-bottom: 10px;
}
.checkoutBasket .checkc label {
  color: #414141;
}
.checkoutBasket .checkc label::after {
  border-color: #7BC8EB;
}
.checkoutBasket > .button {
  border-radius: 10px;
  padding: 12px 20px;
}
.checkoutBasket > .button:hover {
  background-color: #3c3c3c;
  color: #fff;
}
.checkoutBasket > .button:hover span::before {
  border-color: #fff;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.payment {
  overflow: hidden;
  margin-bottom: 30px;
  border-bottom: 1px solid #7BC8EB;
}
.payment__items {
  max-width: 540px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 30px;
}
.payment__item {
  width: calc(25% - 5px);
  position: relative;
}
.payment__item:last-child {
  border-bottom: unset;
}
.payment__item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
.payment__item input:checked + label::before {
  border: 2px solid #7BC8EB;
}
.payment__item input:checked + label::after {
  opacity: 1;
}
.payment__item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px 12px 30px 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  line-height: 20px;
  min-height: 63px;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #414141;
  white-space: nowrap;
}
.payment__item label::before {
  position: absolute;
  bottom: 0;
  content: "";
  left: 50%;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  width: 20px;
  height: 20px;
  border: 2px solid #eaeaea;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.payment__item label::after {
  position: absolute;
  content: "";
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  opacity: 0;
  width: 12px;
  background: #7BC8EB;
  border-radius: 50%;
  height: 12px;
  bottom: 6px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}
.payment__item label img {
  width: 38px;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 16px;
}
.paymentInfo {
  padding: 30px 0;
  -webkit-animation: 0.2s linear fadeUp;
          animation: 0.2s linear fadeUp;
  display: none;
  border-top: 1px solid #7BC8EB;
}
.paymentInfo.active {
  display: block;
}
.paymentInfo .inputc input {
  border-color: #3c3c3c;
}

.gift {
  padding: 30px 30px 40px;
  border-radius: 10px;
  background-color: #7BC8EB;
  color: #fff;
}
.gift__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 590px;
  color: #fff;
  margin-bottom: 35px;
}
.gift__head h2 {
  width: calc(100% - 180px);
  text-align: end;
  color: #fff;
}
.gift__icon {
  width: 176px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
}
.gift__icon img {
  width: 100%;
}
.gift p {
  font-weight: 500;
  margin-bottom: 30px;
}
.gift p:last-child {
  margin: 0;
}

.inputc {
  position: relative;
}
.inputc.selectc::before {
  position: absolute;
  top: 50%;
  right: 15px;
  content: "";
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #809C2A;
}
.inputc.selectc select {
  -webkit-appearance: unset;
  padding: 17px 20px;
}
.inputc input,
.inputc select,
.inputc textarea,
.inputc select {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 100%;
  font-family: "Montserrat", sans-serif;
  color: #3c3c3c;
  padding: 12px 20px;
  resize: none;
  border: 1px solid #eaeaea;
  border-radius: 10px;
}
.inputc input::-webkit-input-placeholder, .inputc select::-webkit-input-placeholder, .inputc textarea::-webkit-input-placeholder, .inputc select::-webkit-input-placeholder {
  color: #e2e2e2;
}
.inputc input::-moz-placeholder, .inputc select::-moz-placeholder, .inputc textarea::-moz-placeholder, .inputc select::-moz-placeholder {
  color: #e2e2e2;
}
.inputc input:-ms-input-placeholder, .inputc select:-ms-input-placeholder, .inputc textarea:-ms-input-placeholder, .inputc select:-ms-input-placeholder {
  color: #e2e2e2;
}
.inputc input::-ms-input-placeholder, .inputc select::-ms-input-placeholder, .inputc textarea::-ms-input-placeholder, .inputc select::-ms-input-placeholder {
  color: #e2e2e2;
}
.inputc input::placeholder,
.inputc select::placeholder,
.inputc textarea::placeholder,
.inputc select::placeholder {
  color: #e2e2e2;
}
.inputc__outer {
  position: relative;
  margin-bottom: 24px;
}
.inputc__outer label {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}
.inputc__outer label span {
  color: #e80914;
}
.inputc__outer:last-child {
  margin-bottom: 0;
}
.inputc__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}
.inputc__row .inputc__outer.w-50 {
  width: calc(50% - 20px);
  margin: 10px;
}
.inputc__row .inputc__outer.w-32 {
  width: calc(32% - 20px);
  margin: 10px;
}
.inputc__row .inputc__outer.w-18 {
  width: calc(18% - 20px);
  margin: 10px;
}
.inputc__row .inputc__outer.w-21 {
  width: calc(21% - 20px);
  margin: 10px;
}
.inputc__row .inputc__outer.w-29 {
  width: calc(29% - 20px);
  margin: 10px;
}
.inputc__row .inputc__outer.w-100 {
  width: calc(100% - 20px);
  margin: 10px;
}
.inputc__row .inputc__outer.w-65 {
  width: calc(65% - 20px);
  margin: 10px;
}
.inputc__row .inputc__outer.w-35 {
  width: calc(35% - 20px);
  margin: 10px;
}

.checkc {
  position: relative;
}
.checkc input {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}
.checkc input:checked + label::after {
  opacity: 1;
}
.checkc label {
  display: block;
  padding-left: 35px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #809C2A;
  position: relative;
}
.checkc label span {
  color: #ce0000;
}
.checkc label::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #414141;
  top: 0;
  left: 0;
}
.checkc label::after {
  position: absolute;
  content: "";
  width: 5px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  height: 10px;
  border-bottom: 2px solid #809C2A;
  border-right: 2px solid #809C2A;
  top: 3px;
  left: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.radioc {
  position: relative;
  margin-bottom: 24px;
}
.radioc:last-child {
  margin-bottom: 0;
}
.radioc input {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}
.radioc input:checked + label::after {
  opacity: 1;
}
.radioc label {
  display: block;
  padding-left: 44px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
  position: relative;
}
.radioc label::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  top: 0;
  left: 0;
}
.radioc label::after {
  position: absolute;
  content: "";
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  opacity: 0;
  width: 12px;
  background: #fff;
  border-radius: 50%;
  height: 12px;
  top: 12px;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 6px;
}

.calc {
  background-color: #7BC8EB;
}
.calc .auto__container {
  max-width: 1200px;
}
.calc__wrapper {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
}
.calc__inner {
  width: calc(100% - 460px);
  padding: 40px 0 50px;
}
.calc__inner-title {
  color: #3c3c3c;
  margin-bottom: 40px;
  text-align: center;
}
.calc__inner-title h2 {
  margin-bottom: 20px;
}
.calcForm {
  background-color: #fff;
  border-radius: 10px;
  padding: 36px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.calcForm__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
}
.calcForm__title h6 {
  font-weight: 600;
  margin-bottom: 10px;
}
.calcForm__title .select select {
  width: 60px;
  font-weight: 700;
  padding: 6px 10px;
  color: #7BC8EB;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #7BC8EB;
}
.calcForm__title .select::before {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #7BC8EB;
  border-right: 2px solid #7BC8EB;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-60%) rotate(135deg);
          transform: translateY(-60%) rotate(135deg);
}
.calcForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.calcForm__foot {
  padding-top: 40px;
  border-top: 1px solid #eaeaea;
  margin-top: 25px;
}
.calcForm__foot h6 {
  font-weight: 700;
  margin-bottom: 20px;
}
.calcForm__foot > p {
  margin-bottom: 15px;
}
.calcForm .input__outer {
  width: calc(50% - 5px);
  margin: 15px 0;
  max-width: 325px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.calcForm .input__outer p {
  width: 100%;
  color: #3c3c3c;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.calcForm .input__outer p b {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.calcForm .input__outer p span {
  min-width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #7BC8EB;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-left: 20px;
}
.calcForm .input__outer p span:hover {
  background-color: #3c3c3c;
}
.calcForm .input__outer p span img {
  width: 4px;
}
.calcForm .input input {
  font-size: 15px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #3c3c3c;
  border-radius: 10px;
  border: 1px solid #7BC8EB;
  padding: 12px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.calcForm .input input::-webkit-input-placeholder {
  color: #e2e2e2;
}
.calcForm .input input::-moz-placeholder {
  color: #e2e2e2;
}
.calcForm .input input:-ms-input-placeholder {
  color: #e2e2e2;
}
.calcForm .input input::-ms-input-placeholder {
  color: #e2e2e2;
}
.calcForm .input input::placeholder {
  color: #e2e2e2;
}
.calcSummary {
  width: 470px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #3c3c3c;
  padding: 40px 30px;
  color: #fff;
}
.calcSummary::before {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  height: 10px;
  width: 100%;
  background-color: #45657e;
  content: "";
}
.calcSummary__top {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  background-color: #fff;
  color: #3c3c3c;
}
.calcSummary__top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 270px;
}
.calcSummary__top-col {
  width: calc(50% - 6px);
}
.calcSummary__top > p {
  margin-bottom: 20px;
}
.calcSummary__top h6 {
  margin-bottom: 10px;
  font-weight: 700;
}
.calcSummary__body {
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}
.calcSummary__body h5 {
  font-weight: 700;
  margin-bottom: 30px;
}
.calcSummary__body-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.calcSummary__body-select {
  position: relative;
  padding: 5px 25px 5px 18px;
  background-color: #f7f7f7;
  border-radius: 10px;
}
.calcSummary__body-select::before {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 2px solid #06255a;
  border-right: 2px solid #06255a;
  -webkit-transform: translateY(-70%) rotate(135deg);
          transform: translateY(-70%) rotate(135deg);
}
.calcSummary__body-select select {
  font-size: 15px;
  line-height: 20px;
  color: #06255a;
  -webkit-appearance: none;
  background-color: transparent;
}
.calcSummary__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.calcSummary__foot h5 {
  font-weight: 700;
}
.calcSummary h2 {
  margin-bottom: 10px;
}
.calcSummary .button {
  border-radius: 10px;
}

.blogsListTitle{
  background: none !important;
  margin: auto !important;
  text-align: center !important;
}
.blogsList {
  padding: 60px 0;
}
.blogsList__inner-row {
  max-width: 920px;
  margin: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.blogsList__inner h2 {
  color: #809C2A;
}
.blogsList__inner .select {
  display: none;
}
.blogsListItem {
  /* width: calc(50% - 40px);
  max-width: 540px; */
  margin: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: start;
  padding: 30px;
  color: #3c3c3c;
  border-radius: 10px;
  background-color: #e3e3e3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.blogsListItem__image {
  position: relative;
  padding-bottom: 60%;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}
.blogsListItem__image-wrapper {
  width: 240px;
}
.blogsListItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.blogsListItem__content {
  /* width: calc(100% - 180px); */
  max-width: 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.blogsListItem__content b {
  font-weight: 700;
  margin-bottom: 12px;
}
.blogsListItem h5 {
  margin-bottom: 20px;
  font-weight: 600;
}
.blogsListItem p {
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blogsListItem .button {
  width: 100%;
  max-width: 140px;
  margin: auto 0 0 0;
  border-radius: 10px;
  background-color: #3c3c3c;
  border: unset;
  padding: 12px 14px;
}
.blogsListItem .button:hover {
  background-color: #7BC8EB;
}
@media (max-width: 1380px) {
  .search {
    margin: 0 20px;
  }

  .auto__container {
    padding: 0 30px;
  }
}
@media (max-width: 1180px) {
  .search {
    margin: 0 14px;
  }
  .header__inner-logo {
    width: 80px;
  }
  .nav__inner-links {
    margin-right: 8px;
  }
  .nav__inner-links > li {
    margin-right: 6px;
  }
  .nav__inner-link {
    font-size: 13px;
    letter-spacing: -0.01em;
  }

  .hero .slick-next {
    right: 30px;
  }
  .hero .slick-prev {
    right: 80px;
  }
  .hero .slick-dots {
    width: calc(100% - 60px);
    right: 30px;
  }

  .support__inner-row {
    margin: -4px;
  }
  .supportItem {
    border-width: 4px;
    margin: 4px;
    width: calc(50% - 8px);
  }
  .supportItem:hover img {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  .supportItem.big {
    border-width: 6px;
  }
  .supportItem__tag {
    padding: 3px 7px;
    bottom: 6px;
    left: 6px;
  }
  .supportItem__tag h6 {
    font-size: 15px;
    line-height: 20px;
  }
  .supportItem__content {
    padding: 6px;
    bottom: -6px;
    left: -6px;
    width: calc(100% + 12px);
  }
  .supportItem__content-title {
    width: unset;
    padding: 0;
  }
  .supportItem__content-title h6 {
    font-size: 12px;
  }
  .supportItem__content-title span {
    width: 30px;
  }
  .supportItem__content-form {
    width: calc(65% - 7px);
  }
  .supportItem__content .input input {
    font-size: 12px;
    line-height: 16px;
  }
  .supportItem__content .button {
    font-size: 12px;
    line-height: 16px;
  }
  .supportItem__content .button span {
    width: 6px;
    height: 6px;
  }
  .supportItem h3 {
    font-size: 20px;
    bottom: 55px;
    left: 6px;
  }
  .supportItem h3 b {
    padding: 6px 10px;
  }

  .about__inner-content .aboutItem {
    padding: 50px 20px 50px 0;
  }
  .aboutItem {
    padding: 20px 20px 90px 0;
  }
  .aboutGallery {
    right: -30px;
    width: calc(50% + 30px);
  }

  .calc__inner {
    width: calc(100% - 370px);
  }
  .calc__inner-title {
    margin-bottom: 30px;
  }
  .calcSummary {
    width: 380px;
    padding: 30px 20px;
  }
  .calcSummary__top {
    padding: 15px;
    margin-bottom: 20px;
  }
  .calcSummary__body {
    margin-bottom: 20px;
  }
  .calcSummary__body-row {
    margin-bottom: 20px;
  }
  .calcSummary__foot {
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }

  .lang {
    display: none;
  }

  .blogsList__inner-row {
    margin: 0 -10px;
  }
  
  .blogsListItem {
    /* width: calc(50% - 20px);
    margin: 15px 10px; */
    padding: 20px;
  }

  .search {
    display: none;
    margin: 0 0 40px 0;
  }
  .search__form {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 17px 22px;
    min-width: unset;
  }
  .search__form input::-webkit-input-placeholder {
    color: #bababa;
  }
  .search__form input::-moz-placeholder {
    color: #bababa;
  }
  .search__form input:-ms-input-placeholder {
    color: #bababa;
  }
  .search__form input::-ms-input-placeholder {
    color: #bababa;
  }
  .search__form input::placeholder {
    color: #bababa;
  }

  .searchResults__inner-row {
    margin: 0 -10px;
  }

  .searchResultsItem {
    /* width: calc(50% - 20px);
margin: 15px 10px; */
    padding: 20px;
  }

  .basketBtn__icon {
    width: 28px;
    height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .basketBtn__icon img {
    width: 100%;
  }
  .basketBtn__number {
    display: none;
  }
  .basketBtn b {
    display: none;
  }

  .main {
    /* padding-top: 60px; */
  }

  .header {
    padding: 0;
    background-color: #fff;
  }
  .header.sticky {
    -webkit-box-shadow: 0px 5px 8px 0px #00000021;
            box-shadow: 0px 5px 8px 0px #00000021;
  }
  .header__inner {
    background-color: transparent;
    border-radius: unset;
    height: 60px;
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
  .header__inner-main {
    width: unset;
  }
  .header__inner-buttons > .button {
    display: none;
  }

  body.active {
    overflow: hidden;
  }

  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    max-width: unset;
    height: calc(100% - 60px);
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 390px;
    z-index: 1;
    padding: 30px 20px 30px 20px;
    height: 100%;
    overflow-y: auto;
    background: #1F61AB;
  }
  .nav__inner-links {
    width: 100%;
    max-width: unset;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav__inner-links > li {
    width: 100%;
    margin: 0 0 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .nav__inner-link {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: 600;
    font-size: 25px;
    line-height: 100%;
    width: unset;
    padding: 0 45px 0 0;
    color: #fff;
  }
  .nav__inner .search {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav__inner .button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto 0 0 0;
  }

  .burger {
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: relative;
    width: 27px;
    height: 27px;
    margin-left: 30px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 20%;
    width: 100%;
    height: 2px;
    background-color: #3c3c3c;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    border-radius: 3px;
  }
  .burger span {
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #3c3c3c;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    border-radius: 3px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .burger::after {
    bottom: 20%;
    width: 100%;
    height: 2px;
    background-color: #3c3c3c;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    border-radius: 3px;
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }

  .drop {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .drop .nav__inner-link.active::before {
    -webkit-transform: translateY(-50%) rotate(-180deg);
            transform: translateY(-50%) rotate(-180deg);
  }
  .drop .nav__inner-link::before {
    position: absolute;
    top: 50%;
    right: 0;
    content: "";
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .dropMenu {
    position: static;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    z-index: 2;
    background-color: transparent;
    padding: 20px 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: none;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .dropMenu.active {
    display: block;
    -webkit-animation: fadeIn 0.3s ease;
            animation: fadeIn 0.3s ease;
  }
  .dropMenu__image {
    display: none;
  }
  .dropMenu__inner {
    background-color: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
  }
  .dropMenu__inner::before {
    display: none;
  }
  .dropMenu__list {
    min-width: unset;
    min-height: unset;
  }
  .dropMenu li {
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 24px 0;
  }
  .dropMenu li:last-child {
    margin: 0;
  }
  .dropMenu li a {
    font-size: 15px;
    line-height: 20px;
    position: relative;
    padding: 0;
    background-color: unset;
    color: #fff;
  }
  .dropMenu li a:hover {
    background-color: unset;
    color: #809C2A;
  }
  .dropMenu li a::before {
    display: none;
  }

  .heroItem__inner {
    min-height: calc(100vh - 60px);
  }

  .workMain__inner-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .workItem {
    width: calc(50% - 20px);
    max-width: 400px;
    margin: 20px 10px;
  }

  .reports__inner-row {
    margin: 0 -10px;
  }
  .reportsItem {
    width: calc(50% - 20px);
    margin: 15px 10px;
    padding: 20px;
  }

  .help__inner-slider {
    margin: 0 -10px;
  }
  .help__inner .slick-slide {
    margin: 0 10px;
  }

  .donate__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .donate__inner-title {
    padding: 13px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
  }
  .donate__inner-title.active span::before {
    -webkit-transform: translate(-50%, -60%) rotate(135deg);
            transform: translate(-50%, -60%) rotate(135deg);
  }
  .donate__inner-title > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 40px;
    background-color: #7BC8EB;
    border-radius: 10px;
    position: relative;
    margin: 0;
  }
  .donate__inner-title > span::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transform: translate(-50%, -30%) rotate(-45deg);
            transform: translate(-50%, -30%) rotate(-45deg);
  }
  .donate__inner-row {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: calc(100% + 10px);
    max-width: unset;
    transition: 0.3s ease;
  }
  .donate__inner-row.active {
    max-height: 300px;
    opacity: 1;
    padding: 6px 0 20px;
  }
  .donate__inner-item {
    width: calc(28% - 6px);
    margin: 0 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .donate__inner-item:first-child {
    width: calc(29% - 6px);
  }
  .donate__inner-item:nth-child(3) {
    width: calc(22% - 6px);
  }
  .donate__inner-item:last-child {
    width: calc(22% - 6px);
  }
}
@media (max-width: 930px) {
  .blogsList__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  
  .blogsListItem {
    width: 100%;
    max-width: unset;
    padding: 30px;
    margin: 0 0 30px 0;
  }
  
  .blogsListItem:last-child {
    margin: 0;
  }
  
  .blogsListItem__image-wrapper {
    width: 280px;
    min-width: 280px;
  }
  
  .banner {
    padding: 35px 0;
  }

  .heroItem__inner .quote {
    /*display: none;*/
  }

  .help {
    padding: 40px 0;
  }
  .help__inner-row .helpItem {
    width: calc(50% - 7px);
    max-width: unset;
  }
  .help__inner-row .helpItem:nth-child(n+3) {
    display: none !important;
  }
  .help__inner-slider {
    padding-bottom: 35px;
  }
  .help__inner .slick-dots {
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .help__inner .slick-dots li {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 15px 0 0;
    background-color: #ededed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .help__inner .slick-dots li.slick-active {
    background-color: #7BC8EB;
  }
  .help__inner .slick-dots li:last-child {
    margin: 0;
  }
  .help__inner .slick-dots li button {
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 0;
    background-color: transparent;
  }
  .help__inner .slick-dots li button::before {
    display: none;
  }

  .support {
    padding: 40px 0;
  }
  .support__inner-row {
    width: calc(100% + 14px);
    margin: -7px;
  }
  .supportItem {
    margin: 7px;
    width: calc(50% - 14px);
  }
  .supportItem.big {
    width: 100%;
    height: unset;
    position: relative;
    margin: 7px;
  }

  .about__inner {
    padding: 30px 0 0 0;
  }
  .about__inner-content {
    width: calc(100% + 60px);
    margin: 0 -30px;
  }
  .about__inner-content .aboutItem {
    padding: 0 0 80px 0;
  }
  .about__inner-slider {
    width: calc(100% + 70px);
    margin: 0 -35px;
  }
  .about__inner-slider .slick-arrow {
    display: none !important;
  }
  .about__inner-slider .slick-dots {
    display: none !important;
  }
  .about__inner-slider .slick-slide {
    margin: 0 5px;
  }
  .aboutItem {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 0 50px 0;
  }
  .aboutItem.pink .aboutItem__title {
    text-align: center;
  }
  .aboutItem.pink .aboutItem__title-name {
    max-width: unset;
  }
  .aboutItem.base .aboutItem__title {
    margin-bottom: 15px;
  }
  .aboutItem.base h3 {
    text-align: center;
  }
  .aboutItem__title {
    padding: 0 20px;
  }
  .aboutItem__content {
    padding: 35px 20px 0;
  }
  .aboutItem__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .aboutGallery {
    width: 100%;
    top: unset;
    right: unset;
    position: relative !important;
    min-height: unset;
    margin-bottom: 35px;
  }
  .aboutGallery.mobRem {
    display: none !important;
  }
  .aboutGallery__item {
    position: relative;
  }

  .footer {
    padding: 50px 0;
  }
  .footer__info {
    width: 190px;
    margin-right: 30px;
  }
  .footer__form {
    width: calc(100% - 220px);
  }
  .footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__main-row {
    width: 100%;
    margin-bottom: 24px;
  }
  .footer__main-contact {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .calc__inner {
    padding: 30px 0;
    width: 100%;
    max-width: unset;
  }
  .calc__inner-title {
    color: #fff;
  }
  .calcForm .input__outer {
    max-width: unset;
    width: calc(50% - 10px);
  }
  .calcSummary {
    width: 100%;
    max-width: unset;
    position: relative;
    margin-bottom: 9px;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .calcSummary__top {
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
  }
  .calcSummary__body {
    width: 100%;
    margin-bottom: 30px;
  }
  .calcSummary__body-row {
    margin-bottom: 30px;
  }
  .calcSummary__foot {
    width: 100%;
    margin-bottom: 40px;
  }
  .calcSummary .button {
    margin: 0 auto;
  }

  .faq__inner {
    padding-right: calc(100% - 280px);
  }
  .faq__inner::before {
    width: calc(100% - 290px);
  }
  .faq__inner-content {
    padding: 20px;
  }
  .faqItem__body {
    width: calc(100% - 290px);
    padding: 20px;
  }

  .reports__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .reportsItem {
    width: 100%;
    max-width: unset;
    padding: 30px;
    margin: 0 0 30px 0;
  }
  .reportsItem:last-child {
    margin: 0;
  }
  .reportsItem__image-wrapper {
    width: 180px;
  }
  .reportsItem__content {
    width: calc(100% - 200px);
    max-width: unset;
  }

  .placeContent {
    padding: 20px 20px 30px 20px;
  }
  .placeContent__item-icon {
    margin-bottom: 10px;
  }
  .placeContent__item h6 {
    font-size: 15px;
    line-height: 20px;
  }
  .placeContent__head {
    margin-bottom: 20px;
  }
  .placeContent__body h5 {
    margin-bottom: 10px;
  }
  .searchResults__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }

  .searchResultsItem {
    width: 100%;
    max-width: unset;
    padding: 30px;
    margin: 0 0 30px 0;
  }

  .searchResultsItem:last-child {
    margin: 0;
  }

  .searchResultsItem__image-wrapper {
    width: 180px;
  }
}
@media (max-width: 750px) {
  h1.large {
    font-size: 50px;
    line-height: 60px;
  }

  h2 {
    font-size: 30px;
    line-height: 35px;
  }
  h2.sm {
    font-size: 25px;
    line-height: 30px;
  }

  .auto__container {
    padding: 0 20px;
  }

  .hero .slick-arrow {
    bottom: 90px;
  }
  .hero .slick-next {
    right: 20px;
  }
  .hero .slick-prev {
    right: 70px;
  }
  .hero .slick-dots {
    right: 20px;
    width: calc(100% - 40px);
    bottom: 70px;
  }
  .hero h1 {
    bottom: 30px;
  }

  .help__inner-slider {
    margin: 0 -6px;
  }
  .help__inner .slick-slide {
    margin: 0 6px;
  }
  .helpItem__content {
    padding: 15px;
  }

  .info {
    padding: 30px 0;
  }
  .info__inner-content h2 {
    margin-bottom: 20px;
  }

  .faq.gray {
    background-color: #fff;
  }
  .faq.base {
    background: #f8f8f8;
  }
  .faq.base .faqItem__body {
    color: #3c3c3c;
  }
  .faq.base .faqItem__body h5 {
    display: block;
  }
  .faq__head {
    margin-bottom: 40px;
  }
  .faq__inner {
    padding-right: 0;
  }
  .faq__inner::before {
    display: none;
  }
  .faq__inner-content {
    padding: 15px 22px;
  }
  .faqItem__head {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .faqItem__head.mobActive .faqItem__title span::before {
    -webkit-transform: translateY(-40%) rotate(-45deg);
            transform: translateY(-40%) rotate(-45deg);
  }
  .faqItem__title {
    width: calc(100% - 40px);
  }
  .faqItem__title span::before {
    -webkit-transform: translateY(-60%) rotate(135deg);
            transform: translateY(-60%) rotate(135deg);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .faqItem__body {
    position: relative;
    width: 100%;
    padding: 20px 0;
    color: #fff;
  }
  .faqItem__body.active {
    display: none;
  }
  .faqItem__body.mobActive {
    -webkit-animation: fadeIn 0.3s ease;
            animation: fadeIn 0.3s ease;
    display: block;
  }
  .faqItem__body h5 {
    display: none;
  }

  .calc__inner-title {
    margin-bottom: 30px;
  }
  .calcForm {
    padding: 30px 20px;
  }
  .calcForm__title {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .calcForm__title h6 {
    width: 100%;
    margin-bottom: 30px;
  }
  .calcForm__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .calcForm .input__outer {
    width: 100%;
    max-width: unset;
    margin: 0 0 30px 0;
  }
  .calcForm .input__outer:last-child {
    margin: 0;
  }
  .calcSummary {
    padding: 20px;
  }
  .contact.uniq {
    background-color: #fff;
    padding: 0;
  }
  .contact.uniq .contact__inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .contact.uniq .contact__inner-form {
    padding: 30px 0 50px;
  }
  .contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__inner-content {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 50px 20px 60px 20px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact__inner-content::before {
    display: none;
  }
  .contact__inner-shape {
    -webkit-transform: translate(67%, 25%);
            transform: translate(67%, 25%);
  }
  .contact__inner-form {
    max-width: unset;
    padding: 30px 0;
  }
  .contact__inner-form-wrapper {
    width: 100%;
  }
  .contact__inner-links {
    width: 100%;
    max-width: 320px;
    margin: 0;
  }
  .contact__inner-foot {
    display: none;
  }
  .contact__inner h1 {
    margin-bottom: 30px;
    text-align: center;
  }

  .place {
    padding: 20px 0 80px;
  }
  .place__inner-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .placeContent {
    display: none;
  }
  .placeItem {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 35px;
  }
  .placeItem:last-child {
    margin: 0;
  }
  .placeItem__head {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .placeItem__head.active h6 {
    color: #7BC8EB;
    text-decoration: underline;
  }
  .placeItem__head.active h6::before {
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
    border-color: #7BC8EB;
  }
  .placeItem__head h6 {
    width: 100%;
    font-weight: 500;
    position: relative;
    text-align: center;
  }
  .placeItem__head h6::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    border-top: 2px solid #3c3c3c;
    border-right: 2px solid #3c3c3c;
    content: "";
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .placeItem__icon {
    width: 93px;
    height: 93px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
  }
  .placeItem__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
  }
  .placeItem__body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .placeItem__body.active {
    padding-top: 20px;
    max-height: 300px;
    opacity: 1;
  }
  .footer {
    padding: 30px 0;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-color: #fff;
    padding: 0;
  }
  .footer__form {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    max-width: unset;
    padding-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__form h3 {
    text-align: center;
    color: #fff;
  }
  .footer__form p {
    text-align: center;
    margin-bottom: 20px;
  }
  .footer__form .button {
    width: 100%;
    max-width: 120px;
    margin: 0 auto 40px;
    background-color: #809C2A;
    color: #fff;
  }
  .footer__form .button:hover {
    color: #3c3c3c;
  }
  .footer__form .button:hover span::before {
    border-color: #3c3c3c;
  }
  .footer__form .button span::before {
    border-color: #fff;
  }
  .footer__form .input input {
    border-color: #fff;
  }
  .footer__form .check {
    margin-bottom: 30px;
  }
  .footer__form .check label::before {
    border-color: #fff;
  }
  .footer__form .check label::after {
    top: 5px;
    -webkit-transform: translate(0) rotate(45deg);
            transform: translate(0) rotate(45deg);
  }
  .footer__info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    text-align: center;
    display: none;
    margin: 0 0 15px 0;
  }
  .footer__info.mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__info-logo {
    width: 100%;
    max-width: 153px;
    margin-bottom: 24px;
  }
  .footer__info-logo.big {
    max-width: 140px;
    margin: 0;
    margin-bottom: 35px;
  }
  .footer__info p b {
    text-transform: uppercase;
  }
  .footer__main-contact h6 {
    color: #fff;
    margin-bottom: 20px;
  }
  .footer__main-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__main-col {
    width: 50%;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
  }
  .footer__main-col a {
    margin-bottom: 10px;
  }
  .footer__main-col a:last-child {
    margin: 0;
  }
  .footer__copy p {
    margin: 0;
  }
  .footer__copy p:last-child {
    display: none;
  }

  .donate__inner-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .donate__inner-item {
    margin: 5px;
  }
  .donate__inner-item:nth-child(n) {
    width: calc(50% - 10px);
    max-width: unset;
  }

  .checkout {
    padding: 0;
  }
  .checkout .auto__container {
    padding: 0;
  }
  .checkout__bg {
    display: none;
  }
  .checkout__inner {
    padding: 30px 20px 35px;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    border-radius: unset;
  }
  .checkout__inner.last {
    padding: 0;
  }
  .checkout__inner-thanks {
    max-width: unset;
    border-radius: unset;
    padding: 25px 20px 30px;
  }
  .checkout__inner-thanks h1 {
    margin-bottom: 10px;
  }
  .checkout__inner-thanks p {
    margin-bottom: 18px;
  }
  .checkout__inner-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    min-height: 300px;
    padding-bottom: 76%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  .checkout__inner-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
  }
  .checkout__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .checkout__body > .button {
    margin: 0 auto;
  }
  .checkout__foot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .checkout__foot .checkc {
    width: 100%;
    margin-bottom: 20px;
  }
  .checkout__head h2.sm {
    font-size: 20px;
  }
}
@media (max-width: 650px) {
  .auto__container.sm {
    padding: 0 26px;
  }
  .blogsList {
    padding: 15px 0;
  }
  .blogsListItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    margin-bottom: 24px;
  }
  .blogsListItem__image-wrapper {
    width: 160px;
    margin-bottom: 20px;
  }
  .blogsListItem__content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .blogsListItem__content b {
    margin-bottom: 8px;
  }
  .blogsListItem h5 {
    margin-bottom: 10px;
  }
  .blogsListItem p {
    margin-bottom: 18px;
  }

  .work {
    padding: 0;
  }
  .work__title {
    margin-bottom: 30px;
  }
  .workMain {
    padding: 60px 0;
  }
  .workMain__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
  .workItem {
    width: 100%;
    margin: 0 0 35px 0;
  }
  .workItem:last-child {
    margin: 0;
  }
  .workItem p {
    max-width: 245px;
  }

  .reports {
    padding: 15px 0;
  }
  .reportsItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
    text-align: center;
    margin-bottom: 24px;
  }
  .reportsItem:nth-child(n+4) {
    display: none;
  }
  .reportsItem:nth-child(3) {
    margin: 0;
  }
  .reportsItem__image-wrapper {
    width: 160px;
    margin-bottom: 20px;
  }
  .reportsItem__content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reportsItem__content b {
    margin-bottom: 8px;
  }
  .reportsItem h5 {
    margin-bottom: 10px;
  }
  .reportsItem p {
    margin-bottom: 18px;
  }

  .footer .input {
    width: calc(100% - 20px);
  }
  .footer__form .check {
    text-align: center;
    margin-bottom: 30px;
  }
  .footer__form .check label::before {
    top: 0;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .footer__form .check label::after {
    top: 5px;
    -webkit-transform: translate(0) rotate(45deg);
            transform: translate(0) rotate(45deg);
  }
  .footer__main-col a {
    font-size: 14px;
    line-height: 16px;
  }
  .searchResults {
    padding: 15px 0;
  }

  .searchResultsItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    margin-bottom: 24px;
  }

  .searchResultsItem__image-wrapper {
    width: 160px;
    margin-bottom: 20px;
  }

  .searchResultsItem__content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .searchResultsItem__content b {
    margin-bottom: 8px;
  }

  .searchResultsItem h5 {
    margin-bottom: 10px;
  }

  .searchResultsItem p {
    margin-bottom: 18px;
  }
}
@media (max-width: 540px) {
  .imagePortrait{
    display: block !important;
  }
  .imageLandscape{
    display: none !important;
  }
  h1.large {
    font-size: 41px;
    line-height: 54px;
  }

  h2 {
    font-size: 25px;
    line-height: 30px;
  }
  h2.sm {
    font-size: 22px;
    line-height: 25px;
  }

  .basket {
    position: fixed;
    top: 60px;
    height: calc(100% - 60px);
    left: 0;
    right: unset;
    width: 100%;
    max-width: unset;
    min-width: unset;
    padding-top: 10px;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .basket__inner {
    position: relative;
    width: 100%;
    max-width: unset;
    min-width: unset;
    border-radius: 10px 10px 0 0;
    overflow: unset;
  }
  .basket__inner::before {
    right: 84px;
    position: absolute;
    content: "";
    bottom: calc(100% - 1px);
    width: 15px;
    height: 15px;
    background-color: #7BC8EB;
    -webkit-transform: translateY(50%) rotate(45deg);
            transform: translateY(50%) rotate(45deg);
  }
  .basket__inner-head {
    padding: 30px 20px 20px;
  }
  .basket__inner-content {
    padding: 0 20px;
  }
  .basket__total {
    padding: 24px 20px;
  }

  .main__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main__wrapper .work {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .banner {
    padding: 0 0 30px 0;
  }
  .banner .auto__container {
    padding: 0;
  }
  .banner__inner .video {
    min-height: 230px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .terms {
    padding: 30px 0 100px;
  }
  .terms__inner h2 {
    text-align: center;
  }

  .header__inner {
    height: 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .header__inner-logo {
    width: 63px;
  }

  .hero.nonSlide .heroItem h1 {
    bottom: 22px;
  }
  .hero .slick-arrow {
    display: none;
  }
  .hero .slick-dots {
    top: 272px;
    position: absolute;
    bottom: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero .slick-dots li {
    width: 10px;
    height: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    margin: 0 7px;
  }
  .hero .slick-dots li.slick-active button {
    background-color: #809C2A;
  }
  .hero .slick-dots li button {
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #ededed;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    cursor: pointer;
    border-radius: 50%;
  }
  .hero .slick-dots li button::before {
    display: none;
  }
  .heroItem {
    background-color: #fff;
  }
  .heroItem__bg {
    height: unset;
    position: relative;
    height: 300px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
  }
  .heroItem__bg > img {
    position: absolute;
    top: 0;
    left: 0;
  }
  .heroItem__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #1F61AB;
    padding: 30px 20px 24px;
    text-align: center;
    color: #fff;
    width: calc(100% + 40px);
    margin: 0 -20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .heroItem__content p {
    margin-bottom: 24px;
  }
  .heroItem__inner {
    min-height: unset;
    padding: 22px 0 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .heroItem__inner.center {
    /*display: none;*/
  }
  .heroItem h1 {
    padding: 0 20px;
    bottom: 44px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .heroItem h1.sm {
    width: 100%;
    max-width: 340px;
    text-align: start;
  }
  .heroItem .quote {
    position: absolute;
    width: 100%;
    top:10%;
    left: 10px;
    z-index: 3;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .heroItem .quote__inner {
    max-width: 300px;
    margin: 0 auto;
  }
  .heroItem .quote.mob {
    display: block;
  }
  .heroItem .quote.desk {
    display: none;
  }
  .heroItem .quote__text {
    font-size: 11px;
    line-height: 13px;
    margin-bottom: 9px;
  }
  .heroItem .quote h5 {
    font-size: 7px;
    line-height: 12px;
  }
  .heroItem .quote span {
    width: 20px;
    height: 16px;
    margin-bottom: 5px;
  }
  .hero__slider.big {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    height: unset;
  }
  .hero__slider.big .heroItem__inner {
    min-height: unset;
    padding: 0;
  }
  .heroMain {
    background-color: #fff;
  }
  .heroMain__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: unset;
    min-height: unset;
    padding: 0;
  }
  .heroMain__inner-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(100% + 40px);
    margin: 0 -20px 24px;
    background-color: #1F61AB;
    padding: 30px 20px 24px;
  }
  .heroMain__inner-text p {
    margin-bottom: 24px;
  }
  .heroMain__inner-text p:last-child {
    margin: 0;
  }
  .heroMain__inner h1 {
    display: none;
  }
  .heroMain__inner .instant {
    margin: 0;
  }
  .involve__inner-slider {
    margin: 0;
  }
  .involve .slick-list {
    overflow: visible !important;
  }

  .help.big .help__inner-slider {
    margin: 0;
  }
  .help.big .help__inner .slick-slide {
    margin: 0 12px;
  }
  .help.big .helpItem {
    min-height: unset;
  }
  .help.last {
    padding: 30px 0;
    background-color: #fff;
  }
  .help__inner-title {
    margin-bottom: 30px;
  }
  .help__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .help__inner-row .helpItem {
    width: 100%;
    margin: 0 0 24px 0;
    max-width: unset;
  }
  .help__inner-row .helpItem:nth-child(2) {
    margin: 0;
  }
  .help__inner-slider {
    margin: 0 5px;
  }
  .help__inner .slick-list {
    overflow: visible !important;
  }

  .support {
    padding: 24px 0;
  }
  .support__inner-row {
    width: calc(100% - 6px);
    padding-bottom: 30px;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .support__inner .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .support__inner .slick-slide {
    height: unset !important;
    margin: 0 6px !important;
  }
  .support__inner .slick-list {
    overflow: visible !important;
    padding: 0 !important;
  }
  .support__inner .slick-dots {
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .support__inner .slick-dots li {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 15px 0 0;
    background-color: #ededed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .support__inner .slick-dots li.slick-active {
    background-color: #809C2A;
  }
  .support__inner .slick-dots li:last-child {
    margin: 0;
  }
  .support__inner .slick-dots li button {
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 0;
    background-color: transparent;
  }
  .support__inner .slick-dots li button::before {
    display: none;
  }
  .supportItem {
    border-width: 7px;
    margin: 0;
  }
  .supportItem:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .supportItem.big {
    margin: 0;
    border-width: 10px;
  }
  .supportItem__image {
    padding-bottom: 77% !important;
    height: 100%;
  }
  .supportItem__content {
    padding: 10px;
    bottom: -10px;
    left: -10px;
    width: calc(100% + 20px);
  }
  .supportItem__content-title {
    width: calc(39% - 5px);
    max-width: 115px;
  }
  .supportItem__content-title span {
    width: 20px;
    margin-right: 4px;
  }
  .supportItem__content-title h6 {
    font-size: 10px;
    line-height: 15px;
  }
  .supportItem__content-form {
    width: calc(61% - 5px);
  }
  .supportItem__content .input input {
    font-size: 8px;
    line-height: 12px;
    padding: 6px;
  }
  .supportItem__content .button {
    font-size: 8px;
    line-height: 12px;
    padding: 6px;
  }
  .supportItem__content .button span {
    width: 4px;
    height: 4px;
  }
  .supportItem__content .button span::before {
    border-width: 1px;
  }
  .supportItem h3 {
    font-size: 17px;
    line-height: 17px;
    bottom: 50px;
  }
  .supportItem h3 b {
    padding: 3px 6px;
  }

  .about__inner-content {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
  .about__inner-slider {
    width: calc(100% + 50px);
    margin: 0 -25px;
  }
  .aboutGallery .slick-arrow {
    width: 20px;
    height: 20px;
    bottom: 40px;
  }
  .aboutGallery .slick-prev {
    right: calc(50% + 5px);
  }
  .aboutGallery .slick-next {
    left: calc(50% + 5px);
  }
  .aboutGallery .slick-dots {
    bottom: 20px;
  }
  .aboutGallery .slick-dots li {
    width: 6px;
    height: 6px;
    margin-right: 8px;
  }

  .info {
    padding: 22px 0 50px;
  }
  .info__inner-content h2 {
    display: none;
    margin-bottom: 30px;
  }
  .info__inner-content h2.base {
    display: block;
  }
  .info__inner-content h2.sm {
    display: block;
    font-size: 22px;
  }
  .info__inner-content h3 {
    font-size: 20px;
  }
  .info__inner-content p {
    text-align: start;
  }

  .contact__inner-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__inner .input__outer {
    width: 100%;
    margin: 0 0 30px 0;
    max-width: unset;
  }
  .contact__inner .input__outer:last-child {
    margin: 0;
  }
  .contact__inner .button {
    margin: 0 auto;
  }

  .blogs__inner-article p {
    margin-bottom: 30px;
  }
  .blogs__inner-image {
    margin-bottom: 20px;
  }
  .blogs__inner-foot {
    padding-top: 25px;
    text-align: center;
  }
  .blogs__inner-social {
    margin-bottom: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .blogs__inner h1 {
    margin-bottom: 18px;
  }

  .donation {
    background-color: #7BC8EB;
  }
  .donationTop {
    padding: 50px 0;
  }
  .donationTop__bg {
    display: none;
  }
  .donationTop__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: unset;
    padding: 0;
  }
  .donationTop__inner .instant {
    width: 100%;
  }
  .donationMain {
    padding: 0 0 30px 0;
  }
  .donationMain__inner-title {
    margin-bottom: 30px;
  }
  .donationMain__inner-title p {
    display: block;
  }
  .donationMain__inner-row {
    display: none;
  }
  .donationMain__inner-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .donationMain__inner h3 {
    margin-bottom: 30px;
  }
  .donationItem {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
  }
  .donationItem:last-child {
    margin: 0;
  }
  .donationItem__head {
    padding: 18px 20px;
    background-color: #fff;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .donationItem__head.active span::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 0;
  }
  .donationItem__head:hover {
    opacity: 1;
  }
  .donationItem__head:hover span {
    background-color: #3c3c3c;
  }
  .donationItem__head span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #7BC8EB;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
  }
  .donationItem__head span::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 2px;
    background-color: #fff;
    content: "";
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .donationItem__head span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 8px;
    background-color: #fff;
    content: "";
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .donationItem__head h6 {
    color: #272727;
    font-weight: 700;
    width: calc(100% - 30px);
  }
  .donationItem__body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
  }
  .donationItem__body.active {
    max-height: 300px;
    opacity: 1;
    padding: 0 20px 25px;
  }
  .donationItem__body p {
    color: #3c3c3c;
    padding: 20px 0 0;
  }

  .donate__inner-item {
    margin: 5px;
    margin: 0 0 15px 0;
  }
  .donate__inner-item:last-child {
    margin: 0;
  }
  .donate__inner-item:nth-child(n) {
    width: 100%;
    max-width: unset;
  }
  .donate__inner .select.uniq select {
    padding: 15px 35px 15px 15px;
  }
  .donate__inner .input input {
    padding: 15px;
  }
  .donate__inner .button {
    padding: 15px;
  }

  .checkout__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .checkout__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 22px;
  }
  .checkout__head .checkout__back {
    position: relative;
    margin-bottom: 20px !important;
  }
  .checkout__head .checkout__back b {
    display: block;
    font-weight: 500;
  }
  .checkout__head .checkout__back span {
    display: none;
  }
  .checkout__head h6 {
    width: 100%;
    text-align: center;
  }
  .checkout__body .input {
    position: relative;
  }
  .checkout__body .input__outer {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .checkout__body .input__outer:last-child {
    margin: 0;
  }
  .checkout__foot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(100% + 40px);
    margin: 0 -20px 35px;
    padding: 20px;
    background-color: #7BC8EB;
    color: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .checkout__foot .checkc {
    width: 100%;
    margin-bottom: 20px;
  }
  .checkout__foot .checkc input:checked + label::before {
    border-color: #3c3c3c;
  }
  .checkout__foot .checkc label {
    color: #fff;
  }
  .checkout__foot .checkc label::before {
    background-color: #fff;
    border-color: transparent;
  }
  .checkout__foot .checkc label::after {
    border-color: #809C2A;
  }
  .checkout__total-rows {
    padding: 0;
  }
  .checkout__total-row {
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
    margin: 0;
  }
  .checkout__total-row.last {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: unset;
  }
  .checkout__total-row.last p {
    margin-right: 50px;
  }
  .checkout__total-foot {
    padding-top: 22px;
  }
  .checkoutBasket {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .checkoutBasket__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .checkoutBasket__title p {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: 0 0 30px 0;
    text-align: center;
  }
  .checkoutBasket__rows {
    margin-bottom: 40px;
  }
  .checkoutBasket__support {
    margin-bottom: 38px;
  }
  .checkoutBasket__support > h6 {
    text-align: center;
    margin-bottom: 40px;
  }
  .checkoutBasket__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .checkoutBasket__item .checkc {
    margin-bottom: 20px;
  }
  .checkoutBasket__item .checkc label {
    padding: 0;
  }
  .checkoutBasket__item .checkc label::before {
    display: none;
  }
  .checkoutBasket__item .checkc label::after {
    display: none;
  }
  .checkoutBasket > .button {
    margin: 0 auto;
  }
  .checkout .inputc__row .inputc__outer {
    margin: 15px 10px !important;
  }
  .checkout .inputc__row .inputc__outer.w-50 {
    width: 100%;
    margin: 10px;
  }
  .checkout .inputc__row .inputc__outer.w-32 {
    width: calc(60% - 20px);
    margin: 10px;
  }
  .checkout .inputc__row .inputc__outer.w-18 {
    width: calc(35% - 20px);
    margin: 10px;
  }
  .checkout .inputc__row .inputc__outer.w-21 {
    width: calc(38% - 20px);
    margin: 10px;
  }
  .checkout .inputc__row .inputc__outer.w-29 {
    width: calc(62% - 20px);
    margin: 10px;
  }
  .checkout .inputc__row .inputc__outer.w-100 {
    width: calc(100% - 20px);
    margin: 10px;
  }
  .checkout .inputc__row .inputc__outer.w-65 {
    width: calc(65% - 20px);
    margin: 10px;
  }
  .checkout .inputc__row .inputc__outer.w-35 {
    width: calc(35% - 20px);
    margin: 10px;
  }

  .gift {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: unset;
  }
  .gift__icon {
    margin: 0 0 18px 0;
  }
  .gift__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
    max-width: unset;
  }
  .gift__head h2 {
    width: 100%;
    text-align: center;
  }
  .gift__head h2.sm {
    font-size: 18px;
  }
  .gift p {
    max-width: 260px;
    margin: 0 auto 30px;
    text-align: center;
  }
  .gift .radioc {
    max-width: 300px;
    margin: 0 auto 20px;
  }
  .gift .radioc:last-child {
    margin: 0 auto;
  }
  .gift .radioc label::before {
    border-color: #cccccc;
  }
  .gift .radioc input:checked + label::before {
    border-color: #fff;
  }

  .payment__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -12px;
    padding-bottom: 20px;
  }
  .payment__item {
    width: calc(50% - 24px);
    margin: 12px;
  }
  .payment__item label {
    padding: 0 0 30px 0;
  }
}
@media (max-width: 380px) {
  .auto__container.sm {
    padding: 0 20px;
  }
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.hidden {
  display: none;
}

.modal-window {
  font-size: 14px;
  line-height: 1.4;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.modal-window:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal-window.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal-window > div {
  width: 380px;
  max-height: 80vh;
  overflow: scroll;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 3em;
  background: white;
  -webkit-box-shadow: 0px 10px 40px -20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 10px 40px -20px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 10px 40px -20px rgba(0, 0, 0, 0.5);
}
.modal-window header {
  font-weight: bold;
}
.modal-window h1 {
  font-size: 150%;
  margin: 0 0 15px;
}
.modal-window h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}
.modal-points {
  margin-block-start: 0;
  padding-inline-start: 0;
}
.modal-points > li:not(:last-child) {
  margin-bottom: 8px;
}
.modal-close {
  color: #f93737;
  line-height: 50px;
  font-size: 100%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 70px;
  text-decoration: none;
}
.modal-close:hover {
  color: #820000;
}
.modal-window > div {
  border-radius: 1rem;
}
.modal-btn {
  background-color: white;
  padding: 1em 1.5em;
  border-radius: 0.5rem;
  text-decoration: none;
}
.modal-btn i {
  padding-right: 0.3em;
}
.detail-item {
  display: flex;
  margin-bottom: 4px;
}
.detail-label {
  min-width: 150px;
  opacity: 0.6;
  padding-right: 10px;
}
.container {
  display: grid;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.validation-message {
  color: red;
}

.searchResults {
  padding: 80px 0;
}

.searchResults__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.searchResults__inner h2 {
  color: #809C2A;
}

.searchResults__inner .select {
  display: none;
}

.searchResultsItem {
  /* width: calc(50% - 40px);
max-width: 540px; */
  margin: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px;
  color: #3c3c3c;
  border-radius: 10px;
  background-color: #e3e3e3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.searchResultsItem__image {
  position: relative;
  padding-bottom: 135%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}

.searchResultsItem__image-wrapper {
  width: 160px;
}

.searchResultsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.searchResultsItem__content {
  /* width: calc(100% - 180px);
max-width: 580px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.searchResultsItem__content b {
  font-weight: 700;
  margin-bottom: 12px;
}

.searchResultsItem h5 {
  margin-bottom: 20px;
  font-weight: 600;
}

.searchResultsItem p {
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.searchResultsItem .button {
  width: 100%;
  max-width: 140px;
  margin: auto 0 0 0;
  border-radius: 10px;
  background-color: #3c3c3c;
  border: unset;
  padding: 12px 14px;
}

.searchResultsItem .button:hover {
  background-color: #7BC8EB;
}

.cookie-bar {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  bottom: 0;
  right: 0;
  left: 0;
  height: 60px;
  text-align: left;
  padding: 0 20px;
  line-height: auto;
  background: #243746;
  color: white;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  transition: 0.8s;
  animation: slideIn 0.8s;
  animation-delay: 0.8s;
}
.cookie-bar .message {
  white-space: nowrap;
}
.cookie-bar .mobile {
  display: none;
}

@media (max-width: 767px) {
  .cookie-bar .message {
    display: none;
  }
  .cookie-bar .mobile {
    display: inline-block;
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
.close-cb {
  border: none;
  color: #fff;
  background: #7BC8EB;
  min-width: 120px;
  text-align: center;
  cursor: pointer;
  border-radius: 3px;
  line-height: 30px;
  height: 30px;
  width: auto;
  padding: 2px 10px;
  font-size: 16px;
  font-weight: bold;
}
.close-cb:hover {
  background: #1F61AB;
}
.checkbox-cb {
  display: none;
}
.checkbox-cb:checked + .cookie-bar {
  transform: translateY(50px);
}

.iti {
  width: inherit;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {  
  padding-left: 52px !important;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

.umbraco-forms-navigation {
  padding: 0 40px 40px 40px;
}