@charset "UTF-8";
@import "https://use.typekit.net/hkl7gdl.css";
@import "./rtl-support.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: "proxima-nova", sans-serif;
  font-size: 16px;
  color: #4d4641;
  line-height: 24px;
  font-weight: 400;
  background: #fff;
}
body.active {
  overflow: hidden;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #4d4641;
  -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: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

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

h1 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 900;
  text-transform: uppercase;
}
h1.sm {
  font-size: 50px;
  line-height: 40px;
}
h1.ex {
  font-size: 70px;
  line-height: 55px;
}

h2 {
  font-weight: 900;
  font-size: 40px;
  line-height: 35px;
  color: #2c2c2c;
  text-transform: uppercase;
}
h2.big {
  font-size: 60px;
  line-height: 60px;
}
h2.mid {
  font-size: 45px;
  line-height: 80%;
  font-weight: 900;
}
h2.sm {
  font-size: 30px;
  line-height: 35px;
}

h3 {
  color: #2c2c2c;
  font-weight: 900;
  font-size: 25px;
  line-height: 30px;
}

h4.ex {
  font-size: 95px;
  line-height: 100%;
  font-weight: 900;
}

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

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

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

.main {
  overflow: hidden;
}
.main.sm {
  padding-top: 60px;
}
.main.ex {
  overflow: visible;
}

.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
}
.link:hover svg {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}
.link svg {
  width: 9px;
  height: 9px;
  margin-left: 8px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  color: #c80001;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "proxima-nova", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 800;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 14px;
  border-radius: 8px;
}
.button:hover .button__chevron {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}
.button__icon {
  width: 16px;
  height: 14px;
  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;
}
.button__icon img {
  width: 100%;
}
.button__icon svg {
  width: 100%;
  height: 100%;
}
.button__chevron {
  position: relative;
  margin-left: 15px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button__chevron::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button.secondary {
  background-color: #c80001;
  color: #fff;
  padding: 13px 32px;
}
.button.secondary:hover {
  opacity: 1;
  background-color: #e30f10;
}
.button.secondary:hover span {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.button.secondary span {
  width: 9px;
  height: 9px;
  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;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button.secondary span::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.button.primary {
  background-color: #6ba8a8;
  color: #fff;
  padding: 11px 26px;
  border-radius: 8px;
}
.button.primary:hover {
  opacity: 1;
  background-color: #7dc1c1;
}
.button > svg {
  width: 18px;
  height: 16px;
  color: inherit;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-left: 20px;
}
.button.don {
  color: #fff;
  padding: 11px 12px;
  border-radius: 8px;
  background-color: #c80001;
}
.button.don:hover {
  opacity: 1;
  background-color: #e30f10;
}
.button.ins {
  background-color: #af2e55;
  border-radius: 8px;
  color: #fff;
  text-transform: uppercase;
}
.button.ins:hover {
  opacity: 1;
  background-color: #c80001;
}
.button.ins:hover span {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.button.ins span {
  width: 9px;
  height: 9px;
  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;
  position: relative;
}
.button.ins span::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.button.down {
  background-color: #c80001;
  color: #fff;
  padding: 12px 16px;
  text-transform: uppercase;
}
.button.down:hover {
  opacity: 1;
  background-color: #e30f10;
}
.button.down span {
  width: 15px;
  height: 15px;
  margin-left: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.button.down span img {
  width: 100%;
}
.button.fund {
  border: 1px solid #c80001;
  color: #c80001;
}
.button.fund:hover {
  opacity: 1;
  background-color: #c80001;
  color: #fff;
}

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

.selectCur {
  width: 100%;
  max-width: 210px;
  position: relative;
}
.selectCur.active .selectCur__options {
  display: block;
}
.selectCur__selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: relative;
  border: 1px solid #e6e5e5;
  padding: 13px 40px 13px 20px;
  border-radius: 8px;
  cursor: pointer;
}
.selectCur__selected::before {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  content: "";
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
.selectCur__selected span {
  width: 28px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2px;
  overflow: hidden;
  margin-right: 15px;
}
.selectCur__selected span img {
  width: 100%;
}
.selectCur__selected p {
  width: calc(100% - 43px);
  font-size: 16px;
  line-height: 100%;
  color: #8f8f8f;
}
.selectCur__options {
  max-height: 120px;
  overflow-y: auto;
  position: absolute;
  top: 40px;
  width: 100%;
  display: none;
  z-index: 4;
  border-radius: 0 0 5px 5px;
  background-color: #fff;
  border: 1px solid #e6e5e5;
  border-top: unset;
}
.selectCur__options li {
  padding: 13px 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.selectCur__options li:hover {
  background-color: rgba(107, 168, 168, 0.15);
}
.selectCur__options li span {
  width: 28px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2px;
  overflow: hidden;
  margin-right: 15px;
}
.selectCur__options li span img {
  width: 100%;
}
.selectCur__options li p {
  width: calc(100% - 43px);
  color: #8f8f8f;
}

.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__outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.input__outer p {
  color: #4d4641;
  font-weight: 400;
  margin-bottom: 15px;
}
.input__outer p span {
  color: #c80001;
}
.input__outer .input {
  width: 100%;
}
.input.upload input {
  cursor: pointer;
}
.input.upload input[type=file]::-webkit-file-upload-button {
  display: none;
}
.input.upload span {
  position: absolute;
  top: 0;
  height: 100%;
  right: 0;
  font-size: 15px;
  line-height: 18px;
  font-weight: 800;
  background-color: #6ba8a8;
  color: #fff;
  padding: 8px 38px;
  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;
  border-radius: 0 8px 8px 0;
  pointer-events: none;
}
.input.date input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}
.input.date span {
  width: 12px;
  height: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}
.input.date span img {
  width: 100%;
}
.input.sel {
  position: relative;
}
.input.sel::before {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #6ba8a8;
  border-right: 2px solid #6ba8a8;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-60%) rotate(135deg);
  transform: translateY(-60%) rotate(135deg);
}
.input.cont input,
.input.cont textarea,
.input.cont select {
  height: 100%;
  padding: 11px 20px;
  color: #4d4641;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #6ba8a8;
  font-weight: 500;
}
.input.cont input::-webkit-input-placeholder, .input.cont textarea::-webkit-input-placeholder, .input.cont select::-webkit-input-placeholder {
  color: #e2e2e2;
}
.input.cont input::-moz-placeholder, .input.cont textarea::-moz-placeholder, .input.cont select::-moz-placeholder {
  color: #e2e2e2;
}
.input.cont input:-ms-input-placeholder, .input.cont textarea:-ms-input-placeholder, .input.cont select:-ms-input-placeholder {
  color: #e2e2e2;
}
.input.cont input::-ms-input-placeholder, .input.cont textarea::-ms-input-placeholder, .input.cont select::-ms-input-placeholder {
  color: #e2e2e2;
}
.input.cont input::placeholder,
.input.cont textarea::placeholder,
.input.cont select::placeholder {
  color: #e2e2e2;
}
.input.cont select {
  padding: 12px 20px;
}
.input.uniq input {
  font-weight: 500;
  padding: 10px 15px;
  color: #4d4641;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px;
}
.input.find input {
  padding: 11px 40px 11px 20px;
}
.input.find button {
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  cursor: pointer;
}
.input.find button svg {
  width: 100%;
  height: 100%;
  color: #6ba8a8;
}
.input input,
.input textarea,
.input select {
  width: 100%;
  font-size: 15px;
  line-height: 20px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 600;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  resize: unset;
  -webkit-appearance: none;
}

.check {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.check__box {
  width: 15px;
  height: 15px;
  margin-right: 15px;
  position: relative;
}
.check__box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.check__box input:checked ~ span::before {
  opacity: 1;
}
.check__box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #6ba8a8;
  border-radius: 2px;
}
.check__box span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 5px;
  border-top: 2px solid #6ba8a8;
  border-right: 2px solid #6ba8a8;
  -webkit-transform: translate(-50%, -60%) rotate(135deg);
  transform: translate(-50%, -60%) rotate(135deg);
  content: "";
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.check p {
  width: calc(100% - 30px);
}
.check p b {
  font-weight: 800;
}

.breadcrumbs {
  background-color: #d9d4d0;
  position: relative;
  z-index: 9;
  padding: 14px 0;
}
.breadcrumbs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.breadcrumbs__inner a {
  color: #4d4641;
  font-weight: 300;
}
.breadcrumbs__inner span {
  margin: 0 10px;
  display: block;
  font-weight: 300;
}
.breadcrumbs__inner p {
  font-weight: 500;
}

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

.banner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  width: calc(100% - 80px);
  border-radius: 12px;
  overflow: hidden;
  padding:50px 0 40px;
}
.banner.full {
  border-radius: unset;
  width: 100%;
  max-width: unset;
}
.banner .auto__container {
  max-width: 1080px;
}
.banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.video {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.video.youtube-embed-16-9 {
  position: relative;
  padding-bottom: 56%;
  width: 100%;
  text-align: left;
}
.video.yt-embed-4-3 {
  padding-bottom: 75%;
}
.video.yt-embed-3-2 {
  padding-bottom: 66.66%;
}
.video iframe,
.video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.basket {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
}
.basket.active {
  display: block;
  -webkit-animation: fadeIn 0.3s ease;
  animation: fadeIn 0.3s ease;
}
.basket__inner {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-width: 440px;
  color: #4d4641;
  background-color: #fff;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.basket__inner-head {
  color: #4d4641;
  position: relative;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.basket__inner-head h3 {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 6px;
  font-weight: 900;
}
.basket__inner-head p {
  font-size: 16px;
  font-weight: 300;
}
.basket__inner-head p b {
  font-weight: 600;
}
.basket__inner-close {
  position: absolute;
  top: 22px;
  right: 40px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  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;
  border: 1px solid #d9d4d0;
  border-radius: 2px;
  z-index: 3;
  cursor: pointer;
}
.basket__inner-close:hover {
  opacity: 1;
  border-color: #6ba8a8;
}
.basket__inner-close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 50%;
  content: "";
  background-color: #6ba8a8;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.basket__inner-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 50%;
  content: "";
  background-color: #6ba8a8;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.basket__inner-content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 40px;
  color: #4d4641;
  margin-bottom: 40px;
}
.basket__inner-content p.sm {
  font-size: 12px;
  line-height: 150%;
}
.basket__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 12px;
}
.basket__inner-row h5,
.basket__inner-row h6 {
  font-weight: 700;
}
.basket__inner-checks {
  padding-top: 20px;
}
.basket__inner-checks h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #6ba8a8;
}
.basket__total {
  margin: auto 0 0 0;
  width: 100%;
  padding: 22px 40px 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #24201d;
  color: #fff;
}
.basket__total-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}
.basket__total h6 {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
.basket__total h5 {
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
}
.basket__total .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-family: "proxima-nova", sans-serif;
  font-weight: 600;
  padding: 13px 0;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 800;
}
.basket__total .button:last-child {
  margin: 0;
}
.basketBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  height: 32px;
  width: 32px;
  position: relative;
}
.basketBtn__number {
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 8px;
  line-height: 100%;
  font-weight: 600;
  background-color: #c80001;
  color: #fff;
}
.basketBtn__icon {
  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: 75%;
  height: 62%;
  color: #4d4641;
}
.basketBtn__icon svg {
  width: 100%;
  height: 100%;
}
.basketItem {
  padding: 10px 0;
  border-bottom: 1px solid #d9d4d0;
}
.basketItem:first-child {
  border-top: 1px solid #d9d4d0;
}
.basketItem__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: 5px;
}
.basketItem__top h6 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.basketItem__top h5 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
}
.basketItem__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.basketItem__info p {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 5px;
}
.basketItem__info p:last-child {
  margin: 0;
}
.basketItem__info p b {
  font-weight: 600;
}
.basketItem__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: "proxima-nova", sans-serif;
  font-weight: 400;
  color: #6ba8a8;
  -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;
}
.basketItem__remove:hover {
  color: #c80001;
}
.basketItem__remove span {
  text-decoration: underline;
  margin-left: 5px;
}
.basketCheck {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 20px;
  background-color: rgba(107, 168, 168, 0.15);
  border-radius: 8px;
  border: 1px solid #6ba8a8;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
.basketCheck:last-child {
  margin: 0;
}
.basketCheck__box {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  position: relative;
}
.basketCheck__box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.basketCheck__box input:checked ~ span::before {
  opacity: 1;
}
.basketCheck__box span {
  padding-left: 3px;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #6ba8a8;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.basketCheck__box span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 36%;
  content: "";
  border-top: 2px solid #6ba8a8;
  border-right: 2px solid #6ba8a8;
  -webkit-transform: translate(-50%, -75%) rotate(135deg);
  transform: translate(-50%, -75%) rotate(135deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
}
.basketCheck p {
  width: calc(100% - 25px);
  font-weight: 600;
}
.basketCheck p b {
  font-weight: 800;
}

.tool {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 16px;
  position: relative;
  vertical-align: middle;
  width: 18px;
  min-width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-left: 28px;
  z-index: 4;
}
.tool:hover .tool__btn {
  background-color: #af2e55;
}
.tool:hover .tool__tip {
  opacity: 1;
  visibility: visible;
}
.tool img {
  width: 4px;
}
.tool__tip {
  position: absolute;
  bottom: calc(100% + 7px);
  width: 200px;
  left: 50%;
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: #fff !important;
  padding: 12px 16px;
  border-radius: 8px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #af2e55;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}
.tool__tip.active {
  opacity: 1;
  visibility: visible;
}
.tool__tip:before {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 7px solid #af2e55;
  content: "";
}
.tool__btn {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  color: #1f61ab;
  opacity: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  background-color: #6ba8a8;
}
.tool__btn.active {
  background-color: #af2e55 !important;
}
.tool__btn img {
  width: 4px;
  pointer-events: none;
}

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  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);
}
.header.big {
  background-color: transparent;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}
.header.big .header__inner {
  padding: 20px 0;
  height: unset;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header.big .header__inner-logo img {
  opacity: 0;
}
.header.big .header__inner-logo img.light {
  opacity: 1;
}
.header.big .nav__inner-link {
  color: #fff;
}
.header.big .nav__inner-link::before {
  border-color: #fff;
}
.header.big .nav__inner-buttons::before {
  background-color: #fff;
}
.header.big .searchBtn svg {
  color: #fff;
}
.header.big .basketBtn__icon {
  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;
}
.header__inner {
  padding: 0;
  height: 60px;
  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;
}
.header__inner-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: #4d4641;
  -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;
}
.header__inner-back:hover {
  opacity: 1;
}
.header__inner-back:hover span {
  text-decoration: underline;
}
.header__inner-back:hover svg {
  -webkit-transform: translateX(-2px);
  transform: translateX(-2px);
}
.header__inner-back svg {
  width: 11px;
  height: 11px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-right: 10px;
}
.header__inner-back span {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__inner-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: calc(100% - 130px);
  max-width: 915px;
}
.header__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 20px;
}
.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: 111px;
  position: relative;
}
.header__inner-logo img {
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__inner-logo img.light {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

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

@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.nav__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 30px;
}
.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: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.nav__inner-links > li:last-child {
  margin: 0;
}
.nav__inner-link {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #4d4641;
  position: relative;
  padding: 20px 18px 20px 10px;
}
.nav__inner-link::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid #4d4641;
  border-right: 2px solid #4d4641;
  content: "";
  -webkit-transform: translateY(-70%) rotate(135deg);
  transform: translateY(-70%) rotate(135deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.nav__inner-link:hover {
  opacity: 1;
}
.nav__inner-link:hover::before {
  -webkit-transform: translateY(-40%) rotate(135deg);
  transform: translateY(-40%) rotate(135deg);
  border-color: #c80001;
}
.nav__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-left: 20px;
}
.nav__inner-buttons::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 18px;
  background-color: #4d4641;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nav__inner-buttons .button {
  margin-right: 15px;
}
.nav__inner-buttons .button:last-child {
  margin: 0;
}
.nav__inner-buttons .search {
  margin-right: 20px;
}
.nav__inner-close {
  display: none;
}
.nav__inner-foot {
  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: calc(50% - 30px);
  padding-top: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 336px;
}
.dropMenu.big {
  width: 662px;
}
.dropMenu__inner {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px 30px 15px 30px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.dropMenu__inner::before {
  position: absolute;
  content: "";
  bottom: calc(100% - 1px);
  left: 20px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  -webkit-transform: translate(0, 50%) rotate(45deg);
  transform: translate(0, 50%) rotate(45deg);
  z-index: -1;
}
.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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(50% - 15px);
  max-width: 275px;
}
.dropMenu__list.big {
  width: 100%;
}
.dropMenu__list h6 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 15px;
  font-weight: 800;
  color: #c80001;
  text-transform: uppercase;
}
.dropMenu__list li:last-child > a,
.dropMenu__list li:last-child button {
  border: unset;
}
.dropMenu__list a,
.dropMenu__list button {
  width: 100%;
  font-weight: 500;
  color: #24201d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e6e5e5;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: "proxima-nova", sans-serif;
  font-size: 15px;
  line-height: 24px;
  text-transform: capitalize;
}
.dropMenu__list a::before,
.dropMenu__list button::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #6ba8a8;
  border-right: 2px solid #6ba8a8;
  content: "";
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.dropMenu__list a:hover,
.dropMenu__list button:hover {
  opacity: 1;
  color: #c80001;
}
.dropMenu__list a:hover::before,
.dropMenu__list button:hover::before {
  border-color: #c80001;
}
.dropMenu__button.active::before {
  -webkit-transform: translateY(-40%) rotate(-45deg) !important;
  transform: translateY(-40%) rotate(-45deg) !important;
}
.dropMenu__button::before {
  -webkit-transform: translateY(-50%) rotate(135deg) !important;
  transform: translateY(-50%) rotate(135deg) !important;
}
.dropMenu__body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  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;
}
.dropMenu__body.active {
  opacity: 1;
  max-height: 300px;
  padding-top: 5px;
}
.dropMenu__body a {
  width: calc(50% - 15px);
  max-width: 120px;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 5px;
  padding: 5px 0 5px 15px;
  border: unset;
}
.dropMenu__body a:nth-child(n+3) {
  margin: 0;
}
.dropMenu__body a::before {
  right: unset;
  left: 0;
  border-color: #c80001;
  width: 6px;
  height: 6px;
  border-width: 1.5px;
}

