@charset "UTF-8";
:root {
  --primary: #fa4799;
  --primary-hover: #eb1276;
  --corner: 6px;
}
:root .header__inner-logo img.pink {
  display: block;
}
:root .header__inner-logo img.orange {
  display: none;
}
:root .footer__inner-logo img.pink {
  display: block;
}
:root .footer__inner-logo img.orange {
  display: none;
}
:root .contact__content a img.pink {
  display: block;
}
:root .contact__content a img.orange {
  display: none;
}



.thanks {
  background-color: #1658a6 !important;
}
.thanks__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: calc(100vh - 60.8px);
  padding: 90px 0;
  box-sizing: border-box;
}
.thanks__inner-content {
  width: calc(60% - 5px);
  max-width: 600px;
  background-color: #fff;
}
.thanks__inner-logo {
  width: calc(40% - 5px);
  max-width: 380px;
  display: flex;
}
.thanks__inner-logo img {
  width: 100%;
}
.thanks .button {
  background-color: #1956a7 !important;
  padding: 15px 20px;
}

html.singapore {
  --primary: #fa4799;
  --primary-hover: #eb1276;
  --corner: 6px;
}
html.singapore .header__inner-logo img.pink {
  display: block;
}
html.singapore .header__inner-logo img.orange {
  display: none;
}
html.singapore .footer__inner-logo img.pink {
  display: block;
}
html.singapore .footer__inner-logo img.orange {
  display: none;
}
html.singapore .contact__content a img.pink {
  display: block;
}
html.singapore .contact__content a img.orange {
  display: none;
}
html.malaysia {
  --primary: #ff7612;
  --primary-hover: #e20a0a;
  --corner: 20px;
}
html.malaysia .slick-arrow:hover {
  border-color: var(--primary);
}
html.malaysia .slick-arrow:hover::before {
  background: url("../images/icons/arrow-left-primary(malaysia).svg") center no-repeat;
  background-size: contain;
}
html.malaysia .slick-arrow:focus {
  border-color: var(--primary);
}
html.malaysia .slick-arrow:focus::before {
  background: url("../images/icons/arrow-left-primary(malaysia).svg") center no-repeat;
  background-size: contain;
}
html.malaysia .header__inner-logo img.pink {
  display: none;
}
html.malaysia .header__inner-logo img.orange {
  display: block;
}
html.malaysia .footer__inner-logo img.pink {
  display: none;
}
html.malaysia .footer__inner-logo img.orange {
  display: block;
}
html.malaysia .contact__content a img.pink {
  display: none;
}
html.malaysia .contact__content a img.orange {
  display: block;
}

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: "Open Sans", sans-serif;
  font-size: 15px;
  color: #414141;
  line-height: 20px;
  font-weight: 400;
  background: #fff;
}

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: 1100px;
  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-weight: 800;
  font-size: 60px;
  line-height: 110%;
}

h2 {
  font-weight: 800;
  font-size: 40px;
  line-height: 110%;
}

h3 {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
}
h3.ex {
  font-size: 55px;
  line-height: 132%;
  font-weight: 700;
}

h4 {
  font-size: 30px;
  line-height: 120%;
  font-weight: 600;
}

h5 {
  font-size: 25px;
  line-height: 120%;
}
h5.sm {
  font-size: 22px;
}

h6 {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
}
h6.mid {
  font-size: 18px;
  line-height: 20px;
}
h6.sm {
  font-size: 15px;
  line-height: 20px;
}
h6.sup {
  font-size: 15px;
  line-height: 20px;
  color: var(--primary);
  margin-bottom: 20px;
}

p.big {
  font-size: 20px;
  line-height: 27px;
}
p.lg {
  font-size: 18px;
  line-height: 25px;
}
p.med {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}
p.sm {
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
}

body.active {
  overflow: hidden;
}

.main {
  overflow: hidden;
  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;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  padding: 10px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: var(--corner);
}
.button.primary {
  background-color: var(--primary);
  color: #fff;
}
.button.primary:hover {
  opacity: 1;
  background-color: var(--primary-hover);
}
.button.secondary {
  background-color: #1956a7;
  color: #fff;
  padding: 16px;
}
.button.secondary:hover {
  opacity: 1;
  background-color: #2575de;
}
.button.light {
  background-color: #fff;
  color: var(--primary);
  padding: 12px 22px;
  border: 1px solid var(--primary);
}
.button.light:hover {
  opacity: 1;
  background-color: var(--primary);
  color: #fff;
}
.button.light:hover img.dark {
  opacity: 0;
}
.button.light:hover img.light {
  opacity: 1;
}
.button span {
  width: 14px;
  height: 14px;
  margin-left: 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;
}
.button img {
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button img.light {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 170px;
}
.search input {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 15px;
  line-height: 20px;
  font-family: "Open Sans", sans-serif;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 10px 10px 10px 35px;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  background-color: #fff;
  font-style: normal;
  color: #414141;
}
.search input::-webkit-input-placeholder {
  font-style: italic;
  color: #d0d0d0;
}
.search input::-moz-placeholder {
  font-style: italic;
  color: #d0d0d0;
}
.search input:-ms-input-placeholder {
  font-style: italic;
  color: #d0d0d0;
}
.search input::-ms-input-placeholder {
  font-style: italic;
  color: #d0d0d0;
}
.search input::placeholder {
  font-style: italic;
  color: #d0d0d0;
}
.search input:focus ~ span {
  opacity: 1;
}
.search span {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 13px;
  height: 13px;
  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%);
  opacity: 0.3;
}
.search span img {
  width: 100%;
}
.search span svg {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #d0d0d0;
}

.basket {
  display: none;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
}
.basket.active {
  display: block;
}
.basket__inner {
  padding: 0 0 228px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 400px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.basket__inner-content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 42px 40px 0 40px;
  overflow-y: auto;
  height: 100%;
}
.basket__inner-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: 20px;
}
.basket__inner-title h5 {
  color: #414141;
  line-height: 28px;
}
.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;
}
.basket__inner-close:hover {
  opacity: 0.8;
}
.basket__inner-close svg {
  pointer-events: none;
  color: #414141;
  width: 100%;
  height: 100%;
}
.basket__inner-desc {
  margin-bottom: 20px;
}
.basket__inner-desc p {
  color: #414141;
}
.basket__inner h6.sm {
  font-size: 18px;
  color: #414141;
  line-height: 21px;
  font-weight: 600;
  margin-bottom: 20px;
}
.basket__total {
  width: 100%;
  max-width: 400px;
  padding: 25px 40px 20px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #eaf3ff;
}
.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: 22px;
}
.basket__total-title h6 {
  color: #414141;
  line-height: 23px;
  font-weight: 700;
}
.basket__total-title h5 {
  color: #414141;
  line-height: 23px;
  font-weight: 700;
}
.basket__total .button {
  display: block;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  padding: 15px 0 !important;
  line-height: 1;
}
.basket__total .button.primary {
  margin-bottom: 10px;
}
.basket__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #1956a7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 15px;
}
.basket__item:last-child {
  margin-bottom: 0;
}
.basket__item-radio {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  width: 24px;
  height: 24px;
}
.basket__item-radio input {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  z-index: 1;
  cursor: pointer;
}
.basket__item-radio input:checked + label::before {
  opacity: 1;
}
.basket__item-radio label {
  display: block;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border: 1px solid #2856a7;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.basket__item-radio label::before {
  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;
  position: absolute;
  top: 2px;
  left: 7.2px;
  content: "";
  width: 6px;
  height: 12px;
  border-right: 3px solid #2856a7;
  border-bottom: 3px solid #2856a7;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.basket__item-left {
  padding: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 70px);
}
.basket__item-left-content {
  width: calc(100% - 32px);
}
.basket__item-left-content p {
  font-size: 12px;
  line-height: 14px;
  color: #414141;
  font-weight: 400;
}
.basket__item-left-content p:first-child {
  font-weight: 700;
  margin-bottom: 8px;
}
.basket__item-right {
  width: 70px;
  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;
  background: #f7f7f7;
  border-radius: 4px;
}
.basket__item-right h6.sm {
  margin-bottom: 0;
  font-weight: 700;
  color: #1956a7;
  line-height: 33px;
}
.basket__number {
  border-radius: 50%;
  background-color: var(--primary);
  width: 13px;
  height: 13px;
  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;
  margin-right: 5px;
}
.basket__number span {
  font-size: 8px;
  line-height: 100%;
  color: #fff;
}
.basket__box {
  border-radius: 4px;
  background: #eaf3ff;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 30px;
}
.basket__box-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: 12px;
}
.basket__box-title p {
  color: #414141;
  font-weight: 700;
}
.basket__box-title h6 {
  color: #1956a7;
  line-height: 24px;
  font-weight: 900;
}
.basket__box-desc {
  margin-bottom: 20px;
}
.basket__box-desc p {
  font-size: 12px;
  line-height: 17px;
  font-weight: 400;
  color: #414141;
}
.basket__box-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: "Open Sans", sans-serif;
  font-weight: 400;
  color: #1956a7;
  -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;
}
.basket__box-remove:hover {
  text-decoration: underline;
  text-underline-position: under;
}
.basket__box-remove svg {
  pointer-events: none;
  width: 10px;
  height: 10px;
  color: #1956a7;
  margin-right: 8px;
}
.basketBtn {
  width: 32px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  cursor: pointer;
  background-color: transparent;
  position: relative;
}
.basketBtn img {
  width: 25px;
}
.basketBtn .basket__number {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.basketLink {
  margin: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  background-color: transparent;
}
.basketLink b {
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  color: #414141;
}

.lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
  cursor: pointer;
  position: relative;
}
.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 .dropMenu {
  left: unset;
  right: 0;
}
.lang .dropMenu__inner::before {
  left: unset;
  right: 30px;
}
.lang .dropMenu li {
  margin-bottom: 25px;
}
.lang .dropMenu p::before {
  display: none;
}
.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;
  margin-left: 10px;
}
.lang__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.lang__flag {
  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;
  margin-left: 10px;
}
.lang__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.lang p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #414141;
  position: relative;
  padding-right: 16px;
}
.lang p::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #414141;
  border-right: 1px solid #414141;
  content: "";
  -webkit-transform: translateY(-72%) rotate(135deg);
          transform: translateY(-72%) rotate(135deg);
}

