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

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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: "Asap", sans-serif;
  font-size: 15px;
  color: #000;
  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: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

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

h1 {
  font-weight: 800;
  font-size: 40px;
  line-height: 53px;
}

h2 {
  font-weight: 800;
  font-size: 35px;
  line-height: 47px;
}
h2.big {
  font-weight: 700;
  font-size: 52px;
  line-height: 140%;
}

h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
}
h3.ex {
  font-size: 55px;
  line-height: 132%;
  font-weight: 700;
}
h3.big {
  font-size: 39px;
}

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

h5 {
  font-size: 25px;
  line-height: 33px;
}

h6 {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
}
h6.sm {
  font-size: 18px;
  line-height: 24px;
}

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.ex {
  font-size: 24px;
  line-height: 160%;
}
p.xlg {
  font-size: 27px;
  line-height: 140%;
}
p.sm {
  font-size: 16px;
  line-height: 140%;
}
p.xsm {
  font-size: 12px;
  line-height: 140%;
}

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-size: 600;
  font-size: 15px;
  line-height: 20px;
  padding: 10px 30px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.button.primary {
  background-color: #ce0000;
  color: #fff;
}
.button.primary:hover {
  opacity: 1;
  background-color: #f01111;
}
.button.secondary {
  background-color: #1956a7;
  color: #fff;
  padding: 16px;
}
.button.secondary:hover {
  opacity: 1;
  background-color: #2575de;
}
.button.light {
  background-color: #fff;
  color: #1956a7;
  padding: 12px 22px;
}
.button.light:hover {
  opacity: 1;
  background-color: #2575de;
  color: #fff;
}

.ubutton {
  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: 400;
  font-size: 15px;
  line-height: 20px;
  padding: 10px 22px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-transform: uppercase;
}
.ubutton.primary {
  background-color: #215aa3;
  color: #fff;
}
.ubutton.secondary {
  background-color: #fff;
  color: #215aa3;
}
.ubutton.sm {
  font-size: 10px;
  line-height: 14px;
  padding: 6px 16px;
  border-radius: 8px;
}
.ubutton.mid {
  font-size: 12px;
  line-height: 16px;
  padding: 8px 20px;
  border-radius: 8px;
}

.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: "Asap", 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;
}

@keyframes fadeIn {
  from {
    opacity: 0; /* Start with transparency */
  }
  to {
    opacity: 1; /* Fade in to fully visible */
  }
}

@keyframes fadeOut {
  from {
    opacity: 1; /* Start with transparency */
  }
  to {
    opacity: 0; /* Fade in to fully visible */
  }
}

.basket {
  display: none;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  right: 0;
  z-index: 1000;
  background: rgba(3, 53, 118, 0.95);
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  animation: fadeOut 0.2s ease forwards;
}
.basket.active {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}
.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: #393939;
  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: #393939;
  width: 100%;
  height: 100%;
}
.basket__inner-desc {
  margin-bottom: 20px;
}
.basket__inner-desc p {
  color: #393939;
}
.basket__inner h6.sm {
  color: #393939;
  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: #f7f7f7;
}
.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: #393939;
  line-height: 23px;
  font-weight: 700;
}
.basket__total-title h5 {
  color: #393939;
  line-height: 23px;
  font-weight: 700;
}
.basket__total .button {
  display: block;
  width: 100%;
  font-family: "Asap", sans-serif;
  font-weight: 500;
  padding: 15px 0 !important;
  line-height: 1;
}
.basket__total .button.primary {
  margin-bottom: 15px;
}
.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: 20px;
  -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% - 34px);
}
.basket__item-left-content p {
  font-size: 12px;
  line-height: 14px;
  color: #393939;
  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: #ce0000;
  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: #f7f7f7;
  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: #393939;
  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: #393939;
}
.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: "Asap", 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: #393939;
}

.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(-60%) rotate(135deg);
  transform: translateY(-60%) 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: #fff;
  background-color: #1956a7;
  border-radius: 4px;
  border: 1px solid #fff;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.select.uniq::before {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  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: "Asap", 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: #fff;
  background-color: #1956a7;
  border-radius: 4px;
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.input input {
  width: 100%;
  font-size: 15px;
  line-height: 20px;
  font-family: "Asap", sans-serif;
  font-weight: 700;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
.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;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1294117647);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1294117647);
}
.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;
  padding-top: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.dropMenu__back {
  display: none;
}
.dropMenu__inner {
  border-radius: 4px;
  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;
}
.dropMenu__inner::before {
  position: absolute;
  content: "";
  bottom: calc(100% - 1px);
  left: 30px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  -webkit-transform: translateY(50%) rotate(45deg);
  transform: translateY(50%) rotate(45deg);
  z-index: -1;
}
.dropMenu__flags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 270px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.dropMenu__flags.sm {
  min-width: 210px;
}
.dropMenu__flags.sm span {
  width: 23px;
  height: 23px;
  margin-right: 20px;
}
.dropMenu__flags span {
  width: 30px;
  height: 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;
  margin-right: 15px;
}
.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: 210px;
  -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__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: #222222;
  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: #222222;
}
.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(33.3% - 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: #222222;
}
/*.footer__inner-col:last-child {*/
/*  display: block;*/
/*}*/
.footer__inner-col h6 {
  font-weight: 600;
  margin-bottom: 15px;
}
.footer__inner-col a {
  color: #222222;
  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: #f7f7f7;
  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: #f7f7f7;
  border-radius: 4px;
  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% - 260px);
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footerForm__row-inputs {
  width: calc(78% - 10px);
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #393939;
  border-radius: 4px;
  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 #393939;
}
.footerForm__row-input:last-child {
  width: 44%;
  border-color: transparent;
}
.footerForm__row-input input {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  line-height: 20px;
  font-family: "Asap", 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: 22%;
}

.vision {
  background-color: #000;
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.vision__bg {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 50px 0;
}
.vision__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.vision__bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  left: 0;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0) 100%);
}
.vision .auto__container {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1280px;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 2;
}
.vision__inner {
  font-family: "Lato", sans-serif;
  position: relative;
  z-index: 1;
}
.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: #1956a7;
  border-color: #1956a7;
}
.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 h2 {
  margin-bottom: 18px;
  color: #fff;
}
.vision__inner p {
  margin-bottom: 40px;
  color: #fff;
  max-width: 500px;
}

@media (min-aspect-ratio: 16/9) {
  .vision__bg iframe {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .vision__bg iframe {
    width: 177.78vh;
  }
}
.donate {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1956a7;
  z-index: 99;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.donate__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.donate__inner-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.donate__inner-title b {
  font-size: 20px;
  line-height: 100%;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #fff;
}
.donate__inner-title span {
  width: 20px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 8px;
}
.donate__inner-title span img {
  width: 100%;
}
.donate__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: calc(100% - 260px);
  max-width: 880px;
  margin: 0 -5px;
}
.donate__inner-item {
  width: calc(26% - 10px);
  max-width: 220px;
  margin: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.donate__inner-item:last-child {
  width: 22%;
  max-width: 170px;
}
.donate__inner .button {
  width: 100%;
}
.donate__inner .select {
  width: 100%;
}
.donate__inner .input {
  width: 100%;
}

.uapplication {
  padding: 40px 0;
}
.uapplicationBanner {
  width: 100%;
  position: relative;
  padding-bottom: 56%;
}
.uapplicationBanner img,
.uapplicationBanner video,
.uapplicationBanner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.uapplication__inner {
  padding: 50px 0 0;
}
.uapplication__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px;
}
.uapplication__inner-content {
  width: calc(98% - 10px);
  //max-width: 634px;
  color: #215aa3;
}
.uapplication__inner h2 {
  margin-bottom: 20px;
}
.uapplicationImage {
  width: calc(42% - 10px);
  max-width: 430px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #215aa3;
  border-radius: 15px;
  overflow: hidden;
}
.uapplicationImage__inner {
  width: 100%;
  padding-bottom: 77%;
  position: relative;
}
.uapplicationImage__inner input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.uapplicationImage__inner h6 {
  width: 100%;
  text-align: center;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  text-transform: uppercase;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.uapplicationImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  z-index: 1;
}
.uapplicationForm {
  width: 100%;
}
.uapplicationForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.uapplicationForm__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-top: 10px;
}
.uapplicationForm__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;
  margin-bottom: 16px;
  width: calc(50% - 8px);
}
.uapplicationForm__input.big {
  width: 100%;
}
.uapplicationForm__input input,
.uapplicationForm__input textarea {
  width: 100%;
  font-size: 22px;
  line-height: 28px;
  font-family: "Asap", sans-serif;
  font-weight: 400;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: -0.025em;
  border: 1px solid #d5d5d5;
  padding: 22px 30px;
  resize: unset;
  color: #414141;
}
.uapplicationForm__input input::-webkit-input-placeholder, .uapplicationForm__input textarea::-webkit-input-placeholder {
  color: #666666;
}
.uapplicationForm__input input::-moz-placeholder, .uapplicationForm__input textarea::-moz-placeholder {
  color: #666666;
}
.uapplicationForm__input input:-ms-input-placeholder, .uapplicationForm__input textarea:-ms-input-placeholder {
  color: #666666;
}
.uapplicationForm__input input::-ms-input-placeholder, .uapplicationForm__input textarea::-ms-input-placeholder {
  color: #666666;
}
.uapplicationForm__input input::placeholder,
.uapplicationForm__input textarea::placeholder {
  color: #666666;
}
.uapplicationForm .ubutton {
  font-size: 24px;
  line-height: 30px;
  padding: 18px 70px;
  border-radius: 6px;
}

.umbraco-forms-caption {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 24px;
}
.form-group > label {
  margin-bottom: 12px;
  display: block;
  font-size: 18px;
}