/*language selector*/
.lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.lang::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #9c9c9c;
  border-right: 2px solid #9c9c9c;
  content: "";
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
.lang__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.lang:hover .dropMenu {
  opacity: 1;
  visibility: visible;
}
.lang__icon {
  width: 26px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0.5px solid #707070;
  border-radius: 50%;
  padding: 1px;
}
.lang__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: 50%;
}
.lang .dropMenu {
  left: unset;
  right: calc(50% - 30px);
}
.lang .dropMenu__inner::before {
  left: unset;
  right: 20px;
}
.dropMenu__flags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 200px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.dropMenu__flags li {
  margin-bottom: 15px;
}
.dropMenu__flags span {
  width: 23px;
  height: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 15px;
}
.dropMenu__flags span img {
  width: 100%;
}
.dropMenu__flags a {
  color: #4d4641;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.dropMenu__flags a:hover {
  opacity: 1;
  text-decoration: underline;
}
.dropMenu__flags p::before {
  display: none;
}

.burger {
  display: none;
}

.footer {
  padding: 50px 0 80px;
  position: relative;
}
.footer__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 38px;
}
.footer__inner-main {
  width: calc(30% - 12px);
  max-width: 255px;
}
.footer__inner-main h2 {
  margin-bottom: 40px;
  color: #4d4641;
}
.footer__inner-links {
  width: calc(38% - 12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__inner-col {
  width: calc(58% - 15px);
  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-col:last-child {
  width: calc(42% - 15px);
}
.footer__inner-col h5 {
  font-weight: 800;
  color: #c80001;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__inner-col a {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
  color: #4d4641;
}
.footer__inner-col a:last-child {
  margin: 0;
}
.footer__inner-partners {
  width: calc(32% - 12px);
}
.footer__inner-partners h5 {
  margin-bottom: 10px;
  font-weight: 700;
}
.footerCopy {
  padding-top: 30px;
  border-top: 1px solid #e6e5e5;
  color: #8f8f8f;
}
.footerCopy__terms {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footerCopy__terms a {
  font-size: 16px;
  line-height: 24px;
  color: #8f8f8f;
  margin-right: 40px;
  text-decoration: underline;
}
.footerCopy__terms a:last-child {
  margin: 0;
}
.footerCopy__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footerCopy__row p {
  font-weight: 500;
  width: calc(100 - 180px);
}
.footerCopy__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footerCopy__social a {
  width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 18px;
  color: #8f8f8f;
}
.footerCopy__social a:last-child {
  margin: 0;
}
.footerCopy__social a.sm {
  width: 12px;
}
.footerCopy__social a.big {
  width: 22px;
}
.footerCopy__social a img {
  width: 100%;
}
.footerLogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: calc(50% - 20px);
  margin: 10px;
  height: 44px;
}
.footerLogo.big {
  height: 56px;
}
.footerLogo__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.footerLogo img {
  height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.help {
  padding: 50px 0;
}
.help__inner-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.help__inner-title p {
  font-weight: 500;
}
.help__inner-slider {
  margin: 0 -10px;
}
.help__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.help__inner .slick-slide {
  height: unset !important;
  margin: 0 10px;
}
.help__inner .slick-dots {
  display: none;
}
.help__inner .slick-list {
  overflow: visible !important;
}
.help__inner h2 {
  margin-bottom: 20px;
}
.helpItem {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.helpItem__price {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 25px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  min-width: 86px;
  height: 40px;
  background-color: #6ba8a8;
  border-radius: 0 0 0 8px;
  padding: 5px 10px;
  z-index: 2;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.helpItem__content {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.helpItem__image {
  width: 100%;
  padding-bottom: 52%;
  position: relative;
}
.helpItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.helpItem h3 {
  font-weight: 900;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.helpItem p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 30px;
}
.helpItem .button {
  width: 100%;
}

.join {
  padding: 82px 0;
  position: relative;
  overflow: hidden;
  margin-top:50px;
}
.join__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;
  pointer-events: none;
}
.join__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#24201d), to(#00000000));
  background: linear-gradient(90deg, #24201d, #00000000);
}
.join__bg-shape {
  position: absolute;
  top: 50%;
  right: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.join__bg-shape img {
  width: 100%;
}
.join__bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.joinForm {
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  border-radius: 8px;
  padding: 30px 20px 34px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.joinForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
}
.joinForm__checks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 15px 0 30px;
}
.joinForm h3 {
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}
.joinForm .button {
  width: 100%;
}
.joinInput {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(50% - 5px);
  max-width: 170px;
}
.joinInput.big {
  width: 100%;
  max-width: unset;
  margin-top: 15px;
}
.joinInput input {
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid #6ba8a8;
  border-radius: 8px;
  font-family: "proxima-nova", sans-serif;
  color: #4d4641;
  padding: 12px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.joinInput input::-webkit-input-placeholder {
  color: #8f8f8f;
}
.joinInput input::-moz-placeholder {
  color: #8f8f8f;
}
.joinInput input:-ms-input-placeholder {
  color: #8f8f8f;
}
.joinInput input::-ms-input-placeholder {
  color: #8f8f8f;
}
.joinInput input::placeholder {
  color: #8f8f8f;
}
.joinCheck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  margin-right: 20px;
}
.joinCheck:last-child {
  margin: 0;
}
.joinCheck__box {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  position: relative;
}
.joinCheck__box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.joinCheck__box input:checked ~ span::before {
  opacity: 1;
}
.joinCheck__box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #6ba8a8;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.joinCheck__box span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 36%;
  content: "";
  border-top: 1px solid #6ba8a8;
  border-right: 1px solid #6ba8a8;
  -webkit-transform: translate(-50%, -75%) rotate(135deg);
  transform: translate(-50%, -75%) rotate(135deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
}
.joinCheck p {
  width: calc(100% - 25px);
  font-weight: 400;
  color: #4d4641;
}

.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.search.active .dropMenu {
  opacity: 1;
  visibility: visible;
}
.search .dropMenu__inner {
  padding: 0;
}
.search__top h6 {
  display: none;
}
.search__form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 24px 20px 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 300px;
}
.search__form input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 15px 60px 15px 15px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  font-family: "proxima-nova", sans-serif;
  color: #4d4641;
  border-radius: 8px;
}
.search__form input::-webkit-input-placeholder {
  color: #8f8f8f;
}
.search__form input::-moz-placeholder {
  color: #8f8f8f;
}
.search__form input:-ms-input-placeholder {
  color: #8f8f8f;
}
.search__form input::-ms-input-placeholder {
  color: #8f8f8f;
}
.search__form input::placeholder {
  color: #8f8f8f;
}
.search__form input:focus ~ button svg {
  color: #4d4641;
}
.searchBtn {
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: transparent;
}
.searchBtn:hover svg {
  color: #6ba8a8;
}
.searchBtn svg {
  width: 100%;
  height: 100%;
  color: #4d4641;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.search__icon {
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: transparent;
}
.search__icon:hover svg {
  color: #4d4641;
}
.search__icon svg {
  width: 100%;
  height: 100%;
  color: #7bc8eb;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.searchSec {
  padding: 40px 0 50px;
}
.searchSec__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;
}
.searchSec__inner-title {
  width: calc(42% - 12px);
  max-width: 420px;
}
.searchSec__inner-content {
  width: calc(58% - 12px);
  max-width: 610px;
}
.searchSec__inner-step {
  display: none;
}
.searchSec__inner-step.active {
  display: block;
  -webkit-animation: fadeIn 0.3s;
  animation: fadeIn 0.3s;
}
.searchSec__inner-cause {
  margin-bottom: 50px;
}
.searchSec__inner-cause:last-child {
  margin: 0;
}
.searchSec__inner-cause h6 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #333333;
}
.searchSec__inner-links {
  margin-bottom: 50px;
}
.searchSec__inner-links:last-child {
  margin: 0;
}
.searchSec__inner-links h6 {
  margin-bottom: 30px;
  font-weight: 600;
  color: #333333;
}
.searchSec__inner-row {
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.searchSec__inner-col {
  width: calc(50% - 15px);
  max-width: 185px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.searchSec__inner-col a {
  width: 100%;
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  color: #c80001;
  position: relative;
  margin-bottom: 20px;
  padding-right: 12px;
}
.searchSec__inner-col a:hover {
  opacity: 1;
}
.searchSec__inner-col a:hover::before {
  -webkit-transform: translate(3px, -50%) rotate(45deg);
  transform: translate(3px, -50%) rotate(45deg);
}
.searchSec__inner-col a:last-child {
  margin: 0;
}
.searchSec__inner-col a::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #c80001;
  border-right: 2px solid #c80001;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.searchSec__inner-back {
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 16px;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
}
.searchSec__inner-back::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #c80001;
  border-right: 2px solid #c80001;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-60%) rotate(-135deg);
  transform: translateY(-60%) rotate(-135deg);
}
.searchSec__inner h1 {
  margin-bottom: 20px;
  font-size: 60px;
  line-height: 50px;
  color: #2c2c2c;
}
.searchSec__inner h1:last-child {
  margin: 0;
}
.searchSec__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.searchSec__tag {
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.searchSec__tag input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.searchSec__tag input:checked ~ span {
  background-color: #c80001;
  border-color: #c80001;
  color: #fff;
}
.searchSec__tag span {
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 22px;
  padding: 10px 30px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #333333;
  border: 2px solid #333333;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.searchSec__input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 16px 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.searchSec__input input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 15px 40px 15px 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: "proxima-nova", sans-serif;
  color: #4d4641;
  border-radius: 8px;
  border: 1px solid #e6e5e5;
}
.searchSec__input input::-webkit-input-placeholder {
  color: #8f8f8f;
}
.searchSec__input input::-moz-placeholder {
  color: #8f8f8f;
}
.searchSec__input input:-ms-input-placeholder {
  color: #8f8f8f;
}
.searchSec__input input::-ms-input-placeholder {
  color: #8f8f8f;
}
.searchSec__input input::placeholder {
  color: #8f8f8f;
}
.searchSec__input input:focus ~ button svg {
  color: #4d4641;
}
.searchSec__input button {
  width: 14px;
  height: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: transparent;
  position: relative;
  z-index: 2;
}
.searchSec__input button:hover svg {
  color: #4d4641;
}
.searchSec__input button svg {
  width: 100%;
  height: 100%;
  color: #333333;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  pointer-events: none;
}

.instant {
  width: 100%;
  max-width: 400px;
  min-height: 240px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.instant.new .instant__body-text {
  margin: 0;
}
.instant.new .button {
  margin: 0;
}
.instant__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.instant__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 20px;
  text-align: center;
  background-color: #6ba8a8;
}
.instant__title h6 {
  font-size: 15px;
  line-height: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}
.instant__btns {
  background: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.instant__btn {
  position: relative;
  width: 50%;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.instant__btn input {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
}
.instant__btn input:checked + label {
  background: #6ba8a8;
  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: 18px;
  font-family: "proxima-nova", sans-serif;
  color: #6ba8a8;
  font-weight: 800;
  background: #fff;
  background-color: rgba(107, 168, 168, 0.1);
  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;
  text-transform: uppercase;
}
.instant__select {
  width: 100%;
  position: relative;
}
.instant__select-icon {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 12px;
  height: 6px;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.instant__select-icon img {
  width: 100%;
  height: 100%;
}
.instant__select select {
  width: 100%;
  background: #fff;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 24px;
  color: #4d4641;
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  border: 1px solid #6ba8a8;
  border-radius: 8px;
}
.instant__selects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.instant__selects .instant__select {
  width: calc(70% - 6px);
  max-width: 245px;
}
.instant__selects .instant__select:first-child {
  width: 100%;
  max-width: unset;
  margin-bottom: 15px;
}
.instant__selects .instant__select:last-child {
  width: calc(30% - 6px);
  max-width: 100px;
}
.instant__body {
  background: #fff;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.instant__body-text {
  text-align: center;
  margin-bottom: 15px;
}
.instant__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 0;
}
.instant__radio {
  position: relative;
  width: calc(33.3% - 5px);
  max-width: 110px;
  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: #6ba8a8;
  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: 16px;
  line-height: 20px;
  font-family: "proxima-nova", sans-serif;
  color: #6ba8a8;
  font-weight: 800;
  background: #fff;
  height: 45px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #6ba8a8;
  border-radius: 8px;
}
.instant__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 14px;
}
.instant__row-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border: 1px solid #6ba8a8;
  border-radius: 8px;
}
.instant__row-select select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 17px;
  color: #6ba8a8;
  font-family: "proxima-nova", sans-serif;
  font-weight: 800;
  background-color: transparent;
  padding: 10px 35px 10px 15px;
}
.instant__row-select-currency {
  width: 35px;
  height: 45px;
}
.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: 35px;
  height: 45px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.instant__row-select-icon::before {
  position: absolute;
  left: 0;
  top: 50%;
  height: 25px;
  width: 1px;
  content: "";
  background-color: #ededed;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.instant__row-select-icon img {
  width: 12px;
  height: 6px;
}
.instant__row-input {
  width: calc(100% - 80px);
  max-width: 275px;
  position: relative;
  overflow: hidden;
}
.instant__row-input input {
  width: 100%;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  color: #4d4641;
  height: 45px;
  border: 1px solid #6ba8a8;
  border-radius: 8px;
}
.instant__row-input input::-webkit-input-placeholder {
  color: #4d4641;
}
.instant__row-input input::-moz-placeholder {
  color: #4d4641;
}
.instant__row-input input:-ms-input-placeholder {
  color: #4d4641;
}
.instant__row-input input::-ms-input-placeholder {
  color: #4d4641;
}
.instant__row-input input::placeholder {
  color: #4d4641;
}
.instant .button {
  width: 100%;
  height: 45px;
  margin-top: 15px;
}

.donate {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2c2c2c;
  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 h5 {
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.donate__inner-title h5 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 23px;
  height: 20px;
  margin-right: 8px;
}
.donate__inner-title h5 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% - 230px);
  max-width: 950px;
  margin: 0 -5px;
}
.donate__inner-item {
  width: calc(27% - 10px);
  max-width: 240px;
  margin: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.donate__inner-item:nth-child(3) {
  width: calc(23% - 10px);
  max-width: 205px;
}
.donate__inner-item:last-child {
  width: calc(23% - 10px);
}
.donate__inner .button {
  width: 100%;
  padding: 5px 10px;
}
.donate__inner .select {
  width: 100%;
}
.donate__inner .select select {
  background-color: #fff;
  color: #4d4641;
  border: unset;
}
.donate__inner .input {
  width: 100%;
  position: relative;
}
.donate__inner .input input {
  padding: 8px 15px 8px 40px;
}
.donate__inner .input input::-webkit-input-placeholder {
  color: #4d4641;
}
.donate__inner .input input::-moz-placeholder {
  color: #4d4641;
}
.donate__inner .input input:-ms-input-placeholder {
  color: #4d4641;
}
.donate__inner .input input::-ms-input-placeholder {
  color: #4d4641;
}
.donate__inner .input input::placeholder {
  color: #4d4641;
}
.donate__inner .input label {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 100%;
  font-weight: 800;
  color: #6ba8a8;
  pointer-events: none;
}
.donate__inner h5 {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
.donate__inner h5 b {
  color: #fff;
  font-weight: 700;
}

.voice {
  padding-top: 50px;
}
.voice.syr {
  padding: 50px 0 60px;
}
.voice__inner-quote {
  width: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.voice__inner-quote img {
  width: 100%;
}
.voice__inner-content {
  margin-bottom: 50px;
}
.voice__inner-content h2 {
  margin-bottom: 20px;
}
.voice__inner-content p {
  margin-bottom: 20px;
}
.voice__inner-content p:last-child {
  margin: 0;
}
.voice__inner-content p b {
  font-weight: 700;
}
.voice__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;
}
.voice__inner-row:last-child {
  margin: 0;
}
.voice__inner h2 {
  margin-bottom: 20px;
}
.voice__inner p {
  margin-bottom: 20px;
}
.voice__inner p:last-child {
  margin: 0;
}
.voice__inner p b {
  font-weight: 700;
}
.voiceImage {
  width: calc(50% - 15px);
  max-width: 560px;
}
.voiceImage__inner {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.voiceImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.voiceContent {
  width: calc(50% - 15px);
  max-width: 560px;
}
.voiceContent h2 {
  margin-bottom: 20px;
}
.voiceContent p {
  margin-bottom: 20px;
}
.voiceContent p:last-child {
  margin: 0;
}
.voiceContent p b {
  display: block;
  margin: 10px 0;
  font-weight: 700;
}
.voiceBanner {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  padding-bottom: 48%;
  min-height: 362px;
}
.voiceBanner__text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background-color: rgba(44, 44, 44, 0.75);
  color: #fff;
  z-index: 1;
}
.voiceBanner__text p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.voiceBanner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.faq {
  padding: 50px 0;
  position: relative;
}
.faq.new {
  padding: 40px 0 60px;
}
.faq.new .faq__inner-title {
  text-align: center;
}
.faq.sm .auto__container {
  max-width: 930px;
}
.faq .auto__container {
  max-width: 980px;
}
.faq__inner-title {
  margin-bottom: 20px;
}
.faq__inner h2 {
  line-height: 100%;
}
.faqItem {
  border-bottom: 1px solid #e6e5e5;
}
.faqItem__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
.faqItem__head.active h3 {
  color: #c80001;
}
.faqItem__head.active span::before {
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  opacity: 0;
}
.faqItem__head h3 {
  color: #2c2c2c;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  width: calc(100% - 20px);
}
.faqItem__head span {
  width: 12px;
  height: 12px;
  position: relative;
}
.faqItem__head span::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  content: "";
  background-color: #c80001;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faqItem__head span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #c80001;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.faqItem__body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faqItem__body.active {
  max-height: 600px;
  opacity: 1;
  padding-bottom: 40px;
}

.place__inner-swiper {
  display: none !important;
}
.place__inner-slider .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;
}
.place__inner-slider .slick-slide {
  height: unset !important;
  width: 0;
}
.place__inner-slider .slick-active {
  width: 40%;
}
.place__inner-slider .slick-current {
  width: 100% !important;
}
.place__inner-slider .slick-current .placeItem__number {
  opacity: 1;
}
.place__inner-slider .slick-current .placeItem__link {
  opacity: 1;
}
.placeItem {
  cursor: pointer;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  overflow: hidden;
  position: relative;
}
.placeItem__number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 35px;
  line-height: 40px;
  color: #fff;
  font-weight: 400;
  z-index: 3;
  letter-spacing: 0.3em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0.4;
}
.placeItem__image {
  width: 100%;
  height: 500px;
  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;
  pointer-events: none;
}
.placeItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: 1s ease-in;
  transition: 1s ease-in;
}
.placeItem__link {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: #af2e55;
  z-index: 3;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
}
.placeItem__link.prevBtn {
  right: unset;
  left: 20px;
}
.placeItem__link.prevBtn:hover {
  opacity: 1;
}
.placeItem__link.prevBtn:hover svg {
  -webkit-transform: scaleX(-1) translateX(-1px);
  transform: scaleX(-1) translateX(-1px);
}
.placeItem__link.prevBtn svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.placeItem__link:hover {
  opacity: 1;
}
.placeItem__link:hover svg {
  -webkit-transform: translateX(1px);
  transform: translateX(1px);
}
.placeItem__link svg {
  width: 16px;
  height: 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.application {
  padding: 40px 0;
  position: relative;
}
.application__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}
.application__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.application__inner {
  position: relative;
  z-index: 3;
  overflow: hidden;
  width: 100%;
  -webkit-animation: 0.2s linear fadeUp;
  animation: 0.2s linear fadeUp;
  display: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.application__inner.active {
  display: block;
}
.applicationForm {
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 8px;
  padding: 30px 40px 40px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.applicationForm__steps {
  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;
  position: relative;
  margin-bottom: 30px;
}
.applicationForm__steps::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: calc(100% - 4px);
  height: 0;
  content: "";
  border-top: 2px dashed #e6e5e5;
}
.applicationForm__steps span {
  width: 30px;
  height: 30px;
  background-color: #e6e5e5;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  color: #9f9f9f;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.applicationForm__steps span.active {
  color: #fff;
  background-color: #6ba8a8;
}
.applicationForm__back {
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  padding-left: 16px;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
  color: #6ba8a8;
  cursor: pointer;
}
.applicationForm__back::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #6ba8a8;
  border-right: 2px solid #6ba8a8;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-60%) rotate(-135deg);
  transform: translateY(-60%) rotate(-135deg);
}
.applicationForm__title {
  margin-bottom: 15px;
}
.applicationForm__title h3 {
  margin-bottom: 15px;
}
.applicationForm__title h3:last-child {
  margin: 0;
}
.applicationForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.applicationForm__foot {
  padding-top: 15px;
}
.applicationForm .input__outer {
  width: calc(50% - 20px);
  margin: 15px 10px;
}
.applicationForm .input__outer.big {
  width: 100%;
}