.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: 10px 35px 10px 15px;
  color: #414141;
  background-color: #fff;
  border-radius: var(--corner);
  border: 1px solid #c5d8f0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.select.uniq::before {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #1956a7;
  border-right: 1px solid #1956a7;
  content: "";
  -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: "Open Sans", 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;
  position: relative;
}
.input.uniq input {
  padding: 10px 15px;
  color: #1956a7;
  background-color: #fff;
  border-radius: var(--corner);
  border: 1px solid #c5d8f0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.input input {
  width: 100%;
  font-size: 15px;
  line-height: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination button {
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  background-color: transparent;
  padding: 5px;
  margin-right: 20px;
  color: #b5b5b5;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.pagination button:hover {
  color: var(--primary);
}
.pagination button.active {
  color: var(--primary);
}
.pagination button.button {
  font-family: "Open Sans", sans-serif;
  background-color: transparent;
  padding: 7px 30px 7px 15px;
  border: 1px solid var(--primary);
  position: relative;
  color: var(--primary);
  text-transform: capitalize;
  border-radius: 6px;
}
.pagination button.button:hover {
  opacity: 1;
}
.pagination button.button:hover::before {
  -webkit-transform: translate(4px, -40%) rotate(45deg);
          transform: translate(4px, -40%) rotate(45deg);
}
.pagination button.button::before {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--primary);
  border-right: 1px solid var(--primary);
  content: "";
  -webkit-transform: translateY(-40%) rotate(45deg);
          transform: translateY(-40%) rotate(45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  border-bottom: 1px solid #E3E3E3;
}
.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;
}
.header__inner-buttons {
  display: none;
}
.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: 118px;
}
.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;
  }
}
.nav {
  width: calc(100% - 140px);
  max-width: 1020px;
}
.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;
}
.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: 25px;
  -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: 600;
  color: #414141;
  padding-right: 16px;
  position: relative;
  padding: 20px 16px 20px 0;
}
.nav__inner-link:hover {
  opacity: 1;
}
.nav__inner-link::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #414141;
  border-right: 1px solid #414141;
  content: "";
  -webkit-transform: translateY(-70%) rotate(135deg);
          transform: translateY(-70%) rotate(135deg);
}
.nav__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner-buttons .button {
  padding: 10px 15px;
}
.nav__inner-social {
  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: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.dropMenu.wide .dropMenu__list {
  min-width: 240px;
}
.dropMenu.sm .dropMenu__list span {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.dropMenu.mid .dropMenu__list span {
  width: 22px;
  height: 22px;
}
.dropMenu.low {
  padding-top: 17px;
}
.dropMenu__back {
  display: none;
}
.dropMenu__inner {
  border-radius: 0 0 6px 6px;
  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);
  padding: 30px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #e3e3e3;
}
.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 span {
  width: 23px;
  height: 23px;
  margin-right: 20px;
  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;
}
.dropMenu__flags span img {
  width: 100%;
}
.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: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.dropMenu__list span {
  width: 24px;
  height: 24px;
  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;
}
.dropMenu__list span.sm img {
  max-width: 18px;
}
.dropMenu__list span img {
  width: 100%;
}
.dropMenu li {
  margin-bottom: 30px;
}
.dropMenu li:last-child {
  margin: 0;
}
.dropMenu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dropMenu li a:hover {
  opacity: 0.8;
}
.dropMenu p {
  white-space: nowrap;
  font-weight: 600;
  color: #414141;
  font-size: 15px;
  line-height: 20px;
}

.burger {
  display: none;
}

.footer {
  padding: 50px 0 110px;
}
.footer.rel {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.footer__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;
  padding-top: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f7f7f7;
}
.footer__inner-side {
  width: calc(50% - 10px);
  max-width: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__inner-links {
  width: calc(50% - 10px);
  max-width: 590px;
  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;
}
.footer__inner-info {
  color: #414141;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__inner-info p {
  margin-bottom: 8px;
}
.footer__inner-info a {
  color: #414141;
}
.footer__inner-info a b {
  font-weight: 500;
  color: #1956a7;
}
.footer__inner-logo {
  width: 200px;
  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: 28px;
}
.footer__inner-logo img {
  width: 100%;
}
.footer__inner-col {
  width: calc(32% - 6px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #414141;
}
.footer__inner-col:last-child {
  display: none;
}
.footer__inner-col:nth-child(3) {
  width: calc(36% - 6px);
}
.footer__inner-col h6 {
  font-weight: 700;
  margin-bottom: 15px;
}
.footer__inner-col a {
  color: #414141;
  margin-bottom: 7px;
  font-size: 15px;
  line-height: 20px;
}
.footer__inner-col a:hover {
  opacity: 1;
  color: #1956a7;
}
.footer__inner-col a:last-child {
  margin: 0;
}
.footer__inner-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__inner-social a {
  width: 40px;
  height: 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: 10px;
  background-color: #f8f8f8;
  border-radius: 50%;
}
.footer__inner-social a:last-child {
  margin: 0;
}
.footer__inner-social a.sm img {
  width: 9px;
}
.footer__inner-social a.big img {
  width: 19px;
}
.footer__inner-social a img {
  width: 15px;
}
.footer__inner-copy {
  padding-top: 24px;
  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;
}
.footer__inner-copy-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__inner-copy p,
.footer__inner-copy a {
  color: #222222;
  font-weight: 400;
}
.footer__inner-copy a {
  margin-right: 28px;
}
.footer__inner-copy a:last-child {
  margin: 0;
}
.footerForm {
  background-color: #f8f8f8;
  border-radius: 6px;
  padding: 40px 40px 30px;
}
.footerForm__top {
  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;
  margin-bottom: 30px;
}
.footerForm__top-title h6 {
  color: #393939;
  font-weight: 800;
  margin-bottom: 8px;
}
.footerForm__top-title p {
  color: #393939;
}
.footerForm__row {
  width: calc(100% - 290px);
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footerForm__row-inputs {
  width: 76%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #e3e3e3;
  border-radius: var(--corner) 0 0 var(--corner);
  overflow: hidden;
}
.footerForm__row-input {
  width: 28%;
  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-right: 1px solid #e3e3e3;
}
.footerForm__row-input:last-child {
  width: 44%;
  border-color: transparent;
}
.footerForm__row-input input {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  line-height: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  color: #000;
  background-color: #f7f7f7;
}
.footerForm__row-input input::-webkit-input-placeholder {
  color: #393939;
}
.footerForm__row-input input::-moz-placeholder {
  color: #393939;
}
.footerForm__row-input input:-ms-input-placeholder {
  color: #393939;
}
.footerForm__row-input input::-ms-input-placeholder {
  color: #393939;
}
.footerForm__row-input input::placeholder {
  color: #393939;
}
.footerForm__row .button {
  width: 24%;
  border-radius: 0 var(--corner) var(--corner) 0;
  padding: 10px;
}
.footerForm > p i {
  font-weight: 300;
}

.vision {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.vision__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 50px; 
}
.vision__bg iframe,
.vision__bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.vision__bg img {
  z-index: 1;
}
.vision__bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 2;
  left: 0;
  /*background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(black));*/
  /*background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, black 100%);*/
}
.vision__inner {
  position: relative;
  min-height: 300px;
  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;
  color: #fff;
  padding: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.vision__inner-content {
  z-index: 3;
  position: relative;
  max-width: 480px;
}
.vision__inner-play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.vision__inner-play:hover {
  opacity: 1;
}
.vision__inner-play:hover span {
  background-color: var(--primary);
  border-color: var(--primary);
}
.vision__inner-play span {
  width: 80px;
  height: 80px;
  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;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.vision__inner-play span img {
  width: 25px;
}
.vision__inner-play h6 {
  width: calc(100% - 100px);
  color: #fff;
  font-size: 20px;
  line-height: 27px;
  font-weight: 900;
}
.vision__inner h5 {
  margin-bottom: 20px;
}
.vision__inner p {
  margin-bottom: 30px;
}

.donate {
  position: fixed;
  bottom: -1px;
  right: 0;
  width: 100%;
  max-width: 340px;
  background-color: #1956a7;
  z-index: 99;
  border-radius: 6px 6px 0 0;
  background: -webkit-gradient(linear, left top, right top, from(#1956a7), to(#eaf3ff));
  background: linear-gradient(90deg, #1956a7 0%, #eaf3ff 100%);
}
.donate .auto__container {
  padding: 0;
}
.donate__inner {
  width: 100%;
  -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;
  padding: 0;
}
.donate__inner-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 10px 8px 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.donate__inner-title.active span {
  background-color: #fff;
}
.donate__inner-title.active span::before {
  -webkit-transform: translate(-50%, -65%) rotate(135deg);
          transform: translate(-50%, -65%) rotate(135deg);
  border-color: #1956a7;
}
.donate__inner-title b {
  font-size: 15px;
  line-height: 100%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #fff;
}
.donate__inner-title span {
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  border-radius: 50%;
  position: relative;
}
.donate__inner-title span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translate(-50%, -40%) rotate(-45deg);
          transform: translate(-50%, -40%) rotate(-45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.donate__inner-title span img {
  display: none;
}
.donate__inner-row {
  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;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: calc(100% - 20px);
  margin: 0 auto;
  max-width: unset;
  transition: 0.3s ease;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 6px;
}
.donate__inner-row.active {
  max-height: 500px;
  opacity: 1;
  padding: 20px;
  margin-bottom: 10px;
}
.donate__inner-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.donate__inner-item:last-child {
  margin: 10px 0 0 0;
}
.donate__inner .button {
  width: 100%;
}
.donate__inner .select {
  width: 100%;
}
.donate__inner .input {
  width: 100%;
}
.donate__inner .input input::-webkit-input-placeholder {
  color: #1956a7;
}
.donate__inner .input input::-moz-placeholder {
  color: #1956a7;
}
.donate__inner .input input:-ms-input-placeholder {
  color: #1956a7;
}
.donate__inner .input input::-ms-input-placeholder {
  color: #1956a7;
}
.donate__inner .input input::placeholder {
  color: #1956a7;
}

.faq {
  padding: 50px 0 0;
}
.faq.vol {
  padding: 60px 0 10px;
}
.faq__inner-title {
  margin-bottom: 28px;
  text-align: center;
  margin-bottom: 30px;
}
.faq__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.faq__inner-col {
  width: calc(50% - 15px);
  max-width: 500px;
}
.faqItem {
  border-bottom: 1px solid #c5d8f0;
}
.faqItem__head {
  padding: 25px 0;
  position: relative;
  cursor: pointer;
  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__head.active h6 {
  color: var(--primary);
}
.faqItem__head.active span::before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 0;
}
.faqItem__head.active span::after {
  background-color: var(--primary);
}
.faqItem__head h6 {
  width: 100%;
  position: relative;
  font-weight: 600;
  color: #414141;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding-right: 20px;
}
.faqItem__head h6 span {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faqItem__head h6 span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 100%;
  content: "";
  background-color: #414141;
  border-radius: 1px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faqItem__head h6 span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #414141;
  border-radius: 1px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faqItem__body {
  max-height: 0;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 0;
  overflow: hidden;
}
.faqItem__body.active {
  max-height: 500px;
  opacity: 1;
  padding: 5px 0 30px;
}

.about {
  padding: 0 0 60px;
}
.about__inner {
  position: relative;
  min-height: 550px;
}
.about__inner-title {
  margin-bottom: 20px;
}
.about__inner-title h5 {
  color: #414141 !important;
}
.about__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about__inner-content {
  width: calc(50% - 10px);
  max-width: 500px;
}
.about__inner-content h5 {
  margin-bottom: 20px;
  font-weight: 600;
}
.about__inner-content h5 i {
  color: #1956a7;
  font-weight: 700;
}
.about__inner-content p {
  margin-bottom: 30px;
}
.about__inner-content p:last-child {
  margin: 0;
}
.about__inner-content h4 {
  margin-bottom: 30px;
  font-weight: 600;
  color: #414141;
}
.about__inner-content h4 span {
  color: #1956a7;
}
.about__inner-image {
  padding-bottom: 108%;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.about__inner-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 10px);
  max-width: 500px;
}
.about__inner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.about__inner-main {
  padding-top: 70px;
}
.about__inner-main h2 {
  margin-bottom: 8px;
  color: #1956a7;
}
.aboutItem {
  padding: 30px 0;
  border-bottom: 1px solid #E6E6E6;
}
.aboutItem h6 {
  margin-bottom: 16px;
  color: #414141;
}
.aboutItem p {
  margin-bottom: 30px;
  color: #414141;
}
.aboutItem .button {
  padding: 12px 33px;
}

.calc {
  padding: 70px 0 100px;
  position: relative;
}
.calc__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;
  pointer-events: none;
}
.calc__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.calc__inner {
  max-width: 600px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.calc__inner h2 {
  font-weight: 600;
  color: #1956a7;
  margin-bottom: 20px;
}
.calc__inner p.lg {
  margin-bottom: 32px;
}
.calc__inner h6.mid {
  margin-bottom: 10px;
}
.calc__head {
  background-color: var(--primary);
  padding: 16px 40px;
  color: #fff;
}
.calc__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #eaf3ff;
  padding: 0 40px;
}
.calc__sub p {
  width: 50%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1956a7;
  border-right: 1px solid #fff;
}
.calc__sub p:last-child {
  text-align: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border: unset;
}
.calc__sub p b {
  font-weight: 600;
}
.calc__body {
  padding: 30px 40px 50px;
}
.calc__group {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e6e6e6;
}
.calc__total {
  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;
}
.calc__total h4 {
  font-weight: 700;
  color: #1956a7;
}
.calc__total-row {
  width: calc(100% - 200px);
}
.calc__total .button {
  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: 13px 20px;
}
.calc__total .button img {
  width: 13px;
  height: 13px;
  margin-left: 8px;
}

.inputz {
  position: relative;
}
.inputz input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #c5d8f0;
  border-radius: var(--corner);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 100%;
  font-family: "Open Sans", sans-serif;
  color: #000;
  padding: 14px 23px 13px 38px;
}
.inputz input::-webkit-input-placeholder {
  color: #898989;
}
.inputz input::-moz-placeholder {
  color: #898989;
}
.inputz input:-ms-input-placeholder {
  color: #898989;
}
.inputz input::-ms-input-placeholder {
  color: #898989;
}
.inputz input::placeholder {
  color: #898989;
}
.inputz__outer {
  position: relative;
  margin-bottom: 30px;
}
.inputz__outer:last-child {
  margin-bottom: 0;
}
.inputz__label {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: #414141;
  display: block;
  margin-bottom: 20px;
}
.inputz__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 22px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #acacac;
}

.blogs {
  padding: 40px 0 30px;
}
.blogs__inner {
  color: #414141;
}
.blogs__inner-article {
  max-width: 700px;
  margin: 0 auto;
  border-bottom: 1px solid #eaeaea;
}
.blogs__inner-article p {
  margin-bottom: 30px;
}
.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: 6px;
  overflow: hidden;
  padding-bottom: 67%;
  position: relative;
  margin-bottom: 30px;
}
.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 h4 {
  margin-bottom: 18px;
}
.blogs__inner h4 span {
  color: var(--primary);
}
.blogs__inner h5 {
  margin-bottom: 20px;
}

.checkout {
  padding: 70px 0 100px 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;
  pointer-events: none;
}
.checkout__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.checkout__inner {
  border-radius: 6px;
  overflow: hidden;
  max-width: 600px;
  -webkit-animation: 0.3s linear fadeUp;
          animation: 0.3s linear fadeUp;
  display: none;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
}
.checkout__inner.active {
  display: block;
}
.checkout__group {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #e6e6e6;
}
.checkout__group:last-child {
  border-bottom: unset;
  padding-bottom: 0;
  margin-bottom: 0;
}
.checkout__group .uniq {
  margin-bottom: 30px;
}
.checkout__group .uniq label {
  color: #1956a7;
}
.checkout__group-info h6 {
  font-weight: 400;
  margin-bottom: 10px;
}
.checkout__group-info p {
  margin-bottom: 20px;
}
.checkout__group-info p:last-child {
  margin: 0;
}
.checkout__group-row {
  max-width: 400px;
  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;
  margin-bottom: 20px;
}
.checkout__group-row .checkc label {
  padding-left: 30px;
}
.checkout__group-row .checkc label::before {
  width: 20px;
  height: 20px;
}
.checkout__group-row .checkc label:after {
  width: 5px;
  border-width: 2px;
  top: 3px;
  left: 8px;
}
.checkout__group > p {
  margin-bottom: 30px;
}
.checkout__head {
  padding: 18px 40px;
  color: #fff;
  background: var(--primary);
}
.checkout__sub {
  padding: 18px 40px;
  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;
  color: #1956a7;
  background: #eaf3ff;
}
.checkout__sub h6 {
  font-weight: 400;
}
.checkout__body {
  padding: 30px 40px 40px 40px;
}
.checkout__body h6 {
  margin-bottom: 30px;
}
.checkout__body h6 span {
  color: #ce0000;
}
.checkout__body h6:last-child {
  margin-bottom: 0;
}
.checkout .button {
  width: 180px;
  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 20px;
  background: #1956a7;
}
.checkout .button:hover {
  background: #124588;
}
.checkout__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  cursor: pointer;
  background: transparent;
  color: #1956a7;
  -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: 24px;
}
.checkout__back:hover {
  color: #2575de;
}
.checkout__back svg {
  width: 11px;
  height: 11px;
  margin-right: 5px;
}
.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: 20px 0 40px 0;
}
.checkout__total-row p {
  font-weight: 600;
}
.checkout__total-row h6 {
  font-weight: 800;
}
.checkout__total .button {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.checkout__total .button.paypal {
  background: #ffc43a;
}
.checkout__total .button.paypal:hover {
  opacity: 0.8;
}
.checkout__total .button.paypal img {
  width: 90px;
}
.checkout__total .button.apple {
  background: #414141;
}
.checkout__total .button.apple:hover {
  opacity: 0.8;
}
.checkout__total .button.apple img {
  width: 60px;
}
.checkout__total .button.google {
  background: #414141;
}
.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 #1956a7;
  padding: 30px;
  margin-bottom: 40px;
}
.checkout__thanks-inner h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: "Open Sans", sans-serif;
}
.checkout__thanks-inner p.med {
  font-weight: 400;
}

.checkout .formBtn {
  display: none;
  -webkit-animation: 0.2s linear fadeUp;
          animation: 0.2s linear fadeUp;
}
.checkout .formBtn.active {
  display: block;
}

.payment {
  border: 1px solid #c5d8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
}
.payment__item {
  border-bottom: 1px solid #c5d8f0;
  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::after {
  opacity: 1;
}
.payment__item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 12px 12px 75px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  line-height: 20px;
  min-height: 63px;
  font-weight: 400;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #414141;
}
.payment__item label::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  content: "";
  left: 30px;
  -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: 22px;
  height: 22px;
  border: 2px solid #c5d8f0;
  border-radius: 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: 16px;
  background: #2856a7;
  border-radius: 50%;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 35px;
}
.payment__item label img {
  width: 38px;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 18px;
}
.paymentInfo {
  padding: 30px;
  -webkit-animation: 0.2s linear fadeUp;
          animation: 0.2s linear fadeUp;
  display: none;
}
.paymentInfo.active {
  display: block;
}

.gift {
  padding: 34px 30px;
  border: 2px solid #1956a7;
  border-radius: 4px;
}
.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-bottom: 20px;
}
.gift__icon img {
  width: 100%;
}
.gift h6.sm {
  color: #1956a7;
  margin-bottom: 10px;
}
.gift h6.sm span {
  color: #ce0000;
}
.gift p.med {
  margin-bottom: 30px;
  color: #1956a7;
}