.uhero {
  position: relative;
  display: none;
}
.uhero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.uhero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.uhero__inner {
  min-height: calc(100vh - 122px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 90px 0;
}
.uhero__inner-logo {
  width: 182px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.uhero__inner-logo img {
  width: 100%;
}

.ubanner {
  max-width: 1280px;
  margin: 0 auto;
}
.ubanner.full {
  max-width: unset;
}
.ubanner.full .ubannerItem__inner {
  min-height: calc(100vh - 122px);
}
.ubanner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.ubanner .slick-slide {
  height: unset !important;
}
.ubanner .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-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;
}
.ubanner .slick-dots li {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  margin: 0 5px;
}
.ubanner .slick-dots li.slick-active {
  background-color: #1d71b8;
}
.ubanner .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.ubanner .slick-dots li button::before {
  display: none;
}
.ubannerItem {
  position: relative;
  color: #fff;
}
.ubannerItem__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}
.ubannerItem__bg.big img {
  width: 100%;
}
.ubannerItem__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, black 25%, rgba(0, 0, 0, 0) 100%);
}
.ubannerItem__bg img {
  width: 80%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.ubannerItem__inner {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  min-height: 70vh;
  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;
}
.ubannerItem__inner-content {
  width: calc(55% - 15px);
  max-width: 500px;
}
.ubannerItem__inner-logo {
  width: calc(45% - 15px);
  max-width: 580px;
  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;
}
.ubannerItem__inner-logo img {
  width: 100%;
}
.ubannerItem__inner h2 {
  margin-bottom: 35px;
}
.ubannerItem__inner p {
  margin-bottom: 80px;
}

.umodule {
  position: relative;
  color: #fff;
  background-color: #215aa3;
  padding: 100px 0;
}
.umodule__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}
.umodule__bg.big img {
  width: 100%;
}
.umodule__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, black 25%, rgba(0, 0, 0, 0) 100%);
}
.umodule__bg img {
  width: 80%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.umodule__inner {
  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;
}
.umodule__inner-content {
  width: calc(45% - 15px);
  max-width: 440px;
}
.umodule__inner h2 {
  margin-bottom: 40px;
}
.umodule__inner p {
  margin-bottom: 55px;
}
.umoduleVideo {
  width: calc(55% - 15px);
  max-width: 630px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.umoduleVideo__inner {
  width: 100%;
  position: relative;
  padding-bottom: 65%;
}
.umoduleVideo__inner iframe,
.umoduleVideo__inner img,
.umoduleVideo__inner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.uaction {
  padding: 50px 0;
  background-color: #fff;
}
.uaction.row-2 .uaction__inner-row {
  margin: 0 -15px;
}
.uaction.row-2 .uactionItem {
  width: calc(50% - 30px);
  margin: 15px;
}
.uaction.row-2 .uactionItem__top {
  margin-bottom: 40px;
}
.uaction.row-2 .uactionItem h3 {
  font-size: 44px;
  margin-bottom: 14px;
}
.uaction.row-2 .uactionItem p {
  margin-bottom: 20px;
}
.uaction.row-2 .uactionItem p.sm {
  font-size: 20px;
}
.uaction.row-2 .uactionItem p.ex {
  font-size: 30px;
}
.uaction.row-2 .uactionItem p:last-of-type {
  margin-bottom: 40px;
}
.uaction.row-2 .uactionItem .ubutton {
  margin: auto 0 0 0;
  font-size: 23px;
  /*padding: 20px 40px;*/
}
.uaction.row-1 .uaction__inner-row {
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.uaction.row-1 .uactionItem {
  width: 100%;
  margin: 0 0 40px 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.uaction.row-1 .uactionItem:last-child {
  margin: 0;
}
.uaction.row-1 .uactionItem__image {
  width: 50%;
}
.uaction.row-1 .uactionItem__image-inner {
  height: 100%;
  padding-bottom: 56%;
}
.uaction.row-1 .uactionItem__content {
  width: 50%;
}
.uaction.row-1 .uactionItem__top {
  margin-bottom: 40px;
}
.uaction.row-1 .uactionItem h3 {
  font-size: 44px;
  margin-bottom: 14px;
}
.uaction.row-1 .uactionItem p {
  margin-bottom: 20px;
}
.uaction.row-1 .uactionItem p.sm {
  font-size: 20px;
}
.uaction.row-1 .uactionItem p.ex {
  font-size: 30px;
}
.uaction.row-1 .uactionItem p:last-of-type {
  margin-bottom: 40px;
}
.uaction.row-1 .uactionItem .ubutton {
  margin: auto 0 0 0;
  font-size: 23px;
  padding: 20px 40px;
}
.uaction__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.uactionItem {
  width: calc(33.3% - 20px);
  margin: 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-shadow: 0 10px 10px 0px #00000012;
  box-shadow: 0 10px 10px 0px #00000012;
}
.uactionItem.pink .uactionItem__content {
  background-color: #d91c5c;
  color: #fff;
}
.uactionItem.blue .uactionItem__content {
  background-color: #215aa3;
  color: #fff;
}
.uactionItem.white .uactionItem__content {
  background-color: #fff;
  color: #215aa3;
}
.uactionItem__image {
  width: 100%;
}
.uactionItem__image-inner {
  width: 100%;
  position: relative;
  padding-bottom: 63%;
}
.uactionItem__image-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}
.uactionItem__content {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #fff;
  background-color: #215aa3;
  height: -webkit-fill-available;
}
.uactionItem__top {
  margin-bottom: 70px;
}
.uactionItem h3 {
  margin-bottom: 10px;
}
.uactionItem p {
  margin-bottom: 12px;
}
.uactionItem p:last-of-type {
  margin-bottom: 70px;
}
.uactionItem .ubutton {
  margin: auto 0 0 0;
}

.uhelp {
  padding: 60px 0;
  background-color: #fff;
}
.uhelp__inner-title {
  text-align: center;
  color: #215aa3;
  margin-bottom: 40px;
}
.uhelp__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.uhelpItem {
  width: calc(25% - 30px);
  margin: 15px;
  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;
}
.uhelpItem.blue {
  color: #215aa3;
}
.uhelpItem.blue a {
  color: #215aa3;
}
.uhelpItem.pink {
  color: #e6007e;
}
.uhelpItem.pink a {
  color: #e6007e;
}
.uhelpItem.red {
  color: #e30613;
}
.uhelpItem.red a {
  color: #e30613;
}
.uhelpItem.orange {
  color: #f9b233;
}
.uhelpItem.orange a {
  color: #f9b233;
}
.uhelpItem__icon {
  width: 60%;
  max-width: 170px;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.uhelpItem__icon img {
  width: 100%;
}
.uhelpItem p,
.uhelpItem a {
  font-size: 21px;
  line-height: 130%;
}
.uhelpItem p {
  margin-bottom: 6px;
}

.ufacts {
  padding: 80px 0;
  color: #fff;
  position: relative;
}
.ufacts__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}
.ufacts__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}
.ufacts__bg::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}
.ufacts__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.ufacts__inner {
  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;
}
.ufacts__inner-content {
  width: calc(55% - 15px);
  max-width: 513px;
}
.ufacts__inner-content h2 {
  margin-bottom: 40px;
}
.ufacts__inner-content p {
  margin-bottom: 40px;
}
.ufacts__inner-row {
  width: calc(45% - 15px);
  max-width: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -8px;
}
.ufactsItem {
  width: calc(50% - 16px);
  margin: 22px 8px;
  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;
}
.ufactsItem__icon {
  width: 70%;
  max-width: 120px;
  margin-bottom: 12px;
  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;
}
.ufactsItem__icon img {
  width: 100%;
}

.uinfo {
  background-color: #fff;
}
.uinfo.reverse .uinfoItem__image {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.uinfo .auto__container {
  padding: 0 10px;
}
.uinfoItem {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.uinfoItem__image {
  width: 50%;
}
.uinfoItem__image-inner {
  width: 100%;
  height: 100%;
  padding-bottom: 58%;
  position: relative;
}
.uinfoItem__image-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.uinfoItem__content {
  width: 50%;
  padding: 44px 50px;
  background-color: #215aa3;
}
.uinfoItem h3 {
  margin-bottom: 24px;
}
.uinfoItem p {
  margin-bottom: 70px;
  max-width: 440px;
}

.ugallery {
  padding: 30px 0;
}
.ugallery.row-2 .ugalleryItem {
  width: calc(50% - 20px);
}
.ugallery.row-2 .ugalleryItem__inner {
  padding-bottom: 56%;
}
.ugallery__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.ugalleryItem {
  width: calc(33.3% - 20px);
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ugalleryItem__inner {
  width: 100%;
  padding-bottom: 80%;
  position: relative;
}
.ugalleryItem__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.uhighlights {
  padding: 40px 0;
}
.uhighlights.row-1 .uhighlightsItem {
  width: 100%;
}
.uhighlights.row-1 .uhighlightsItem__inner {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 20px 70px 40px;
}
.uhighlights.row-1 .uhighlightsItem__content {
  max-width: 400px;
}
.uhighlights.row-1 .uhighlightsItem__logo {
  width: 60%;
}
.uhighlights.row-1 .uhighlightsItem__image {
  left: unset;
  right: 0;
  max-width: 420px;
}
.uhighlights.row-1 .uhighlightsItem h5,
.uhighlights.row-1 .uhighlightsItem h6 {
  margin-bottom: 20px;
}
.uhighlights.row-1 .uhighlightsItem p {
  margin-bottom: 24px;
}
.uhighlights__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.uhighlightsItem {
  width: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.uhighlightsItem__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.uhighlightsItem__bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.uhighlightsItem__inner {
  width: 100%;
  height: 100%;
  padding: 80px 30px 40px;
  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;
}
.uhighlightsItem__content {
  width: 45%;
  max-width: 260px;
  position: relative;
  z-index: 2;
}
.uhighlightsItem__image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  max-width: 300px;
  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;
}
.uhighlightsItem__image img {
  width: 100%;
}
.uhighlightsItem__logo {
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 -10px 0;
}
.uhighlightsItem__logo.sm img {
  width: 80%;
}
.uhighlightsItem__logo img {
  width: 100%;
  -webkit-transform: translateX(-13%);
  transform: translateX(-13%);
}
.uhighlightsItem h5,
.uhighlightsItem h6 {
  margin-bottom: 16px;
}
.uhighlightsItem p {
  margin-bottom: 18px;
}

.uabout {
  padding: 40px 0;
}
.uabout__inner {
  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;
}
.uabout__inner-content {
  width: calc(60% - 15px);
  max-width: 640px;
  color: #215aa3;
  padding: 20px 0;
}
.uabout__inner-content h3 {
  margin-bottom: 25px;
}
.uabout__inner-content p {
  margin-bottom: 30px;
}
.uabout__inner-col {
  width: calc(40% - 15px);
  max-width: 430px;
}
.uabout__inner-image {
  width: 100%;
  position: relative;
  padding-bottom: 66%;
  margin-bottom: 14px;
}
.uabout__inner-image.mob {
  display: none;
}
.uabout__inner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.uquote {
  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;
  width: 100%;
  color: #fff;
  padding: 30px 40px 40px;
  background-color: #215aa3;
}
.uquote.blue {
  background: radial-gradient(50% 50%, #1b75b9 0%, #0d4f8f 100%);
}
.uquote.green {
  background: radial-gradient(50% 50%, #3aaa35 0%, #006633 100%);
}
.uquote__logo {
  width: 50px;
  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;
}
.uquote__logo img {
  width: 100%;
}
.uquote h6 {
  margin-bottom: 20px;
}
.uquote h6:last-child {
  margin: 0;
}
.uquote h6 span {
  display: inline-block;
  font-weight: 400;
  font-size: 130%;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}
.uquote p {
  margin-bottom: 24px;
  max-width: 660px;
}

.news {
  padding: 40px 0;
  background-color: #F7F7F7;
}
.news__inner-title {
  text-align: center;
  margin-bottom: 38px;
}
.news__inner-slider {
  padding-bottom: 40px;
  margin: 0 -10px;
}
.news__inner h2 {
  color: #1956a7;
}
.news__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.news__inner .slick-slide {
  height: unset !important;
}
.news__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: 0;
}
.news__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;
}
.news__inner .slick-dots li.slick-active {
  background-color: #1956a7;
}
.news__inner .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.newsItem {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.newsItem:hover {
  opacity: 1;
}
.newsItem:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.newsItem:hover .newsItem__content {
  background-color: #1956a7;
  color: #fff;
}
.newsItem:hover .newsItem__content p {
  color: #fff;
}
.newsItem:hover .newsItem__content b {
  color: #fff;
}
.newsItem__wrapper {
  margin: 0 10px;
}
.newsItem__wrapper.big {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;



  -ms-flex-pack: justify;
  justify-content: space-between;

}
.newsItem__wrapper.big .newsItem__image {
  padding-bottom: 60%;



}
.newsItem__image {
  padding-bottom: 125%;
  position: relative;
  overflow: hidden;
}
.newsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.newsItem__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 18px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.newsItem p {
  margin-bottom: 10px;
  color: #1956A7;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsItem b {
  color: #B5B5B5;
  font-weight: 400;
}

.faq {
  padding: 55px 0;
}
.faq__inner-title {
  margin-bottom: 28px;
  text-align: center;
}
.faq__inner-content {
  max-width: 750px;
  margin: 0 auto;
}
.faq__inner h2 {
  color: #1956a7;
}
.faqItem {
  border-radius: 4px;
  overflow: hidden;
  background-color: #f7f7f7;
  margin-bottom: 20px;
}
.faqItem__icon {
  width: 70px;
  height: 70px;
  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;
}
.faqItem__icon img {
  width: 100%;
}
.faqItem.big .faqItem__head {
  padding: 20px;
}
.faqItem.big .faqItem__body {
  position: relative;
  padding: 0 20px;
}
.faqItem.big .faqItem__body.active {
  padding: 30px 20px 40px;
}
.faqItem.big .faqItem__body::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 40px);
  height: 1px;
  content: "";
  background-color: #414141;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.faqItem.big .faqItem__body p {
  font-family: "Asap", sans-serif;
}
.faqItem:last-child {
  margin: 0;
}
.faqItem__head {
  padding: 23px 56px 23px 30px;
  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 span::before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 0;
}
.faqItem__head h6 {
  font-weight: 600;
  color: #414141;
}
.faqItem__head > span {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #1956a7;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.faqItem__head > span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 14px;
  content: "";
  background-color: #fff;
  border-radius: 1px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;


}
.faqItem__head > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 3px;
  content: "";
  background-color: #fff;
  border-radius: 1px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.faqItem__head h5 {
  padding-left: 40px;
  position: relative;
}
.faqItem__head h5 span {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.faqItem__head h5 span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 100%;
  content: "";
  background-color: #1956a7;
  border-radius: 1px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faqItem__head h5 span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  content: "";
  background-color: #1956a7;
  border-radius: 1px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.faqItem__body {
  max-height: 0;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 0 30px;
}
.faqItem__body.active {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  padding: 15px 30px 40px;
}
.faqItem__body > p {
  color: #414141;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 25px;
}
.faqItem__body a {
  color: #1956a7;
}

.about {
  padding: 55px 0;
}
.aboutZeroPaddingBottom {
  padding: 55px 0 0 0;
}
.aboutZeroPaddingTop {
  padding: 0 0 55px 0;;
}
.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: 550px;
}
.about__inner-content h2 {
  color: #1956a7;
}
.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-content h5 {
  color: #1956a7;
  margin-bottom: 20px;
}
.about__inner-image {
  padding-bottom: 100%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.about__inner-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 10px);
  max-width: 550px;
}
.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 {
  background: #1956a7;
  padding: 40px 0 60px 0;
}
.calc__inner {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 4px;
}
.calc__inner h2 {
  font-weight: 600;
  color: #1956a7;
  margin-bottom: 20px;
}
.calc__inner p.lg {
  margin-bottom: 32px;
}
.calc__inner h6.sm {
  margin-bottom: 16px;
}
.calc__group {
  padding-bottom: 32px;
  margin-bottom: 32px;
  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: 600;
  color: #1956a7;
}
.calc__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;
  width: calc(100% - 200px);
}
.calc__total-row h4 {
  width: 66.6%;
}
.calc__total-row h4:last-child {
  width: 33.3%;
}
.calc__total .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: 16px 20px;
}
.calc__total .button:hover {
  background: #f01111;
}