.team {
  padding: 40px 0 50px;
  background-color: #f9f9f9;
}
.team .auto__container {
  max-width: 1140px;
}
.team__inner-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.team__inner-slider {
  margin: 0 -10px;
  padding-bottom: 50px;
  position: relative;
}
.team__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.team__inner .slick-slide {
  height: unset !important;
  margin: 0 10px;
}
.team__inner .slick-arrow {
  width: 36px;
  height: 36px;
  background-color: #c80001;
  border-radius: 50%;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  z-index: 3;
}
.team__inner .slick-arrow:hover {
  background-color: #e30f10;
}
.team__inner .slick-arrow:hover::before {
  opacity: 1;
}
.team__inner .slick-arrow:focus {
  background-color: #e30f10;
}
.team__inner .slick-arrow:focus::before {
  opacity: 1;
}
.team__inner .slick-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  content: "";
  -webkit-transform: translate(-60%, -50%) rotate(45deg);
  transform: translate(-60%, -50%) rotate(45deg);
  border-top: 2px solid #fff;
  opacity: 1;
  border-right: 2px solid #fff;
}
.team__inner .slick-prev {
  left: -36px;
}
.team__inner .slick-prev::before {
  -webkit-transform: translate(-40%, -50%) rotate(-135deg);
  transform: translate(-40%, -50%) rotate(-135deg);
}
.team__inner .slick-next {
  right: -36px;
}
.team__inner .slick-dots {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.team__inner .slick-dots li {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 8px 0 0;
  background-color: #fff;
  border: 1px solid #c80001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.team__inner .slick-dots li.slick-active {
  background-color: #c80001;
}
.team__inner .slick-dots li:last-child {
  margin: 0;
}
.team__inner .slick-dots li button {
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0;
  background-color: transparent;
}
.team__inner .slick-dots li button::before {
  display: none;
}
.team__inner h2 {
  margin-bottom: 20px;
}
.teamItem {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.teamItem__avatar {
  width: 120px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.teamItem__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.teamItem__name {
  margin-bottom: 20px;
}
.teamItem__name h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.teamItem__name h6 {
  text-transform: uppercase;
  font-weight: 500;
  color: #c80001;
}
.teamItem p {
  margin-bottom: 30px;
}
.teamItem__social {
  margin: auto 0 0 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;
}
.teamItem__social a {
  width: 30px;
  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-right: 15px;
  background-color: #c80001;
  border-radius: 50%;
  color: #fff;
}
.teamItem__social a:hover {
  background-color: #e30f10;
}
.teamItem__social a:last-child {
  margin: 0;
}
.teamItem__social a:last-child svg {
  width: 10px;
  height: 16px;
}
.teamItem__social a svg {
  width: 14px;
  height: 14px;
}

.hero {
  position: relative;
}
.hero.sm .hero__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 36%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #000000), to(#00000000));
  background: linear-gradient(180deg, #000000 10%, #00000000);
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}
.hero.sm .heroRow {
  -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;
  padding: 154px 0 56px;
}
.hero.sm .heroRow__content {
  width: 100%;
  max-width: 400px;
}
.hero.sm .heroRow__content h1 {
  margin-bottom: 30px;
}
.hero.sm .heroRow .instant {
  width: 100%;
  max-width: 400px;
}
.hero.big .heroRow {
  padding: 172px 0 226px;
}
.hero.uni .heroRow {
  padding: 190px 0;
}
.hero.uni .heroRow h6 {
  color: #c80001;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.hero.uni .heroRow h1 {
  margin: 0;
}
.hero__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;
}
.hero__bg video,
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.hero__slider {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero__slider .slick-list {
  height: 100%;
}
.heroItem {
  position: relative;
}
.heroItem .auto__container {
  height: 100%;
}
.heroItem__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.heroItem__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 36%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #000000), to(#00000000));
  background: linear-gradient(180deg, #000000 10%, #00000000);
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
} 
.fadeEffect::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #000000), to(#00000000));
  background: linear-gradient(90deg, #000000 10%, #00000000);
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}
.heroItem__bg > img,
.heroItem__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  pointer-events: none;
}
.heroItem__bg > video::-webkit-media-controls {
  display: none;
}
.heroItem__inner {
  color: #fff;
  padding: 165px 0 176px;
  height: 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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.heroItem__inner-content {
  width: calc(50% - 10px);
  max-width: 380px;
  position: relative;
  z-index: 2;
}
.heroItem h1 {
  margin-bottom: 20px;
}
.heroItem p {
  margin-bottom: 30px;
}
.heroMain__inner {
  width: 100%;
  padding: 165px 0 60px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.heroMain__inner-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 66px;
}
.heroMain__inner .instant {
  width: calc(50% - 10px);
  max-width: 400px;
  position: relative;
  z-index: 3;
}
.heroNav {
  width: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid #fff;
  border-radius: 8px;
  overflow: hidden;
}
.heroNav .slick-slide {
  height: unset !important;
}
.heroNav .slick-current {
  background-color: rgba(255, 255, 255, 0.25);
}
.heroNav .slick-current h5 {
  opacity: 1;
}
.heroNav__item {
  width: 28%;
  padding: 13px 10px;
  border-right: 1px solid #fff;
  color: #fff;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}
.heroNav__item.sm {
  width: 22%;
}
.heroNav__item h5 {
  font-weight: 900;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0.5;
}
.heroRow {
  position: relative;
  z-index: 2;
  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: 116px 0;
}
.heroRow__content {
  width: calc(46% - 10px);
  max-width: 380px;
  color: #fff;
}
.heroRow__content.new {
  max-width: 500px;
}
.heroRow__content.new p {
  font-weight: 500;
}
.heroRow__content.new h2 {
  text-transform: unset;
  font-weight: 700;
}
.heroRow__content h1,
.heroRow__content h2 {
  color: #fff;
  margin-bottom: 20px;
}
.heroRow__content p {
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.heroRow__content p.first {
  margin-bottom: 10px;
}
.heroRow .instant {
  width: calc(54% - 10px);
  max-width: 400px;
  position: relative;
  z-index: 3;
}

.appeals {
  padding: 50px 0 40px;
}
.appeals.light .appeals__inner-foot a {
  color: #c80001;
}
.appeals.light h3 {
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.appeals.light a {
  color: #6ba8a8;
}
.appeals.big h3 {
  font-weight: 700;
  line-height: 30px;
  height: 90px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.appeals__inner-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.appeals__inner-title.sm {
  max-width: 600px;
}
.appeals__inner-title p {
  font-weight: 500;
}
.appeals__inner-title h2 {
  max-width: 620px;
  margin: 0 auto;
}
.appeals__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.appeals__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 30px;
}
.appeals__inner-foot a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  color: #c80001;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
}
.appeals__inner-foot a:hover svg {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}
.appeals__inner-foot a span {
  text-decoration: underline;
}
.appeals__inner-foot a svg {
  width: 9px;
  height: 9px;
  margin-left: 8px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.appeals__inner h2 {
  margin-bottom: 20px;
}
.appealsItem {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  margin: 10px;
  width: calc(33.3% - 20px);
  border-radius: 8px;
  overflow: hidden;
}
.appealsItem__image {
  width: 100%;
  position: relative;
  padding-bottom: 53%;
}
.appealsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.appealsItem__content {
  padding: 30px 25px;
}
.appealsItem__content > p {
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.appealsItem__date {
  font-weight: 500;
  margin-bottom: 20px;
  color: #6ba8a8;
}
.appealsItem__info {
  padding-bottom: 32px;
}
.appealsItem__info p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 300;
}
.appealsItem__info p:last-child {
  margin: 0;
}
.appealsItem__info p span {
  width: 14px;
  height: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 12px;
}
.appealsItem__info p span.big {
  width: 16px;
}
.appealsItem__info p span img {
  width: 100%;
}
.appealsItem__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.appealsItem__name:last-child {
  margin: 0;
}
.appealsItem__name span {
  width: 40px;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
  border-radius: 50%;
}
.appealsItem__name span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.appealsItem__name p {
  width: calc(100% - 50px);
  font-weight: 500;
  color: rgba(143, 143, 143, 0.85);
}
.appealsItem__row {
  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: 10px;
}
.appealsItem__row p b {
  font-weight: 600;
}
.appealsItem__progress {
  height: 10px;
  width: 100%;
  background-color: #e6e5e5;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.appealsItem__progress span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c80001;
  border-radius: 8px;
}
.appealsItem h3 {
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.appealsItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  color: #c80001;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
}
.appealsItem a:hover svg {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}
.appealsItem a svg {
  width: 9px;
  height: 9px;
  margin-left: 8px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.difference {
  position: relative;
  padding: 92px 0;
  color: #fff;
}
.difference__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;
  pointer-events: none;
}
.difference__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#24201d), to(#00000000));
  background: linear-gradient(90deg, #24201d, #00000000);
}
.difference__bg-shape {
  position: absolute;
  top: 50%;
  left: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.difference__bg-shape img {
  width: 100%;
}
.difference__bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.difference__inner {
  position: relative;
  z-index: 2;
}
.difference__inner-content {
  max-width: 568px;
}
.difference__inner-content p {
  max-width: 450px;
  margin-bottom: 30px;
}
.difference__inner-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
}
.difference__inner-link:hover svg {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}
.difference__inner-link span {
  text-decoration: underline;
}
.difference__inner-link svg {
  width: 9px;
  height: 9px;
  margin-left: 8px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  color: #c80001;
  margin-top: 3px;
}
.difference__inner h2 {
  margin-bottom: 20px;
  color: #fff;
  line-height: 90%;
}

.impact {
  padding: 60px 0 40px;
}
.impact__inner-title {
  margin-bottom: 40px;
  text-align: center;
}
.impact__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto 40px !important;
}
.impact__inner-row hr {
  width: 2px;
  height: 210px;
  background-color: #ededed;
}
.impact__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.impactItem {
  width: 33.3%;
  text-align: center;
  padding: 0 20px;
  border-right: 2px solid #ededed;
}
.impactItem:last-of-type {
  border-color: transparent;
}
.impactItem h4 {
  color: #c80001;
  margin-bottom: 10px;
}
.impactItem h3 {
  color: #6ba8a8;
  font-weight: 700;
  max-width: 320px;
  margin: 0 auto 10px;
}
.impactItem p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
  margin: 0 auto;
}

.intro.big .introItem__inner {
  padding: 30px;
  position: relative;
}
.intro.big .introItem__content {
  position: static;
}
.intro.big .introItem p {
  opacity: 0;
}
.intro.big .introItem h2 {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.7;
  z-index: 2;
}
.intro.big .slick-current p {
  opacity: 1;
}
.intro.big .slick-current h2 {
  position: static;
  opacity: 1;
}
.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;
}
.intro__inner{
  padding:50px 0 40px;
}
.intro__inner-foot {
  display: none;
}
.introItem {
  cursor: pointer;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  min-width: 25%;
  width: 25%;
  overflow: hidden;
  color: #fff;
}
.introItem.red .introItem__link svg {
  color: #6ba8a8;
}
.introItem.slick-current {
  width: 50%;
}
.introItem.slick-current .introItem__overlay {
  opacity: 1;
  background: transparent !important;
}
.introItem.slick-current .introItem__overlay::before {
  opacity: 1;
}
.introItem.slick-current .introItem__image img {
  -o-object-position: 70% 50%;
  object-position: 70% 50%;
}
.introItem.slick-current h2 {
  font-size: 40px;
}
.introItem.slick-current p {
  max-width: 550px;
  display: block;
  height: unset;
}
.introItem__inner {
  position: relative;
  min-height: 500px;
  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: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 44px 30px;
  -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;
  pointer-events: none;
}
.introItem__overlay::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, #000000), to(#00000000));
  background: linear-gradient(0deg, #000000 30%, #00000000);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
}
.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;
  pointer-events: none;
}
.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__link {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.introItem__link:hover {
  opacity: 1;
}
.introItem__link:hover svg {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.introItem__link svg {
  width: 12px;
  height: 8px;
  color: #c80001;
  margin-left: 8px;
}
.introItem__content {
  width: 100%;
  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 h2 {
  font-size: 30px;
  line-height: 100%;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 900;
}
.introItem p {
  margin-bottom: 30px;
  max-width: 260px;
  line-height: 24px;
  height: 120px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.introItem p:last-child {
  margin: 0;
}

@-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);
  }
}
.reports {
  padding: 50px 0;
  background-color: #f9f9f9;
}
.reports .auto__container {
  max-width: 1120px;
}
.reports__inner-title {
  text-align: center;
  margin-bottom: 30px;
}
.reports__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.reports__inner-content {
  margin-bottom: 50px;
}
.reports__inner-content:last-child {
  margin: 0;
}
.reportsItem {
  width: calc(33.3% - 20px);
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  cursor: pointer;
  padding: 15px 20px;
  height: 80px;
}
.reportsItem:hover .reportsItem__icon {
  background-color: #e30f10;
}
.reportsItem__icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 20px;
  border-radius: 50%;
  background-color: #c80001;
}
.reportsItem__icon img {
  width: 14px;
}
.reportsItem h5,
.reportsItem h6 {
  width: calc(100% - 60px);
  font-weight: 600;
  color: #2c2c2c;
  line-height: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact {
  background-color: #2c2c2c;
  position: relative;
  padding: 60px 0 90px 40px;
}
.contact__shape {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}
.contact__shape img {
  height: 100%;
}
.contact__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;
}
.contactContent {
  width: calc(45% - 15px);
  max-width: 480px;
  color: #fff;
}
.contactContent__title {
  margin-bottom: 30px;
}
.contactContent__title h2 {
  color: #fff;
  margin-bottom: 20px;
}
.contactContent__title p {
  font-size: 15px;
  line-height: 20px;
}
.contactContent a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 30px;
}
.contactContent a:last-child {
  margin: 0;
}
.contactContent a span {
  width: 42px;
  height: 42px;
  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: 30px;
}
.contactContent a span.sm img {
  width: 60%;
  max-width: 25px;
}
.contactContent a span img {
  width: 100%;
}
.contactContent a p {
  width: calc(100% - 72px);
}
.contactContent a p b {
  font-weight: 700;
  display: block;
}
.contactForm {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 66px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 66px rgba(0, 0, 0, 0.16);
  padding: 35px 40px 40px 40px;
  width: calc(55% - 15px);
  max-width: 600px;
}
.contactForm__title {
  margin-bottom: 10px;
}
.contactForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
  justify-content: space-between;
}
.contactForm .input__outer {
  margin: 10px;
  width: calc(50% - 20px);
}
.contactForm .input__outer.big {
  width: calc(100% - 20px);
}
.contactForm .check {
  margin: 10px 10px 28px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.contactForm .check__box {
  margin-top: 5px;
}

.donation {
  padding: 50px 0;
}
.donation .auto__container {
  max-width: 1140px;
}
.donation__inner-title {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 20px;
}
.donation__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.donation__inner h2 {
  margin-bottom: 20px;
}
.donationItem {
  width: calc(33.3% - 20px);
  margin: 10px;
  background-color: #fff;
  padding: 30px 20px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  text-align: center;
}
.donationItem__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;
  margin-bottom: 20px;
}
.donationItem__icon img {
  width: 100%;
}
.donationItem h5 {
  margin-bottom: 20px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.donationItem p {
  font-weight: 300;
  line-height: 20px;
}
.donationItem p b {
  font-weight: 500;
}

.checkout {
  padding: 60px 0;
  position: relative;
  min-height: 1130px;
}
.checkout__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}
.checkout__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.checkout__inner {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 560px;
  -webkit-animation: 0.2s linear fadeUp;
  animation: 0.2s linear fadeUp;
  display: none;
  padding: 40px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.checkout__inner.active {
  display: block;
}
.checkout__inner-steps {
  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;
  position: relative;
  margin-bottom: 30px;
}
.checkout__inner-steps::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: calc(100% - 4px);
  height: 0;
  content: "";
  border-top: 2px dashed #e6e5e5;
}
.checkout__inner-steps span {
  width: 30px;
  height: 30px;
  background-color: #e6e5e5;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
  color: #9f9f9f;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.checkout__inner-steps span.active {
  color: #fff;
  background-color: #6ba8a8;
}
.checkout__group {
  padding-bottom: 40px;
  margin-bottom: 30px;
  border-bottom: 1px solid #6ba8a8;
}
.checkout__group:last-child {
  border-bottom: unset;
  padding-bottom: 0;
  margin-bottom: 0;
}
.checkout__group .uniq {
  margin-bottom: 30px;
}
.checkout__group .uniq label {
  color: #6ba8a8;
}
.checkout__head {
  margin-bottom: 20px;
  position: relative;
}
.checkout__head h3 {
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #2c2c2c;
}
.checkout__head h6 {
  font-weight: 600;
  color: #6ba8a8;
}
.checkout__body h6 {
  margin-bottom: 20px;
}
.checkout__body h6:last-child {
  margin-bottom: 0;
}
.checkout__body > p {
  margin-bottom: 20px;
}
.checkout__body > p:last-child {
  margin: 0;
}
.checkout__body .input {
  position: relative;
}
.checkout__body .input__outer {
  width: calc(50% - 10px);
  max-width: 230px;
  position: relative;
}
.checkout__body .input input::-webkit-input-placeholder {
  color: #e2e2e2;
}
.checkout__body .input input::-moz-placeholder {
  color: #e2e2e2;
}
.checkout__body .input input:-ms-input-placeholder {
  color: #e2e2e2;
}
.checkout__body .input input::-ms-input-placeholder {
  color: #e2e2e2;
}
.checkout__body .input input::placeholder {
  color: #e2e2e2;
}
.checkout__body .select select {
  border-color: #6ba8a8;
}
.checkout__body .check {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.checkout__body .check__box {
  margin-top: 3px;
}
.checkout__body .check p {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
}
.checkout__body > .button {
  border-radius: 10px;
  padding: 12px 20px;
}
.checkout__body > .button:hover {
  background-color: #4d4641;
  color: #fff;
}
.checkout__body > .button:hover span::before {
  border-color: #fff;
}
.checkout__sub {
  max-width: 48%;
  margin-bottom: 30px;
}
.checkout__sub .input__outer {
  width: 100%;
}
.checkout__sub .select {
  width: 100%;
}
.checkout__sub .select::before {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #6ba8a8;
  border-right: 1px solid #6ba8a8;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-70%) rotate(135deg);
  transform: translateY(-70%) rotate(135deg);
}
.checkout__sub .select select {
  height: 100%;
  padding: 12px 15px;
  color: #4d4641;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #6ba8a8;
  -webkit-appearance: none;
}
.checkout__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.checkout__row .checkout__sub {
  margin-bottom: 0;
}

.checkout__address {
  margin-bottom: 20px;
}
.checkout__address h6 {
  margin-bottom: 20px;
  font-weight: 700;
}
.checkout__address .input {
  margin-bottom: 15px;
}
.checkout__address a {
  font-size: 16px;
  line-height: 24px;
  color: #4d4641;
  text-decoration: underline;
}
.checkout__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: #6ba8a8;
  -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: 20px;
  text-transform: uppercase;
}
.checkout__back svg {
  width: 11px;
  height: 11px;
  margin-right: 5px;
}
.checkout__total-rows {
  padding-bottom: 15px;
  border-bottom: 1px solid #6ba8a8;
}
.checkout__total-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}
.checkout__total-row.last {
  display: none;
}
.checkout__total-row:last-child {
  margin: 0;
}
.checkout__total-row h6 {
  color: rgba(44, 44, 44, 0.85);
  font-weight: 700;
}
.checkout__total-row h6 b {
  font-weight: 900;
}
.checkout__total-foot {
  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;
  padding-top: 30px;
}
.checkout__total-secure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  line-height: 100%;
}
.checkout__total-secure span {
  width: 12px;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 8px;
}
.checkout__total-secure span img {
  width: 100%;
}
.checkout__total .button {
  width: 50%;
  height: 45px;
  max-width: 160px;
}
.checkout__total .button.paypal {
  background: #f5b91e;
  max-width: 140px;
  height: 45px;
}
.checkout__total .button.paypal:hover {
  opacity: 0.8;
}
.checkout__total .button.paypal img {
  width: 64px;
}
.checkout__total .button.apple {
  max-width: 140px;
  height: 45px;
  background: #2c2c2c;
}
.checkout__total .button.apple:hover {
  opacity: 0.8;
}
.checkout__total .button.apple img {
  width: 50px;
}
.checkout__total .button.google {
  max-width: 140px;
  height: 45px;
  background: #2c2c2c;
}
.checkout__total .button.google:hover {
  opacity: 0.8;
}
.checkout__total .button.google img {
  width: 54px;
}
.checkout__foot {
  padding-top: 30px;
  margin-bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.checkout__foot p {
  width: 100%;
  margin-bottom: 20px;
}
.checkout__foot .checkc {
  width: 100%;
  margin-bottom: 16px;
}
.checkout__foot .checkc:last-child {
  margin: 0;
}
.checkout__foot .checkc label {
  color: #4d4641;
}
.checkout__foot .checkc label::after {
  border-color: #7bc8eb;
}
.checkout__foot .input__outer {
  width: 100%;
  max-width: unset;
  margin-bottom: 20px;
}
.checkout__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.checkout__tabs .paymentItem {
  margin-right: 40px;
}
.checkout__tabs .paymentItem:last-child {
  margin-right: 0;
}
.checkout__tab {
  -webkit-animation: 0.2s linear fadeUp;
  animation: 0.2s linear fadeUp;
  display: none;
}
.checkout__tab-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}
.checkout__tab-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkout__tab-radio {
  position: relative;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkout__tab-radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}