.inputc {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.inputc.sel::before {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #1956a7;
  border-right: 1px solid #1956a7;
  content: "";
  -webkit-transform: translateY(-70%) rotate(135deg);
          transform: translateY(-70%) rotate(135deg);
}
.inputc input,
.inputc select,
.inputc textarea {
  width: 100%;
  background: #ffffff;
  /* Action Black 20% */
  border: 1px solid #c5d8f0;
  border-radius: var(--corner);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 100%;
  font-family: "Open Sans", sans-serif;
  color: #414141;
  padding: 14px 20px;
  resize: none;
}
.inputc input::-webkit-input-placeholder, .inputc select::-webkit-input-placeholder, .inputc textarea::-webkit-input-placeholder {
  color: #898989;
}
.inputc input::-moz-placeholder, .inputc select::-moz-placeholder, .inputc textarea::-moz-placeholder {
  color: #898989;
}
.inputc input:-ms-input-placeholder, .inputc select:-ms-input-placeholder, .inputc textarea:-ms-input-placeholder {
  color: #898989;
}
.inputc input::-ms-input-placeholder, .inputc select::-ms-input-placeholder, .inputc textarea::-ms-input-placeholder {
  color: #898989;
}
.inputc input::placeholder,
.inputc select::placeholder,
.inputc textarea::placeholder {
  color: #898989;
}
.inputc select {
  -webkit-appearance: none;
  padding: 17px 20px;
}
.inputc__outer {
  position: relative;
  margin-bottom: 24px;
}
.inputc__outer label {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #414141;
  display: block;
  margin-bottom: 16px;
}
.inputc__outer label span {
  color: #ce0000;
}
.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-30 {
  width: calc(30% - 20px);
  margin: 10px;
}
.inputc__row .inputc__outer.w-20 {
  width: calc(20% - 20px);
  margin: 10px;
}
.inputc__row .inputc__outer.w-100 {
  width: calc(100% - 20px);
  margin: 10px;
}

.checkc {
  position: relative;
}
.checkc input {
  position: absolute;
  top: 0;
  left: 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: 44px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #414141;
  position: relative;
}
.checkc label span {
  color: #ce0000;
}
.checkc label::before {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  border-radius: 4px;
  border: 1px solid #2856a7;
  top: 0;
  left: 0;
}
.checkc label::after {
  position: absolute;
  content: "";
  width: 6px;
  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: 12px;
  border-bottom: 3px solid #2856a7;
  border-right: 3px solid #2856a7;
  top: 4px;
  left: 8px;
  -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: #1956a7;
  position: relative;
}
.radioc label::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #1956a7;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  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: 16px;
  background: #1956a7;
  border-radius: 50%;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 5px;
}