.inputz {
  position: relative;
}
.inputz input {
  width: 100%;
  background: #ffffff;
  /* Action Black 20% */
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-family: "Asap", sans-serif;
  color: #000;
  padding: 14px 23px 13px 38px;
}
.inputz input::-webkit-input-placeholder {
  color: #d3d2d1;
}
.inputz input::-moz-placeholder {
  color: #d3d2d1;
}
.inputz input:-ms-input-placeholder {
  color: #d3d2d1;
}
.inputz input::-ms-input-placeholder {
  color: #d3d2d1;
}
.inputz input::placeholder {
  color: #d3d2d1;
}
.inputz__outer {
  position: relative;
  margin-bottom: 24px;
}
.inputz__outer:last-child {
  margin-bottom: 0;
}
.inputz__label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #414141;
  display: block;
  margin-bottom: 16px;
}
.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: "Asap", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #acacac;
}

.privacy {
  padding: 35px 0;
}
.privacy__inner {
  color: #414141;
}
.privacy__inner h2 {
  margin-bottom: 18px;
  color: #1956a7;
}
.privacy__inner h5 {
  margin-bottom: 20px;
}
.privacy__inner p {
  margin-bottom: 36px;
  font-family: "Lato", sans-serif;
}
.privacy__inner p:last-child {
  margin: 0;
}

.privacy__inner-article a {
  color: #1956a7 !important;
}

.blogs {
  padding: 40px 0 50px;
}
.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: 4px;
  overflow: hidden;
  padding-bottom: 67%;
  position: relative;
  margin-bottom: 40px;
}
.blogs__inner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;







  object-fit: cover;
  -o-object-fit: cover;

}
.blogs__inner-social {




  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;



  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}
.blogs__inner-social:last-child {
  margin: 0;

}
.blogs__inner-social a {
  width: 17px;
  height: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px;
}
.blogs__inner-social a:last-child {
  margin: 0;
}
.blogs__inner-social a.sm {
  width: 10px;
}
.blogs__inner-social a.big {
  width: 22px;
}
.blogs__inner-social a img {
  width: 100%;
}
.blogs__inner-foot {
  padding-top: 30px;
  max-width: 700px;
  margin: 0 auto;
}
.blogs__inner h1 {
  margin-bottom: 28px;
}
.blogs__inner h1 span {
  color: #1956a7;
}
.blogs__inner h5 {
  margin-bottom: 20px;
}

.mission {
  position: relative;



}
.mission.rev::before {
  left: unset;
  right: 0;
  background-color: #1956a7;
}
.mission.rev .mission__inner {
  padding: 90px 0;
}
.mission.rev .mission__inner-content {
  margin: 0 0 0 auto;
}
.mission::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 108, 33, 0.8);
  z-index: 1;
  content: "";
  pointer-events: none;
}
.mission__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 0;
}
.mission__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.mission__inner {
  padding: 160px 0;
}
.mission__inner-content {
  width: 45%;
  max-width: 500px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.mission__inner-image {
  display: none;
}
.mission__inner h1 {
  margin-bottom: 20px;
}
.mission__inner p {
  margin-bottom: 30px;
}
.mission__inner p:last-child {
  margin: 0;
}

.latest {
  background-color: #033576;
  padding: 35px 0 40px;
}
.latest__inner-title {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
.latest__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.latestItem {
  display: block;
  width: calc(33.3% - 20px);
  margin: 10px;
  text-align: center;
}
.latestItem__image {
  padding-bottom: 52%;
  position: relative;
}
.latestItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;






  -o-object-fit: cover;

}
.latestItem__content {
  background-color: #fff;
  padding: 20px 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.latestItem h6 {
  margin-bottom: 16px;
  color: #1956a7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 72px;
}
.latestItem p {
  color: #414141;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 60px;
  margin-bottom: 30px;
}
.latestItem b {
  font-weight: 400;
  color: #b5b5b5;
  margin-bottom: 16px;
}
.latestItem .button {
  width: 100%;
  max-width: 140px;
  margin: auto 0 0 0;
}

.checkout {
  padding: 40px 0 120px 0;
}
.checkout__inner {
  margin: 0 auto;
  border: 1px solid #1956a7;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
  max-width: 800px;
  -webkit-animation: 0.2s linear fadeUp;
  animation: 0.2s linear fadeUp;
  display: none;
}
.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__head {
  padding: 18px 40px;
  color: #fff;
  background: #1956a7;
}
.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: #f5f9ff;
}
.checkout__body {
  padding: 18px 40px 40px 40px;
}
.checkout__body h6 {
  margin-bottom: 20px;
}
.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: 16px 20px;
  background: #2856a7;
}
.checkout .button:hover {
  background: #2575de;

}
.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 .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: "Asap", sans-serif;
}
.checkout__thanks-inner p.med {
  font-weight: 400;
}
.checkout__thanks .button {
  width: 222px;
}
.checkout .formBtn {
  display: none;
  -webkit-animation: 0.2s linear fadeUp;
  animation: 0.2s linear fadeUp;
}
.checkout .formBtn.active {
  display: block;
}

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

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.payment {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
}
.payment__item {
  border-bottom: 1px solid #e6e6e6;
  position: relative;

}
.payment__item:last-child {
  border-bottom: unset;
}
.payment__item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
.payment__item input:checked + label::before {
  border: 2px solid #1956a7;


}
.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 #e6e6e6;
  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: #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: 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;
}
.inputc input,
.inputc select,
.inputc textarea {
  width: 100%;
  background: #ffffff;
  /* Action Black 20% */
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-family: "Asap", sans-serif;
  color: #000;
  padding: 16px 20px;
  resize: none;
}
.inputc input::-webkit-input-placeholder, .inputc select::-webkit-input-placeholder, .inputc textarea::-webkit-input-placeholder {
  color: #d3d2d1;
}
.inputc input::-moz-placeholder, .inputc select::-moz-placeholder, .inputc textarea::-moz-placeholder {
  color: #d3d2d1;
}
.inputc input:-ms-input-placeholder, .inputc select:-ms-input-placeholder, .inputc textarea:-ms-input-placeholder {
  color: #d3d2d1;
}
.inputc input::-ms-input-placeholder, .inputc select::-ms-input-placeholder, .inputc textarea::-ms-input-placeholder {
  color: #d3d2d1;
}
.inputc input::placeholder,
.inputc select::placeholder,
.inputc textarea::placeholder {
  color: #d3d2d1;
}
.inputc__outer {
  position: relative;
  margin-bottom: 24px;
}
.inputc__outer label {
  font-size: 16px;
  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;
  margin-bottom: 12px;
}
.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: 16px;
  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 #1956a7;
  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 #1956a7;
  border-right: 3px solid #1956a7;
  top: 4px;
  left: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}