.checkout__tab-radio input:checked ~ span {
  background-color: #6ba8a8;
  color: #fff;
}
.checkout__tab-radio span {
  width: 100%;
  height: 100%;
  padding: 7px 13px;
  background-color: transparent;
  border-radius: 8px;
  color: #6ba8a8;
  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;
  border: 1px solid #6ba8a8;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.checkout__tab-row {
  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: 30px 0 20px;
}
.checkout__tab-row p {
  font-weight: 500;
}
.checkout__tab-icon {
  width: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkout__tab-icon img {
  width: 100%;
}
.checkout__tab-content {
  padding-bottom: 30px;
  border-bottom: 1px solid #6ba8a8;
  margin-bottom: 30px;
}
.checkout__tab-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 300;
  margin-bottom: 10px;
}
.checkout__tab-content p.active {
  display: block;
}
.checkout__tab-content button {
  background-color: transparent;
  font-size: 15px;
  line-height: 20px;
  text-decoration: underline;
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
}
.checkout__tab.active {
  display: block;
}
.checkout__tab > p {
  margin-bottom: 30px;
}
.checkout .formBtn {
  display: none;
  -webkit-animation: 0.2s linear fadeUp;
  animation: 0.2s linear fadeUp;
}
.checkout .formBtn.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkoutBasket__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.checkoutBasket__title h6 {
  color: #af2e55;
  font-weight: 700;
}
.checkoutBasket__rows {
  margin-bottom: 30px;
}
.checkoutBasket__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #e6e5e5;
}
.checkoutBasket__row h6 {
  color: #2c2c2c;
  font-weight: 700;
}
.checkoutBasket__row h6 b {
  font-weight: 900;
}
.checkoutBasket__row p b {
  font-weight: 700;
}
.checkoutBasket__support {
  margin-bottom: 30px;
}
.checkoutBasket__support > h6 {
  margin-bottom: 20px;
  font-weight: 700;
}
.checkoutBasket__item {
  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: 18px;
}
.checkoutBasket__item:last-child {
  margin: 0;
}
.checkoutBasket__item .enterAmount {
  font-size: 16px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.checkoutBasket__item .enterAmount.active input {
  opacity: 1;
  visibility: visible;
}
.checkoutBasket__item .enterAmount.active span {
  visibility: hidden;
  opacity: 0;
}
.checkoutBasket__item .enterAmount__number {
  position: relative;
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkoutBasket__item .enterAmount__number::before {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #4d4641;
  content: "";
}
.checkoutBasket__item .enterAmount__number span {
  color: #4d4641;
  font-weight: 300;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.checkoutBasket__item .enterAmount__number input {
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  font-family: "proxima-nova", sans-serif;
  color: #4d4641;
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.checkoutBasket__item .enterAmount b {
  font-weight: 800;
  color: #6ba8a8;
  margin-right: 5px;
}

.thanks {
  position: relative;
}
.thanks__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;
  pointer-events: none;
}
.thanks__bg::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(#00000000));
  background: linear-gradient(90deg, #000000, #00000000);
  z-index: 1;
  opacity: 0.9;
}
.thanks__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#00000000));
  background: linear-gradient(180deg, #000000, #00000000);
  z-index: 1;
  opacity: 0.9;
}
.thanks__bg video,
.thanks__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.thanks__bg video::-webkit-media-controls {
  display: none;
}
.thanks__inner {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  min-height: 100vh;
  color: #fff;
  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;
}
.thanks__inner-content {
  max-width: 380px;
}
.thanks__inner h1 {
  margin-bottom: 20px;
}
.thanks__inner p {
  margin-bottom: 30px;
}

.payment {
  overflow: hidden;
}
.payment__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 10px;
}
.paymentItem {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin-right: 18px;
  margin-bottom: 25px;
}
.paymentItem__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 42px;
}
.paymentItem__logo.big {
  width: 62px;
}
.paymentItem__logo img {
  width: 100%;
}
.paymentItem__box {
  width: 15px;
  height: 15px;
  position: relative;
  margin-right: 10px;
}
.paymentItem__box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.paymentItem__box input:checked ~ span::before {
  opacity: 1;
}
.paymentItem__box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid #6ba8a8;
}
.paymentItem__box span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #6ba8a8;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 50%;
}
.paymentItem p {
  font-weight: 500;
  width: calc(100% - 25px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.paymentItem p span {
  width: 18px;
  height: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 8px;
}
.paymentItem p span.big {
  width: 27px;
  height: 20px;
}
.paymentItem p span img {
  width: 100%;
}
.paymentInfo {
  padding: 0 0 30px;
  -webkit-animation: 0.2s linear fadeUp;
  animation: 0.2s linear fadeUp;
  display: none;
  border-bottom: 1px solid #6ba8a8;
  flex-direction: column;
}
.paymentInfo.active {
  display: block;
  margin-bottom: 30px;
}
.paymentInfo .input__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}
.paymentInfo .input__outer {
  width: 100%;
  max-width: unset;
  margin: 10px;
}
.paymentInfo .input__outer.w-55 {
  width: calc(55% - 20px);
}
.paymentInfo .input__outer.w-50 {
  width: calc(50% - 20px);
}
.paymentInfo .input__outer.w-25 {
  width: calc(25% - 20px);
}
.paymentInfo .input__outer.w-20 {
  width: calc(20% - 20px);
}
.paymentInfo .input__outer p {
  white-space: nowrap;
}
.paymentInfo .input input {
  padding: 11px 15px;
}

.gift {
  padding: 20px 30px;
  border-radius: 10px;
  background-color: #6ba8a8;
  color: #fff;
}
.gift__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  margin-bottom: 20px;
}
.gift__head h5 {
  font-weight: 800;
  margin-bottom: 10px;
}
.gift__head p b {
  font-weight: 600;
}
.gift__icon {
  width: 143px;
  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: 10px;
}
.gift__icon img {
  width: 100%;
}
.gift p {
  font-weight: 300;
  margin-bottom: 6px;
  /*display: -webkit-box;*/
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /*overflow: hidden;
  text-overflow: ellipsis;*/
}
.gift p.active {
  display: block;
}
.gift button {
  font-family: "proxima-nova", sans-serif;
  font-size: 15px;
  line-height: 20px;
  background-color: transparent;
  cursor: pointer;
  font-weight: 300;
  color: #fff;
}

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