@-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);
  }
}
.impact {
  padding: 60px 0;
}
.impact__inner-title {
  text-align: center;
  margin-bottom: 40px;
}
.impact__inner-slider {
  width: calc(100% - 110px);
  max-width: 920px;
  margin: 0 auto;
  position: static !important;
}
.impact__inner-slider-wrapper {
  position: relative;
}
.impact__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.impact__inner .slick-slide {
  height: unset !important;
  margin: 0 10px;
}
.impact__inner .slick-current h3 {
  font-size: 45px;
  color: var(--primary);
}
.impact__inner .slick-current h3::before {
  opacity: 1;
}
.impact__inner .slick-list {
  padding: 0 !important;
}
.impact__inner .slick-arrow {
  width: 45px;
  height: 45px;
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #e3e3e3;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.impact__inner .slick-arrow:hover {
  border-color: var(--primary);
}
.impact__inner .slick-arrow:hover::before {
  background: url("../images/icons/arrow-left-primary.svg") center no-repeat;
  background-size: contain;
}
.impact__inner .slick-arrow:focus {
  border-color: var(--primary);
}
.impact__inner .slick-arrow:focus::before {
  background: url("../images/icons/arrow-left-primary.svg") center no-repeat;
  background-size: contain;
}
.impact__inner .slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 30%;
  background: url("../images/icons/arrow-left.svg") center no-repeat;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.impact__inner .slick-prev {
  left: 0;
}
.impact__inner .slick-next {
  right: 0;
}
.impact__inner .slick-next::before {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.impactItem {
  text-align: center;
}
.impactItem h3 {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  font-weight: 800;
  height: 60px;
  display: inline-block;
}
.impactItem h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  content: "";
  background-color: var(--primary);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
}