.radio input {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.radio label {
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #414141;
}

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

.hero {
  position: relative;
}
.hero::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 150px;
  background: url(../images/heros/wave.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.hero__alt1::before {
  background: none;
}
.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;


}
.hero__image::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0) 100%);
}
.hero__image__alt1::before {
  background: none;
}
.hero__inner {
  min-height: calc(100vh - 120px);
  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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 180px 0;
}
.hero__inner-content {
  max-width: 480px;
  color: #fff;

}
.hero__inner-content h1 {
  margin-bottom: 16px;
}
.hero__inner-content h1 br {
  display: none;
}
.hero__inner-content p.med {
  margin-bottom: 24px;
}
.hero__inner .button {
  background: #1956a7;
}
.hero__inner .button:hover {
  background: #2575de;
}

.intro .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100% !important;
  -webkit-transform: unset !important;
  transform: unset !important;
}
.intro .slick-slide {
  height: unset !important;


}
.introItem {
  cursor: pointer;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  min-width: 25%;
  width: 25%;
  overflow: hidden;
}
.introItem.slick-current {
  width: 100%;
}
.introItem.slick-current:hover .introItem__foot {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.introItem.slick-current .introItem__overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.5) !important;
}
.introItem.slick-current .introItem__image img {
  -o-object-position: 15px 50%;
  object-position: 15px 50%;
}
.introItem.slick-current .introItem__foot-arrow {
  -webkit-animation: fadeInRight 1s ease-in-out;
  animation: fadeInRight 1s ease-in-out;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  opacity: 1;
}
.introItem.slick-current .introItem__content h1 {
  -webkit-animation: fadeInRight 1s ease-in-out;
  animation: fadeInRight 1s ease-in-out;
  display: block;
  opacity: 1;
}
.introItem.slick-current .introItem__content p {
  -webkit-animation: fadeInRight 1.2s ease-in-out;
  animation: fadeInRight 1.2s ease-in-out;
  display: block;
  opacity: 1;
}
.introItem.slick-current .introItem__content-buttons {
  -webkit-animation: fadeInRight 1.4s ease-in-out;
  animation: fadeInRight 1.4s ease-in-out;
  opacity: 1;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.introItem:hover .introItem__foot {
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
}
.introItem__inner {
  position: relative;
  min-height: calc(100vh - 122px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 80px 80px 150px 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.introItem__overlay {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.introItem__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  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;
  overflow: hidden;
}
.introItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -o-object-position: 50% 0;
  object-position: 50% 0;
  -webkit-transition: 1s ease-in;
  transition: 1s ease-in;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.introItem__content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.introItem__content-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.introItem__content-link {
  font-weight: 400;
  color: #fff;
  position: relative;
  padding-right: 16px;
}
.introItem__content-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;
}
.introItem__content-link:hover {
  opacity: 1;
}
.introItem__content-link:hover::before {
  -webkit-transform: translate(50%, -50%) rotate(45deg);
  transform: translate(50%, -50%) rotate(45deg);
}
.introItem__content h1 {
  display: none;
  opacity: 0;
}
.introItem__content p {
  margin-bottom: 35px;
  display: none;
  opacity: 0;
}
.introItem__content-buttons {
  opacity: 0;
  display: none;
}
.introItem__foot {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 3;
  color: #fff;
  padding: 30px 30px 30px 80px;
}
.introItem__foot-title p {
  margin-bottom: 5px;
}
.introItem__foot-title h5 {
  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;
}
.introItem__foot-arrow {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
  opacity: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.introItem__foot-arrow img {
  width: 100%;
}
.introItem__foot p {

  font-weight: 500;

}
.introItem__foot h5 {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  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;
}
.introItem__foot h5 b {
  font-weight: 600;
}
.introItem h1 {
  margin-bottom: 18px;
}
.introItem .button {
  margin-right: 40px;
}

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

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.instant {
  width: 100%;
}
.instant__btns {
  background: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.instant__btn {
  position: relative;
  width: 50%;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.instant__btn:first-child label {
  border-radius: 0 4px 4px 0;
}
.instant__btn:last-child label {
  border-radius: 4px 0 0 4px;
}
.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: #1956a7;
  color: #fff;
}
.instant__btn label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;



  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  line-height: 17px;
  font-family: "Asap", sans-serif;
  color: #1956a7;
  font-weight: 700;
  background: #fff;
  height: 45px;
  -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;
}
.instant__inner {
  background: #f4f4f4;
  border-radius: 4px;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.instant__inner-select {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.instant__inner-select-icon {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 10px;
  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: 16px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 15px;
  line-height: 17px;
  color: #1956a7;
  font-family: "Asap", sans-serif;
  font-weight: 400;
}
.instant__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% + 20px);
  margin: 0 -10px 20px -10px;
}
.instant__radio {
  position: relative;
  width: 33.33%;
  margin: 0 10px;
  border-radius: 4px;
  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;
}
.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: "Asap", sans-serif;
  color: #1956a7;
  font-weight: 900;
  background: #fff;
  height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.instant p {
  font-weight: 400;
  color: #222222;
  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;
}
.instant__row-select {
  width: 100px;
  border-radius: 4px;
  background: #fff;
  position: relative;
}
.instant__row-select select {
  border-radius: 4px;
  width: 100%;
  background: #fff;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  padding: 16px 65px 17px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 15px;
  line-height: 17px;
  color: #1956a7;
  font-family: "Asap", sans-serif;
  font-weight: 900;
}
.instant__row-select-icon {
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 35px;
  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-left: 2px solid #f0f0f0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.instant__row-select-icon img {
  width: 10px;
  height: 5px;
}
.instant__row-input {
  width: calc(100% - 120px);
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.instant__row-input input {
  width: 100%;
  padding: 16px 20px 17px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Asap", sans-serif;
  font-size: 15px;
  line-height: 17px;
  font-weight: 400;
  color: #1956a7;
}
.instant__row-input input::-webkit-input-placeholder {
  color: #1956a7;
  font-style: italic;
}
.instant__row-input input::-moz-placeholder {
  color: #1956a7;
  font-style: italic;
}
.instant__row-input input:-ms-input-placeholder {
  color: #1956a7;
  font-style: italic;
}
.instant__row-input input::-ms-input-placeholder {
  color: #1956a7;
  font-style: italic;
}
.instant__row-input input::placeholder {
  color: #1956a7;
  font-style: italic;
}
.instant .button.primary {
  width: 100%;
  font-size: 15px;
  line-height: 17px;
  font-family: "Asap", sans-serif;
  font-weight: 600;
  padding: 17px 0 16px 0;
}

.info {
  padding: 50px 0;
  background-color: #fff;
}
.info__inner-title {
  text-align: center;
  margin-bottom: 40px;
}
.info__inner-row {


  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;
  max-width: 980px;
  margin: 0 auto;
}
.info__inner h2 {
  color: #1956a7;
}
.info__inner h2 br {
  display: none;
}
.infoItem {
  width: calc(25% - 10px);
  max-width: 225px;
  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;
}
.infoItem.green {
  color: #8ac927;











}
.infoItem.blue {
  color: #1a82c4;
}
.infoItem.blue a::before {

  border-color: #1a82c4;
}
.infoItem.red {
  color: #ff595f;


}
.infoItem.red a::before {
  border-color: #ff595f;
}
.infoItem.purple {
  color: #6a4c93;
}
.infoItem.purple a::before {
  border-color: #6a4c93;
}
.infoItem h3 {
  margin-bottom: 16px;
}
.infoItem h6 {
  margin-bottom: 14px;
}
.infoItem a {
  color: inherit;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  position: relative;
  padding-right: 15px;
}
.infoItem a:hover {
  opacity: 1;
}
.infoItem a:hover::before {
  -webkit-transform: translate(50%, -40%) rotate(45deg);
  transform: translate(50%, -40%) rotate(45deg);
}
.infoItem a::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #8ac927;
  border-right: 1px solid #8ac927;
  content: "";
  -webkit-transform: translateY(-40%) rotate(45deg);
  transform: translateY(-40%) rotate(45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.help {
  padding: 45px 0 0;
}
.help__inner-title {
  text-align: center;
  margin-bottom: 30px;
}
.help__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.help__inner-content {
  width: calc(67% - 10px);
  max-width: 800px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.help__inner-image {
  width: 100%;
  height: 100%;

  position: relative;
  padding-bottom: 70%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  overflow: hidden;
}
.help__inner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}





.help__inner-text {
  position: absolute;
  top: 50%;
  left: 30px;
  width: 100%;
  max-width: 280px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
}
.help__inner-text__alt1 {
  display: flex;
  justify-content: space-around;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  background-color: #1956a7;
}
.help__inner-text h5 {
  margin-bottom: 20px;

}
.help__inner-text__alt1  h5 {
  display: flex;
  align-items: center;
}
.help__inner-text p {
  margin-bottom: 25px;
}
.help__inner-buttons {
  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;
}
.help__inner-link {
  font-weight: 400;
  color: #fff;
  position: relative;
  padding-right: 16px;
}
.help__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;
}
.help__inner-link:hover {
  opacity: 1;
}
.help__inner-link:hover::before {
  -webkit-transform: translate(50%, -50%) rotate(45deg);
  transform: translate(50%, -50%) rotate(45deg);
}
.help__inner-col {
  width: calc(33% - 10px);
  max-width: 384px;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.help__inner h2 {
  color: #1956a7;
}
.helpItem {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  display: block;
}
.primary_help_item {
  display: none;
}
.helpItem:last-child {
  margin: 0;
}
.helpItem:hover {
  opacity: 1;
}
.helpItem:hover span {
  -webkit-transform: translateX(40%);
  transform: translateX(40%);
}
.helpItem__image {
  padding-bottom: 70%;
  position: relative;
}
.helpItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.helpItem__content {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
}
.helpItem__content::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(transparent));
  background: linear-gradient(to top, #000000, transparent);
}
.helpItem__content h5 {
  width: 100%;
  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;
  position: relative;
  z-index: 1;
}
.helpItem__content span {
  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-left: 6px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.helpItem__content span img {
  width: 100%;
}

.join {
  padding: 35px 0 50px;

}
.join__inner-title {
  text-align: center;
  margin-bottom: 30px;
}
.join__inner-slider {
  margin: 0 -10px;
}
.join__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.join__inner .slick-slide {
  height: unset !important;
  margin: 0 10px;
}
.join__inner h2 {
  color: #1956a7;
}
.joinItem {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  display: block;
}
.joinItem:hover {
  opacity: 1;
}
.joinItem:hover .joinItem__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.joinItem:hover span {
  -webkit-transform: translateX(40%);
  transform: translateX(40%);
}
.joinItem__image {
  padding-bottom: 100%;
  position: relative;
}
.joinItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.joinItem__content {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 30px 20px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
}
.joinItem__content::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(transparent));
  background: linear-gradient(to top, #000000, transparent);
}
.joinItem__content h5 {
  width: 100%;
  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;
  position: relative;
  z-index: 1;
}
.joinItem__content span {
  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-left: 6px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.joinItem__content span img {
  width: 100%;
}

.emer {
  position: relative;
}
.emer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
}
.emer__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.emer__bg::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: transparent -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%) 0% 0% no-repeat padding-box;
}
.emer__bg__alt2::before {
  background: none;
}
.emer__bg_mb_image {
  display: none;
}
.emer__inner {
  padding: 90px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;



  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.emer__content {

  max-width: 500px;


}
.emer__content h2 {
  margin-bottom: 20px;
  color: #fff;
}
.emer__content p {
  color: #fff;
  font-weight: 400;
}
.emer__form {
  width: 380px;
}

.stats {
  padding: 0 0 50px;
  color: #414141;
}
.stats__inner-title {
  text-align: center;
  margin-bottom: 18px;
}
.stats__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;


}
.stats__inner-foot {
  text-align: center;
  padding-top: 40px;
}
.stats__inner-foot h4 {
  max-width: 738px;
  margin: 0 auto 18px;
}
.stats__inner-foot span {
  width: 36px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto 16px;
}
.stats__inner-foot span img {
  width: 100%;
}
.stats__inner h2 {
  color: #1956a7;
}
.statsItem {
  margin: 10px;
  width: calc(50% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background-color: #ffe8e9;
  border-radius: 4px;
  padding: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.statsItem.blue {
  background-color: #f5f9ff;
}
.statsItem.blue .statsItem__icon {
  background-color: #e2edfd;


}
.statsItem.green {
  background-color: #f3ffe0;
}
.statsItem.green .statsItem__icon {
  background-color: #e2f8be;
}
.statsItem.purple {
  background-color: #f2e8ff;
}
.statsItem.purple .statsItem__icon {
  background-color: #e9d8ff;
}
.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 h4 {
  font-weight: 700;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.statsItem p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 330px;
}

.today {
  background-color: #1956a7;
  padding: 50px 0;
}
.today.dark {
  background-color: #033576;
}
.today__inner-foot {
  display: none;
}
.today__inner-title {
  text-align: center;
  margin-bottom: 28px;
  color: #fff;
}
.today__inner-title h6 {
  margin-bottom: 5px;
}
.today__inner-slider {
  margin: 0 -10px;
}
.today__inner-row {
  margin: 0 -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -ms-flex-wrap: wrap;


  flex-wrap: wrap;

}
.today__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;

}
.today__inner .slick-slide {
  height: unset !important;
  margin: 0 10px;
}
.today__inner .slick-list {
  max-width: 1090px;
  margin: 0 auto;
}
.today__inner h2 {
  margin-bottom: 18px;

}
.todayItem {
  border-radius: 4px;
  overflow: hidden;


}
.todayItem.big {
  width: calc(33.3% - 30px);
  margin: 15px;
}
.todayItem.big:nth-child(n+4) {
  display: none;
}
.todayItem.big .todayItem__image {
  padding-bottom: 58%;
}
.todayItem.big .todayItem__content p {
  margin-bottom: 20px;
}
.todayItem__image {
  padding-bottom: 63%;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.todayItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.todayItem__content {
  background-color: #fff;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.todayItem__content h5 {
  font-size: 35px;
  line-height: 100%;
  color: #1956a7;
  margin-bottom: 20px;
}
.todayItem__content h6 {
  color: #1956a7;
  margin-bottom: 20px;
}
.todayItem__content p {
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #414141;
  font-weight: 400;
}
.todayItem__content p b {
  font-weight: 700;
}
.todayItem__content .button {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 30px;
}

.credit {
  padding: 40px 0 90px;
}
.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;
  opacity: 0.7;
  -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: 1060px;
  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 {
  position: absolute;
  width: 35px;
  height: 35px;
  z-index: 3;
  border-radius: 50%;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.credit__inner .slick-arrow:hover {
  opacity: 0.8;
}
.credit__inner .slick-arrow:focus {
  opacity: 0.8;
}
.credit__inner .slick-arrow::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../images/icons/arrow-right.svg") no-repeat center;
  background-size: contain;
  opacity: 1;
}
.credit__inner .slick-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.credit__inner .slick-prev::before {
  background: url("../images/icons/arrow-left.svg") no-repeat center;
  background-size: contain;
}
.credit__inner .slick-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.creditItem__inner {
  position: relative;
  padding-bottom: 53%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  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;
}

.appeals {
  padding: 45px 0;
  position: relative;
}
.appeals__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
}
.appeals__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.appeals__inner {
  max-width: 380px;
}
.appeals__inner-head {
  color: #fff;
  margin-bottom: 30px;
}
.appeals__inner-head h2 {
  margin-bottom: 24px;
}

.reports {
  padding: 50px 0 80px;
}
.reports__inner-content {
  max-width: 850px;
  margin: 0 0 0 auto;
}
.reports__inner h2 {
  color: #1956a7;
}
.reports__inner .select {
  display: none;
}
.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;
}

.donation {
  position: relative;
  padding-left: 50%;
  min-height: calc(100vh - 60px);
  background: #033576;
  color: #fff;
}
.donation .instant {
  margin-bottom: 50px;
}
.donation__image {
  position: fixed;
  top: 0;
  left: 0;
  width: 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;
  height: 100%;
}
.donation__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.donation__inner {
  padding: 40px 40px 120px 40px;
}
.donation__content {
  max-width: 490px;
  margin: 0 auto;
}
.donation__content-head {
  margin-bottom: 30px;
}
.donation__content-head h1 {
  margin-bottom: 16px;
}
.donation__content-group {
  margin-bottom: 50px;
}
.donation__content-group h5 {
  margin-bottom: 16px;
}
.donation__content-group h5:last-child {
  margin-bottom: 0;
}
.donation__content-group p.med {
  margin-bottom: 10px;
}
.donation__content-group p.med:last-child {
  margin-bottom: 0;
}
.donation__content-group 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: #fff;
}
.donation__content-group a img {
  width: 20px;
  margin-right: 20px;
}
.donation__content-logo {
  width: 150px;
  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;
}
.donation__content-logo img {
  width: 100%;
}
.donation__content-socials {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  position: relative;
  z-index: 3;
}
.donation__content-socials 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: #fff;
  border-radius: 50%;
}
.donation__content-socials a:last-child {
  margin: 0;
}
.donation__content-socials a.sm img {
  width: 9px;
}
.donation__content-socials a.big img {
  width: 19px;
}
.donation__content-socials a img {
  width: 15px;
}
.donation h1 {
  font-weight: 600;
}
.donation p.med {
  font-weight: 400;



}