.radioc {
  position: relative;
  margin-bottom: 20px;
}
.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: 30px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  color: #fff;
  position: relative;
}
.radioc label::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #fff;
  top: 0;
  left: 0;
}
.radioc label::after {
  position: absolute;
  content: "";
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  opacity: 0;
  width: 8px;
  background: #fff;
  border-radius: 50%;
  height: 8px;
  top: 7.6px;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 3.6px;
}

@-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);
  }
}
.calc__wrapper {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
}
.calc__inner {
  padding: 40px 0 50px;
  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;
}
.calc__inner-title {
  color: #4d4641;
  margin-bottom: 30px;
}
.calc__inner-title h2 {
  margin-bottom: 20px;
  color: #4d4641;
}
.calc__inner-title p {
  font-weight: 500;
}
.calc__inner-content {
  width: calc(100% - 420px);
  max-width: 730px;
}
.calcForm {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #6ba8a8;
}
.calcForm__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 10px;
}
.calcForm__title h6 {
  font-weight: 600;
  margin-bottom: 10px;
}
.calcForm__title .select select {
  width: 60px;
  font-weight: 700;
  padding: 6px 10px;
  color: #6ba8a8;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #6ba8a8;
}
.calcForm__title .select::before {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #6ba8a8;
  border-right: 2px solid #6ba8a8;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-60%) rotate(135deg);
  transform: translateY(-60%) rotate(135deg);
}
.calcForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.calcForm__foot {
  padding-top: 40px;
  border-top: 1px solid #6ba8a8;
  margin-top: 25px;
}
.calcForm__foot h6 {
  font-weight: 700;
  margin-bottom: 10px;
}
.calcForm__foot > p {
  margin-bottom: 15px;
}
.calcForm .input__outer {
  width: calc(50% - 5px);
  margin: 15px 0;
  max-width: 325px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.calcForm .input__outer p {
  width: 100%;
  color: #4d4641;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.calcForm .input__outer p b {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.calcForm .input input {
  font-size: 15px;
  line-height: 20px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 500;
  color: #4d4641;
  border-radius: 10px;
  border: 1px solid #7bc8eb;
  padding: 12px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.calcForm .input input::-webkit-input-placeholder {
  color: #e2e2e2;
}
.calcForm .input input::-moz-placeholder {
  color: #e2e2e2;
}
.calcForm .input input:-ms-input-placeholder {
  color: #e2e2e2;
}
.calcForm .input input::-ms-input-placeholder {
  color: #e2e2e2;
}
.calcForm .input input::placeholder {
  color: #e2e2e2;
}
.calcSummary {
  width: 383px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: sticky;
  top: 100px;
  right: 0;
  background-color: #6ba8a8;
  padding: 30px;
  color: #fff;
  overflow: hidden;
  overflow-y: auto;
  border-radius: 8px;
}
.calcSummary.mob {
  display: none;
}
.calcSummary__top {
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  margin-bottom: 30px;
  background-color: rgba(247, 247, 247, 0.08);
}
.calcSummary__top:last-child {
  margin: 0;
}
.calcSummary__top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 270px;
}
.calcSummary__top-col {
  text-align: center;
  width: calc(50% - 6px);
  max-width: 105px;
}
.calcSummary__top > p {
  margin-bottom: 15px;
}
.calcSummary__top h5 {
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.calcSummary__top h6 {
  margin-bottom: 5px;
  font-weight: 600;
}
.calcSummary__top p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
}
.calcSummary__body {
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
}
.calcSummary__body h5 {
  font-weight: 600;
  margin-bottom: 20px;
}
.calcSummary__body h6 {
  font-weight: 600;
}
.calcSummary__body-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}
.calcSummary__body-select {
  position: relative;
  padding: 5px 25px 5px 17px;
  background-color: #f7f7f7;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.calcSummary__body-select::before {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 2px solid #6ba8a8;
  border-right: 2px solid #6ba8a8;
  -webkit-transform: translateY(-70%) rotate(135deg);
  transform: translateY(-70%) rotate(135deg);
}
.calcSummary__body-select select {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #6ba8a8;
  -webkit-appearance: none;
  background-color: transparent;
}
.calcSummary__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}
.calcSummary__foot h5 {
  font-weight: 700;
}
.calcSummary h2 {
  margin-bottom: 10px;
}
.calcSummary .button {
  padding: 10px 16px;
  background-color: #c80001;
}
.calcSummary .button:hover {
  background-color: #e30f10;
}