.intro {
  padding: 50px 0;
}
.intro.nonSlide .intro__inner-slider {
  padding-bottom: 0 !important;
}
.intro.nonSlide .intro__inner .slick-dots {
  display: none !important;
}
.intro.nonSlide .intro__inner .slick-list {
  overflow: visible !important;
}
.intro.nonSlide .introSlide__bg::before {
  width: 45%;
}
.intro.nonSlide .introSlide__bg::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  max-width: 693px;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, right top, left top, from(#000000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.intro.sm {
  padding: 0;
}
.intro__inner {
  position: relative;
  min-height: 600px;
  position: relative;
  padding: 60px 40px;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.intro__inner-content {
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  padding-left: 20px;
  position: relative;
  z-index: 2;
}
.intro__inner-content p {
  margin-bottom: 40px;
}
.intro__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intro__inner-buttons .button {
  margin-right: 40px;
}
.intro__inner-link {
  font-weight: 400;
  color: #fff;
  position: relative;
  padding-right: 16px;
}
.intro__inner-link:hover {
  opacity: 1;
}
.intro__inner-link:hover::before {
  -webkit-transform: translate(50%, -50%) rotate(45deg);
          transform: translate(50%, -50%) rotate(45deg);
}
.intro__inner-link::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.intro__inner-quote {
  width: 45%;
  max-width: 320px;
  text-align: end;
  position: relative;
  z-index: 2;
}
.intro__inner-quote h5 {
  color: #fff;
}
.intro__inner-slider {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.intro__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.intro__inner .slick-slide {
  height: unset !important;
}
.intro__inner .slick-list {
  height: 100% !important;
}
.intro__inner .slick-arrow {
  width: 45px;
  height: 45px;
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #e3e3e3;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.intro__inner .slick-arrow:hover {
  border-color: var(--primary);
}
.intro__inner .slick-arrow:hover::before {
  background: url("../images/icons/arrow-left-primary.svg") center no-repeat;
  background-size: contain;
}
.intro__inner .slick-arrow:focus {
  border-color: var(--primary);
}
.intro__inner .slick-arrow:focus::before {
  background: url("../images/icons/arrow-left-primary.svg") center no-repeat;
  background-size: contain;
}
.intro__inner .slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 30%;
  background: url("../images/icons/arrow-left.svg") center no-repeat;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.intro__inner .slick-prev {
  left: unset;
  right: calc(100% + 20px);
}
.intro__inner .slick-next {
  right: unset;
  left: calc(100% + 20px);
}
.intro__inner .slick-next::before {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.intro__inner h1 {
  margin-bottom: 20px;
}
.introSlide {
  position: relative;
}

.introSlide__bg .imgPortait {
  display:none;
}

.introSlide__bg .imgLandscape {
  display:block;
}
.introSlide__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  pointer-events: none;
}
.introSlide__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 693px;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.introSlide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -o-object-position: 70%;
     object-position: 70%;
}
.introSlide__inner {
  position: relative;
  min-height: 600px;
  padding: 60px 40px;
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.intro .instant {
  width: 50%;
  max-width: 320px;
  position: relative;
  z-index: 2;
}

.stories {
  padding: 50px 0 0;
}
.stories.big .stories__inner {
  padding: 0 !important;
}
.stories__inner-title {
  text-align: center;
  margin-bottom: 30px;
}
.stories__inner-tabs {
  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;
}
.stories__inner-tabs button {
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  color: #b5b5b5;
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-right: 40px;
  cursor: pointer;
}
.stories__inner-tabs button:last-child {
  margin: 0;
}
.stories__inner-tabs button.active {
  color: var(--primary);
}
.stories__inner-slider {
  margin: 0 -10px;
}
.stories__inner-wrapper {
  display: none;
}
.stories__inner-wrapper.active {
  display: block;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}
.stories__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}
.stories__inner-row .storiesItem {
  margin: 10px;
  width: calc(33.3% - 20px);
}
.stories__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
}
.stories__inner h3 {
  margin-bottom: 30px;
}
.stories__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.stories__inner .slick-slide {
  height: unset !important;
  margin: 0 10px;
}
.stories__inner .slick-arrow {
  width: 45px;
  height: 45px;
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #e3e3e3;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.stories__inner .slick-arrow:hover {
  border-color: var(--primary);
}
.stories__inner .slick-arrow:hover::before {
  background: url("../images/icons/arrow-left-primary.svg") center no-repeat;
  background-size: contain;
}
.stories__inner .slick-arrow:focus {
  border-color: var(--primary);
}
.stories__inner .slick-arrow:focus::before {
  background: url("../images/icons/arrow-left-primary.svg") center no-repeat;
  background-size: contain;
}
.stories__inner .slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 30%;
  background: url("../images/icons/arrow-left.svg") center no-repeat;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.stories__inner .slick-prev {
  left: unset;
  right: calc(100% + 10px);
}
.stories__inner .slick-next {
  right: unset;
  left: calc(100% + 10px);
}
.stories__inner .slick-next::before {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.storiesItem {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.storiesItem__image {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}
.storiesItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.storiesItem__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 20px 20px;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.storiesItem__content::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  pointer-events: none;
}
.storiesItem__content p {
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
}
.storiesItem__content p:last-child {
  margin: 0;
  font-weight: 300;
}
.storiesItem__content p b {
  font-weight: 600;
}

.mission {
  padding-top: 50px;
}
.mission__inner {
  padding: 40px 30px;
  border-radius: 6px;
  background-color: #eaf3ff;
}
.mission__inner-title {
  max-width: 534px;
  margin: 0 auto 40px;
  text-align: center;
}
.mission__inner-slider {
  padding-bottom: 75px;
  max-width: 960px;
  margin: 0 auto 50px;
}
.mission__inner-foot {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.mission__inner-foot h5 {
  font-weight: 600;
  margin-bottom: 20px;
}
.mission__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.mission__inner .slick-slide {
  height: unset !important;
  margin: 0 10px;
}
.mission__inner .slick-current h3 {
  font-size: 45px;
  color: var(--primary);
}
.mission__inner .slick-current h3::before {
  opacity: 1;
}
.mission__inner .slick-arrow {
  width: 45px;
  height: 45px;
  position: absolute;
  top: unset;
  bottom: 0;
  z-index: 3;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #e3e3e3;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translate(0);
          transform: translate(0);
  background-color: #fff !important;
}
.mission__inner .slick-arrow:hover {
  border-color: var(--primary);
}
.mission__inner .slick-arrow:hover::before {
  background: url("../images/icons/arrow-left-primary.svg") center no-repeat;
  background-size: contain;
}
.mission__inner .slick-arrow:focus {
  border-color: var(--primary);
}
.mission__inner .slick-arrow:focus::before {
  background: url("../images/icons/arrow-left-primary.svg") center no-repeat;
  background-size: contain;
}
.mission__inner .slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 30%;
  background: url("../images/icons/arrow-left.svg") center no-repeat;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.mission__inner .slick-prev {
  left: unset;
  right: calc(50% + 5px);
}
.mission__inner .slick-next {
  right: unset;
  left: calc(50% + 5px);
}
.mission__inner .slick-next::before {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.missionItem__inner {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.missionItem__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.instant {
  width: 100%;
  background-color: #fff;
  border-radius: 6px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.instant__title {
  margin-bottom: 20px;
  text-align: center;
}
.instant__title h5 {
  color: #1956a7;
}
.instant__btns {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
}
.instant__btn {
  position: relative;
  width: calc(50% - 10px);
  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: #eaf3ff;
  border-color: #eaf3ff;
}
.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: 15px;
  line-height: 17px;
  font-family: "Open Sans", sans-serif;
  color: #1956a7;
  font-weight: 700;
  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;
  border: 1px solid #c5d8f0;
  border-radius: var(--corner);
}
.instant__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
.instant__inner-select {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.instant__inner-select-icon {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 5px;
  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__inner-select-icon img {
  width: 100%;
  height: 100%;
}
.instant__inner-select select {
  width: 100%;
  background: #fff;
  border-radius: 4px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding: 11px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 15px;
  line-height: 17px;
  color: #1956a7;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  border: 1px solid #c5d8f0;
  border-radius: var(--corner);
}
.instant__radios {
  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;
  width: 100%;
  margin-bottom: 20px;
}
.instant__radio {
  position: relative;
  width: calc(33.3% - 5px);
  max-width: 80px;
  border-radius: var(--corner);
  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: #1956a7;
  color: #fff;
  border-color: #1956a7;
}
.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: 15px;
  line-height: 17px;
  font-family: "Open Sans", sans-serif;
  color: #1956a7;
  font-weight: 900;
  background: #fff;
  height: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #c5d8f0;
  border-radius: var(--corner);
}
.instant p {
  font-weight: 400;
  color: #898989;
  margin-bottom: 20px;
}
.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: 20px;
  border: 1px solid #c5d8f0;
  border-radius: var(--corner);
  overflow: hidden;
}
.instant__row-select {
  width: 70px;
  background: #fff;
  position: relative;
}
.instant__row-select select {
  border-radius: 4px;
  width: 100%;
  background: #fff;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding: 14px 25px 14px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 15px;
  line-height: 17px;
  color: #414141;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 30px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  border-right: 2px solid #C5D8F0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.instant__row-select-icon img {
  width: 10px;
  height: 5px;
}
.instant__row-input {
  width: calc(100% - 70px);
  position: relative;
  overflow: hidden;
}
.instant__row-input input {
  width: 100%;
  padding: 14px 20px 14px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 17px;
  font-weight: 400;
  color: #1956a7;
}
.instant__row-input input::-webkit-input-placeholder {
  color: #898989;
  font-style: italic;
}
.instant__row-input input::-moz-placeholder {
  color: #898989;
  font-style: italic;
}
.instant__row-input input:-ms-input-placeholder {
  color: #898989;
  font-style: italic;
}
.instant__row-input input::-ms-input-placeholder {
  color: #898989;
  font-style: italic;
}
.instant__row-input input::placeholder {
  color: #898989;
  font-style: italic;
}
.instant .button.primary {
  width: 100%;
  font-size: 15px;
  line-height: 17px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding: 14px 0;
}

.help__inner {
  background-color: #eaf3ff;
  border-radius: 6px;
  padding: 40px 40px 70px;
}
.help__inner-title {
  text-align: center;
  margin-bottom: 40px;
}
.help__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-top: 50px;
}
.help__inner-content {
  width: 55%;
  max-width: 480px;
  position: relative;
  -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;
  padding: 40px 40px 60px;
  background-color: #fff;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 2;
  border-radius: 6px;
}
.help__inner-image {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  overflow: hidden;
}
.help__inner-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  max-width: 480px;
}
.help__inner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.help__inner h5 {
  color: #1956a7;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 20px;
}
.help__inner p {
  margin-bottom: 20px;
  color: #898989;
}
.help__inner p:last-of-type {
  margin-bottom: 30px;
  color: #414141;
}

.appeals {
  padding: 10px 0 50px;
}
.appeals.sm {
  padding: 0;
}
.appeals__inner-title {
  max-width: 552px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
.appeals__inner-title p {
  max-width: 450px;
  margin: 0 auto;
}
.appeals__inner-slider {
  margin: 0 -10px;
}
.appeals__inner-row {
  display: none;
}
.appeals__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.appeals__inner .slick-slide {
  height: unset !important;
  margin: 10px;
}
.appeals__inner .slick-arrow {
  width: 45px;
  height: 45px;
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #e3e3e3;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.appeals__inner .slick-arrow:hover {
  border-color: var(--primary);
}
.appeals__inner .slick-arrow:hover::before {
  background: url("../images/icons/arrow-left-primary.svg") center no-repeat;
  background-size: contain;
}
.appeals__inner .slick-arrow:focus {
  border-color: var(--primary);
}
.appeals__inner .slick-arrow:focus::before {
  background: url("../images/icons/arrow-left-primary.svg") center no-repeat;
  background-size: contain;
}
.appeals__inner .slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 30%;
  background: url("../images/icons/arrow-left.svg") center no-repeat;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.appeals__inner .slick-prev {
  left: unset;
  right: calc(100% + 10px);
}
.appeals__inner .slick-next {
  right: unset;
  left: calc(100% + 10px);
}
.appeals__inner .slick-next::before {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.appeals__inner h2 {
  margin-bottom: 20px;
}
.appealsItem {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  padding: 20px 20px 30px 20px;
}
.appealsItem__image {
  width: 100%;
  padding-bottom: 65%;
  position: relative;
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
}
.appealsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.appealsItem__buttons {
  width: 100%;
  max-width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.appealsItem h6 {
  margin-bottom: 20px;
}
.appealsItem p {
  width: 100%;
  margin-bottom: 30px;
  font-weight: 600;
  color: #898989;
}
.appealsItem .button {
  width: calc(50% - 5px);
  max-width: 130px;
  padding: 12px;
}
.appealsItem__content {
  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;
  text-align: center;
}
.appealsItem__content > .button {
  width: 100%;
  max-width: unset;
}

.stats__inner {
  padding: 40px 30px 45px 30px;
  background-color: #eaf3ff;
  border-radius: 6px;
  margin-bottom: 50px;
}
.stats__inner-title {
  text-align: center;
  margin-bottom: 30px;
}
.stats__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 940px;
  margin: 0 auto;
}
.statsItem {
  width: calc(33.3% - 10px);
  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;
  text-align: center;
  background-color: #fff;
  border-radius: 6px;
  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);
}
.statsItem__icon {
  width: 120px;
  height: 120px;
  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%;
  margin-bottom: 16px;
  background-color: #ffd5d6;
}
.statsItem__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.statsItem h2 {
  font-weight: 800;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--primary);
}
.statsItem p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 30px;
}
.statsItem .button {
  width: 100%;
  padding: 10px;
}

.credit {
  padding: 60px 0 10px;
}
.credit__inner-slider {
  margin: 0 -10px !important;
}
.credit__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.credit__inner .slick-slide {
  height: unset !important;
  margin: 0 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.credit__inner .slick-current {
  opacity: 1;
}
.credit__inner .slick-current .creditItem__inner-text {
  opacity: 1;
  visibility: visible;
}
.credit__inner .slick-list {
  overflow: visible !important;
  max-width: 930px;
  margin: 0 auto;
}
.credit__inner .slick-dots {
  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;
  bottom: -50px;
}
.credit__inner .slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #1956a7;
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin: 0 4px;
  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;
}
.credit__inner .slick-dots li.slick-active {
  background-color: #1956a7;
}
.credit__inner .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.credit__inner .slick-arrow {
  width: 45px;
  height: 45px;
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #e3e3e3;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #fff !important;
}
.credit__inner .slick-arrow:hover {
  border-color: var(--primary);
}
.credit__inner .slick-arrow:hover::before {
  background: url("../images/icons/arrow-left-primary.svg") center no-repeat;
  background-size: contain;
}
.credit__inner .slick-arrow:focus {
  border-color: var(--primary);
}
.credit__inner .slick-arrow:focus::before {
  background: url("../images/icons/arrow-left-primary.svg") center no-repeat;
  background-size: contain;
}
.credit__inner .slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 30%;
  background: url("../images/icons/arrow-left.svg") center no-repeat;
  background-size: contain;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.credit__inner .slick-prev {
  left: 10px;
}
.credit__inner .slick-next {
  right: 10px;
}
.credit__inner .slick-next::before {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.creditItem__inner {
  position: relative;
  padding-bottom: 60%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  overflow: hidden;
}
.creditItem__inner-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px;
  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;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.creditItem__inner-text p {
  color: #fff;
  font-weight: 600;
}
.creditItem__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.reports {
  padding: 10px 0;
}
.reports__inner {
  position: relative;
}
.reports__inner-content {
  width: calc(100% - 290px);
  max-width: 714px;
  margin: 0 0 0 auto;
}
.reports__inner .select {
  display: none;
}
.reports__inner h3 {
  margin-bottom: 10px;
}
.reportsItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid #e6e6e6;
  color: #414141;
}
.reportsItem__image {
  position: relative;
  padding-bottom: 133%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.reportsItem__image-wrapper {
  width: 150px;
}
.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% - 170px);
  max-width: 650px;
  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 h6 {
  margin-bottom: 16px;
}
.reportsItem p {
  margin-bottom: 20px;
}
.reportsItem .button {
  width: 100%;
  max-width: 140px;
  margin: auto 0 0 0;
}
.reportsNav {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
}
.reportsNav__inner {
  width: 100%;
  height: 300px;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.reportsNav__inner::-webkit-scrollbar {
  width: 4px;
  display: block !important;
}
.reportsNav__inner::-webkit-scrollbar-track {
  background-color: #e3e3e3;
  border-radius: 0;
  width: 10px;
}
.reportsNav__inner::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: var(--primary);
}
.reportsNav a {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #414141;
  margin-bottom: 40px;
}
.reportsNav a:hover {
  color: var(--primary);
  opacity: 1;
}
.reportsNav a:last-child {
  margin: 0;
}

.donation {
  padding: 10px 0;
}
.donation__inner {
  background-color: #eaf3ff;
  border-radius: 6px;
  padding: 40px 40px 45px 40px;
}
.donation__inner-title {
  text-align: center;
  margin-bottom: 40px;
}
.donation__inner-row {
  max-width: 880px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.donationItem {
  width: calc(33.3% - 15px);
  max-width: 220px;
  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;
  text-align: center;
}
.donationItem__icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  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: 20px;
}
.donationItem__icon img {
  width: 31%;
}
.donationItem h6 {
  font-weight: 700;
  margin-bottom: 20px;
}
.donationItem p {
  margin: auto 0 0 0;
}

.contact {
  padding: 50px 0 80px;
  position: relative;
}
.contactGallery {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54%;
  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;
  margin: 0 -1px;
}
.contactGallery__item {
  width: calc(50% - 2px);
  margin: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.contactGallery__item-inner {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 25px 0 25px 0;
  overflow: hidden;
}
.contactGallery__item-inner.sm {
  width: 50%;
  padding-bottom: 50%;
  border-radius: 15px 0 15px 0;
  background-color: var(--primary);
}
.contactGallery__item-inner.rev {
  border-radius: 0 25px 0 25px;
}
.contactGallery__item-inner.rev.sm {
  border-radius: 0 15px 0 15px;
}
.contactGallery__item-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact__inner h2 {
  margin-bottom: 40px;
}
.contact__form {
  width: calc(50% - 15px);
  padding: 40px 40px 44px 40px;
  border-radius: 6px;
  background: #fff;
  -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);
  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;
}
.contact__form h6 {
  margin-bottom: 10px;
}
.contact__form h4 {
  font-weight: 700;
  margin-bottom: 30px;
}
.contact__form .inputc__outer {
  width: 100%;
  margin-bottom: 10px;
}
.contact__form .checkc {
  margin-bottom: 30px;
  margin-top: 10px;
}
.contact__form .checkc label {
  color: #414141;
}
.contact__form .checkc label::before {
  width: 20px;
  height: 20px;
  border-color: #c5d8f0;
}
.contact__form .checkc label::after {
  top: 3px;
  left: 8px;
  width: 5px;
  border-width: 2px;
}
.contact__form .button {
  padding: 14px 30px;
}
.contact__content {
  width: calc(50% - 15px);
  position: relative;
  z-index: 1;
}
.contact__content-inner {
  max-width: 310px;
}
.contact__content-inner p {
  font-weight: 300;
  margin-bottom: 40px;
}
.contact__content-image {
  position: absolute;
  width: 100%;
  z-index: -1;
  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;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.contact__content-image img {
  width: 100%;
}
.contact__content h5 {
  margin-bottom: 20px;
  font-weight: 600;
}
.contact__content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: #414141;
  margin-bottom: 40px;
}
.contact__content a img {
  width: 22px;
  margin-right: 20px;
}
.contact__content .button {
  display: inline-block;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 100%;
}

.service__inner {
  padding: 40px 30px 70px;
  background-color: #eaf3ff;
  border-radius: 6px;
}
.service__inner-title {
  margin-bottom: 28px;
  text-align: center;
  margin-bottom: 30px;
}
.service__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 980px;
  margin: 0 auto;
}
.service__inner-col {
  width: calc(50% - 12px);
  max-width: 450px;
}
.serviceItem {
  overflow: hidden;
  border-bottom: 1px solid #c5d8f0;
  width: 100%;
}
.serviceItem__icon {
  width: 40px;
  height: 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;
}
.serviceItem__icon img {
  width: 100%;
}
.serviceItem__head {
  padding: 20px 0;
  position: relative;
  cursor: pointer;
  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;
}
.serviceItem__head.active h6 {
  color: var(--primary);
}
.serviceItem__head.active span::before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 0;
}
.serviceItem__head.active span::after {
  background-color: var(--primary);
}
.serviceItem__head h6 {
  width: calc(100% - 74px);
  position: relative;
  font-weight: 600;
  color: #414141;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.serviceItem__head h6 span {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.serviceItem__head h6 span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 100%;
  content: "";
  background-color: #414141;
  border-radius: 1px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.serviceItem__head h6 span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #414141;
  border-radius: 1px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.serviceItem__body {
  max-height: 0;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 0 10px 0 40px;
  overflow: hidden;
}
.serviceItem__body.active {
  max-height: 500px;
  opacity: 1;
  padding: 0 10px 20px 40px;
}

.challange {
  padding: 70px 0 110px;
}
.challange.rep {
  padding: 110px 0;
}
.challange.rep .challange__inner-content {
  width: calc(50% - 15px);
}
.challange.rep .challangeGallery {
  width: calc(50% - 15px);
  max-width: 480px;
}
.challange.rep .challangeGallery__item {
  width: calc(50% - 2px);
}
.challange.car {
  padding: 95px 0;
}
.challange.car .challange__inner-content {
  width: calc(50% - 15px);
}
.challange.car .challangeGallery {
  width: calc(50% - 15px);
  max-width: 510px;
}
.challange.car .challangeGallery__item {
  width: calc(50% - 2px);
}
.challange.who {
  padding: 70px 0 10px;
}
.challange.who .challange__inner-content {
  width: calc(50% - 15px);
  max-width: 500px;
}
.challange.who .challangeGallery {
  width: calc(50% - 15px);
  max-width: 500px;
}
.challange.who .challangeGallery__item {
  width: calc(50% - 2px);
}
.challange__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;
}
.challange__inner-content {
  width: calc(40% - 15px);
  max-width: 400px;
}
.challange__inner-content p {
  margin-bottom: 40px;
  font-weight: 600;
}
.challange__inner h1 {
  margin-bottom: 20px;
}
.challange__inner h4 {
  margin-bottom: 40px;
  max-width: 423px;
}
.challange__inner h4 span {
  color: var(--primary);
}
.challange__inner .button {
  padding: 12px 25px;
}
.challangeGallery {
  width: calc(60% - 15px);
  max-width: 558px;
  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;
  margin: 0 -1px;
}
.challangeGallery__item {
  width: calc(33.3% - 2px);
  margin: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.challangeGallery__item-inner {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50px 0px 50px 0px;
  overflow: hidden;
}
.challangeGallery__item-inner.sm {
  width: 50%;
  padding-bottom: 50%;
  border-radius: 15px 0 15px 0;
  background-color: var(--primary);
}
.challangeGallery__item-inner.mid {
  width: 60%;
  padding-bottom: 60%;
  border-radius: 15px 0 15px 0;
  background-color: var(--primary);
}
.challangeGallery__item-inner.big {
  width: 68%;
  padding-bottom: 68%;
  border-radius: 15px 0 15px 0;
  background-color: var(--primary);
}
.challangeGallery__item-inner.rev {
  border-radius: 0 50px 0 50px;
}
.challangeGallery__item-inner.rev.sm {
  border-radius: 0 15px 0 15px;
}
.challangeGallery__item-inner.empty {
  background-color: var(--primary);
}
.challangeGallery__item-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.volunteer {
  position: relative;
}
.volunteer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.volunteer__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.volunteer__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0;
}
.volunteerForm {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  width: 100%;
  max-width: 600px;
  padding: 30px 40px;
  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;
  border-radius: 6px;
}
.volunteerForm__title {
  margin-bottom: 10px;
}
.volunteerForm__title h6 {
  margin-bottom: 10px;
}
.volunteerForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}
.volunteerForm__foot {
  padding-top: 5px;
}
.volunteerForm .inputc__outer {
  width: calc(50% - 20px);
  margin: 15px 10px;
}
.volunteerForm .inputc__outer.big {
  width: calc(100% - 20px);
}
.volunteerForm .inputc__outer label {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 20px;
}
.volunteerForm .checkc {
  margin-bottom: 30px;
}
.volunteerForm .checkc input:checked + label::before {
  border-color: #1956a7;
}
.volunteerForm .checkc label {
  padding-left: 40px;
  max-width: 440px;
}
.volunteerForm .checkc label::before {
  width: 20px;
  height: 20px;
  border-color: #c5d8f0;
}
.volunteerForm .checkc label:after {
  width: 5px;
  border-width: 2px;
  top: 3px;
  left: 8px;
}
.volunteerForm .button {
  padding: 12px 22px;
}