.contact {
  padding: 50px 0 250px 0;
  position: relative;
  background: #1956a7;
}
.contact::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 150px;
  background: url(../images/heros/wave.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.contact__form {
  width: calc(50% - 15px);
  padding: 40px;
  border-radius: 4px;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.contact__form p.med {
  margin-bottom: 10px;
}
.contact__form h2 {
  color: #1956a7;
  font-weight: 600;
  margin-bottom: 30px;
}
.contact__form h2 span {
  display: block;
  color: #2575de;
}
.contact__form .inputc__outer {
  margin-bottom: 10px;
}
.contact__form .checkc {
  margin-bottom: 30px;
}
.contact__form .checkc label {
  color: #1956a7;
}
.contact__form .button {
  padding: 14px 30px;
  background: #1956a7;
}
.contact__form .button:hover {
  background: #2575de;
}
.contact__content {
  width: calc(50% - 15px);
  color: #fff;
  position: relative;
  z-index: 1;
}
.contact__content-inner {
  max-width: 310px;
}
.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 h1 {
  margin-bottom: 80px;
  font-weight: 800;
}
.contact__content h5 {
  margin-bottom: 20px;
  font-weight: 600;
}
.contact__content p.med {
  margin-bottom: 10px;
}
.contact__content p.lg {
  margin-bottom: 30px;
}
.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: #fff;
  margin-bottom: 24px;

}
.contact__content a img {
  width: 20px;

































  margin-right: 20px;
}
.contact__content .button {
  display: inline-block;









  margin-bottom: 0;
}

@media (max-width: 1380px) {
  .introItem__inner {
    padding: 40px 40px 120px 40px;






























  }
  .introItem__foot {
    padding: 32px 40px 30px 40px;
  }
}
@media (max-width: 1250px) {
  .hero::before {
    height: 100px;
  }
  .hero__image img {
    -o-object-position: 60% 50%;
    object-position: 60% 50%;
  }
  .hero__image::before {
    width: 70%;
  }
  .hero__inner {
    padding: 120px 0;
    min-height: calc(100vh - 120px);
  }
  .contact {

    padding: 50px 0 200px 0;
  }
  .contact::before {
    height: 100px;
  }
}
@media (max-width: 1180px) {
  .auto__container {
    padding: 0 30px;
  }

  h2.big {
    font-size: 45px;
    line-height: 130%;
  }

  h3.big {
    font-size: 34px;
  }

  p.ex {
    font-size: 22px;
  }
  p.xlg {
    font-size: 24px;
  }

  .search {
    display: none;
  }
  .credit__inner-slider {
    margin: 0 -5px !important;

  }
  .credit__inner .slick-slide {
    margin: 0 5px;
  }
  .credit__inner .slick-arrow {
    width: 28px;
    height: 28px;
  }
  .credit__inner .slick-prev {
    -webkit-transform: translate(-24%, -50%);
    transform: translate(-24%, -50%);
  }
  .credit__inner .slick-next {
    -webkit-transform: translate(24%, -50%);
    transform: translate(24%, -50%);
  }
  .nav {
    width: calc(100% - 160px);
    max-width: 820px;
  }
  .donation__inner {
    padding: 30px 30px 120px 30px;
  }

  .ubannerItem__inner {
    padding: 80px 0;
  }
  .ubannerItem__inner h2 {
    margin-bottom: 20px;
  }
  .ubannerItem__inner p {
    margin-bottom: 40px;
  }

  .umodule {
    padding: 70px 0;
  }
  .umodule__inner h2 {
    margin-bottom: 30px;
  }
  .umodule__inner p {
    margin-bottom: 40px;
  }

  .uaction {
    padding: 40px 0;
  }
  .uaction.row-2 .uactionItem h3 {
    font-size: 40px;
  }
  .uaction.row-2 .uactionItem p.sm {
    font-size: 18px;
  }
  .uaction.row-2 .uactionItem p.ex {
    font-size: 25px;
  }
  .uaction.row-2 .uactionItem .ubutton {
    margin: auto 0 0 0;
    font-size: 18px;
    padding: 14px 30px;
  }
  .uaction.row-1 .uactionItem {
    margin: 0 0 24px 0;
  }
  .uaction.row-1 .uactionItem h3 {
    font-size: 40px;
  }
  .uaction.row-1 .uactionItem p.sm {
    font-size: 18px;
  }
  .uaction.row-1 .uactionItem p.ex {
    font-size: 25px;
  }
  .uaction.row-1 .uactionItem .ubutton {
    margin: auto 0 0 0;
    font-size: 18px;
    padding: 14px 30px;
  }
  .uactionItem__content {
    padding: 24px;
  }
  .uactionItem__top {
    margin-bottom: 40px;
  }
  .uactionItem p:last-of-type {
    margin-bottom: 40px;
  }

  .uhelp {
    padding: 50px 0;
  }
  .uhelpItem h3 {
    font-size: 45px;
  }
  .uhelpItem p,
  .uhelpItem a {
    font-size: 18px;
  }

  .ufacts {
    padding: 60px 0;
  }
  .ufacts__inner-content h2 {
    margin-bottom: 24px;
  }
  .ufacts__inner-content p {
    margin-bottom: 30px;
  }
  .ufactsItem {
    margin: 16px 8px;
  }

  .uinfoItem__content {
    padding: 35px 40px;
  }
  .uinfoItem p {
    margin-bottom: 40px;
  }

  .uhighlights.row-1 .uhighlightsItem__inner {
    padding: 20px 50px 40px;
  }
  .uhighlightsItem__inner {
    padding: 50px 24px 30px;
  }
  .uhighlightsItem__image {
    width: 48%;
  }
  .uhighlightsItem__logo {
    width: 80%;
  }
  .uhighlightsItem__content {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }

  h2.big {
    font-size: 40px;
  }

  p.ex {
    font-size: 20px;
  }
  p.xlg {
    font-size: 22px;
  }
  
  .basketLink {
    width: 100%;
    max-width: unset;
    margin: 0;
    padding: 18px 0;
    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: 30px 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;
  }
  .introItem {
    width: auto;
    position: relative !important;
    min-width: unset;
  }
  .introItem.slick-current {
    width: auto;
    min-width: 100% !important;
    left: 0 !important;
  }
  .introItem__inner {
    padding: 30px 20px 120px 20px;
  }
  .introItem__foot {
    padding: 20px 20px 20px 20px;
  }
  .intro .slick-track {
    -webkit-transform: initial !important;
    transform: initial !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .header__inner {
    padding: 10px 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: 30px 20px 80px 20px;
    height: 100%;
    overflow-y: auto;
    background: #fff;
  }
  .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: 18px 16px 18px 0;
  }
  .nav__inner-link::before {
    -webkit-transform: translateY(-70%) rotate(45deg);
    transform: translateY(-70%) rotate(45deg);
  }
  .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;
  }
  .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;
  }
  .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: 30px 20px 100px;
    -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;
    padding-left: 16px;
    position: relative;
    cursor: pointer;
    z-index: 3;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .dropMenu__back:hover {
    opacity: 0.8;
  }
  .dropMenu__back::before {
    position: absolute;
    top: 50%;
    left: 0;
    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 0;
    position: relative;
  }
  .dropMenu li a::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);
  }
  .hero::before {
    height: 60px;
  }
  .hero__inner {
    min-height: unset;
  }
  .news__inner-slider {
    margin: 0 -8px;
  }
  .news__inner-title {
    margin-bottom: 20px;
  }
  .newsItem__wrapper {
    margin: 0 8px;
  }
  .newsItem__content {
    padding: 12px;
  }
  .newsItem p {
    margin-bottom: 5px;
  }
  .donate__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }
  .donate__inner-title {
    padding: 13px 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
  }
  .donate__inner-title.active span::before {
    -webkit-transform: translate(-50%, -65%) rotate(135deg);
    transform: translate(-50%, -65%) rotate(135deg);
  }
  .donate__inner-title span {
    width: 35px;
    height: 35px;
    background-color: #ce0000;
    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 {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: calc(100% + 10px);
    max-width: unset;
    transition: 0.3s ease;
  }
  .donate__inner-row.active {
    max-height: 300px;
    opacity: 1;
    padding: 6px 0 20px;
  }
  .donate__inner-item {
    max-width: unset;
  }

  .uhero__inner {
    min-height: calc(100vh - 121px);
  }

  .about__inner-content p,
  .about__inner-content h4,
  .about__inner-content h5 {
    margin-bottom: 15px;
  }
  .about__inner-main {
    padding-top: 40px;
  }
  .footer {
    padding: 30px 0 80px;
  }
  .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);
  }
  .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;
  }

  .ubanner.full .ubannerItem__inner {
    min-height: calc(100vh - 121px);
  }
  .ubannerItem__inner {
    min-height: calc(100vh - 121px);
  }

  .uabout__inner-content {
    width: calc(55% - 10px);
  }
  .uabout__inner-content h3 {
    margin-bottom: 16px;
  }
  .uabout__inner-content p.big {
    font-size: 16px;
    line-height: 140%;
  }
  .uabout__inner-col {
    width: calc(45% - 10px);
  }
}
@media (max-width: 930px) {
  .uhero__inner {
    padding: 50px 0;
  }
  .uhero__inner-logo {
    width: 120px;
  }

  .ubannerItem__inner {
    padding: 60px 0;
  }
  .ubannerItem__inner-content {
    width: calc(58% - 10px);
  }
  .ubannerItem__inner-logo {
    width: calc(42% - 10px);
  }
  .ubannerItem__inner p {
    margin-bottom: 30px;
  }

  .umodule {
    padding: 50px 0;
  }
  .umodule__inner-content {
    width: calc(48% - 10px);
  }
  .umodule__inner h2 {
    margin-bottom: 16px;
  }
  .umodule__inner p {
    margin-bottom: 24px;
  }
  .umoduleVideo {
    width: calc(52% - 10px);
  }

  .uaction {
    padding: 30px 0;
  }
  .uaction.row-2 .uaction__inner-row {
    margin: 0 -10px;
  }
  .uaction.row-2 .uactionItem {
    width: calc(50% - 20px);
    margin: 10px;
  }
  .uaction.row-2 .uactionItem h3 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .uaction.row-2 .uactionItem p {
    margin-bottom: 12px;
  }
  .uaction.row-2 .uactionItem p.sm {
    font-size: 16px;
  }
  .uaction.row-2 .uactionItem p.ex {
    font-size: 20px;
  }
  .uaction.row-2 .uactionItem .ubutton {
    font-size: 15px;
    padding: 10px 22px;
  }
  .uaction.row-1 .uactionItem {
    margin: 0 0 24px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .uaction.row-1 .uactionItem__image {
    width: 100%;
  }
  .uaction.row-1 .uactionItem__image-inner {
    padding-bottom: 63%;
  }
  .uaction.row-1 .uactionItem__content {
    width: 100%;
  }
  .uaction.row-1 .uactionItem h3 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .uaction.row-1 .uactionItem p {
    margin-bottom: 12px;
  }
  .uaction.row-1 .uactionItem p.sm {
    font-size: 16px;
  }
  .uaction.row-1 .uactionItem p.ex {
    font-size: 20px;
  }
  .uaction.row-1 .uactionItem .ubutton {
    font-size: 15px;
    padding: 10px 22px;
  }
  .uactionItem {
    width: calc(50% - 20px);
  }

  .uhelp {
    padding: 40px 0;
  }
  .uhelp__inner-title {
    margin-bottom: 24px;
  }
  .uhelp__inner-row {
    margin: 0 -10px;
  }
  .uhelpItem {
    width: calc(25% - 20px);
    margin: 10px;
  }
  .uhelpItem__icon {
    margin-bottom: 10px;
    width: 55%;
  }
  .uhelpItem h3 {
    font-size: 35px;
  }
  .uhelpItem p,
  .uhelpItem a {
    font-size: 16px;
  }
  .uhelpItem p {
    margin-bottom: 3px;
  }

  .ufacts {
    padding: 40px 0;
  }
  .ufacts__inner-content h2 {
    margin-bottom: 18px;
  }
  .ufacts__inner-content p {
    margin-bottom: 24px;
  }
  .ufactsItem h3 {
    font-size: 30px;
    margin-bottom: 3px;
  }
  .ufactsItem p {
    font-size: 13px;
  }

  .uinfoItem__content {
    padding: 24px;
  }
  .uinfoItem h3 {
    margin-bottom: 14px;
    font-size: 30px;
  }
  .uinfoItem p {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .ugallery {
    padding: 20px 0;
  }
  .ugallery.row-2 .ugalleryItem {
    width: calc(50% - 12px);
  }
  .ugallery__inner-row {
    margin: 0 -6px;
  }
  .ugalleryItem {
    margin: 6px;
    width: calc(33.3% - 12px);
  }

  .uhighlights.row-1 .uhighlightsItem__inner {
    padding: 15px 30px 30px;
  }
  .uhighlightsItem__inner {
    padding: 20px;
  }
  .uhighlightsItem__image {
    width: 46%;
  }
  .uhighlightsItem__logo {
    width: 70%;
  }
  .uhighlightsItem__content {
    width: 54%;
  }
  .uhighlightsItem h6 {
    margin-bottom: 8px;
  }
  .uhighlightsItem p {
    margin-bottom: 12px;
  }

  .uabout {
    padding: 30px 0;
  }
  .uabout__inner-content {
    padding: 0;
  }

  .uquote {
    padding: 24px;
  }

  .help__inner-content {
    width: calc(63% - 5px);
  }
  .help__inner-col {
    width: calc(37% - 5px);
  }

  .help__inner-text {
    left: 20px;
  }
  .helpItem {
    margin-bottom: 10px;
  }
  .helpItem h5 {
    font-size: 20px;
    line-height: 28px;
  }
  .mission__inner {
    padding: 100px 0;
  }


  .today__inner-row {
    margin: 0 -7px;
  }
  .todayItem.big {
    width: calc(33.3% - 14px);
    margin: 7px;
  }

  .emer__inner {
    padding: 50px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .emer__content {
    text-align: center;
    margin-bottom: 32px;
  }
  .contact {
    padding: 40px 0 115px 0;
  }
  .contact::before {
    height: 60px;
  }
  .contact__content {
    width: calc(40% - 15px);

  }
  .contact__form {
    width: calc(60% - 15px);
  }
  .vision__bg {
    min-height: 80vh;
  }
  .vision__bg::before {
    background: rgba(0, 0, 0, 0.7);
  }
}
@media (max-width: 930px) {
  .info {
    padding: 40px 0;
  }
  .info__inner-title {
    margin-bottom: 30px;

  }
  .info__inner-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
  .infoItem {
    width: calc(50% - 20px);
    max-width: unset;
    margin: 15px 10px;
  }
  .about {
    padding: 30px 0;
  }
  .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-wrapper {
    position: relative;
    width: 100%;
    max-width: unset;
    margin: 24px 0;
  }
  .about__inner-main {
    padding-top: 20px;
  }
  .about__inner-main h2 {
    margin-bottom: 0;
  }
  .join {
    padding: 35px 0 40px;
  }
  .join__inner-slider {
    padding-bottom: 40px;
  }
  .join__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: 0;
  }
  .join__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;
  }
  .join__inner .slick-dots li.slick-active {
    background-color: #1956a7;
  }
  .join__inner .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .latestItem {
    width: calc(50% - 20px);
  }
  .mission {
    background-color: rgba(0, 108, 33, 0.8);

  }
  .mission.rev {
    background-color: #1956a7;
  }
  .mission.rev .mission__inner {
    padding: 40px 0 0;
  }
  .mission.rev .mission__inner-content {

    margin-bottom: 30px;
  }
  .mission::before {
    display: none;

  }
  .mission__bg {
    display: none;
  }
  .mission__inner {
    padding: 30px 0 0;

  }
  .mission__inner-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .mission__inner-image {

    width: calc(100% + 40px);
    margin: 0 -20px;
    display: block;
    padding-bottom: 110%;
    position: relative;
  }
  .mission__inner-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
  }
  .today {
    padding: 40px 0 30px;
  }
  .today__inner-slider {
    padding-bottom: 40px;
    margin: 0 -7px;
  }
  .today__inner .slick-slide {
    margin: 0 7px;
  }
  .today__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: 0;
  }
  .today__inner .slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    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;
  }
  .today__inner .slick-dots li.slick-active {
    background-color: #fff;
  }
  .today__inner .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .todayItem.big .todayItem__content {
    padding: 15px;
  }
  .todayItem.big .todayItem__content p {
    margin-bottom: 10px;
  }
  .todayItem.big .todayItem__content h6 {
    margin-bottom: 10px;

  }
}
@media (max-width: 750px) {
  .auto__container {
    padding: 0 20px;
  }
  h2 {
    font-size: 30px;
    line-height: 40px;
  }

  h2.big {
    font-size: 35px;
  }

  h3.big {
    font-size: 30px;
  }

  p.ex {
    font-size: 18px;
  }
  p.xlg {
    font-size: 18px;
  }
  
  .calc__inner {
    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;
  }
  .checkout {
    padding: 20px 0 80px 0;
  }
  .checkout__head {
    padding: 18px 20px;
  }
  .checkout__body {
    padding: 18px 20px;
  }
  .checkout__sub {

    padding: 18px 20px;
  }
  .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;
  }
  .donate__inner-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .donate__inner-item {
    margin: 5px;
  }
  .donate__inner-item:nth-child(n) {
    width: calc(50% - 10px);
    max-width: unset;
  }

  .footer {
    padding: 20px 0 80px;
  }
  .footer__inner-links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer__inner-col {
    width: calc(50% - 10px);
    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;
  }
  .footerForm__row .button {
    width: 44%;
  }

  .ubanner .slick-dots {
    bottom: 20px;
  }
  .ubanner .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
  .ubannerItem__bg::before {
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .ubannerItem__bg img {
    width: 100%;
  }
  .ubannerItem__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 100px 0 60px;
  }
  .ubannerItem__inner-content {
    width: 100%;
    max-width: unset;
  }
  .ubannerItem__inner-logo {
    width: 90%;
    max-width: 320px;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 50px;
  }
  .ubannerItem__inner h2 {
    margin-bottom: 16px;
  }
  .ubannerItem__inner p {
    margin-bottom: 24px;
  }

  .umodule {
    padding: 35px 0;
  }
  .umodule__bg::before {
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .umodule__bg img {
    width: 100%;
  }
  .umodule__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .umodule__inner-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .umodule__inner h2 {
    margin-bottom: 16px;
  }
  .umodule__inner p {
    margin-bottom: 24px;
  }
  .umoduleVideo {
    width: 100%;
    max-width: unset;
  }

  .uhelp {
    padding: 30px 0;
  }
  .uhelpItem {
    width: calc(50% - 20px);
    margin: 20px 10px;
  }
  .uhelpItem h3 {
    font-size: 45px;
  }
  .uhelpItem p,
  .uhelpItem a {
    font-size: 20px;
  }

  .ufacts__bg::before {
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .ufacts__bg::after {
    display: none;
  }
  .ufacts__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ufacts__inner-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 40px;
  }
  .ufacts__inner-row {
    width: 100%;
    max-width: unset;
  }
  .ufactsItem {
    margin: 22px 8px;
  }
  .ufactsItem__icon {
    max-width: 200px;
  }
  .ufactsItem h3 {
    font-size: 40px;
  }
  .ufactsItem p {
    font-size: 15px;
  }

  .uinfo.reverse .uinfoItem__image {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .uinfoItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .uinfoItem__content {
    width: 100%;
    padding: 35px;
  }
  .uinfoItem__image {
    width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .uinfoItem h3 {
    margin-bottom: 18px;
  }
  .uinfoItem p {
    margin-bottom: 35px;
  }

  .uhighlights {
    padding: 30px 0;
  }
  .uhighlights.row-1 .uhighlightsItem {
    width: 100%;
  }
  .uhighlights.row-1 .uhighlightsItem__bg img.rev {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  .uhighlights.row-1 .uhighlightsItem__inner {
    padding: 30px 40px;
  }
  .uhighlights.row-1 .uhighlightsItem__content {
    max-width: 400px;
  }
  .uhighlights.row-1 .uhighlightsItem__logo {
    width: 60%;
  }
  .uhighlights.row-1 .uhighlightsItem__image {
    width: 65%;
    left: 0;
    right: unset;
    max-width: unset;
  }
  .uhighlights.row-1 .uhighlightsItem h5,
  .uhighlights.row-1 .uhighlightsItem h6 {
    margin-bottom: 8px;
  }
  .uhighlights.row-1 .uhighlightsItem p {
    margin-bottom: 12px;
  }
  .uhighlights__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .uhighlightsItem {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .uhighlightsItem.blue .uhighlightsItem__inner {
    background-color: #215aa3;
  }
  .uhighlightsItem.orange .uhighlightsItem__inner {
    background-color: #f39200;
  }
  .uhighlightsItem.brown .uhighlightsItem__inner {
    background-color: #b17f4a;
  }
  .uhighlightsItem.pink .uhighlightsItem__inner {
    background-color: #d60b52;
  }
  .uhighlightsItem__bg {
    position: relative;
    padding-bottom: 75%;
    width: calc(100% + 2px);
    margin: 0 -1px;
  }
  .uhighlightsItem__bg > img {
    position: absolute;
    top: 0;
    left: 0;
  }
  .uhighlightsItem__image {
    width: 55%;
    max-width: unset;
  }
  .uhighlightsItem__inner {
    background-color: #215aa3;
    padding: 30px 40px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .uhighlightsItem__content {
    width: 100%;
  }
  .uhighlightsItem h5 {
    font-size: 18px;
  }
  .uhighlightsItem p {
    font-size: 12px;
  }

  .uabout__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .uabout__inner-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .uabout__inner-col {
    width: 100%;
    max-width: unset;
  }
  .uabout__inner-image.mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .uabout__inner-image.mobRem {
    display: none;
  }
}
@media (max-width: 650px) {
  .uaction {
    padding: 30px 0;
  }
  .uaction.row-1 .uactionItem__top {
    margin-bottom: 24px;
  }
  .uaction.row-2 .uaction__inner-row {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .uaction.row-2 .uactionItem {
    width: 100%;
    margin: 0 0 16px 0;
  }
  .uaction.row-2 .uactionItem:last-child {
    margin: 0;
  }
  .uaction.row-2 .uactionItem__top {
    margin-bottom: 24px;
  }
  .uaction.row-2 .uactionItem h3 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .uaction.row-2 .uactionItem p {
    margin-bottom: 12px;
  }
  .uaction.row-2 .uactionItem p.sm {
    font-size: 16px;
  }
  .uaction.row-2 .uactionItem p.ex {
    font-size: 20px;
  }
  .uaction.row-2 .uactionItem .ubutton {
    font-size: 15px;
    padding: 10px 22px;
  }
  .uaction__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  .uactionItem {
    width: 100%;
    margin: 0 0 16px 0;
  }
  .uactionItem:last-child {
    margin: 0;
  }
  .uactionItem__top {
    margin-bottom: 24px;
  }
  .uactionItem__content {
    height: unset;
  }
/*  .uactionItem p:last-of-type {
    margin-bottom: 24px !important;
  }*/

  .ugallery {
    padding: 24px 0;
  }
  .ugallery.row-2 .ugalleryItem {
    width: 100%;
  }
  .ugallery__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  .ugalleryItem {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .ugalleryItem:last-child {
    margin: 0;
  }
  .ugalleryItem__inner {
    padding-bottom: 72% !important;
  }

  .help__inner-title {
    margin-bottom: 20px;
  }
  .help__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;




  }
  .help__inner-content {
    width: 100%;
    max-width: unset;
    display: none;

















  }
  .help__inner-content__alt1 {
    display: none;

  }
  .help__inner-col {
    width: 100%;
    max-width: unset;
  }
  .help__inner-text {
    left: 20px;



  }
  .help__inner-text__alt1 {
    display: grid;
    height: 100%;

  }
  .help__inner-buttons__alt1 {
    display: grid;
    justify-content: normal;
  }
  .helpItem:nth-child(n) {
    display: block;
    margin-bottom: 20px;
  }
  .helpItem:last-child {
    margin: 0;

  }
  .helpItem h5 {
    font-size: 25px;
    line-height: 33px;
  }
  .reportsItem__image-wrapper {
    width: 180px;

  }
  .reportsItem__content {
    width: calc(100% - 200px);
  }
  .reportsItem p {
    margin-bottom: 15px;

  }
  .stats__inner-row {
    margin: 0 -5px;



  }
  .statsItem {
    width: calc(50% - 10px);
    margin: 5px;
  }
  .todayItem.big {
    width: calc(50% - 14px);



  }
  .todayItem.big:nth-child(n) {
    display: block;


  }
  .todayItem.big:nth-child(n+5) {
    display: none;

  }
  .todayItem.big .todayItem__content p {
    margin-bottom: 15px;
  }
  .todayItem.big .todayItem__content h6 {
    margin-bottom: 15px;
  }
  .donation {
    padding-left: unset;
  }
  .donation__image {
    display: none;
  }
  .donation__inner {
    padding: 30px 20px 80px 20px;



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




  }
  .contact__content h1 {
    margin-bottom: 32px;
  }
  .contact__content-image {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
  }
  .contact__form {
    width: 100%;
    padding: 40px 20px;



  }
  .searchResultItem__image-wrapper {
    width: 180px;
  }
  .searchResultItem__content {
    width: calc(100% - 200px);
  }
  .searchResultItem p {
    margin-bottom: 15px;
  }
}
@media (max-width: 650px) {
  .reports {
    padding: 40px 0;

  }
  .reports__inner .select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 25px;
  }
  .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;
  }
  .reportsItem {

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;















    padding: 30px 0;


  }
  .reportsItem__image-wrapper {
    width: 105px;
    margin-bottom: 20px;

  }
  .reportsItem__content {
    width: 100%;

  }
  .latest__inner-row {
    margin: 0;




  }
  .latestItem {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .latestItem:last-child {
    margin: 0;
  }
  .latestItem__content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .stats {
    padding: 20px 0 40px;
  }
  .stats__inner-row {
    margin: 0;
    -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;

  }
  .searchResult {
    padding: 40px 0;
  }
  .searchResult__inner .select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 25px;
  }
  .searchResult__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);
  }
  .searchResult__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;
  }
  .searchResultItem {

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px 0;
  }
  .searchResultItem__image-wrapper {
    width: 105px;
    margin-bottom: 20px;
  }
  .searchResultItem__content {
    width: 100%;

  }
}
@media (max-width: 540px) {
  .hero__image::before {
    width: 100%;
    background: rgb(0, 0, 0);
    background: -webkit-gradient(linear, left top, right top, color-stop(40%, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
  }
  .hero__inner {
    padding: 158px 0;

  }
  .hero__inner-content p.med {
    display: none;
  }
  .hero__inner-content h1 {
    margin-bottom: 30px;
  }
  .hero__inner-content h1 br {
    display: block;
  }
  .vision__inner-play span {
    width: 60px;
    height: 60px;
  }
  .vision__inner-play span img {
    width: 19px;




  }
  .vision__inner-play h6 {
    width: calc(100% - 80px);

  }
  .info__inner-title {
    margin-bottom: 20px;
  }
  .info__inner-row {
    margin: 0;
  }
  .info__inner h2 br {
    display: block;

  }
  .infoItem {
    width: 100%;
    max-width: unset;
    margin: 0 0 35px 0;
  }
  .infoItem:last-child {




    margin: 0;
  }




  .infoItem h3 {
    margin-bottom: 12px;
  }
  .faq {
    padding: 40px 0;
  }
  .faqItem.big .faqItem__body.active {
    padding: 15px 20px 30px;


  }
  .faqItem__head {
    padding: 20px 55px 20px 20px;

  }
  .faqItem__body {
    padding: 0 20px;

  }
  .faqItem__body.active {
    padding: 5px 20px 30px;
  }
  .faqItem__body > p {
    font-size: 16px;
    line-height: 20px;
  }
  .faqItem__icon {
    width: 50px;

    height: 50px;

  }

  h2.big {
    font-size: 30px;
  }

  h3.big {
    font-size: 25px;
  }

  p.ex {
    font-size: 15px;
  }
  p.xlg {
    font-size: 16px;
  }
  p.lg {
    font-size: 16px;
  }

  .ubutton {
    font-size: 12px;
    line-height: 15px;
    padding: 8px 16px;
  }

  .donate__inner-item {
    margin: 5px;
    margin: 0 0 15px 0;
  }

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

  .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: 115px;
    margin-bottom: 30px;
  }
  .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 #393939;
  }
  .footerForm__row .button {
    width: 100%;
  }

  .uhero__inner {
    padding: 30px 0;
  }
  .uhero__inner-logo {
    width: 80px;
  }
  
  .privacy {

    padding: 25px 0;
  }
  .privacy__inner h5 {
    margin-bottom: 14px;
  }
  .privacy__inner p {
    margin-bottom: 26px;


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




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

  }
  .credit__inner-slider {
    padding-bottom: 40px;
  }
  .credit__inner .slick-arrow {
    display: none !important;
  }
  .credit__inner .slick-dots {
    bottom: 0;
  }
  .creditItem__inner {
    padding-bottom: 62%;
  }
  .creditItem__inner-text {
    padding: 6px 0;
  }
  .creditItem__inner-text p {
    font-size: 12px;
    line-height: 18px;
  }
  .today__inner-row {
    margin: 0;
  }
  .today__inner-foot {
    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;
    padding-top: 10px;
  }
  .today__inner-show {
    display: block;
    font-weight: 500;
    text-align: center;
    padding-right: 16px;
    position: relative;
    margin: 0 auto;
  }
  .today__inner-show::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(-60%) rotate(135deg);
    transform: translateY(-60%) rotate(135deg);
  }
  .todayItem.big {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .todayItem.big:nth-child(n+4) {
    display: none;
  }
  .todayItem.big .todayItem__content {
    padding: 20px;

  }
  .todayItem.big .todayItem__content p {

    margin-bottom: 20px;
  }
  .todayItem.big .todayItem__content h6 {
    margin-bottom: 20px;

  }
  .emer {
    background: #033576;
  }
  .emer__inner {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 35px 0 30px 0;
  }
  .emer__bg {
    display: none;
  }
  .emer__content {
    text-align: left;
    margin-bottom: 20px;
  }
  .appeals {
    padding-top: 0;
  }
  .appeals__bg {
    position: static;
    height: auto;
  }
  .appeals .auto__container {
    padding: 0;
  }
  .appeals__inner {
    max-width: unset;
    background: #033576;
    padding: 20px;
  }
  .appeals__inner h2 {
    margin-bottom: 16px;

  }
  .introItem__content-link {
    display: none;
  }
  .introItem__overlay {
    background: transparent !important;

  }
  .introItem__overlay::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(21%, rgba(0, 0, 0, 0.9976365546)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9976365546) 21%, rgba(0, 0, 0, 0) 100%);
    content: "";
  }
  .introItem__inner {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-bottom: 130px;
  }
  .basket {
    top: 60px;
    height: calc(100% - 60px);
  }
  .basket__inner-content {
    padding: 30px 36px 0 36px;

  }
  .basket__total {
    padding: 25px 36px 20px 36px;
  }

  .uhelp.mob-col-1 {
    padding: 35px 0;
  }
  .uhelp.mob-col-1 .uhelp__inner-title {
    margin-bottom: 35px;
  }
  .uhelp.mob-col-1 .uhelp__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  .uhelp.mob-col-1 .uhelpItem {
    width: 100%;
    margin: 0 0 35px 0;
  }
  .uhelp.mob-col-1 .uhelpItem:last-child {
    margin: 0;
  }
  .uhelp.mob-col-1 .uhelpItem__icon {
    max-width: 178px;
    margin-bottom: 16px;
  }
  .uhelp.mob-col-1 .uhelpItem h3 {
    font-size: 56px;
  }
  .uhelp.mob-col-1 .uhelpItem p,
  .uhelp.mob-col-1 .uhelpItem a {
    font-size: 22px;
  }
  .uhelp__inner-title {
    margin-bottom: 20px;
  }
  .uhelp__inner-row {
    margin: 0 -7px;
  }
  .uhelpItem {
    width: calc(50% - 14px);
    margin: 15px 7px;
  }
  .uhelpItem h3 {
    font-size: 30px;
    margin-bottom: 3px;
  }
  .uhelpItem p,
  .uhelpItem a {
    font-size: 14px;
  }
  .uhelpItem p {
    margin-bottom: 5px;
  }

  .ufacts {
    padding: 35px 0;
  }
  .ufacts__inner-content {
    margin-bottom: 24px;
  }
  .ufactsItem {
    margin: 18px 8px;
  }
  .ufactsItem h3 {
    font-size: 32px;
  }
  .ufactsItem p {
    font-size: 12px;
  }

  .uinfoItem__content {
    padding: 20px;
  }
  .uinfoItem h3 {
    margin-bottom: 14px;
    font-size: 25px;
  }
  .uinfoItem p {
    margin-bottom: 24px;
  }

  .uhighlights {
    padding: 20px 0;
  }
  .uhighlights .auto__container {
    padding: 0;
  }
  .uhighlights.row-1 .uhighlightsItem__inner {
    padding: 15px 20px 30px 20px;
  }
  .uhighlightsItem__inner {
    padding: 15px 20px 30px 20px;
  }
  .uhighlightsItem__logo {
    margin-bottom: 0;
    max-width: 182px;
  }
  .uhighlightsItem__content {
    max-width: unset;
  }
  .uhighlightsItem .ubutton {
    font-size: 12px !important;
    padding: 8px 20px !important;
  }

  .uabout {
    padding: 20px 0;
  }
  .uabout .auto__container {
    padding: 0;
  }
  .uabout__inner-content {
    padding: 0 20px;
  }

  .uquote {
    padding: 30px 20px;
  }
  .uquote__logo {
    width: 40px;
    margin-bottom: 15px;
  }
  .uquote h6 {
    font-size: 18px;
    margin-bottom: 14px;
  }
  
  .emer__bg_mb_image {
    display: inline;
    max-width:100%;
  }
}
@media (max-width: 440px) {
  .emer__form {
    width: 100%;
    max-width: 350px;
  }
  .instant__radio {
    width: 90px;
  }
  .instant__row-select {
    width: 90px;
  }
  .instant__row-select select {

    padding: 16px 55px 17px 20px;
  }
  .instant__row-select-icon {
    width: 45px;

  }
  .instant__row-input {
    width: calc(100% - 110px);

  }
}
@media (max-width: 380px) {
  .header__inner-buttons .button {
    display: none;
  }
  .header__inner-buttons .basketBtn {
    margin-right: 20px;
  }

  .uactionItem__content {
    padding: 20px;
  }
  .uactionItem h3 {
    font-size: 28px !important;
  }
  .uactionItem p.sm {
    font-size: 14px !important;
  }
  .uactionItem p.ex {
    font-size: 16px !important;
  }
  .uactionItem .ubutton {
    font-size: 14px !important;
    padding: 8px 18px !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;
}

.hidden {
  display: none;
}

.modal-window {
  font-size: 14px;
  line-height: 1.4;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.modal-window:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal-window.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal-window > div {
  width: 380px;
  max-height: 80vh;
  overflow: scroll;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 3em;
  background: white;
  -webkit-box-shadow: 0px 10px 40px -20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 10px 40px -20px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 10px 40px -20px rgba(0, 0, 0, 0.5);
}
.modal-window header {
  font-weight: bold;
}
.modal-window h1 {
  font-size: 150%;
  margin: 0 0 15px;
}
.modal-window h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}
.modal-points {
  margin-block-start: 0;
  padding-inline-start: 0;
}
.modal-points > li:not(:last-child) {
  margin-bottom: 8px;
}
.modal-close {
  color: #f93737;
  line-height: 50px;
  font-size: 100%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 70px;
  text-decoration: none;
}
.modal-close:hover {
  color: #820000;
}
.modal-window > div {
  border-radius: 1rem;
}
.modal-btn {
  background-color: white;
  padding: 1em 1.5em;
  border-radius: 0.5rem;
  text-decoration: none;
}
.modal-btn i {
  padding-right: 0.3em;
}
.detail-item {
  display: flex;
  margin-bottom: 4px;
}
.detail-label {
  min-width: 150px;
  opacity: 0.6;
  padding-right: 10px;
}
.container {
  display: grid;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.validation-message {
  color: red;
}
.searchResult {
  padding: 50px 0 80px;
}
.searchResult__inner-content {
  max-width: 850px;
  margin: 0 auto;
}
.searchResult__inner h2 {
  color: #1956a7;
}
.searchResult__inner .select {
  display: none;
}
.searchResultItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid #e6e6e6;
  color: #414141;
}
.searchResultItem__image {
  position: relative;
  padding-bottom: 133%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.searchResultItem__image-wrapper {
  width: 150px;
}
.searchResultItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.searchResultItem__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;
}
.searchResultItem h6 {
  margin-bottom: 16px;
}
.searchResultItem p {
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.searchResultItem .button {
  width: 100%;
  max-width: 140px;
  margin: auto 0 0 0;
}

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

@media (max-width: 767px) {
  .cookie-bar .message {
    display: none;
  }
  .cookie-bar .mobile {
    display: inline-block;
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
.close-cb {
  border: none;
  color: #fff;
  background: #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);
}

.article-image img {
  width: 100%;
  margin: 2rem 0;
}

.price-table-images img {
  width: 100%;
  margin: 32px 0;
}

@media (max-width: 767px) {
  .price-table-images img {
    margin: 5px;
  }
}