.projects {
  padding: 40px 0;
  overflow: hidden;
}
.projects__inner-wrapper {
  display: none;
}
.projects__inner-wrapper.active {
  display: block;
  -webkit-animation: fadeIn 0.3s;
  animation: fadeIn 0.3s;
}
.projects__inner-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
}
.projects__inner-title.row {
  width: 100%;
  max-width: unset;
  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: 0 0 30px 0;
}
.projects__inner-title.row::before {
  display: none;
}
.projects__inner-title.row h2 {
  margin: 0;
}
.projects__inner-title::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 3000px;
  height: 1px;
  background-color: #e6e5e5;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
}
.projects__inner-title p {
  margin-bottom: 30px;
}
.projects__inner-title h2 {
  margin-bottom: 20px;
}
.projects__inner-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.projects__inner-tabs button {
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding-bottom: 20px;
  text-transform: uppercase;
  font-family: "proxima-nova", sans-serif;
  color: #4d4641;
  font-size: 16px;
  line-height: 20px;
  transition: 0.3s ease;
  margin-right: 25px;
  font-weight: 700;
  position: relative;
}
.projects__inner-tabs button::before {
  position: absolute;
  bottom: -0.5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c80001;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
}
.projects__inner-tabs button:last-child {
  margin: 0;
}
.projects__inner-tabs button.active {
  color: #c80001;
}
.projects__inner-tabs button.active::before {
  opacity: 1;
}
.projects__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.projects__inner-row.active .appealsItem:nth-child(n+10) {
  display: block;
}
.projects__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 30px;
}
.projects__inner-foot button {
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-transform: uppercase;
  font-family: "proxima-nova", sans-serif;
  color: #c80001;
  font-size: 15px;
  line-height: 18px;
  border: 1px solid #c80001;
  transition: 0.3s ease;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.projects__inner-foot button:hover span {
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
.projects__inner-foot button.active:hover span {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.projects__inner-foot button.active span::before {
  -webkit-transform: translateY(-30%) rotate(-45deg);
  transform: translateY(-30%) rotate(-45deg);
}
.projects__inner-foot button b {
  font-weight: 800;
}
.projects__inner-foot button span {
  position: relative;
  width: 9px;
  height: 9px;
  margin-left: 10px;
  display: block;
  margin-bottom: 3px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.projects__inner-foot button span::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  border-top: 3px solid #c80001;
  border-right: 3px solid #c80001;
  content: "";
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
.projects .appealsItem:nth-child(n+10) {
  display: none;
}
.projects .searchSec__input {
  width: 210px;
  margin: 0;
}

.article {
  padding: 40px 0;
}
.article .auto__container {
  max-width: 930px;
}
.article__inner-title {
  max-width: 750px;
  margin: 0 auto 40px;
}
.article__inner-title p {
  margin-bottom: 10px;
  font-weight: 500;
}
.article__inner-title h2 {
  text-transform: unset;
  margin-bottom: 30px;
  font-weight: 700;
}
.article__inner-image {
  width: 100%;
  padding-bottom: 53%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}
.article__inner-image:last-child {
  margin: 0;
}
.article__inner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.article__inner-text {
  max-width: 750px;
  margin: 0 auto 40px;
}
.article__inner-text p {
  margin-bottom: 30px;
}
.article__inner-text p:last-child {
  margin: 0;
}
.article__inner-text h6 {
  font-weight: 700;
  margin-bottom: 20px;
}
.article__inner-text h3 {
  margin-bottom: 20px;
  line-height: 100%;
}
.article__inner-quote {
  width: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.article__inner-quote img {
  width: 100%;
}
.article__inner-foot {
  max-width: 750px;
  margin: 0 auto;
}
.article__inner-foot h6 {
  margin-bottom: 15px;
  font-weight: 700;
}
.article__inner-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
.article__inner-social:last-child {
  margin: 0;
}
.article__inner-social a {
  width: 20px;
  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: 20px;
}
.article__inner-social a:last-child {
  margin: 0;
}
.article__inner-social a.sm {
  width: 12px;
}
.article__inner-social a.mid {
  width: 15px;
}
.article__inner-social a img {
  width: 100%;
}

.careers {
  position: relative;
}
.careers__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;
  pointer-events: none;
}
.careers__bg::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(#00000000));
  background: linear-gradient(90deg, #000000, #00000000);
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}
.careers__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.careers__inner {
  position: relative;
  z-index: 2;
  color: #fff;
  min-height: 320px;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.careers__inner-content {
  max-width: 500px;
}
.careers__inner h1 {
  margin-bottom: 20px;
}

.action {
  padding-top: 40px;
}
.action .auto__container {
  max-width: 1140px;
}
.action__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px 40px;
}
.action__inner-title {
  text-align: center;
  padding: 50px 0;
  border-top: 1px solid #e6e5e5;
  border-bottom: 1px solid #e6e5e5;
}
.action__inner h2 {
  margin-bottom: 20px;
}
.actionItem {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  border: 1px solid #e6e5e5;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  padding: 30px 20px;
}
.actionItem::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 110%;
  height: 4px;
  background-color: #c80001;
  content: "";
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.actionItem h5 {
  font-weight: 600;
  color: #c80001;
  margin-bottom: 10px;
}
.actionItem p {
  font-weight: 500;
  line-height: 110%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.values {
  padding-top: 50px;
}
.values.big {
  padding: 35px 0 60px;
}
.values.big .valuesItem {
  border-bottom: unset;
  padding-bottom: 0;
}
.values .auto__container {
  max-width: 1140px;
}
.values__inner-top {
  max-width: 600px;
  margin: 0 auto 30px;
}
.values__inner-title {
  text-align: center;
  margin-bottom: 40px;
}
.values__inner-title:last-child {
  margin: 0;
}
.values__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.values__inner-icon {
  width: 60px;
  height: 60px;
  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 8px;
}
.values__inner-icon img {
  width: 100%;
}
.values__inner h2 {
  margin-bottom: 20px;
}
.valuesItem {
  width: 25%;
  border-right: 1px solid #e6e5e5;
  border-bottom: 1px solid #e6e5e5;
  padding: 0 15px 50px 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;
}
.valuesItem:last-child {
  border-right: unset;
}
.valuesItem__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;
  border-radius: 50%;
  overflow: hidden;
  background-color: #c80001;
  margin-bottom: 20px;
}
.valuesItem__icon img {
  width: 100%;
}
.valuesItem h5 {
  font-weight: 600;
  margin-bottom: 20px;
}
.valuesItem p {
  max-width: 200px;
  margin: 0 auto;
}

.job {
  padding: 40px 0 80px;
}
.job.chal {
  padding: 40px 0 10px;
}
.job .auto__container {
  max-width: 930px;
}
.job__inner-title {
  margin-bottom: 40px;
}
.job__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}
.job__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.job__inner-buttons .button {
  margin-right: 20px;
  padding: 12px 18px;
}
.job__inner-buttons .button:last-child {
  margin: 0;
}
.job__inner-foot {
  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: 40px;
}
.job__inner-foot:last-child {
  margin: 0;
}
.job__inner-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.job__inner-social a {
  width: 20px;
  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: 20px;
}
.job__inner-social a:last-child {
  margin: 0;
}
.job__inner-social a.sm {
  width: 12px;
}
.job__inner-social a.mid {
  width: 15px;
}
.job__inner-social a img {
  width: 100%;
}
.jobInfo {
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid #e6e5e5;
}
.jobInfo:last-child {
  padding: 0;
  margin: 0;
  border: unset;
}
.jobInfo h6 {
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.jobContent {
  margin-bottom: 40px;
}
.jobContent.last h3 {
  text-transform: uppercase;
}
.jobContent h3 {
  font-size: 24px;
  line-height: 28px;
  color: #c80001;
  margin-bottom: 20px;
}
.jobContent p {
  margin-bottom: 30px;
}
.jobContent p:last-child {
  margin: 0;
}
.jobContent ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 30px;
}
.jobContent ul li:last-child {
  margin: 0;
}
.jobContent ul li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background-color: #4d4641;
  border-radius: 50%;
}
.jobImage {
  width: 100%;
  padding-bottom: 53%;
  position: relative;
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}
.jobImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.challanges {
  position: relative;
  background-color: #2c2c2c;
  padding: 0 10px;
}
.challanges__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.challanges__bg-image {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 820px;
  width: 70%;
  height: 100%;
}
.challanges__bg-image::before {
  position: absolute;
  top: 0;
  left: -2px;
  width: 25%;
  height: 100%;
  max-width: 182px;
  background-color: #2c2c2c;
  content: "";
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
  clip-path: polygon(0 0, 0 100%, 100% 0);
}
.challanges__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 45%;
  object-position: 45%;
}
.challanges__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.challanges__bg-shape img {
  height: 100%;
}
.challanges__inner {
  position: relative;
  z-index: 2;
  padding: 90px 0;
  min-height: 320px;
  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;
}
.challanges__inner h1 {
  color: #fff;
  line-height: 95%;
}

.volunteer {
  padding: 60px 0 116px;
  position: relative;
}
.volunteer__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;
  pointer-events: none;
}
.volunteer__bg::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(#00000000));
  background: linear-gradient(90deg, #000000, #00000000);
  z-index: 1;
}
.volunteer__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -o-object-position: 70%;
  object-position: 70%;
}
.volunteer__inner {
  position: relative;
  z-index: 2;
  color: #fff;
}
.volunteer__inner-content {
  max-width: 600px;
}
.volunteer__inner-quote {
  width: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}
.volunteer__inner-quote img {
  width: 100%;
}
.volunteer__inner h2 {
  color: #fff;
  margin-bottom: 20px;
  line-height: 90%;
}
.volunteer__inner h5 {
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 20px;
}
.volunteer__inner p {
  font-weight: 500;
  margin-bottom: 30px;
}

.events {
  padding: 50px 0;
}
.events__inner-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.events__inner-title h2 {
  margin-bottom: 20px;
}
.events__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.events__inner-row.active .eventsItem:nth-child(n+7) {
  display: block;
}
.events__inner-row.active .appealsItem:nth-child(n+7) {
  display: block;
}
.events__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 30px;
}
.events__inner-foot button {
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-transform: uppercase;
  font-family: "proxima-nova", sans-serif;
  color: #c80001;
  font-size: 15px;
  line-height: 18px;
  border: 1px solid #c80001;
  transition: 0.3s ease;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.events__inner-foot button:hover span {
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
.events__inner-foot button.active:hover span {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.events__inner-foot button.active span::before {
  -webkit-transform: translateY(-30%) rotate(-45deg);
  transform: translateY(-30%) rotate(-45deg);
}
.events__inner-foot button b {
  font-weight: 800;
}
.events__inner-foot button span {
  position: relative;
  width: 9px;
  height: 9px;
  margin-left: 10px;
  display: block;
  margin-bottom: 3px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.events__inner-foot button span::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  border-top: 3px solid #c80001;
  border-right: 3px solid #c80001;
  content: "";
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
.eventsItem {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  margin: 10px;
  width: calc(33.3% - 20px);
  border-radius: 8px;
  overflow: hidden;
}
.eventsItem:nth-child(n+7) {
  display: none;
}
.eventsItem__image {
  width: 100%;
  position: relative;
  padding-bottom: 53%;
}
.eventsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.eventsItem__content {
  padding: 30px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.eventsItem__date {
  font-weight: 500;
  margin-bottom: 20px;
  color: #8f8f8f;
}
.eventsItem p {
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eventsItem h3 {
  font-weight: 700;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eventsItem a {
  margin: auto 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  color: #c80001;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
}
.eventsItem a:hover svg {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}
.eventsItem a svg {
  width: 9px;
  height: 9px;
  margin-left: 8px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.events .appealsItem:nth-child(n+7) {
  display: none;
}
.events .appealsItem a {
  color: #6ba8a8;
}

.booking {
  padding: 50px 0 60px;
}
.booking__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;
}
.booking__inner-content {
  width: calc(55% - 15px);
  max-width: 680px;
}
.booking__inner .instant {
  width: calc(45% - 15px);
}
.booking__inner h2 {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 120%;
}

.spotlight {
  padding: 50px 0 60px;
  background-color: #f9f9f9;
}
.spotlight__inner-title {
  margin-bottom: 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.spotlight__inner-title h2 {
  margin-bottom: 20px;
}
.spotlight__inner-title p {
  font-weight: 500;
}
.spotlight__inner-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.spotlight__inner-col {
  width: calc(46% - 8px);
}
.spotlightItem {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
  -webkit-box-shadow: 0px 5px 64px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 5px 64px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}
.spotlightItem:last-child {
  margin: 0;
}
.spotlightItem.big {
  width: calc(54% - 8px);
  max-width: 625px;
  margin: 0;
  position: relative;
  color: #fff;
  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: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.spotlightItem.big .spotlightItem__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.spotlightItem.big .spotlightItem__image::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #000000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000000 10%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}
.spotlightItem.big .spotlightItem__content {
  width: 100%;
  background-color: transparent;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  padding: 30px;
}
.spotlightItem.big .spotlightItem__name span {
  width: 40px;
  height: 40px;
}
.spotlightItem.big .spotlightItem__name p {
  color: rgba(255, 255, 255, 0.85);
}
.spotlightItem.big p {
  font-size: 16px;
}
.spotlightItem:last-child {
  margin: 0;
}
.spotlightItem__image {
  width: 200px;
  height: unset;
  padding-bottom: 20%;
  position: relative;
}
.spotlightItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.spotlightItem__content {
  width: calc(100% - 200px);
  position: relative;
  z-index: 3;
  -webkit-box-shadow: 0 10px 10px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 10px 10px rgba(0, 0, 0, 0.08);
  padding: 20px 30px;
}
.spotlightItem__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}
.spotlightItem__name:last-child {
  margin: 0;
}
.spotlightItem__name span {
  width: 30px;
  height: 30px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
  border-radius: 50%;
}
.spotlightItem__name span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.spotlightItem__name p {
  width: calc(100% - 40px);
  font-weight: 500;
  color: rgba(143, 143, 143, 0.85);
}
.spotlightItem__row {
  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: 10px;
}
.spotlightItem__row p b {
  font-weight: 600;
}
.spotlightItem__progress {
  height: 10px;
  width: 100%;
  background-color: #e6e5e5;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.spotlightItem__progress span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c80001;
  border-radius: 8px;
}
.spotlightItem h4 {
  font-size: 35px;
  line-height: 30px;
  font-weight: 900;
  margin-bottom: 20px;
}
.spotlightItem h6 {
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 18px;
}
.spotlightItem p {
  font-size: 14px;
}

.support {
  position: relative;
  padding: 50px 0;
}
.support__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.support__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  max-width: 674px;
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #2c2c2c), to(#00000000));
  background: linear-gradient(90deg, #2c2c2c 10%, #00000000);
}
.support__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  max-width: 674px;
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #000000), to(#00000000));
  background: linear-gradient(90deg, #000000 10%, #00000000);
}
.support__bg-shape {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  top: 0;
  right: 0;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
.support__bg-shape img {
  height: 100%;
}
.support__bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.support__inner {
  position: relative;
  z-index: 2;
}
.support__inner-content {
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
}
.support__inner-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
}
.support__inner-link:hover svg {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}
.support__inner-link svg {
  width: 9px;
  height: 9px;
  margin-left: 8px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  color: #c80001;
}
.support__inner h2 {
  color: #fff;
  font-size: 50px;
  line-height: 100%;
  margin-bottom: 20px;
}
.support__inner p {
  margin-bottom: 12px;
  font-weight: 500;
}
.supportInput {
  margin-bottom: 100px;
  max-width: 460px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 20px;
  position: relative;
}
.supportInput input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 15px 40px 15px 50px;
  color: #fff;
  font-family: "proxima-nova", sans-serif;
  background-color: transparent;
}
.supportInput input::-webkit-input-placeholder {
  color: #bababa;
}
.supportInput input::-moz-placeholder {
  color: #bababa;
}
.supportInput input:-ms-input-placeholder {
  color: #bababa;
}
.supportInput input::-ms-input-placeholder {
  color: #bababa;
}
.supportInput input::placeholder {
  color: #bababa;
}
.supportInput button {
  width: 14px;
  height: 14px;
  background-color: transparent;
  cursor: pointer;
  color: #e6e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}
.supportInput button svg {
  width: 100%;
  height: 100%;
}

.onboard {
  position: relative;
  padding: 90px 0;
}
.onboard__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.onboard__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.onboard .auto__container {
  max-width: 1000px;
}
.onboard__inner {
  border-radius: 8px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
}
.onboard__content {
  background-color: rgba(107, 168, 168, 0.1);
  border-radius: 8px;
  padding: 30px;
  width: calc(55% - 10px);
  max-width: 470px;
}
.onboard__content h3 {
  margin-bottom: 40px;
  font-weight: 900;
}
.onboard__side {
  width: calc(45% - 10px);
  padding: 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: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
}
.onboard__side .button {
  padding: 14px 21px;
}
.onboard__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.onboard__title h5 {
  font-weight: 700;
}
.onboard__logo {
  width: 110px;
  height: 110px;
  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;
  margin-bottom: 14px;
  border-radius: 50%;
}
.onboard__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.onboard__foot {
  text-align: center;
  max-width: 310px;
}
.onboard__foot p {
  margin-bottom: 20px;
  font-weight: 500;
}
.onboardItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 30px;
}
.onboardItem:last-child {
  margin: 0;
}
.onboardItem__icon {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgba(107, 168, 168, 0.2);
}
.onboardItem__icon img {
  width: 45%;
  max-width: 36px;
}
.onboardItem__text {
  width: calc(100% - 100px);
}
.onboardItem__text h6 {
  color: #4d4641;
  margin-bottom: 8px;
  font-weight: 700;
}
.onboardItem__text p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1180px) {
  .auto__container {
    padding: 0 30px;
  }

  h1.ex {
    font-size: 60px;
    line-height: 80%;
  }

  h4.ex {
    font-size: 80px;
  }

  .banner {
    width: calc(100% - 60px);
  }

  .header__inner-logo {
    width: 100px;
  }

  .nav__inner-links {
    margin-right: 16px;
  }
  .nav__inner-links > li {
    margin-right: 12px;
  }
  .nav__inner-link {
    font-size: 15px;
  }
  .nav__inner-link::before {
    width: 6px;
    height: 6px;
  }

  .hero.big .heroRow {
    padding: 140px 0;
  }
  .hero.uni .heroRow {
    padding: 140px 0;
  }
  .heroNav__item h5 {
    font-size: 18px;
    line-height: 20px;
  }
  .heroRow {
    padding: 90px 0;
  }

  .introItem__inner {
    padding: 30px 20px;
  }
  .introItem p {
    margin-bottom: 20px;
  }

  .searchSec__inner h1 {
    font-size: 50px;
    line-height: 45px;
  }

  .contact {
    padding: 40px 0 40px 50px;
  }
  .contactForm {
    padding: 25px;
  }
  .contactContent a {
    line-height: 22px;
  }
  .contactContent a span {
    width: 32px;
    height: 32px;
    margin-right: 16px;
  }
  .contactContent a p {
    width: calc(100% - 48px);
  }

  .calc__inner-title {
    margin-bottom: 30px;
  }
  .calc__inner-content {
    width: calc(100% - 380px);
  }
  .calcSummary {
    width: 360px;
    padding: 24px 20px;
  }
  .calcSummary__top {
    padding: 15px;
    margin-bottom: 20px;
  }
  .calcSummary__foot {
    margin-bottom: 20px;
  }

  .spotlight__inner-col {
    width: calc(48% - 8px);
  }
  .spotlightItem.big {
    width: calc(52% - 8px);
  }
  .spotlightItem.big .spotlightItem__content {
    padding: 30px 20px;
  }
  .spotlightItem__content {
    padding: 20px;
  }

  .onboard {
    padding: 70px 0;
  }

  .team__inner .slick-prev {
    left: -8px;
  }
  .team__inner .slick-next {
    right: -8px;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }

  h1.ex {
    font-size: 55px;
  }

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

  h4.ex {
    font-size: 70px;
  }

  .breadcrumbs {
    display: none;
  }

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

  .main {
    padding-top: 60px;
  }

  .header {
    padding: 0;
    background-color: #fff;
  }
  .header.big {
    background-color: #fff;
  }
  .header.big .header__inner {
    padding: 0;
    height: 60px;
    border: unset;
  }
  .header.big .header__inner-logo img {
    opacity: 1;
  }
  .header.big .header__inner-logo img.light {
    opacity: 0;
  }
  .header.big .nav__inner-link {
    color: #4d4641;
  }
  .header.big .nav__inner-link::before {
    border-color: #4d4641;
  }
  .header.big .nav__inner-buttons::before {
    background-color: #4d4641;
  }
  .header.big .searchBtn svg {
    color: #4d4641;
  }
  .header.big .basketBtn__icon {
    color: #4d4641;
  }
  .header.sticky {
    -webkit-box-shadow: 0px 5px 8px 0px #00000021;
    box-shadow: 0px 5px 8px 0px #00000021;
  }
  .header__inner {
    background-color: transparent;
    border-radius: unset;
    height: 60px;
    -webkit-box-shadow: unset;
    box-shadow: unset;
  }
  .header__inner-main {
    width: unset;
  }
  .header__inner-buttons > .button {
    display: none;
  }
  
  .lang {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
  }
  .lang::before {
    top: 11px;
  }
  .lang__inner {
    width: 100%;
  }
  .lang .dropMenu {
    padding: 0 15px;
  }
  .lang .dropMenu.active {
    padding: 20px 15px 0;
  }
  .lang .dropMenu li {
    margin-bottom: 10px;
  }
  
  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: 440px;
    z-index: 1;
    padding: 30px 20px 30px 20px;
    height: 100%;
    overflow-y: auto;
    background: #fff;
  }
  .nav__inner-links {
    width: 100%;
    max-width: unset;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .nav__inner-links.active {
    padding-top: 20px;
  }
  .nav__inner-links > li {
    width: 100%;
    margin: 0 0 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .nav__inner-link {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 20px;
    padding: 20px 20px 20px 0;
    border-bottom: 1px solid #e6e5e5;
    text-transform: uppercase;
    font-weight: 800;
  }
  .nav__inner-link:hover::before {
    -webkit-transform: translateY(-60%) rotate(135deg);
    transform: translateY(-60%) rotate(135deg);
  }
  .nav__inner-link.active::before {
    -webkit-transform: translateY(-60%) rotate(-45deg);
    transform: translateY(-60%) rotate(-45deg);
  }
  .nav__inner-link::before {
    width: 10px;
    height: 10px;
    border-color: #c80001;
  }
  .nav__inner-buttons {
    width: 100%;
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .nav__inner-buttons::before {
    display: none;
    padding: 0;
  }
  .nav__inner-buttons .search {
    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;
    margin: 0 0 20px 0;
  }
  .nav__inner-buttons .search.active .dropMenu {
    width: 100%;
    display: block;
  }
  .nav__inner-buttons .search__top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #e6e5e5;
  }
  .nav__inner-buttons .search__top h6 {
    display: block;
    font-size: 18px;
    line-height: 20px;
    font-weight: 800;
  }
  .nav__inner-buttons .search__form input {
    border: 1px solid #e6e5e5;
  }
  .nav__inner-buttons .searchBtn svg {
    color: #c80001;
  }
  .nav__inner-buttons .button {
    width: calc(50% - 10px);
  }
  .nav__inner-close {
    position: absolute;
    top: 30px;
    left: 20px;
    display: none;
    font-size: 12px;
    line-height: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 15px;
    color: #6ba8a8;
  }
  .nav__inner-close::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    border-top: 2px solid #6ba8a8;
    border-right: 2px solid #6ba8a8;
    content: "";
    -webkit-transform: translateY(-60%) rotate(-135deg);
    transform: translateY(-60%) rotate(-135deg);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .nav__inner-foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .nav__inner-foot h6 {
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color: #c80001;
    margin-bottom: 20px;
    text-transform: capitalize;
  }
  .nav__inner-foot a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    color: #4d4641;
  }
  .nav__inner-foot a:last-child {
    margin: 0;
  }
  .nav__inner-foot a span {
    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-right: 10px;
  }
  .nav__inner-foot a span img {
    width: 100%;
  }
  .nav__inner-foot a p {
    width: calc(100% - 36px);
  }

  .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: 40px;
    height: 40px;
    margin-left: 20px;
    border-radius: 50%;
    background-color: #c80001;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 32%;
    width: 51%;
    height: 2px;
    background-color: #fff;
    -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: 51%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    border-radius: 3px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .burger::after {
    bottom: 32%;
    width: 51%;
    height: 2px;
    background-color: #fff;
    -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: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: static;
  }
  .drop.active .nav__inner-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .dropMenu {
    position: static;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    z-index: 2;
    background-color: transparent;
    padding: 20px 0 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  .dropMenu.big {
    width: 100%;
  }
  .dropMenu.active {
    display: block;
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
  }
  .dropMenu__image {
    display: none;
  }
  .dropMenu__inner {
    background-color: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .dropMenu__inner::before {
    display: none;
  }
  .dropMenu__list {
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }
  .dropMenu__list:last-child {
    margin: 0;
  }
  .dropMenu__list h6 {
    text-decoration: underline;
    color: #24201d;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .dropMenu__list a,
  .dropMenu__list button {
    font-size: 15px;
    line-height: 20px;
    position: relative;
    background-color: unset;
    color: #24201d;
  }
  .dropMenu__list a:hover,
  .dropMenu__list button:hover {
    background-color: unset;
  }
  .dropMenu li {
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .hero.sm .hero__bg::after {
    background: -webkit-gradient(linear, left top, left bottom, from(#00000090), to(#00000000));
    background: linear-gradient(180deg, #00000090, #00000000);
  }
  .hero.sm .heroRow {
    padding: 60px 0;
  }
  .heroMain__inner {
    padding: 60px 0 40px;
  }
  .heroMain__inner-row {
    margin-bottom: 40px;
  }
  .heroItem__inner {
    padding: 60px 0 136px;
  }
  .heroNav__item h5 {
    font-size: 16px;
    line-height: 18px;
  }

  .footerCopy a,
  .footerCopy p {
    font-size: 14px;
    line-height: 20px;
  }

  .contact {
    padding: 40px 0;
  }
  .contact__shape {
    display: none;
  }

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

  .voice.syr {
    padding: 40px 0;
  }
  .voice__inner p {
    font-size: 14px;
    line-height: 20px;
  }

  .spotlight__inner-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .spotlight__inner-col {
    width: 100%;
    max-width: unset;
  }
  .spotlightItem.big {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .spotlightItem.big .spotlightItem__content {
    min-height: 540px;
    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: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .checkout {
    padding: 35px 0;
  }

  .thanks__inner {
    min-height: calc(100vh - 60px);
  }
}
@media (max-width: 930px) {
  h1 {
    font-size: 50px;
    line-height: 40px;
  }
  h1.sm {
    font-size: 40px;
    line-height: 35px;
  }
  h1.ex {
    font-size: 50px;
  }

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

  h4.ex {
    font-size: 60px;
  }

  .hero.big .heroRow {
    padding: 100px 0;
  }
  .heroItem__inner {
    padding: 40px 0;
  }
  .heroMain__inner {
    padding: 40px 0;
  }
  .heroMain__inner-row {
    margin-bottom: 0;
  }
  .heroNav {
    display: none;
  }
  .heroRow {
    padding: 60px 0;
  }

  .appeals {
    padding: 40px 0;
  }
  .appeals__inner-title {
    margin-bottom: 24px;
  }
  .appeals__inner-row.slider {
    padding-bottom: 40px;
    position: relative;
  }
  .appeals__inner-row .slick-list {
    overflow: visible !important;
  }
  .appeals__inner-row .slick-dots {
    bottom: 0;
    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;
  }
  .appeals__inner-row .slick-dots li {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 15px 0 0;
    background-color: #fff;
    border: 1px solid #c80001;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .appeals__inner-row .slick-dots li.slick-active {
    background-color: #c80001;
  }
  .appeals__inner-row .slick-dots li:last-child {
    margin: 0;
  }
  .appeals__inner-row .slick-dots li button {
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 0;
    background-color: transparent;
  }
  .appeals__inner-row .slick-dots li button::before {
    display: none;
  }
  .appealsItem {
    width: calc(50% - 20px);
  }

  .impact {
    padding: 40px 0;
  }
  .impact__inner-row {
    margin: 0 -20px 40px !important;
  }
  .impact__inner-row hr {
    height: 190px;
  }
  .impactItem h3 {
    font-size: 20px;
    line-height: 120%;
  }

  .intro {
    position: relative;
  }
  .intro.big .introItem__inner {
    padding: 60px 20px;
  }
  .intro.big .introItem h2 {
    position: static;
    opacity: 1;
  }
  .intro .slick-track {
    -webkit-transform: initial !important;
    transform: initial !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .intro__inner-foot {
    position: absolute;
    bottom: 0;
    left: 0;
    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;
    background-color: #6ba8a8;
    padding: 10px 20px;
  }
  .intro__inner-foot button {
    background-color: unset;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: "proxima-nova", sans-serif;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    cursor: pointer;
  }
  .intro__inner-foot button.slick-disabled {
    opacity: 0;
    visibility: hidden;
  }
  .intro__inner-foot button.prev svg {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    margin: 0 8px 0 0;
  }
  .intro__inner-foot button svg {
    width: 12px;
    height: 12px;
    margin-left: 8px;
  }
  .introItem {
    width: auto;
    position: relative !important;
    min-width: unset;
  }
  .introItem.slick-current {
    min-width: 100% !important;
    left: 0 !important;
  }
  .introItem__overlay::before {
    height: 90%;
  }
  .introItem__inner {
    padding: 60px 20px;
  }

  .help {
    padding: 50px 0 40px;
  }
  .help__inner-slider {
    padding-bottom: 40px;
  }
  .help__inner .slick-dots {
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .help__inner .slick-dots li {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 8px 0 0;
    background-color: #fff;
    border: 1px solid #c80001;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .help__inner .slick-dots li.slick-active {
    background-color: #c80001;
  }
  .help__inner .slick-dots li:last-child {
    margin: 0;
  }
  .help__inner .slick-dots li button {
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 0;
    background-color: transparent;
  }
  .help__inner .slick-dots li button::before {
    display: none;
  }

  .join {
    padding: 50px 0;
  }

  .footer__inner-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer__inner-main {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .footer__inner-links {
    width: calc(50% - 12px);
  }
  .footer__inner-partners {
    width: calc(50% - 12px);
  }

  .donation {
    padding-bottom: 40px;
  }
  .donationItem {
    width: calc(50% - 20px);
  }

  .searchSec__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .searchSec__inner-title {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .searchSec__inner-content {
    width: 100%;
    max-width: unset;
  }
  .searchSec__inner h1 {
    font-size: 40px;
    line-height: 35px;
  }
  .searchSec__inner h1 br {
    display: none;
  }

  .projects__inner-title {
    margin-bottom: 30px;
  }

  .reportsItem {
    width: calc(50% - 20px);
  }

  .calc__inner {
    padding: 30px 0;
    width: 100%;
    max-width: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .calc__inner-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }
  .calcForm .input__outer {
    max-width: unset;
    width: calc(50% - 10px);
  }
  .calcSummary {
    width: 100%;
    max-width: unset;
    position: static;
    margin-bottom: 0;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .calcSummary.mob {
    display: block;
    margin-bottom: 30px;
    padding: 20px;
  }
  .calcSummary.mob .calcSummary__top {
    display: block;
  }
  .calcSummary__top {
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
    display: none;
  }
  .calcSummary__body {
    width: 100%;
    margin-bottom: 30px;
  }
  .calcSummary__body-row {
    margin-bottom: 30px;
  }
  .calcSummary__foot {
    width: 100%;
    margin-bottom: 40px;
  }

  .action {
    padding-top: 30px;
  }
  .action__inner-row {
    margin: 0 -6px 30px;
  }
  .action__inner-title {
    padding: 40px 0;
  }
  .actionItem {
    width: calc(33.3% - 12px);
    margin: 6px;
    padding: 20px 10px;
  }

  .values__inner-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .valuesItem {
    width: 50%;
    padding: 0 20px 35px 20px;
  }
  .valuesItem:nth-child(even) {
    border-right: unset;
  }
  .valuesItem:nth-child(n+3) {
    padding-top: 35px;
  }
  .valuesItem p {
    max-width: 340px;
  }

  .place {
    padding-bottom: 10px;
  }
  .place .auto__container {
    padding: 0;
  }
  .place__inner-swiper {
    display: block !important;
    margin: 0 -10px;
  }
  .place__inner-swiper .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .place__inner-swiper .slick-slide {
    height: unset !important;
    margin: 0 1px;
  }
  .place__inner-swiper .slick-list {
    overflow: visible !important;
  }
  .place__inner-slider {
    margin-bottom: 3px !important;
  }
  .place__inner-slider .slick-track {
    -webkit-transform: initial !important;
    transform: initial !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .placeItem {
    width: auto;
    position: relative !important;
    min-width: unset;
  }
  .placeItem:nth-child(n+4) {
    display: block !important;
  }
  .placeItem.slick-current {
    min-width: 100% !important;
    left: 0 !important;
  }
  .placeItem__link {
    display: none;
  }
  .placeItem__image {
    height: 400px;
  }
  .placeItem__number {
    font-size: 20px;
    line-height: 100%;
  }
  .placeCard.slick-current .placeCard__inner {
    border-color: #c80001;
  }
  .placeCard__inner {
    width: 100%;
    position: relative;
    padding-bottom: 66%;
    border: 2px solid transparent;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .placeCard__inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
  }

  .job__inner-row {
    margin-bottom: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .jobInfo {
    margin-right: 24px;
    padding-right: 24px;
  }
  .jobContent {
    margin-bottom: 30px;
  }

  .volunteer {
    padding: 50px 0 70px;
  }

  .eventsItem {
    width: calc(50% - 20px);
  }

  .booking {
    padding: 30px 0 40px;
  }
  .booking__inner {
    -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;
  }
  .booking__inner-content {
    width: 100%;
    max-width: unset;
  }
  .booking__inner .instant {
    width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 30px;
  }

  .challanges__inner h1 {
    font-size: 40px;
  }

  .voice__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .voice__inner p {
    font-size: 16px;
    line-height: 24px;
  }
  .voiceImage {
    width: 100%;
    max-width: unset;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .voiceContent {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }

  .onboard {
    padding: 50px 0;
  }
  .onboard__content {
    padding: 20px;
  }
  .onboard__side {
    padding: 30px 20px;
  }
}
@media (max-width: 750px) {
  h2.sm {
    font-size: 25px;
    line-height: 30px;
  }

  .auto__container {
    padding: 0 20px;
  }

  .banner {
    width: calc(100% - 40px);
    border-radius: 8px;
  }

  .hero.big .hero__bg {
    height: 100%;
  }
  .hero.big .hero__bg img {
    -o-object-position: 65%;
    object-position: 65%;
  }
  .hero.big .heroRow {
    padding: 0;
  }
  .hero.big .heroRow__content {
    min-height: calc(100vh - 60px);
    padding: 30px 0 80px;
    margin: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .hero.sm .heroRow {
    padding: 0;
  }
  .hero.sm .heroRow__content {
    max-width: unset;
  }
  .hero.sm .heroRow__content h1 {
    margin: 0;
  }
  .hero.uni .hero__bg {
    height: 100%;
  }
  .hero.uni .hero__bg img {
    -o-object-position: 65%;
    object-position: 65%;
  }
  .hero.uni .heroRow {
    padding: 0;
  }
  .hero.uni .heroRow__content {
    min-height: 660px;
    padding: 30px 0;
    margin: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: unset;
  }
  .hero__bg {
    height: 400px;
  }
  .hero__bg::before {
    top: unset;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #000000), to(#00000000));
    background: linear-gradient(360deg, #000000 10%, #00000000);
  }
  .hero__slider {
    position: relative !important;
  }
  .hero__slider .slick-dots {
    top: unset !important;
    bottom: 347px !important;
    position: absolute;
    bottom: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 20px;
  }
  .hero__slider .slick-dots li {
    width: 10px;
    height: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    background-color: #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    border-radius: 50%;
    margin-right: 8px;
  }
  .hero__slider .slick-dots li:last-child {
    margin: 0;
  }
  .hero__slider .slick-dots li.slick-active {
    background-color: #c80001;
    width: 25px;
    border-radius: 5px;
  }
  .hero__slider .slick-dots li button {
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    cursor: pointer;
  }
  .hero__slider .slick-dots li button::before {
    display: none;
  }
  .heroItem__bg::before {
    display: none;
  }
  .heroItem__bg::after {
    top: unset;
    bottom: 0;
    height: 60%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #000000), to(#00000000));
    background: linear-gradient(360deg, #000000 10%, #00000000);
    opacity: 1;
  }
  .heroItem__inner {
    min-height: calc(100vh - 56px);
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 95px 0;
  }
  .heroItem__inner-content {
    width: 100%;
  }
  .heroItem__inner h1 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .heroItem__inner p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .heroMain__inner {
    padding: 20px 0;
  }
  .heroMain__inner-row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .heroMain__inner .instant {
    width: 100%;
  }
  .heroRow {
    -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;
    padding: 0;
  }
  .heroRow__content {
    width: 100%;
    min-height: 400px;
    padding: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 20px;
  }
  .heroRow__content h1.last {
    margin-bottom: 30px;
  }
  .heroRow__content p.mobRem {
    display: none;
  }
  .heroRow .instant {
    width: 100%;
    margin: 0 auto;
  }

  .impact__inner-row {
    margin: 0 0 15px 0 !important;
    padding-bottom: 40px;
    position: relative;
  }
  .impact__inner-row hr {
    display: none !important;
  }
  .impact__inner .slick-list {
    overflow: visible !important;
  }
  .impact__inner .slick-dots {
    bottom: 0;
    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;
  }
  .impact__inner .slick-dots li {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 15px 0 0;
    background-color: #fff;
    border: 1px solid #c80001;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .impact__inner .slick-dots li.slick-active {
    background-color: #c80001;
  }
  .impact__inner .slick-dots li:last-child {
    margin: 0;
  }
  .impact__inner .slick-dots li button {
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 0;
    background-color: transparent;
  }
  .impact__inner .slick-dots li button::before {
    display: none;
  }
  .impactItem {
    max-width: unset;
  }

  .footer {
    padding: 0 0 80px;
  }
  .footer__inner {
    padding-top: 34px;
    border-top: 1px solid #e6e5e5;
  }
  .footer__inner-links {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .footer__inner-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__inner-main h2 {
    margin-bottom: 30px;
  }
  .footer__inner-partners {
    width: 100%;
    max-width: unset;
  }
  .footer__inner-partners h5 {
    text-align: center;
    margin-bottom: 20px;
  }
  .footer__inner-col {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .footer__inner-col:last-child {
    display: none;
  }
  .footer__inner-row {
    margin-bottom: 30px;
  }
  .footerLogo {
    width: calc(20% - 4px);
    height: 30px;
    margin: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footerLogo.big {
    height: 40px;
  }
  .footerLogo:first-child {
    height: 23px;
  }
  .footerLogo__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
  }
  .footerCopy__terms {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footerCopy__terms a {
    margin-right: 20px;
  }
  .footerCopy__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .footerCopy__row p {
    width: 100%;
    margin-bottom: 30px;
  }

  .article__inner h2 {
    font-size: 30px;
    line-height: 100%;
  }

  .calc {
    overflow: hidden;
  }
  .calc__inner {
    padding: 30px 0 0;
  }
  .calc__inner-title {
    margin-bottom: 30px;
  }
  .calcForm {
    padding: 30px 20px;
  }
  .calcForm__title {
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .calcForm__title h6 {
    width: 100%;
    margin-bottom: 20px;
  }
  .calcForm__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .calcForm__foot {
    margin-bottom: 30px;
  }
  .calcForm .input__outer {
    width: 100%;
    max-width: unset;
    margin: 0 0 30px 0;
  }
  .calcForm .input__outer:last-child {
    margin: 0;
  }
  .calcSummary {
    padding: 20px 30px;
  }
  .calcSummary__body {
    margin-bottom: 20px;
  }
  .calcSummary__body-row {
    margin-bottom: 20px;
  }
  .calcSummary__foot {
    margin-bottom: 20px;
  }

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

  .actionItem {
    width: calc(50% - 12px);
  }

  .job {
    padding: 30px 0 50px;
  }
  .job.chal {
    padding: 30px 0 20px;
  }
  .job__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .job__inner-foot {
    -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;
  }
  .job__inner-social {
    margin-top: 40px;
  }
  .jobInfo {
    width: 100%;
    max-width: unset;
    margin: 0 0 20px 0;
    padding: 0;
    border: unset;
  }
  .jobInfo:last-child {
    margin: 0;
  }

  .contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contactContent {
    width: 100%;
    max-width: unset;
    margin-bottom: 40px;
  }
  .contactContent a {
    line-height: 25px;
  }
  .contactContent a span {
    width: 42px;
    height: 42px;
    margin-right: 30px;
  }
  .contactContent a p {
    width: calc(100% - 72px);
  }
  .contactForm {
    width: 100%;
    max-width: unset;
  }

  .onboard {
    padding: 20px 0;
  }
  .onboard__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 20px 40px 20px;
  }
  .onboard__content {
    padding: 20px;
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .onboard__side {
    width: 100%;
    max-width: unset;
    padding: 0 20px;
  }
  .onboard__title {
    margin-bottom: 100px;
  }

  .thanks__bg::before {
    display: none;
  }
  .thanks__bg::after {
    top: unset;
    bottom: 0;
    height: 60%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #000000), to(#00000000));
    background: linear-gradient(360deg, #000000 10%, #00000000);
  }
  .thanks__inner {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 40px 0;
  }

  .team__inner .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .team__inner .slick-arrow::before {
    width: 6px;
    height: 6px;
  }
  .team__inner .slick-prev {
    left: -5px;
  }
  .team__inner .slick-next {
    right: -5px;
  }
}
@media (max-width: 650px) {
  .appeals {
    padding: 30px 0 40px;
  }
  .appeals.light {
    padding: 40px 0;
  }
  .appeals__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  .appeals__inner-row.slider {
    margin: 0 -10px;
  }
  .appeals__inner-row .slick-slide {
    margin: 0 10px;
  }
  .appeals__inner-foot {
    padding-top: 40px;
  }
  .appealsItem {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .appealsItem:last-child {
    margin: 0;
  }

  .donation {
    padding: 65px 0 40px;
  }
  .donation__inner-title {
    margin-bottom: 40px;
  }
  .donation__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  .donation__inner h2 {
    margin-bottom: 24px;
  }
  .donationItem {
    width: 100%;
    margin: 0 0 20px 0;
    min-height: 275px;
  }
  .donationItem:last-child {
    margin: 0;
  }

  .projects__inner-title.row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .projects__inner-title.row h2 {
    margin-bottom: 20px;
  }
  .projects__inner-tabs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .projects__inner-tabs button {
    font-size: 14px;
    line-height: 18px;
    margin-right: 10px;
    padding-bottom: 16px;
  }
  .projects__inner-tabs button:nth-child(n+5) {
    display: none;
  }
  .projects__inner-tabs button:nth-child(4) {
    margin: 0;
  }
  .projects__inner-row {
    margin: 0;
  }
  .projects__inner-row.active .appealsItem:nth-child(n+6) {
    display: block;
  }
  .projects__inner-row.active .appealsItem:nth-child(5) {
    margin: 0 0 20px 0;
  }
  .projects__inner-foot {
    padding-top: 40px;
  }
  .projects .appealsItem:nth-child(n+6) {
    display: none;
  }
  .projects .appealsItem:nth-child(5) {
    margin: 0;
  }

  .reports {
    padding: 30px 0;
  }
  .reports__inner-title {
    text-align: start;
  }
  .reports__inner-row {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .reports__inner h2 {
    font-size: 30px;
    line-height: 35px;
  }
  .reportsItem {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .reportsItem:last-child {
    margin: 0;
  }

  .team {
    padding: 40px 0;
  }
  .team__inner .slick-list {
    padding: 0 20px !important;
    overflow: visible !important;
  }
  .team__inner .slick-prev {
    left: 16px;
  }
  .team__inner .slick-next {
    right: 16px;
  }

  .events {
    padding: 30px 0;
  }
  .events__inner-row {
    margin: 0;
  }
  .events__inner-row.active .eventsItem:nth-child(n+5) {
    display: block;
  }
  .events__inner-row.active .eventsItem:nth-child(4) {
    margin: 0 0 20px 0;
  }
  .events__inner-row.active .eventsItem:last-child {
    margin: 0;
  }
  .events__inner-row.active .appealsItem:nth-child(n+6) {
    display: none;
  }
  .events__inner-row.active .appealsItem:nth-child(5) {
    margin: 0 0 20px 0;
  }
  .events__inner-row.active .appealsItem:last-child {
    margin: 0;
  }
  .events__inner-foot {
    padding-top: 40px;
  }
  .eventsItem {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .eventsItem:nth-child(n+5) {
    display: none;
  }
  .eventsItem:nth-child(4) {
    margin: 0;
  }
  .eventsItem h3 {
    display: block;
  }
  .events .appealsItem:nth-child(n+6) {
    display: none;
  }
  .events .appealsItem:nth-child(5) {
    margin: 0;
  }

  .challanges__bg-image {
    width: 50%;
  }
  .challanges__inner h1 {
    font-size: 35px;
  }
  
  .direct-debit-buttons {
    flex-direction: column;
  }

  .direct-debit-buttons > *:not(:last-child) {
    margin-bottom: 10px; /* Adds space between items */
  }

  .direct-debit-buttons a span {
    padding-left: 10px !important;
  }
}
@media (max-width: 540px) {
  h2.sm {
    font-size: 22px;
    line-height: 25px;
  }

  h4.ex {
    font-size: 95px;
  }

  .basket__inner-head {
    padding: 20px 30px;
  }
  .basket__inner-content {
    padding: 0 30px;
  }
  .basket__total {
    padding: 22px 30px;
  }

  .check {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .check__box {
    margin-top: 3px;
  }

  .tool {
    margin-left: 16px;
  }
  .tool__tip {
    font-size: 11px;
    line-height: 14px;
    padding: 8px 12px;
    width: 140px;
  }

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

  .difference {
    padding: 100px 0;
  }
  .difference__inner-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 0 30px;
  }
  .difference__inner-content p {
    margin-bottom: 20px;
  }

  .impact__inner-row {
    margin: 0 0 30px 0 !important;
    padding: 0 25px 40px;
  }
  .impactItem {
    border: unset;
    padding: 0 10px;
  }
  .impactItem h3 {
    font-size: 25px;
  }

  .join {
    padding: 0 0 40px;
    overflow: visible;
  }
  .join.big {
    padding-top: 20px;
  }
  .join__bg {
    display: none;
  }
  .joinForm {
    width: 100%;
    max-width: unset;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
  }

  .footerCopy {
    padding-top: 40px;
  }
  .footerCopy__terms {
    -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;
    margin-bottom: 30px;
  }
  .footerCopy__terms a {
    margin: 0 0 20px 0;
  }
  .footerCopy__terms a:last-child {
    margin-right: 0;
  }
  .footerCopy__row p {
    margin-bottom: 50px;
  }
  .footerCopy a,
  .footerCopy p {
    font-size: 16px;
    line-height: 20px;
  }
  .footerLogo {
    width: calc(33.3% - 10px);
    margin: 5px;
  }
  .footerLogo__row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .faq {
    padding: 40px 0;
  }
  .faq.new {
    padding: 40px 0 20px;
  }
  .faq.new .faq__inner-title {
    text-align: start;
  }
  .faq__inner-title {
    margin-bottom: 10px;
  }

  .voice.syr {
    padding: 40px 0 20px;
  }
  .voice__inner h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .placeItem__image {
    height: 285px;
  }

  .searchSec {
    padding: 20px 0 60px;
  }
  .searchSec__inner-cause {
    margin-bottom: 40px;
  }
  .searchSec__inner-links {
    margin-bottom: 40px;
  }
  .searchSec__inner-col {
    max-width: 163px;
    width: calc(50% - 6px);
  }
  .searchSec__tag {
    width: calc(50% - 20px);
  }
  .searchSec__tag span {
    padding: 10px;
  }

  .careers.new .careers__bg {
    position: absolute;
    height: 100%;
  }
  .careers.new .careers__bg::before {
    display: block;
    width: 80%;
  }
  .careers.new .careers__inner {
    color: #fff;
    padding: 40px 0;
    min-height: 320px;
  }
  .careers.new .careers__inner h1,
  .careers.new .careers__inner h2 {
    color: #fff;
  }
  .careers.new .careers__inner h1 {
    font-size: 40px;
  }
  .careers__bg {
    position: relative;
    height: 320px;
  }
  .careers__bg::before {
    display: none;
  }
  .careers__bg img {
    -o-object-position: 70%;
    object-position: 70%;
  }
  .careers__inner {
    color: #4d4641;
    padding: 0;
    padding-top: 20px;
    min-height: unset;
  }
  .careers__inner h2 {
    color: #2c2c2c;
  }

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

  .action__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  .actionItem {
    width: 100%;
    margin: 0 0 25px 0;
    padding: 30px 20px;
  }
  .actionItem:last-child {
    margin: 0;
  }

  .values {
    padding-top: 40px;
  }
  .values.big {
    padding: 40px 0;
  }
  .values.big .values__inner {
    padding: 0;
    border: unset;
  }
  .values.big h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .values__inner {
    padding-bottom: 40px;
    border-bottom: 1px solid #e6e5e5;
  }
  .values__inner-top {
    margin-bottom: 40px;
  }
  .values__inner-title {
    margin-bottom: 30px;
  }
  .values__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .valuesItem {
    width: 100%;
    border: unset !important;
    padding: 0 !important;
    margin-bottom: 50px;
  }
  .valuesItem:last-child {
    margin: 0;
  }

  .volunteer {
    padding: 0 0 30px;
    background-color: #2c2c2c;
  }
  .volunteer__bg {
    position: relative;
    width: 100%;
    height: unset;
    padding-bottom: 75%;
  }
  .volunteer__bg::before {
    top: unset;
    bottom: -20px;
    width: 100%;
    height: 90%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #2c2c2c), to(#00000000));
    background: linear-gradient(360deg, #2c2c2c 10%, #00000000);
  }
  .volunteer__bg img {
    position: absolute;
    top: 0;
    left: 0;
  }
  .volunteer__inner h2 {
    font-size: 35px;
    line-height: 30px;
  }

  .application {
    padding: 30px 0 40px;
  }
  .application__bg {
    display: none;
  }
  .applicationForm {
    padding: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
  }

  .contact {
    padding: 30px 0 20px;
  }
  .contactForm {
    padding: 20px 20px 30px;
  }
  .contactForm .input__outer:nth-child(n+3) {
    width: calc(100% - 20px);
  }

  .booking {
    padding: 20px 0 40px;
  }
  .booking__inner-content h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .spotlight {
    padding: 30px 0;
  }
  .spotlight__inner-title {
    margin-bottom: 30px;
  }
  .spotlightItem.big {
    margin-bottom: 20px;
  }
  .spotlightItem.big .spotlightItem__content {
    min-height: 360px;
  }
  .spotlightItem.big .spotlightItem__image::before {
    height: 80%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(15%, #000000), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, #000000 15%, rgba(0, 0, 0, 0) 100%);
  }
  .spotlightItem.big .spotlightItem__name {
    margin-bottom: 15px;
  }
  .spotlightItem.big .spotlightItem__name p {
    font-size: 16px;
    line-height: 24px;
  }
  .spotlightItem.big .spotlightItem__row {
    margin-bottom: 10px;
  }
  .spotlightItem.big .spotlightItem__row p {
    font-size: 16px;
    line-height: 24px;
  }
  .spotlightItem.big .spotlightItem__progress {
    height: 10px;
  }
  .spotlightItem__image {
    width: 144px;
  }
  .spotlightItem__content {
    width: calc(100% - 144px);
    padding: 12px 20px;
  }
  .spotlightItem__name {
    margin-bottom: 10px;
  }
  .spotlightItem__name span {
    width: 22px;
    height: 22px;
    margin-right: 8px;
  }
  .spotlightItem__name p {
    font-size: 14px;
    line-height: 18px;
    width: calc(100% - 30px);
  }
  .spotlightItem__row {
    margin-bottom: 6px;
  }
  .spotlightItem__row p {
    font-size: 12px;
    line-height: 16px;
  }
  .spotlightItem__progress {
    height: 7px;
  }
  .spotlightItem h4 {
    font-size: 25px;
    line-height: 100%;
    margin-bottom: 15px;
  }
  .spotlightItem h6 {
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 10px;
  }

  .support {
    padding: 0;
  }
  .support__bg::before {
    width: 100%;
    height: 80%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #000000), to(#00000000));
    background: linear-gradient(180deg, #000000 10%, #00000000);
  }
  .support__bg::after {
    width: 100%;
    height: 80%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #2c2c2c), to(#00000000));
    background: linear-gradient(180deg, #2c2c2c 10%, #00000000);
  }
  .support__bg-shape {
    display: none;
  }
  .support__bg img {
    -o-object-position: 80%;
    object-position: 80%;
  }
  .support__inner {
    min-height: 440px;
    padding: 30px 0 50px;
  }
  .support__inner h2 {
    font-size: 40px;
    line-height: 35px;
    margin-bottom: 30px;
  }
  .supportInput {
    margin-bottom: 40px;
  }

  .checkout {
    padding: 0;
  }
  .checkout .auto__container {
    padding: 0;
  }
  .checkout__bg {
    display: none;
  }
  .checkout__inner {
    padding: 30px 20px 35px;
    min-height: calc(100vh - 60px);
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border-radius: unset;
  }
  .checkout__group {
    padding-bottom: 30px;
  }
  .checkout__tab-date {
    -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;
  }
  .checkout__tab-date p {
    margin-bottom: 15px;
  }

  .gift {
    padding: 20px 20px 30px;
  }
}
@media (max-width: 380px) {
  .applicationForm .input__outer {
    width: 100%;
  }

  .contactContent a {
    line-height: 22px;
  }
  .contactContent a span {
    width: 32px;
    height: 32px;
    margin-right: 16px;
  }
  .contactContent a p {
    width: calc(100% - 48px);
  }
  .contactForm .input__outer:nth-child(n) {
    width: calc(100% - 20px);
  }

  .team__inner .slick-list {
    padding: 0 !important;
  }
  .teamItem {
    padding: 20px;
  }

  .job__inner-buttons {
    -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;
  }
  .job__inner-buttons .button {
    margin: 0 0 20px 0;
  }
  .job__inner-buttons .button:last-child {
    margin: 0;
  }

  .challanges__bg-image {
    width: 50%;
  }
  .challanges__inner {
    min-height: 280px;
  }
  .challanges__inner h1 {
    font-size: 28px;
  }

  .spotlightItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .spotlightItem__image {
    width: 100%;
    height: 236px;
  }
  .spotlightItem__content {
    width: 100%;
    padding: 20px;
  }

  .checkout__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .checkout__row .input__outer {
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }
  .checkout__row .input__outer:last-child {
    margin: 0;
  }
  .checkoutBasket__item {
    -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;
  }
  .checkoutBasket__item .check {
    width: 100%;
  }
  .checkoutBasket__item .enterAmount {
    margin-top: 10px;
  }

  .paymentInfo .input__outer {
    width: 100% !important;
  }
  .paymentInfo .input__outer.w-25 {
    width: calc(50% - 20px) !important;
  }
  .paymentInfo .input__outer.w-20 {
    width: calc(50% - 20px) !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;
}

.validator {
  width: 100% !important;
}

.iti {
  width: -webkit-fill-available;
}

#phone {
  padding-left: 50px;
}

.paymentTestCreds {
  background: bisque;
  margin-top: 20px;
  padding: 10px;
}

/* DirectDebit Guarantee */
.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;
}

.direct-debit-buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.direct-debit-buttons a span {
  padding-left: 4px;
}

/*umbraco forms css*/

.umbraco-forms-field {
  width: calc(50% - 5px);
}

.umbraco-forms-field.dataconsent {
  width: -webkit-fill-available;
}

.form-group.umbraco-forms-field.recaptcha.recaptcha2 {
  margin-left: 10px;
} 

/*Opayo card styling*/
#opayo-payment-form {
  text-align: start;
}

#opayoWallets {
  text-align: start;
}

/*google pay button styling*/
#container {
  margin-top: 15px;
  margin-bottom: 15px;
}

#container button {
  height: 46px;
  border-radius: 7px;
}

#gpay-button-online-api-id.donate {
  position: static !important;
}