@media (max-width: 1380px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 1250px) {
  .intro {
    padding: 40px 20px 50px;
  }
  .intro__inner {
    min-height: 500px;
    padding: 30px;
  }
  .intro__inner-content {
    padding: 0;
  }
  .intro__inner-content p {
    margin-bottom: 30px;
  }
  .intro__inner-buttons .button {
    margin-right: 30px;
  }
  .intro__inner .slick-arrow {
    width: 35px;
    height: 35px;
  }
  .intro__inner .slick-prev {
    right: calc(100% + 6px);
  }
  .intro__inner .slick-next {
    left: calc(100% + 6px);
  }
  .introSlide__inner {
    min-height: 500px;
    padding: 30px;
  }

  .appeals__inner {
    padding: 0 20px;
  }
  .appeals__inner .slick-arrow {
    width: 35px;
    height: 35px;
  }
  .appeals__inner .slick-prev {
    right: 100%;
  }
  .appeals__inner .slick-next {
    left: 100%;
  }

  .stories__inner {
    padding: 0 20px;
  }
  .stories__inner .slick-arrow {
    width: 35px;
    height: 35px;
  }
  .stories__inner .slick-prev {
    right: 100%;
  }
  .stories__inner .slick-next {
    left: 100%;
  }
  .storiesSlide__inner {
    min-height: 500px;
    padding: 30px;
  }
  .storiesSlide__content {
    padding: 0;
  }
  .storiesSlide__content p {
    margin-bottom: 30px;
  }
  .storiesSlide__buttons .button {
    margin-right: 30px;
  }
}
@media (max-width: 1180px) {
  .auto__container {
    padding: 0 30px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 30px;
  }

  .nav {
    width: calc(100% - 160px);
    max-width: 820px;
  }

  .challange {
    padding: 40px 0 70px;
  }
  .challange.rep {
    padding: 60px 0 70px;
  }
  .challange.car {
    padding: 60px 0 70px;
  }
  .challange.who {
    padding: 60px 0 10px;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }

  .main {
    padding-top: 60.88px;
  }

  .basketLink {
    width: calc(100% + 40px);
    max-width: unset;
    margin: 0 -20px;
    padding: 20px;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
  }
  .basketLink::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    border-top: 1px solid #414141;
    border-right: 1px solid #414141;
    content: "";
    -webkit-transform: translateY(-70%) rotate(45deg);
            transform: translateY(-70%) rotate(45deg);
  }
  .basketLink .basket__number {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .basketLink .basket__number span {
    font-size: 12px;
  }
  .basketLink b {
    font-size: 20px;
    line-height: 27px;
  }

  .lang {
    margin: 20px 0 0 0;
    position: static;
  }
  .lang .dropMenu {
    left: unset;
    right: 0;
  }
  .lang .dropMenu__inner::before {
    left: unset;
    right: 30px;
  }
  .lang .dropMenu li {
    margin-bottom: 0;
  }
  .lang .dropMenu p::before {
    display: none;
  }

  .header__inner {
    padding: 8px 0;
  }
  .header__inner-logo {
    width: 102px;
  }
  .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 {
    margin: 0 20px;
  }

  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: 0 0 80px 0;
    height: 100%;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid #E6E6E6;
  }
  .nav__inner-links {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav__inner-links > li {
    width: 100%;
    margin: 0;
  }
  .nav__inner-link {
    font-size: 20px;
    line-height: 27px;
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    padding: 20px;
  }
  .nav__inner-link::before {
    -webkit-transform: translateY(-70%) rotate(45deg);
            transform: translateY(-70%) rotate(45deg);
    right: 20px;
  }
  .nav__inner-buttons {
    width: 100%;
    -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;
    border-bottom: 1px solid #e6e6e6;
    padding: 0 20px 20px 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .nav__inner-buttons .button {
    display: none;
  }
  .nav__inner-social {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto 0 0 0;
    position: relative;
    z-index: 3;
  }
  .nav__inner-social a {
    width: 40px;
    height: 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: 10px;
    background-color: #f7f7f7;
    border-radius: 50%;
  }
  .nav__inner-social a:last-child {
    margin: 0;
  }
  .nav__inner-social a.sm img {
    width: 9px;
  }
  .nav__inner-social a.big img {
    width: 19px;
  }
  .nav__inner-social a img {
    width: 15px;
  }

  .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: 25px;
    height: 25px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 20%;
    width: 100%;
    height: 2px;
    background-color: #393939;
    -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: #393939;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -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;
    border-radius: 3px;
  }
  .burger::after {
    bottom: 20%;
    width: 100%;
    height: 2px;
    background-color: #393939;
    -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;
  }
  .dropMenu {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    z-index: 2;
    background-color: #fff;
    padding: 0 0 100px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .dropMenu.active {
    display: block;
  }
  .dropMenu__back {
    display: block;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: #1956a7;
    position: relative;
    cursor: pointer;
    z-index: 3;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    padding: 20px 20px 20px 35px;
  }
  .dropMenu__back:hover {
    opacity: 0.8;
  }
  .dropMenu__back::before {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #1956a7;
    border-right: 1px solid #1956a7;
    content: "";
    -webkit-transform: translateY(-50%) rotate(-135deg);
            transform: translateY(-50%) rotate(-135deg);
  }
  .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 li {
    margin: 0;
    border-bottom: 1px solid #e6e6e6;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .dropMenu li a {
    padding: 20px;
    position: relative;
  }
  .dropMenu li a::before {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #414141;
    border-right: 1px solid #414141;
    content: "";
    -webkit-transform: translateY(-70%) rotate(45deg);
            transform: translateY(-70%) rotate(45deg);
  }

  .about__inner-main {
    padding-top: 40px;
  }

  .footer {
    padding: 30px 0 70px;
  }
  .footer__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 25px;
  }
  .footer__inner-side {
    width: 100%;
  }
  .footer__inner-links {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    max-width: unset;
    margin-bottom: 40px;
  }
  .footer__inner-col {
    width: calc(25% - 10px) !important;
  }
  .footer__inner-col:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footerForm {
    padding: 24px;
  }
  .footerForm__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
  .footerForm__top-title {
    width: 100%;
    margin-bottom: 20px;
  }
  .footerForm__row {
    width: 100%;
    max-width: unset;
  }
  .footerForm__row-inputs {
    max-width: unset;
  }

  .help__inner {
    padding: 30px 30px 50px;
  }

  .contact {
    padding: 40px 0 60px;
  }
  .contact__content {
    width: calc(45% - 10px);
  }
  .contact__form {
    width: calc(55% - 10px);
    padding: 24px 20px;
  }

  .vision__inner {
    padding: 40px 30px;
  }

  .stories {
    padding: 40px 0 20px;
  }
}
@media (max-width: 930px) {
  .thanks__inner {
    padding: 50px 0;
    flex-direction: column;
    justify-content: unset;
  }
  .thanks__inner-content {
    width: 100%;
    max-width: unset;
}
  .thanks__inner-logo {
    width: 60%;
    max-width: 330px;
    order: -1;
    margin-bottom: 30px;
  }
  .about {
    padding: 0 0 30px;
  }
  .about__inner {
    min-height: unset;
  }
  .about__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__inner-content {
    width: 100%;
    max-width: unset;
  }
  .about__inner-image {
    padding-bottom: 100%;
  }
  .about__inner-image-wrapper {
    position: relative;
    width: 100%;
    max-width: unset;
    margin: 24px 0;
  }
  .about__inner-main {
    padding-top: 20px;
  }
  .about__inner-main h2 {
    margin-bottom: 0;
  }

  .intro {
    padding: 24px 0 70px;
  }
  .intro__inner {
    min-height: 600px;
    padding: 30px 20px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .intro__inner-content p {
    margin-bottom: 20px;
  }
  .intro__inner-buttons .button {
    margin-right: 20px;
  }
  .intro__inner-quote {
    display: none;
  }
  .intro__inner .slick-dots {
    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: absolute;
    bottom: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .intro__inner .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin: 0 4px;
    border: 1px solid var(--primary);
    border-radius: 50%;
  }
  .intro__inner .slick-dots li.slick-active {
    background-color: var(--primary);
  }
  .intro__inner .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .intro__inner .slick-dots li button::before {
    display: none;
  }
  .introSlide__inner {
    min-height: 600px;
    padding: 30px 20px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .intro .instant {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .appeals__inner {
    padding: 0;
  }
  .appeals__inner-title {
    margin-bottom: 20px;
  }
  .appeals__inner-slider {
    padding-bottom: 40px;
  }
  .appeals__inner .slick-dots {
    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: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .appeals__inner .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin: 0 4px;
    border: 1px solid var(--primary);
    border-radius: 50%;
  }
  .appeals__inner .slick-dots li.slick-active {
    background-color: var(--primary);
  }
  .appeals__inner .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .appeals__inner .slick-dots li button::before {
    display: none;
  }
  .appeals__inner h2 {
    margin-bottom: 12px;
  }

  .help__inner-row {
    padding-top: 30px;
  }
  .help__inner-content {
    width: 60%;
    padding: 24px 24px 35px 24px;
  }
  .help__inner-image-wrapper {
    width: 60%;
  }

  .impact {
    padding: 40px 0;
  }
  .impact__inner-title {
    margin-bottom: 24px;
  }
  .impact__inner-title h3 span {
    display: block;
  }
  .impact__inner-slider {
    padding-bottom: 40px;
    width: calc(100% - 90px);
  }
  .impact__inner .slick-dots {
    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: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .impact__inner .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin: 0 4px;
    border: 1px solid var(--primary);
    border-radius: 50%;
  }
  .impact__inner .slick-dots li.slick-active {
    background-color: var(--primary);
  }
  .impact__inner .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .impact__inner .slick-dots li button::before {
    display: none;
  }

  .stories__inner {
    padding: 0;
  }
  .stories__inner-slider {
    padding-bottom: 40px;
  }
  .stories__inner-row .storiesItem {
    width: calc(50% - 20px);
  }
  .stories__inner .slick-dots {
    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: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .stories__inner .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin: 0 4px;
    border: 1px solid var(--primary);
    border-radius: 50%;
  }
  .stories__inner .slick-dots li.slick-active {
    background-color: var(--primary);
  }
  .stories__inner .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .stories__inner .slick-dots li button::before {
    display: none;
  }

  .stats__inner {
    padding: 30px 20px;
  }
  .statsItem {
    padding: 20px 20px 24px;
  }

  .credit {
    padding: 40px 0 0;
  }
  .credit__inner-slider {
    padding-bottom: 30px;
  }
  .credit__inner .slick-dots {
    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: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .credit__inner .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: transparent;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin: 0 4px;
    border: 1px solid var(--primary);
    border-radius: 50%;
  }
  .credit__inner .slick-dots li.slick-active {
    background-color: var(--primary);
  }
  .credit__inner .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .credit__inner .slick-dots li button::before {
    display: none;
  }

  .service__inner {
    padding: 30px 20px 5px;
  }
  .service__inner-title {
    margin-bottom: 20px;
  }
  .service__inner-col {
    width: 100%;
    max-width: unset;
  }
  .service__inner-col:last-child .serviceItem:last-child {
    border: unset;
  }

  .faq {
    padding: 35px 0 20px;
  }
  .faq.vol {
    padding: 40px 0 20px;
  }
  .faq__inner-title {
    margin-bottom: 20px;
  }
  .faq__inner-col {
    width: 100%;
    max-width: unset;
  }
  .faq__inner-col:last-child .faqItem:last-child {
    border: unset;
  }
  .faqItem__head {
    padding: 20px 0;
  }
  .faqItem__body.active {
    padding: 0 0 20px;
  }

  .challange {
    padding: 30px 0 50px;
  }
  .challange.rep {
    padding: 30px 0 50px;
  }
  .challange.car {
    padding: 30px 0 60px;
  }
  .challange.who {
    padding: 30px 0 10px;
  }
  .challange__inner-content {
    width: calc(44% - 10px);
  }
  .challange__inner-content p {
    margin-bottom: 30px;
  }
  .challange__inner h1 {
    font-size: 40px;
  }
  .challangeGallery {
    width: calc(56% - 10px);
  }

  .donation__inner {
    padding: 30px 24px;
  }

  .reports {
    padding: 40px 0 10px;
  }
  .reports__inner-content {
    width: calc(100% - 230px);
  }
  .reports__inner h3 {
    margin: 0;
  }
  .reportsItem {
    padding: 30px 0;
  }
  .reportsNav {
    width: 200px;
  }
  .reportsNav__inner {
    height: 250px;
  }
  .reportsNav a {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .mission {
    padding-top: 30px;
  }
  .mission__inner {
    padding: 40px 25px;
  }
  .mission__inner-slider {
    margin-bottom: 40px;
    padding-bottom: 65px;
  }
}

@media (max-width: 750px) {
  


  .auto__container {
    padding: 0 20px;
  }

  h1 {
    font-size: 45px;
  }

  h6.sup {
    margin-bottom: 10px;
  }

  .calc {
    padding: 20px 0;
  }
  .calc__bg {
    display: none;
  }
  .calc__inner {
    max-width: unset;
    min-height: calc(100vh - 60px);
  }
  .calc__head {
    padding: 16px 20px;
  }
  .calc__sub {
    padding: 0 20px;
  }
  .calc__sub p {
    -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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 70px;
  }
  .calc__sub p:last-child {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 20px;
  }
  .calc__sub p b {
    display: block;
  }
  .calc__body {
    padding: 20px;
  }
  .calc__total {
    -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;
  }
  .calc__total-row {
    width: 100%;
    margin-bottom: 20px;
  }
  .calc__total h4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .checkout {
    padding: 20px 0 70px;
  }
  .checkout__bg {
    display: none;
  }
  .checkout__inner {
    max-width: unset;
    min-height: calc(100vh - 60px);
  }
  .checkout__head {
    padding: 18px 20px;
  }
  .checkout__body {
    padding: 30px 20px 35px;
  }
  .checkout__sub {
    padding: 18px 20px;
  }
  .checkout__group-info p {
    margin-bottom: 10px;
  }
  .checkout__group-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px 10px;
  }
  .checkout__group-row .checkc {
    width: calc(50% - 20px);
    margin: 10px;
  }
  .checkout__thanks-inner {
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .gift {
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .payment {
    padding: 0;
    border-radius: 0;
    border: 0;
    margin: 0 -20px;
  }
  .paymentInfo {
    padding: 20px;
  }

  .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(100% - 20px);
  }
  .inputc__row .inputc__outer.w-30 {
    width: calc(60% - 20px);
  }
  .inputc__row .inputc__outer.w-20 {
    width: calc(40% - 20px);
  }
  .inputc__row .inputc__outer.w-100 {
    width: calc(100% - 20px);
    margin: 10px;
  }

  .footer {
    padding: 20px 0 70px;
  }
  .footer__inner-links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__inner-col {
    width: calc(50% - 10px) !important;
    max-width: 240px;
    margin-bottom: 40px;
  }
  .footer__inner-col:nth-child(n+3) {
    margin: 0;
  }
  .footer__inner-copy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__inner-copy-links {
    margin-bottom: 30px;
  }
  .footer__inner-copy p {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
  }
  .footerForm__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .footerForm__row-inputs {
    width: 100%;
    margin-bottom: 20px;
    border-radius: var(--corner);
  }
  .footerForm__row .button {
    width: 44%;
    border-radius: var(--corner);
  }

  .help__inner {
    padding: 30px 20px 20px 20px;
  }
  .help__inner-title {
    margin-bottom: 30px;
  }
  .help__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .help__inner-content {
    width: 100%;
    max-width: unset;
    padding: 20px;
  }
  .help__inner-image-wrapper {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .reports__inner-content {
    width: 100%;
  }
  .reports__inner h3 {
    margin-bottom: 20px;
  }
  .reports__inner .select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 10px;
  }
  .reports__inner .select::before {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #1956a7;
    border-right: 1px solid #1956a7;
    content: "";
    -webkit-transform: translateY(-60%) rotate(135deg);
            transform: translateY(-60%) rotate(135deg);
  }
  .reports__inner .select select {
    color: #7c7c7c;
    padding: 15px 20px;
    border-radius: 4px;
    border: 1px solid #e6e6e6;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .reportsNav {
    display: none;
  }
  .reportsItem__image-wrapper {
    width: 180px;
  }
  .reportsItem__content {
    width: calc(100% - 200px);
  }
  .reportsItem p {
    margin-bottom: 30px;
  }

  .contact {
    padding: 20px 0 30px;
  }
  .contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__content {
    width: 100%;
    max-width: unset;
    margin-bottom: 40px;
    padding-bottom: 100px;
  }
  .contact__content h1 {
    margin-bottom: 32px;
  }
  .contact__content-image {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
  }
  .contact__form {
    width: 100%;
    padding: 30px;
  }

  .challange.rep {
    padding: 30px 0;
  }
  .challange.rep .challange__inner-content {
    width: 100%;
    max-width: unset;
  }
  .challange.rep .challangeGallery {
    width: 94%;
  }
  .challange.car {
    padding: 30px 0 60px;
  }
  .challange.car .challange__inner-content {
    width: 100%;
    max-width: unset;
  }
  .challange.car .challangeGallery {
    width: 94%;
  }
  .challange.who .challange__inner-content {
    width: 100%;
    max-width: unset;
  }
  .challange.who .challangeGallery {
    width: 94%;
  }
  .challange__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .challange__inner-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .challange__inner h1 {
    font-size: 45px;
  }
  .challangeGallery {
    width: 100%;
    max-width: unset;
  }

  .donation__inner {
    padding: 40px 20px;
  }
  .donation__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;
  }
  .donationItem {
    width: 75%;
    max-width: unset;
    margin-bottom: 40px;
  }
  .donationItem:last-child {
    margin: 0;
  }
}
@media (max-width: 650px) {
  .reports {
    padding: 40px 0 10px;
  }
  .reportsItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reportsItem__image-wrapper {
    width: 120px;
    margin-bottom: 30px;
  }
  .reportsItem__content {
    width: 100%;
  }

  .stats__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .statsItem {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .statsItem:last-child {
    margin: 0;
  }

  .appeals__inner-title {
    margin-bottom: 35px;
  }
  .appeals__inner-slider {
    display: none !important;
  }
  .appeals__inner-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .appealsItem {
    margin: 0 0 20px 0;
  }
  .appealsItem:last-child {
    margin: 0;
  }

  .impact__inner .slick-slide h3 {
    font-size: 45px;
    color: var(--primary);
  }
  .impact__inner .slick-slide h3::before {
    opacity: 1;
  }

  .stories__inner-row {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .stories__inner-row .storiesItem {
    margin: 0 0 20px 0;
    width: 100%;
  }
  .stories__inner-row .storiesItem:last-child {
    margin: 0;
  }

  .volunteer__inner {
    padding: 30px 0;
  }
  .volunteerForm {
    padding: 20px;
  }
  .volunteerForm__title {
    margin-bottom: 20px;
  }
  .volunteerForm__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 20px 0;
  }
  .volunteerForm__foot {
    padding: 0;
  }
  .volunteerForm .inputc__outer {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .volunteerForm .inputc__outer:last-child {
    margin: 0;
  }
  .volunteerForm .inputc__outer label {
    margin-bottom: 16px;
  }
}
@media (max-width: 540px) {
  /*small screen intro image */
  .introSlide__bg .imgPortait {
    display: block;
  }
  .introSlide__bg .imgLandscape{
    display: none;
  }
  
  .header__inner-buttons .button {
    padding: 8px 14px;
  }

  .vision__inner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 40px 20px;
  }
  .vision__inner-play span {
    width: 60px;
    height: 60px;
  }
  .vision__inner-play span img {
    width: 19px;
  }
  .vision__inner-play h6 {
    width: calc(100% - 80px);
  }

  .donate {
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .footer__inner-side {
    border-top: 1px solid #f7f7f7;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 30px;
  }
  .footer__inner-main {
    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: 38px;
  }
  .footer__inner-info {
    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;
    text-align: center;
  }
  .footer__inner-logo {
    width: 108px;
    margin-bottom: 25px;
  }
  .footer__inner-copy p span {
    display: block;
  }
  .footerForm {
    padding: 24px 20px;
  }
  .footerForm__top-title {
    text-align: center;
  }
  .footerForm__row-inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footerForm__row-input {
    width: 100%;
    border: unset;
    border-bottom: 1px solid #e3e3e3;
  }
  .footerForm__row .button {
    width: 100%;
  }

  .blogs {
    padding: 30px 0 40px;
  }
  .blogs__inner-article p {
    margin-bottom: 20px;
  }
  .blogs__inner-image {
    margin-bottom: 20px;
  }
  .blogs__inner-foot {
    padding-top: 25px;
  }
  .blogs__inner-social {
    margin-bottom: 30px;
  }
  .blogs__inner h1 {
    margin-bottom: 18px;
  }

  .creditItem__inner {
    padding-bottom: 100%;
  }
  .creditItem__inner-text {
    padding: 7px 0;
  }
  .creditItem__inner-text p {
    font-size: 15px;
    line-height: 18px;
  }

  .basket__inner-content {
    padding: 40px 34px 0 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .basket__foot {
    margin: auto 0 0 0;
  }
  .basket__total {
    padding: 25px 36px 20px 36px;
  }

  .intro.uniq {
    padding: 24px 0 35px;
  }
  .intro.uniq .intro__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .intro.uniq .intro__inner-slider {
    position: relative !important;
    margin-bottom: 20px;
  }
  .intro.uniq .introSlide__bg {
    position: relative;
    width: 100%;
    height: unset;
    padding-bottom: 62%;
  }
  .intro.uniq .introSlide__bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
  }
  .intro.nonSlide .intro__inner {
    min-height: unset;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .intro.nonSlide .intro__inner-slider {
    position: relative !important;
  }
  .intro.nonSlide .introSlide {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .intro.nonSlide .introSlide__bg {
    position: relative;
    width: 100%;
    height: unset;
    padding-bottom: 62%;
    margin-bottom: 20px;
  }
  .intro.nonSlide .introSlide__bg.mobRem {
    display: none;
  }
  .intro.nonSlide .introSlide__bg::before {
    display: none;
  }
  .intro.nonSlide .introSlide__bg::after {
    display: none !important;
  }
  .intro.nonSlide .introSlide__bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
  }
  .intro .instant {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    width: 100%;
    max-width: unset;
    padding: 20px 35px 25px;
  }

  .mission__inner {
    overflow: hidden;
    padding: 30px 25px 40px;
  }
  .mission__inner .slick-list {
    overflow: visible !important;
  }
}
/* 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;
}

.cookie-bar {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  bottom: 0;
  right: 0;
  left: 0;
  height: 50px;
  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: #1956a7;
  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);
}

/* HTML Editor Styling */

/**umb_name:Heading 1*/
h1.maincolor {
  color: #1b58a5;
}

/**umb_name:Heading 2*/
h2.maincolor {
  color: #1b58a5;
}

/**umb_name:Heading 3*/
h3.maincolor {
  color: #1b58a5;
}

/**umb_name:Heading 4*/
h4.maincolor {
  color: #1b58a5;
}

/**umb_name:Heading 5*/
h5.maincolor {
  color: #1b58a5;
}

/**umb_name:Heading 6*/
h6.maincolor {
  color: #1b58a5;
}

/**umb_name:Paragraph (Main Color)*/
p.maincolor {
  color: #1b58a5;
}

/**umb_name:Paragraph Bold*/
p.bold {
  font-weight: bold;
}

/**umb_name:Paragraph Bold (Main Color)*/
p.bold.maincolor {
  font-weight: bold;
  color: #1b58a5;
}

