@charset "UTF-8";
@font-face {
  font-family: "SF Pro";
  src: url("./fonts/subset-SFProDisplay-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro";
  src: url("./fonts/subset-SFProDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro";
  src: url("./fonts/subset-SFProDisplay-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro";
  src: url("./fonts/subset-SFProDisplay-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro";
  src: url("./fonts/subset-SFProDisplay-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro";
  src: url("./fonts/subset-SFProDisplay-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro";
  src: url("./fonts/subset-SFProDisplay-Heavy.woff2") format("woff2");
  font-weight: 860;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro";
  src: url("./fonts/subset-SFProDisplay-Thin.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
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: "SF Pro", sans-serif;
  color: #5C5C5C;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  background: #fff;
}
body.active {
  overflow: hidden;
}

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

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

h1 {
  font-weight: 860;
  font-size: 55px;
  line-height: 65px;
}
h1.big {
  font-weight: 860;
  font-size: 90px;
  line-height: 109px;
}

h2 {
  font-weight: 860;
  font-size: 54px;
  line-height: 64px;
  color: #212729;
}

h3 {
  font-weight: 860;
  font-size: 48px;
  line-height: 57px;
  color: #212729;
}
h3.big {
  font-weight: 860;
  font-size: 64px;
  line-height: 76px;
}
h3.sm {
  font-weight: 860;
  font-size: 40px;
  line-height: 48px;
}

h4 {
  font-weight: 700;
  font-size: 35px;
  line-height: 42px;
  color: #212729;
}

h5 {
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  color: #212729;
}

h6 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #212729;
}
h6.sup {
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  color: #e1c6af;
  margin-bottom: 10px;
}
h6.sm {
  font-weight: 590;
  font-size: 18px;
  line-height: 21px;
}

p.big {
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
}
p.sm {
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
}

.main {
  overflow: hidden;
}

.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: "SF Pro", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 22px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 11px 26px;
  border-radius: 5px;
}
.button.primary {
  background: #7C0005;
  color: #fff;
  border: 1px solid #7C0005;
}
.button.primary:hover {
  border-color: #212729;
  background: #212729;
  opacity: 1;
}
.button.secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.button.secondary:hover {
  background: #fff;
  color: #212729;
  opacity: 1;
}
.button.solid {
  background: transparent;
  border: 1px solid #7C0005;
  color: #7C0005;
}
.button.solid:hover {
  background: #7C0005;
  color: #fff;
  opacity: 1;
}
.button svg {
  width: 16px;
  height: 16px;
}

.input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.input.sel::before {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #212729;
  border-right: 2px solid #212729;
  content: "";
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}
.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 {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #000000;
  margin-bottom: 10px;
}
.input__outer p span {
  color: #ff0000;
}
.input__outer .input {
  width: 100%;
}
.input input,
.input textarea,
.input select {
  width: 100%;
  font-family: "SF Pro", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  resize: unset;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  color: #212729;
  padding: 14px;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: transparent;
  -webkit-appearance: none;
}
.input input::-webkit-input-placeholder, .input textarea::-webkit-input-placeholder, .input select::-webkit-input-placeholder {
  color: #989898;
}
.input input::-moz-placeholder, .input textarea::-moz-placeholder, .input select::-moz-placeholder {
  color: #989898;
}
.input input:-ms-input-placeholder, .input textarea:-ms-input-placeholder, .input select:-ms-input-placeholder {
  color: #989898;
}
.input input::-ms-input-placeholder, .input textarea::-ms-input-placeholder, .input select::-ms-input-placeholder {
  color: #989898;
}
.input input::placeholder,
.input textarea::placeholder,
.input select::placeholder {
  color: #989898;
}
.input input:focus,
.input textarea:focus,
.input select:focus {
  border-color: #212729;
}
.input input.error,
.input textarea.error,
.input select.error {
  border-color: #ff0000;
}

.select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.select::before {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #212729;
  border-right: 2px solid #212729;
  content: "";
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}
.select select {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  font-weight: 400;
  font-size: 19px;
  line-height: 23px;
  color: #212729;
  font-family: "SF Pro", sans-serif;
  font-weight: 400;
  padding: 11px 36px 11px 12px;
  background: #ffffff;
  border-radius: 5px;
  -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: 16px;
  height: 16px;
  margin-right: 12px;
  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 {
  background: #7C0005;
}
.check__box input:checked ~ span img {
  opacity: 1;
}
.check__box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #7C0005;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.check__box span img {
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.check p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.video {
  width: 100%;
  padding-bottom: 47%;
  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::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(69, 69, 69, 0.4);
}
.video.active::after {
  display: none;
}
.video.youtube-embed-16-9 {
  position: relative;
  padding-bottom: 56.25%;
  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;
}
.video iframe [poster],
.video video [poster] {
  width: 100%;
  height: 100%;
}
.video iframe:hover ~ .video__play.active,
.video video:hover ~ .video__play.active {
  opacity: 1;
}
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  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;
}
.video__play.active {
  opacity: 0;
}
.video__play.active span img {
  opacity: 0;
}
.video__play.active span::after {
  display: block;
}
.video__play.active span::before {
  display: block;
}
.video__play.active:hover {
  opacity: 1;
}
.video__play span {
  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;
  position: relative;
  z-index: 2;
}
.video__play span::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 30%;
  width: 8px;
  height: 70%;
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 3px;
}
.video__play span::before {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  right: 30%;
  width: 8px;
  height: 70%;
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 3px;
}
.video__play span img {
  width: 84%;
}

.arrowTop {
  position: fixed;
  bottom: 88px;
  right: 45px;
  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: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
  border-radius: 50%;
  color: #7C0005;
}
.arrowTop:hover {
  opacity: 1;
  color: #fff;
  background: #7C0005;
}
.arrowTop svg {
  width: 22px;
  height: 26px;
}

.link {
  font-family: "SF Pro", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: transparent;
  color: #7C0005;
  position: relative;
}
.link:hover {
  opacity: 1;
  color: #E1C6AF;
}
.link:hover::before {
  background: #E1C6AF;
}
.link::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #7C0005;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.banner {
  position: relative;
  overflow: hidden;
}

.map {
  position: relative;
  overflow: hidden;
}
.map__inner {
  width: 100%;
  padding-bottom: 36%;
  position: relative;
  min-height: 300px;
}
.map__inner img,
.map__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.map__inner iframe {
  z-index: 2;
}

@media (max-width: 1600px) {
  .auto__container {
    max-width: 1360px;
  }

  h1 {
    font-size: 50px;
    line-height: 120%;
  }
  h1.big {
    font-size: 70px;
    line-height: 122%;
  }

  h2 {
    font-size: 50px;
    line-height: 120%;
  }

  h3 {
    font-size: 44px;
    line-height: 120%;
  }
  h3.big {
    font-size: 55px;
    line-height: 120%;
  }

  h6 {
    font-size: 18px;
    line-height: 22px;
  }
  h6.sup {
    font-size: 22px;
    line-height: 120%;
  }

  p.big {
    font-size: 22px;
    line-height: 120%;
  }

  body {
    font-size: 18px;
    line-height: 120%;
  }

  .arrowTop {
    right: 30px;
    width: 60px;
    height: 60px;
  }
  .arrowTop svg {
    width: 20px;
    height: 24px;
  }

  .video__play {
    width: 60px;
    height: 60px;
  }
  .video__play span::after {
    left: 27%;
    width: 6px;
  }
  .video__play span::before {
    right: 27%;
    width: 6px;
  }
}
@media (max-width: 1450px) {
  h1.big {
    font-size: 70px;
  }

  h3.big {
    font-size: 50px;
  }
  h3.sm {
    font-size: 35px;
    line-height: 120%;
  }
}
@media (max-width: 1380px) {
  h1.big {
    font-size: 60px;
  }

  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 40px;
  }
  h3.big {
    font-size: 45px;
  }

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

  h5 {
    font-size: 22px;
    line-height: 120%;
  }
}
@media (max-width: 1180px) {
  .auto__container {
    padding: 0 30px;
  }

  h1 {
    font-size: 45px;
  }
  h1.big {
    font-size: 55px;
  }

  h2 {
    font-size: 40px;
  }

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

  h6.sup {
    font-size: 20px;
  }

  p.big {
    font-size: 20px;
  }

  body {
    font-size: 16px;
    line-height: 130%;
  }

  .button {
    font-size: 17px;
    line-height: 20px;
    padding: 11px 22px;
  }

  .select select {
    font-size: 17px;
    line-height: 20px;
  }

  .input input {
    font-size: 18px;
    line-height: 20px;
  }

  .video {
    padding-bottom: 50%;
  }
  .video__play {
    width: 40px;
    height: 40px;
  }
  .video__play span::after {
    left: 27%;
    width: 4px;
  }
  .video__play span::before {
    right: 27%;
    width: 4px;
  }
}
@media (max-width: 1024px) {
  .main {
    padding-top: 74px;
  }

  .arrowTop {
    right: 20px;
    width: 50px;
    height: 50px;
    bottom: 65px;
  }
  .arrowTop svg {
    width: 16px;
    height: 20px;
  }
}
@media (max-width: 930px) {
  h1 {
    font-size: 40px;
  }
  h1.big {
    font-size: 50px;
  }

  h2 {
    font-size: 35px;
  }

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

  h4 {
    font-size: 25px;
  }

  h5 {
    font-size: 20px;
  }
}
@media (max-width: 750px) {
  .auto__container {
    padding: 0 20px;
  }

  h1 {
    font-size: 35px;
  }
  h1.big {
    font-size: 45px;
  }

  h2 {
    font-size: 30px;
  }

  h6 {
    font-size: 16px;
  }
  h6.sup {
    font-size: 18px;
  }

  p.big {
    font-size: 18px;
  }

  .button {
    font-size: 16px;
  }

  .arrowTop {
    right: 10px;
    width: 50px;
    height: 50px;
  }
  .arrowTop svg {
    width: 14px;
    height: 18px;
  }

  .video {
    padding-bottom: 56.25%;
  }

  .input__outer p {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .input input {
    font-size: 16px;
    line-height: 18px;
    padding: 12px 14px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 30px;
  }
  h1.big {
    font-size: 40px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 25px;
  }
  h3.sm {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  h6.sup {
    font-size: 16px;
  }

  .main {
    padding-top: 68px;
  }

  .video__play {
    width: 30px;
    height: 30px;
  }
  .video__play span::after {
    left: 27%;
    width: 3px;
  }
  .video__play span::before {
    right: 27%;
    width: 3px;
  }
  .video__play span img {
    width: 75%;
  }

  .link {
    font-size: 18px;
  }
}
@media (max-width: 440px) {
  h1.big {
    font-size: 36px;
  }
}
.lang {
  display: none;
  -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;
}

.modall {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 9999;
}
.modall.active {
  opacity: 1;
  visibility: visible;
  -webkit-animation: fadeIn 0.4s;
          animation: fadeIn 0.4s;
}
.modall__inner {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  margin: auto;
  position: relative;
}
.modall__inner-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
  border-radius: 2px;
  border: 1px solid #d9d4d0;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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;
}
.modall__inner-close:hover {
  background: #d9d4d093;
}
.modall__inner-close img {
  width: 9px;
  pointer-events: none;
}
.modall__inner-title {
  margin-bottom: 15px;
}
.modall__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.modall__inner-row .button {
  width: calc(100% - 115px);
}
.modall__inner p {
  font-size: 15px;
}
.modall__inner h5 {
  font-weight: 700;
  color: #212729;
  margin-bottom: 16px;
}
.modall__inner .select {
  margin-bottom: 15px;
}
.modall__inner .select select {
  border-radius: 8px;
  border: 1px solid #7C0005;
  padding: 12px 35px 12px 20px;
}
.modall .journey {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}
.modall .journey__slider {
  max-width: 870px;
  position: relative !important;
}
.modall .journey .slick-prev {
  left: -80px;
}
.modall .journey .slick-next {
  right: -80px;
}

@-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;
}
.header::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(33, 39, 41, 0.5);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation-name: sticky;
          animation-name: sticky;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.headerTop {
  position: relative;
  background: #7C0005;
  padding: 12px 0;
}
.headerTop__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;
}
.headerTop__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.headerTop__inner-links a {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
  margin-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.headerTop__inner-links a:hover {
  opacity: 1;
  color: #E1C6AF;
}
.headerTop__inner-links a:last-child {
  margin: 0;
}
.headerTop__inner-links a svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
.headerTop__inner-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.headerTop__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: 54px;
  color: #fff;
}
.headerTop__inner-social a:hover {
  opacity: 1;
  color: #E1C6AF;
}
.headerTop__inner-social a:last-child {
  margin: 0;
}
.headerTop__inner-social a svg {
  width: 100%;
  height: 100%;
}
.header__inner {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 86px;
}
.header__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.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: 120px;
  position: relative;
}
.header__inner-logo img {
  width: 100%;
}

@media (max-width: 1380px) {
  .headerTop {
    padding: 10px 0;
  }
  .headerTop__inner-social a {
    margin-right: 40px;
  }
  .header__inner {
    padding: 14px 0;
    height: 74px;
  }
  .header__inner-logo {
    width: 100px;
  }
}
@media (max-width: 1180px) {
  .header__inner-logo {
    width: 100px;
  }
}
@media (max-width: 1024px) {
  .header {
    background: #212729;
  }
  .header::before {
    display: none;
  }
  .headerTop {
    display: none;
  }
  .header__inner-buttons .button {
    display: none;
  }
}
@media (max-width: 540px) {
  .header__inner {
    height: 68px;
  }
  .header__inner-logo {
    width: 80px;
  }
}
@-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;
}
.nav__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav__inner-links li {
  margin-right: 20px;
}
.nav__inner-links li:last-child {
  margin: 0;
}
.nav__inner-links li a {
  font-weight: 400;
  font-size: 19px;
  line-height: 23px;
  color: #fff;
  padding: 12px 10px;
  position: relative;
}
.nav__inner-links li a.active {
  opacity: 1;
  font-weight: 700;
}
.nav__inner-links li a.active::before {
  opacity: 1;
}
.nav__inner-links li a:hover {
  color: #E1C6AF;
  opacity: 1;
}
.nav__inner-links li a::before {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: calc(100% - 6px);
  height: 5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  content: "";
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.nav__inner-buttons {
  display: none;
}

.burger {
  display: none;
}

@media (max-width: 1380px) {
  .nav__inner-links li a {
    font-size: 17px;
  }
  .nav__inner-links li a::before {
    bottom: -14px;
    height: 4px;
  }
}
@media (max-width: 1180px) {
  .nav__inner-links li {
    margin-right: 14px;
  }
  .nav__inner-links li a {
    font-size: 16px;
  }
  .nav__inner-links li a::before {
    bottom: -14px;
    height: 4px;
  }
}
@media (max-width: 1024px) {
  body.active {
    overflow: hidden;
  }

  .nav {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    max-width: unset;
    height: calc(100% - 74px);
    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: #212729;
  }
  .nav__inner-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
  }
  .nav__inner-links li {
    margin: 0 0 16px 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-links li a {
    font-size: 22px;
    line-height: 120%;
    padding: 12px 20px;
  }
  .nav__inner-links li a::before {
    bottom: 0;
  }
  .nav__inner-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .nav__inner-buttons .button {
    width: 100%;
    max-width: 250px;
    font-size: 20px;
    line-height: 120%;
    padding: 14px 20px;
  }

  .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: #7C0005;
  }
  .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);
  }
}
@media (max-width: 540px) {
  .nav {
    top: 68px;
    height: calc(100% - 68px);
  }

  .burger {
    margin-left: 16px;
  }
}
.footer {
  padding: 107px 0 138px;
  position: relative;
  background: #212729;
  color: #fff;
}
.footer__inner-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;
  padding-bottom: 36px;
  border-bottom: 1px solid #717171;
}
.footer__inner-logo {
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__inner-logo img {
  width: 100%;
}
.footer__inner-company {
  width: 444px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__inner-company img {
  width: 100%;
}
.footer__inner-row {
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__inner-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer__inner-col h5 {
  color: #E1C6AF;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer__inner-col > a,
.footer__inner-col p {
  font-weight: 600;
  color: #fff;
  margin-bottom: 13px;
}
.footer__inner-col > a:last-child,
.footer__inner-col p:last-child {
  margin: 0;
}
.footer__inner-col a:hover {
  color: #E1C6AF;
  opacity: 1;
}
.footer__inner-col .input {
  width: 444px;
}
.footer__inner-col .input input:focus {
  border-color: #E1C6AF;
}
.footer__inner-social {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__inner-social a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #7C0005;
  background: #fff;
  border-radius: 50%;
  margin-right: 16px;
}
.footer__inner-social a:last-child {
  margin: 0;
}
.footer__inner-social a:hover {
  opacity: 1;
  background: #7C0005;
  color: #fff;
}
.footer__inner-social a svg {
  width: 50%;
  height: 50%;
}
.footer__inner-copy {
  border-top: 1px solid #717171;
  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-top: 36px;
}
.footer__inner-copy p {
  font-weight: 400;
}
.footer__inner-terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__inner-terms a {
  font-weight: 400;
  text-decoration: underline;
  color: #ffffff;
  margin-right: 28px;
}
.footer__inner-terms a:hover {
  color: #E1C6AF;
  opacity: 1;
}
.footer__inner-terms a:last-child {
  margin: 0;
}
.footer a,
.footer p {
  font-size: 19px;
  line-height: 23px;
}
.footer .input input {
  background: #fff;
}

@media (max-width: 1380px) {
  .footer {
    padding: 80px 0 120px;
  }
  .footer a,
.footer p {
    font-size: 18px;
  }
}
@media (max-width: 1180px) {
  .footer {
    padding: 60px 0 120px;
  }
  .footer__inner-logo {
    width: 100px;
  }
  .footer__inner-company {
    width: 380px;
  }
  .footer__inner-row {
    padding: 60px 0;
  }
  .footer__inner-col .input {
    width: 380px;
  }
}
@media (max-width: 1024px) {
  .footer {
    padding: 60px 0 100px;
  }
  .footer__inner-col .input {
    width: 320px;
  }
}
@media (max-width: 930px) {
  .footer {
    padding: 50px 0 90px;
  }
  .footer__inner-top {
    padding-bottom: 24px;
  }
  .footer__inner-row {
    padding: 50px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__inner-col:last-child {
    width: 100%;
    padding-top: 40px;
  }
  .footer__inner-col .input {
    width: 100%;
  }
  .footer__inner-copy {
    -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-top: 24px;
  }
  .footer__inner-terms {
    margin-bottom: 16px;
  }
}
@media (max-width: 750px) {
  .footer__inner-logo {
    margin-right: 24px;
  }
  .footer__inner-company {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 340px;
  }
}
@media (max-width: 540px) {
  .footer__inner-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__inner-logo {
    margin: 0 0 24px 0;
    width: 80px;
  }
  .footer__inner-company {
    width: 90%;
  }
  .footer__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 0;
  }
  .footer__inner-col {
    width: 100%;
    margin-bottom: 36px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .footer__inner-col:last-child {
    padding: 0;
    margin: 0;
  }
  .footer__inner-col h5 {
    margin-bottom: 16px;
  }
  .footer__inner-social {
    padding-top: 20px;
  }
  .footer__inner-terms a {
    margin-right: 20px;
  }
  .footer a,
.footer p {
    font-size: 16px;
    line-height: 20px;
  }
}
.basket {
  display: none;
  position: fixed;
  width: 100%;
  height: calc(100% - 44px);
  top: 44px;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
}
.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: 487px;
  color: #5C5C5C;
  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;
  padding: 36px 38px;
}
.basket__inner-head {
  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: relative;
  margin-bottom: 25px;
}
.basket__inner-head h4 {
  font-weight: 860;
  font-size: 30px;
  line-height: 36px;
  position: relative;
  margin-bottom: 10px;
  padding-right: 40px;
}
.basket__inner-head p {
  font-weight: 300;
  color: #212729;
}
.basket__inner-head p b {
  font-weight: 700;
}
.basket__inner-close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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: #7C0005;
}
.basket__inner-close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 50%;
  content: "";
  background-color: #7C0005;
  -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: #7C0005;
  -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;
  color: #5C5C5C;
  margin-bottom: 40px;
}
.basket__inner-content p.sm {
  font-size: 12px;
  line-height: 150%;
}
.basketBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  background: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  color: #fff;
  margin-right: 12px;
}
.basketBtn svg {
  width: 21px;
  height: 18px;
}
.basketMain {
  margin: auto 0 0 0;
}
.basketMain__total {
  padding-top: 18px;
  border-top: 1px solid #000;
  margin: 28px 0;
}
.basketMain__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: 10px;
}
.basketMain__total-row:last-child {
  margin: 0;
}
.basketMain__total h6 {
  font-weight: 600;
}
.basketMain__total h6:last-child {
  font-weight: 860;
}
.basketMain__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.basketMain__buttons .button {
  width: 100%;
  margin-bottom: 12px;
  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;
}
.basketMain__buttons .button:last-child {
  margin: 0;
}
.basketMain .basketItem {
  border: 1px solid #7C0005;
}
.basketItem {
  padding: 16px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 15px;
  margin-bottom: 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;
}
.basketItem:last-child {
  margin: 0;
}
.basketItem__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 16px;
}
.basketItem__content h6 {
  font-weight: 590;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 4px;
}
.basketItem__content p {
  font-weight: 590;
  font-size: 15px;
  line-height: 18px;
  color: #989898;
}
.basketItem__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.basketItem__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 14px;
  border-right: 1px solid #bdbdbd;
  margin-right: 14px;
}
.basketItem__action button {
  width: 18px;
  height: 18px;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 22px;
  color: #000;
}
.basketItem__action button:last-child {
  margin: 0;
}
.basketItem__action button.delete {
  color: #7C0005;
}
.basketItem__action button svg {
  width: 100%;
  height: 100%;
}
.basketItem__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.basketItem__price h6 {
  font-weight: 700;
}

@media (max-width: 1380px) {
  .basket {
    top: 40px;
    height: calc(100% - 40px);
  }
}
@media (max-width: 1024px) {
  .basket {
    top: 0;
    height: 100%;
  }
  .basketBtn {
    margin: 0;
  }
}
@media (max-width: 540px) {
  .basketBtn {
    width: 40px;
    height: 40px;
  }
  .basketBtn svg {
    width: 18px;
    height: 16px;
  }
  .basket__inner {
    padding: 30px 20px;
  }
  .basket__inner-head h4 {
    font-size: 25px;
    line-height: 30px;
  }
  .basketItem__content h6 {
    font-size: 16px;
    line-height: 20px;
  }
  .basketItem__content p {
    font-size: 14px;
  }
  .basketItem__action {
    padding-right: 12px;
    margin-right: 12px;
  }
  .basketItem__action button {
    margin-right: 16px;
  }
}
.donate {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #212729;
  z-index: 99;
  -webkit-box-shadow: 0px -4px 7px rgba(0, 0, 0, 0.15);
          box-shadow: 0px -4px 7px rgba(0, 0, 0, 0.15);
}
.donate__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 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;
  margin-right: 20px;
}
.donate__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.donate__inner-selects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.donate__inner .button {
  margin-left: 40px;
}
.donate__inner .button:hover {
  background: #E1C6AF;
  color: #212729;
}
.donate__inner .select {
  margin-right: 12px;
}
.donate__inner .select:last-child {
  margin: 0;
}
.donate h5 {
  font-weight: 900;
  font-size: 32px;
  line-height: 39px;
  color: #fff;
}

@media (max-width: 1380px) {
  .donate__inner .button {
    margin-left: 30px;
  }
  .donate h5 {
    font-size: 28px;
    line-height: 120%;
  }
}
@media (max-width: 1180px) {
  .donate__inner {
    height: 76px;
  }
  .donate__inner .button {
    margin-left: 20px;
  }
  .donate h5 {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .donate__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    height: unset;
  }
  .donate__inner-title {
    height: 55px;
    padding: 10px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
    margin: 0;
  }
  .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: #7C0005;
    border-radius: 50%;
    position: relative;
    margin: 0;
  }
  .donate__inner-title > span:hover {
    background: #E1C6AF;
  }
  .donate__inner-title > span:hover::before {
    border-color: #212729;
  }
  .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-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .donate__inner-row.active {
    max-height: 300px;
    opacity: 1;
    padding: 6px 0 20px;
  }
  .donate__inner-selects {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .donate__inner .button {
    margin-left: 10px;
  }
  .donate__inner .select {
    width: calc(33.3% - 5px);
    margin: 0;
  }
}
@media (max-width: 750px) {
  .donate__inner-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .donate__inner-selects {
    width: 100%;
    margin-bottom: 12px;
  }
  .donate__inner .button {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 540px) {
  .donate__inner-selects {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .donate__inner .select {
    width: 100%;
    margin-bottom: 12px;
  }
  .donate__inner .select:last-child {
    margin: 0;
  }
  .donate h5 {
    font-size: 20px;
  }
}
.appeals {
  padding: 126px 0;
}
.appeals.sm {
  padding: 80px 0;
}
.appeals.mid {
  padding-top: 20px;
}
.appeals__inner-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 46px;
}
.appeals__inner-top .link {
  margin-bottom: 8px;
}
.appeals__inner-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 20px;
}
.appeals__inner-slider {
  margin: 0 -12px;
}
.appeals__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.appeals__inner .slick-slide {
  height: unset !important;
  margin: 0 12px;
}
.appeals__inner .slick-list {
  overflow: visible !important;
}
.appealsItem {
  background: rgba(33, 39, 41, 0.05);
  border-radius: 28px;
  padding: 10px 10px 26px 10px;
  position: relative;
  cursor: pointer;
  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;
}
.appealsItem:hover {
  opacity: 1;
}
.appealsItem:hover .appealsItem__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.appealsItem__image {
  width: 100%;
  position: relative;
  padding-bottom: 70%;
  border-radius: 24px;
  overflow: hidden;
}
.appealsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.appealsItem__icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(4.5px);
          backdrop-filter: blur(4.5px);
  border-radius: 50%;
}
.appealsItem__icon img {
  width: 100%;
}
.appealsItem__content {
  padding: 24px 20px;
}
.appealsItem__foot {
  margin: auto 0 0 0;
  padding: 24px 20px 0;
  position: relative;
}
.appealsItem__foot::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 40px);
  content: "";
  height: 1px;
  background: #cecece;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.appealsItem__link {
  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;
  font-weight: 700;
  color: #7C0005;
}
.appealsItem__link svg {
  width: 20px;
  height: 13px;
}
.appealsItem h6 {
  margin-bottom: 8px;
  font-weight: 700;
}
.appealsItem p {
  font-weight: 300;
}

@media (max-width: 1380px) {
  .appeals {
    padding: 100px 0;
  }
  .appeals__inner-top {
    margin-bottom: 40px;
  }
}
@media (max-width: 1180px) {
  .appeals {
    padding: 80px 0;
  }
  .appeals__inner-top {
    margin-bottom: 30px;
  }
  .appeals__inner-slider {
    margin: 0 -8px;
  }
  .appeals__inner .slick-slide {
    margin: 0 8px;
  }
  .appealsItem {
    border-radius: 20px;
  }
  .appealsItem__icon {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  .appealsItem__image {
    border-radius: 18px;
  }
  .appealsItem__content {
    padding: 20px 10px;
  }
  .appealsItem__foot {
    padding: 20px 10px 0;
  }
  .appealsItem__foot::before {
    width: calc(100% - 20px);
  }
}
@media (max-width: 930px) {
  .appeals {
    padding: 60px 0;
  }
  .appeals.sm {
    padding: 60px 0;
  }
}
@media (max-width: 650px) {
  .appeals__inner-slider {
    width: 90%;
  }
}
@media (max-width: 540px) {
  .appeals {
    padding: 50px 0;
  }
  .appeals.sm {
    padding: 40px 0 50px;
  }
  .appeals__inner {
    position: relative;
    padding-bottom: 50px;
  }
  .appeals__inner-title {
    margin: 0;
  }
  .appeals__inner-top {
    margin-bottom: 22px;
  }
  .appeals__inner-slider {
    width: 97%;
  }
  .appeals__inner .link {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 0;
  }
}
.info {
  position: relative;
  padding: 95px 0;
  color: #fff;
}
.info__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.info__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #454545;
}
.info__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  mix-blend-mode: multiply;
}
.info__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.info__inner-col {
  width: calc(33.3% - 20px);
  max-width: 442px;
  text-align: center;
}
.info__inner h3 {
  color: #fff;
  margin-bottom: 26px;
}
.info__inner h5 {
  margin-bottom: 8px;
  color: #E1C6AF;
}

@media (max-width: 1380px) {
  .info {
    padding: 80px 0;
  }
  .info__inner h3 {
    margin-bottom: 18px;
  }
}
@media (max-width: 1180px) {
  .info {
    padding: 60px 0;
  }
  .info__inner h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 930px) {
  .info__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;
  }
  .info__inner-col {
    width: 100%;
    margin: 0 0 40px 0;
  }
  .info__inner-col:last-child {
    margin: 0;
  }
}
@media (max-width: 540px) {
  .info {
    padding: 50px 0;
  }
  .info__inner-col {
    margin-bottom: 30px;
  }
}
.intro {
  position: relative;
  padding-top: 130px;
}
.intro__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;
}
.intro__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  background: rgba(33, 39, 41, 0.45);
}
.intro__bg::after {
  position: absolute;
  top: 130px;
  left: 0;
  width: 62%;
  height: calc(100% - 130px);
  content: "";
  z-index: 1;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
}
.intro__bg img,
.intro__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  pointer-events: none;
}
.intro__inner {
  position: relative;
  z-index: 2;
  min-height: 327px;
  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: 30px 0;
}
.intro__inner-content {
  width: calc(50% - 15px);
}
.intro__inner-form {
  width: calc(35% - 15px);
  max-width: 440px;
  background: #fff;
  border-radius: 10px;
  /*padding: 30px;*/
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.intro__inner h1 {
  color: #fff;
  font-weight: 860;
}

@media (max-width: 1380px) {
  .intro {
    padding-top: 114px;
  }
  .intro__bg::after {
    top: 114px;
    height: calc(100% - 114px);
  }
}
@media (max-width: 1024px) {
  .intro {
    padding: 0;
  }
  .intro__bg::after {
    top: 0;
    height: 100%;
    width: 100%;
  }
  .intro__inner {
    min-height: 400px;
    padding: 50px 0;
  }
}
@media (max-width: 930px) {
  .intro.new .intro__bg {
    height: 280px;
  }
  .intro.new .intro__inner {
    padding: 0;
    min-height: unset;
    -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;
  }
  .intro__inner-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
    min-height: 280px;
    padding: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .intro__inner-form {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 540px) {
  .intro__inner {
    padding: 40px 0;
    min-height: 280px;
  }
  .intro__inner-content {
    margin-bottom: 20px;
  }
  .intro__inner-form {
    padding: 20px;
  }
}
.faq {
  padding: 25px 0;
}
.faq__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;
}
.faq__inner-title {
  width: calc(45% - 15px);
  max-width: 580px;
  padding-top: 90px;
}
.faq__inner-col {
  width: calc(55% - 15px);
  max-width: 730px;
}
.faqItem {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  margin-bottom: 13px;
}
.faqItem:last-child {
  margin: 0;
}
.faqItem__head {
  padding: 24px 34px;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faqItem__head.active::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.faqItem__head.active::after {
  opacity: 1;
}
.faqItem__head::before {
  position: absolute;
  top: 50%;
  right: 34px;
  width: 16px;
  height: 16px;
  content: "";
  border-top: 3px solid #7C0005;
  border-right: 3px solid #7C0005;
  -webkit-transform: translate(-50%, -70%) rotate(135deg);
          transform: translate(-50%, -70%) rotate(135deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faqItem__head::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 48px);
  height: 1px;
  content: "";
  background: #e9e9e9;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
}
.faqItem__head span {
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 38px;
}
.faqItem__head span img {
  width: 100%;
}
.faqItem__head h5 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 510;
  font-size: 22px;
  line-height: 29px;
  color: #000;
  padding-right: 40px;
}
.faqItem__body {
  max-height: 0;
  opacity: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  padding: 0 34px;
  overflow: hidden;
}
.faqItem__body.active {
  opacity: 1;
  max-height: 500px;
  padding: 24px 34px 28px;
}
.faqItem__body p {
  font-weight: 300;
  color: #000;
}

@media (max-width: 1180px) {
  .faq__inner-title {
    padding-top: 50px;
    width: calc(42% - 10px);
  }
  .faq__inner-col {
    width: calc(58% - 10px);
  }
}
@media (max-width: 930px) {
  .faq__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .faq__inner-title {
    padding-top: 0;
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .faq__inner-col {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 540px) {
  .faqItem {
    margin-bottom: 12px;
  }
  .faqItem__head {
    padding: 20px;
  }
  .faqItem__head::before {
    width: 10px;
    height: 10px;
    border-width: 2px;
    right: 20px;
  }
  .faqItem__head span {
    width: 22px;
    height: 22px;
    margin-right: 16px;
  }
  .faqItem__head h5 {
    font-size: 18px;
    line-height: 22px;
    padding-right: 24px;
  }
  .faqItem__body {
    padding: 0 20px;
  }
  .faqItem__body.active {
    padding: 18px 20px 20px;
  }
}
.hero {
  position: relative;
}
.hero.new .heroItem__inner {
  padding: 0;
}
.hero.new .hero__slider {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero.new .hero__slider .slick-list {
  height: 100%;
}
.hero .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.hero .slick-slide {
  height: unset !important;
}
.hero .slick-arrow {
  position: absolute;
  top: calc(50% + 50px);
  z-index: 3;
  cursor: pointer;
  width: 46px;
  height: 46px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hero .slick-arrow:hover::before {
  border-color: #E1C6AF;
}
.hero .slick-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  content: "";
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  opacity: 1 !important;
}
.hero .slick-prev {
  left: 70px;
}
.hero .slick-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}
.hero .slick-next {
  right: 70px;
}
.hero .slick-dots {
  position: absolute;
  bottom: 66px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 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 .slick-dots li {
  margin: 0 4px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.35);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.hero .slick-dots li.slick-active {
  background: #fff;
}
.hero .slick-dots li button {
  padding: 0;
  width: 100%;
  height: 100%;
}
.hero .slick-dots li button::before {
  display: none;
}
.heroItem {
  position: relative;
}
.heroItem__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.heroItem__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  background: rgba(33, 39, 41, 0.45);
  pointer-events: none;
}
.heroItem__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 100%;
  content: "";
  z-index: 1;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  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-top: 130px;
  min-height: calc(100vh - 76px);
  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% - 15px);
  max-width: 610px;
  position: relative;
  z-index: 2;
  padding: 100px 0;
}
.heroItem__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.heroItem__inner .button {
  margin-right: 16px;
}
.heroItem__inner .button:last-child {
  margin: 0;
}
.heroItem h1 {
  margin-bottom: 12px;
}
.heroItem p {
  margin-bottom: 28px;
  max-width: 600px;
}
.heroMain__inner {
  width: 100%;
  padding: 150px 0;
  min-height: calc(100vh - 76px);
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.heroMain__inner-form {
  padding: 100px 0;
  width: calc(50% - 15px);
  max-width: 440px;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  -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;
  z-index: 2;
}

@media (max-width: 1720px) {
  .hero .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .hero .slick-arrow::before {
    border-width: 3px;
  }
  .hero .slick-prev {
    left: 30px;
  }
  .hero .slick-next {
    right: 30px;
  }
}
@media (max-width: 1600px) {
  .heroItem__inner-content {
    padding: 60px 0;
  }
}
@media (max-width: 1450px) {
  .hero .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .hero .slick-arrow::before {
    border-width: 3px;
  }
  .hero .slick-prev {
    left: 12px;
  }
  .hero .slick-next {
    right: 12px;
  }
  .hero .slick-dots {
    bottom: 40px;
  }
}
@media (max-width: 1380px) {
  .heroItem__inner {
    padding-top: 114px;
  }
  .heroItem__inner-content {
    padding: 50px 0;
  }
}
@media (max-width: 1180px) {
  .hero .slick-arrow {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .heroItem__inner {
    padding: 60px 0;
    min-height: calc(100vh - 129px);
  }
  .heroMain__inner {
    min-height: calc(100vh - 129px);
  }
}
@media (max-width: 930px) {
  .hero.new .hero__slider {
    position: relative !important;
  }
  .hero.new .heroItem__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 60px 0;
  }
  .hero .slick-dots li {
    width: 8px;
    height: 8px;
  }
  .heroItem__bg::after {
    width: 100%;
  }
  .heroItem__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 60px 0;
  }
  .heroItem__inner-content {
    max-width: unset;
    width: 100%;
    padding: 0;
  }
  .heroItem__inner-form {
    width: 100%;
    max-width: unset;
  }
  .heroMain__inner {
    min-height: unset;
    padding: 40px 0;
  }
  .heroMain__inner-form {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 540px) {
  .hero.new .heroItem__inner {
    padding: 50px 0;
  }
  .heroItem__inner {
    padding: 50px 0;
    min-height: calc(100vh - 123px);
  }
  .heroItem__inner-content {
    padding: 0;
    margin-bottom: 30px;
  }
  .heroItem p {
    margin-bottom: 20px;
  }
  .heroMain__inner {
    padding: 20px 0;
  }
  .heroMain__inner-form {
    padding: 20px;
  }
  .hero .slick-dots {
    bottom: 30px;
  }
}
.impact {
  padding: 126px 0;
}
.impact.sm {
  padding: 82px 0;
}
.impact.sm .impact__inner-title {
  margin-bottom: 55px;
}
.impact.sm .impact__inner-row {
  max-width: 1090px;
  margin: 0 auto;
}
.impact.sm .impactItem {
  width: calc(33.3% - 15px);
  max-width: 295px;
}
.impact__inner-title {
  text-align: center;
  margin-bottom: 75px;
}
.impact__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.impactItem {
  max-width: 290px;
  width: calc(25% - 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;
}
.impactItem__icon {
  width: 90px;
  height: 90px;
  background: rgba(33, 39, 41, 0.05);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 26px;
}
.impactItem__icon img {
  width: 100%;
}
.impactItem h5 {
  margin-bottom: 8px;
  color: #7C0005;
  font-weight: 700;
}

@media (max-width: 1380px) {
  .impact {
    padding: 100px 0;
  }
  .impact__inner-title {
    margin-bottom: 60px;
  }
}
@media (max-width: 1180px) {
  .impact {
    padding: 80px 0;
  }
  .impact.sm {
    padding: 70px 0;
  }
  .impact.sm .impact__inner-title {
    margin-bottom: 40px;
  }
  .impact.sm .impact__inner-row {
    max-width: 900px;
  }
  .impact__inner-title {
    margin-bottom: 40px;
  }
  .impactItem {
    width: calc(25% - 10px);
  }
  .impactItem__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
}
@media (max-width: 930px) {
  .impact {
    padding: 60px 0 40px;
  }
  .impact.sm {
    padding: 60px 0;
  }
  .impact.sm .impact__inner-title {
    margin-bottom: 30px;
  }
  .impact.sm .impactItem {
    width: calc(33.3% - 20px);
    max-width: unset;
  }
  .impact__inner-title {
    margin-bottom: 20px;
  }
  .impact__inner-row {
    margin: 0 -10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .impactItem {
    width: calc(50% - 20px);
    margin: 20px 10px;
    max-width: unset;
  }
}
@media (max-width: 540px) {
  .impact {
    padding: 50px 0;
  }
  .impact.sm {
    padding: 40px 0 50px;
  }
  .impact.sm .impactItem {
    width: 100%;
    max-width: unset;
  }
  .impact__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .impact__inner-title {
    margin-bottom: 30px;
  }
  .impactItem {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .impactItem:last-child {
    margin: 0;
  }
  .impactItem__icon {
    width: 80px;
    height: 80px;
  }
  .impactItem p {
    width: 90%;
  }
}
.event {
  padding: 126px 0;
}
.event__inner-title {
  margin-bottom: 36px;
}
.event__inner-slider {
  margin: 0 -10px;
}
.event__inner .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;
}
.event__inner .slick-slide {
  height: unset !important;
  margin: 0 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.eventItem {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  width: 18%;
  cursor: pointer;
}
.eventItem:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.eventItem.slick-current {
  width: 46%;
}
.eventItem.slick-current .eventItem__content {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  width: 100%;
}
.eventItem__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.eventItem__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.eventItem__content {
  position: relative;
  z-index: 2;
  padding: 45px;
  height: 100%;
  height: 610px;
  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;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  overflow: hidden;
}
.eventItem__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.eventItem__buttons .button {
  margin-right: 16px;
}
.eventItem__buttons .button:last-child {
  margin: 0;
}
.eventItem h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #E1C6AF;
}
.eventItem h3 {
  color: #fff;
  margin-bottom: 13px;
}
.eventItem p {
  margin-bottom: 24px;
}

@media (max-width: 1380px) {
  .event {
    padding: 100px 0;
  }
  .eventItem__content {
    padding: 35px;
    height: 540px;
  }
}
@media (max-width: 1180px) {
  .event {
    padding: 80px 0;
  }
  .event__inner-slider {
    margin: 0 -6px;
  }
  .event__inner .slick-slide {
    margin: 0 6px;
  }
  .eventItem__content {
    padding: 24px;
    height: 480px;
  }
}
@media (max-width: 930px) {
  .event {
    padding: 60px 0;
  }
  .event__inner .slick-track {
    -webkit-transform: initial !important;
            transform: initial !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .event__inner .slick-slide {
    margin: 0;
  }
  .eventItem {
    width: auto;
    position: relative !important;
    min-width: unset;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .eventItem.slick-current {
    min-width: 100% !important;
    left: 0 !important;
    opacity: 1;
  }
  .eventItem__content {
    height: 600px;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 750px) {
  .eventItem__content {
    height: 500px;
  }
}
@media (max-width: 540px) {
  .event {
    padding: 50px 0;
  }
  .event__inner-title {
    margin-bottom: 24px;
  }
  .eventItem {
    border-radius: 16px;
  }
  .eventItem__content {
    height: 400px;
    padding: 20px;
  }
}
.marquee {
  background: #212729;
  padding: 28px 0;
  pointer-events: none;
}
.marqueeItem {
  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;
  height: 55px !important;
}
.marqueeItem.big img {
  height: 118%;
}
.marqueeItem.mid img {
  height: 88%;
}
.marqueeItem.sm img {
  height: 70%;
}
.marqueeItem img {
  height: 100%;
  max-width: 100%;
}
.marquee .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.marquee .slick-list {
  overflow: visible !important;
}
.marquee .slick-slide {
  margin: 0 95px;
}

@media (max-width: 1380px) {
  .marquee {
    padding: 22px 0;
  }
  .marquee .slick-slide {
    margin: 0 70px;
  }
  .marqueeItem {
    height: 45px !important;
  }
}
@media (max-width: 750px) {
  .marquee {
    padding: 20px 0;
  }
  .marquee .slick-slide {
    margin: 0 50px;
  }
  .marqueeItem {
    height: 35px !important;
  }
}
@media (max-width: 540px) {
  .marquee {
    padding: 18px 0;
  }
  .marquee .slick-slide {
    margin: 0 28px;
  }
  .marqueeItem {
    height: 28px !important;
  }
}
.about {
  padding: 90px 0 110px;
}
.about__inner-title {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 50px;
}
.about__inner-title h2 {
  margin-bottom: 10px;
}
.about__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}
.aboutItem {
  width: calc(33.3% - 20px);
  margin: 10px;
  background: rgba(33, 39, 41, 0.05);
  border-radius: 28px;
  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: 56px 30px 32px;
}
.aboutItem.big {
  width: calc(50% - 20px);
}
.aboutItem__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-bottom: 56px;
}
.aboutItem__icon.sm img {
  width: 80%;
}
.aboutItem__icon img {
  width: 100%;
}
.aboutItem h5 {
  color: #7C0005;
  margin-bottom: 10px;
}
.aboutItem p {
  color: #212729;
}

@media (max-width: 1380px) {
  .about__inner-title {
    margin-bottom: 40px;
  }
  .aboutItem {
    padding: 44px 24px 30px;
  }
  .aboutItem__icon {
    margin-bottom: 40px;
  }
}
@media (max-width: 1180px) {
  .about {
    padding: 80px 0;
  }
  .about__inner-title {
    margin-bottom: 30px;
  }
  .about__inner-row {
    margin: 0 -8px;
  }
  .aboutItem {
    padding: 36px 24px 30px;
    margin: 8px;
    width: calc(33.3% - 16px);
    border-radius: 20px;
  }
  .aboutItem.big {
    width: calc(50% - 16px);
  }
  .aboutItem__icon {
    width: 30px;
    height: 30px;
    margin-bottom: 24px;
  }
}
@media (max-width: 930px) {
  .about {
    padding: 60px 0;
  }
  .aboutItem {
    width: calc(50% - 16px);
  }
  .aboutItem:nth-child(3) {
    width: calc(100% - 16px);
  }
}
@media (max-width: 750px) {
  .about__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .aboutItem {
    width: 100% !important;
    margin: 0 0 20px 0;
  }
  .aboutItem:last-child {
    margin: 0;
  }
}
@media (max-width: 540px) {
  .about {
    padding: 40px 0;
  }
  .aboutItem {
    padding: 30px 20px;
  }
}
.honor {
  padding: 122px 0 128px;
}
.honor__inner {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  padding: 46px 40px 42px;
}
.honor__inner-title {
  margin-bottom: 46px;
  max-width: 1100px;
}
.honor__inner-info {
  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: 46px;
}
.honor__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.honor__inner-buttons .button {
  margin-right: 16px;
}
.honor__inner-buttons .button:last-child {
  margin: 0;
}
.honor__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
}
.honor__inner h2 {
  margin-bottom: 10px;
}
.honorItem {
  width: calc(33.3% - 10px);
  margin: 5px;
  border-radius: 24px;
  overflow: hidden;
}
.honorItem__inner {
  width: 100%;
  padding-bottom: 69%;
  position: relative;
}
.honorItem__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.uAvatar {
  width: 63px;
  height: 63px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  overflow: hidden;
  margin-right: -16px;
  position: relative;
}
.uAvatar:last-child {
  margin: 0;
}
.uAvatar:last-child::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(33, 39, 41, 0.15);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 1;
}
.uAvatar__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.uAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.uAvatar p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  color: #ffffff;
  z-index: 3;
}

@media (max-width: 1380px) {
  .honor {
    padding: 100px 0;
  }
  .honor__inner {
    padding: 40px;
  }
}
@media (max-width: 1180px) {
  .honor {
    padding: 80px 0;
  }
  .honor__inner {
    padding: 30px;
    border-radius: 20px;
  }
  .honor__inner-title {
    margin-bottom: 30px;
  }
  .honor__inner-info {
    margin-bottom: 30px;
  }
  .honorItem {
    border-radius: 20px;
  }
}
@media (max-width: 930px) {
  .honor {
    padding: 60px 0;
  }
}
@media (max-width: 750px) {
  .honor__inner {
    border-radius: 16px;
    padding: 20px;
  }
  .honor__inner-title {
    margin-bottom: 20px;
  }
  .honor__inner-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .honor__inner-buttons {
    margin-bottom: 24px;
  }
  .honor__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .honorItem {
    width: 100%;
    margin: 0 0 16px 0;
    border-radius: 16px;
  }
  .honorItem:last-child {
    margin: 0;
  }
}
@media (max-width: 540px) {
  .honor {
    padding: 40px 0;
  }
  .honor__inner-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .honor__inner-buttons .button {
    width: 100%;
    margin: 0 0 16px 0;
  }

  .uAvatar {
    width: 50px;
    height: 50px;
    margin-right: -8px;
  }
  .uAvatar p {
    font-size: 20px;
    line-height: 100%;
  }
}
.projects {
  padding: 90px 0 60px;
}
.projectsTop {
  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: 60px;
}
.projectsTop__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;
  width: 54px;
  height: 54px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 45px;
  margin-right: 30px;
  color: #7C0005;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.projectsTop__search:hover {
  background: #7C0005;
  color: #fff;
}
.projectsTop__search svg {
  width: 20px;
  height: 20px;
}
.projectsTop__tabs {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 1300px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  overflow-x: auto;
}
.projectsTop__tabs::-webkit-scrollbar {
  display: none;
}
.projectsTop__tabs button {
  font-family: "SF Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 0 14px 22px;
  margin-right: 10px;
  position: relative;
  white-space: nowrap;
}
.projectsTop__tabs button::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: #7C0005;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.projectsTop__tabs button.active {
  color: #7C0005;
}
.projectsTop__tabs button.active::before {
  opacity: 1;
}
.projectsTop__tabs button:last-child {
  margin: 0;
}
.projectsItem {
  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: 115px;
}
.projectsItem:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.projectsItem__image {
  width: calc(45% - 20px);
  max-width: 616px;
  border-radius: 24px;
  overflow: hidden;
}
.projectsItem__image-inner {
  width: 100%;
  padding-bottom: 78%;
  position: relative;
}
.projectsItem__image-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.projectsItem__content {
  width: calc(55% - 20px);
  max-width: 725px;
}
.projectsItem__content > p {
  margin-bottom: 24px;
}
.projectsItem__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.projectsItem__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
  margin: 8px 40px 8px 0;
}
.projectsItem__tag:last-child {
  margin-right: 0;
}
.projectsItem__tag span {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 12px;
}
.projectsItem__tag span img {
  width: 100%;
}
.projectsItem__tag p {
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #989898;
}
.projectsItem__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.projectsItem__buttons .button {
  margin-right: 16px;
}
.projectsItem__buttons .button:last-child {
  margin: 0;
}
.projectsItem h2 {
  margin-bottom: 16px;
}

.pagination {
  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: 20px 0 80px;
}
.pagination__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
}
.pagination__row button {
  font-family: "SF Pro", sans-serif;
  font-weight: 590;
  font-size: 22.4846px;
  line-height: 27px;
  color: #212729;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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: 55px;
  height: 55px;
  background: #ffffff;
  border: 2px solid #f1f1f1;
  border-radius: 14px;
  margin-right: 10px;
}
.pagination__row button:hover {
  background: #f1f1f1;
}
.pagination__row button.active {
  background: #7C0005;
  border-color: #7C0005;
  color: #fff;
}
.pagination__row button.dots {
  border: unset;
  background: transparent;
}
.pagination__row button:last-child {
  margin: 0;
}
.pagination > button {
  font-family: "SF Pro", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  color: #212729;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: transparent;
  padding: 14px 7px;
}
.pagination > button:disabled {
  color: #cccccc;
  pointer-events: none;
}
.pagination > button:hover {
  color: #7C0005;
}

@media (max-width: 1380px) {
  .projects {
    padding: 80px 0 100px;
  }
  .projectsTop {
    margin-bottom: 50px;
  }
  .projectsTop__search {
    margin-right: 20px;
  }
  .projectsTop__tabs button {
    font-size: 18px;
    line-height: 22px;
    padding: 0 14px 18px;
  }
  .projectsItem {
    margin-bottom: 80px;
  }
}
@media (max-width: 1180px) {
  .projects {
    padding: 70px 0;
  }
  .projectsTop {
    -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: 40px;
  }
  .projectsTop__search {
    margin-bottom: 20px;
    display: none;
  }
  .projectsTop__tabs {
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
  .projectsItem {
    margin-bottom: 60px;
  }
  .projectsItem__image {
    width: calc(46% - 12px);
  }
  .projectsItem__content {
    width: calc(54% - 12px);
  }
  .projectsItem__tag {
    margin-right: 28px;
  }
}
@media (max-width: 930px) {
  .projects {
    padding: 60px 0;
  }
  .projectsTop {
    margin-bottom: 30px;
    position: relative;
  }
  .projectsTop::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    height: 2px;
    content: "";
    background: rgba(0, 0, 0, 0.04);
  }
  .projectsTop__tabs {
    padding: 0 30px;
    margin: 0 -30px;
    width: calc(100% + 60px);
    border: unset;
  }
  .projectsTop__tabs button {
    font-size: 16px;
    line-height: 20px;
    padding: 0 10px 16px;
  }
  .projectsTop__tabs button::before {
    height: 2px;
  }
  .projectsItem {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    margin-bottom: 44px;
  }
  .projectsItem__image {
    width: 100%;
    max-width: unset;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
  .projectsItem__image-inner {
    padding-bottom: 66%;
  }
  .projectsItem__content {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 750px) {
  .projectsTop__tabs {
    padding: 0 20px;
    margin: 0 -20px;
    width: calc(100% + 40px);
  }
}
@media (max-width: 540px) {
  .projects {
    padding: 50px 0 30px;
  }
  .projectsItem {
    margin-bottom: 40px;
  }
  .projectsItem__image {
    border-radius: 16px;
    margin-bottom: 24px;
  }
  .projectsItem__image-inner {
    padding-bottom: 78%;
  }
  .projectsItem__row {
    margin-bottom: 12px;
  }
  .projectsItem__tag {
    margin: 8px 20px 8px 0;
  }
  .projectsItem__tag span {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
  .projectsItem__tag p {
    font-size: 15px;
    line-height: 20px;
  }

  .pagination {
    padding-bottom: 20px;
  }
  .pagination__row {
    padding: 0 6px;
  }
  .pagination__row button {
    font-size: 18px;
    line-height: 100%;
    width: 40px;
    height: 40px;
    margin-right: 6px;
    border-radius: 8px;
    border-width: 1px;
  }
  .pagination > button {
    font-size: 18px;
    padding: 12px 6px;
  }
}
.detail {
  padding: 90px 0;
}
.detail__inner-title {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 50px;
}
.detail__inner-title p {
  color: #212729;
}
.detail__inner-info {
  margin-bottom: 28px;
  text-align: center;
}
.detail__inner-info p {
  color: #212729;
}
.detail__inner-info p b {
  font-weight: 700;
}
.detail__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
.detail__inner-buttons:last-child {
  margin: 0;
}
.detail__inner-buttons .button {
  margin-right: 20px;
  min-width: 185px;
}
.detail__inner-buttons .button.primary {
  min-width: 206px;
}
.detail__inner-buttons .button:last-child {
  margin: 0;
}
.detail__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -6px;
}
.detail__inner h2 {
  margin-bottom: 28px;
}
.detailItem {
  width: calc(33.3% - 12px);
  margin: 8px 6px;
  border-radius: 24px;
  overflow: hidden;
}
.detailItem.big {
  width: calc(100% - 12px);
}
.detailItem.big .detailItem__inner {
  padding-bottom: 35%;
}
.detailItem__inner {
  width: 100%;
  position: relative;
  padding-bottom: 66%;
}
.detailItem__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.quote {
  padding: 50px 0 100px;
}
.quote__inner {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.quote__inner h4 {
  margin-bottom: 12px;
  font-weight: 700;
}
.quote__inner h6 {
  color: #7C0005;
  margin-bottom: 40px;
  font-weight: 700;
}
.quote__inner p {
  font-weight: 300;
}

@media (max-width: 1380px) {
  .detail {
    padding: 80px 0;
  }
  .detail__inner-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 1180px) {
  .detail {
    padding: 70px 0;
  }
  .detail__inner-title {
    margin-bottom: 30px;
  }
  .detail__inner-buttons {
    margin-bottom: 40px;
  }

  .quote {
    padding: 50px 0 80px;
  }
}
@media (max-width: 930px) {
  .detail {
    padding: 60px 0;
  }
  .detail__inner-buttons {
    margin-bottom: 30px;
  }
  .detail__inner h2 {
    margin-bottom: 20px;
  }

  .quote {
    padding: 40px 0 60px;
  }
  .quote__inner h6 {
    margin-bottom: 30px;
  }
}
@media (max-width: 750px) {
  .detail {
    padding: 50px 0 40px;
  }
  .detailItem {
    width: calc(50% - 12px);
    margin: 6px;
    border-radius: 16px;
  }
  .detailItem.big {
    width: calc(50% - 12px);
  }
  .detailItem.big .detailItem__inner {
    padding-bottom: 66%;
  }
  .detailItem.uniq {
    width: calc(100% - 12px);
  }
}
@media (max-width: 540px) {
  .detail {
    padding: 40px 0;
  }
  .detail__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .detail__inner-buttons .button {
    min-width: unset !important;
    margin-right: 16px;
  }
  .detailItem {
    width: 100%;
    margin: 0 0 12px 0;
  }
  .detailItem:last-child {
    margin: 0;
  }
  .detailItem.big {
    width: 100%;
  }
  .detailItem.big .detailItem__inner {
    padding-bottom: 66%;
  }

  .quote {
    padding: 40px 0 20px;
  }
  .quote__inner h6 {
    margin-bottom: 20px;
  }
}
.contact {
  padding: 126px 0;
}
.contact.sm {
  padding: 0 0 85px;
}
.contact__inner {
  background: rgba(33, 39, 41, 0.04);
  border-radius: 28px;
  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: 42px 42px 42px 54px;
}
.contactContent {
  width: calc(50% - 20px);
  max-width: 608px;
}
.contactContent__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -8px 30px;
}
.contactContent h3 {
  margin-bottom: 30px;
}
.contactContent .input {
  width: calc(50% - 16px);
  margin: 6px 8px;
}
.contactContent .input.big {
  width: calc(100% - 16px);
}
.contactImage {
  width: calc(50% - 20px);
  max-width: 612px;
  border-radius: 24px;
  overflow: hidden;
}
.contactImage__inner {
  width: 100%;
  padding-bottom: 80%;
  position: relative;
}
.contactImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

@media (max-width: 1380px) {
  .contact {
    padding: 100px 0;
  }
  .contact__inner {
    padding: 40px;
  }
}
@media (max-width: 1180px) {
  .contact {
    padding: 80px 0;
  }
  .contact.sm {
    padding-bottom: 60px;
  }
  .contact__inner {
    padding: 30px;
    border-radius: 20px;
  }
  .contactContent {
    width: calc(50% - 15px);
  }
  .contactContent__row {
    margin-bottom: 20px;
  }
  .contactContent h3 {
    margin-bottom: 20px;
  }
  .contactImage {
    width: calc(50% - 15px);
  }
}
@media (max-width: 930px) {
  .contact {
    padding: 60px 0;
  }
  .contact.sm {
    padding-bottom: 50px;
  }
  .contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contactContent {
    width: 100%;
    max-width: unset;
  }
  .contactImage {
    width: 100%;
    max-width: unset;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
}
@media (max-width: 540px) {
  .contact {
    padding: 50px 0;
  }
  .contact.sm {
    padding-bottom: 40px;
  }
  .contact__inner {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .contactContent__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 24px 0;
  }
  .contactContent .input {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .contactContent .input:last-child {
    margin: 0;
  }
  .contactImage {
    margin-bottom: 24px;
    border-radius: 16px;
  }
}
.thanks {
  padding: 102px 0 132px;
}
.thanks__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.thanks__inner-tag {
  font-weight: 590;
  font-size: 22px;
  line-height: 26px;
  color: #516c15;
  padding: 10px 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(171, 234, 35, 0.2);
  border-radius: 6px;
  margin-bottom: 36px;
}
.thanks__inner-title {
  margin-bottom: 50px;
}
.thanks__inner-icon {
  width: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}
.thanks__inner-icon img {
  width: 100%;
}
.thanks__inner-text {
  max-width: 1100px;
  margin: 0 auto;
}
.thanks__inner-text p b {
  color: #7C0005;
  font-weight: 700;
}

@media (max-width: 1380px) {
  .thanks {
    padding: 80px 0 100px;
  }
}
@media (max-width: 1180px) {
  .thanks {
    padding: 70px 0 80px;
  }
  .thanks__inner-title {
    margin-bottom: 40px;
  }
  .thanks__inner-icon {
    margin-bottom: 40px;
    width: 190px;
  }
}
@media (max-width: 930px) {
  .thanks {
    padding: 60px 0;
  }
  .thanks__inner-title {
    margin-bottom: 30px;
  }
  .thanks__inner-tag {
    padding: 10px 24px;
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 24px;
  }
  .thanks__inner-icon {
    margin-bottom: 30px;
    width: 160px;
  }
}
@media (max-width: 540px) {
  .thanks {
    padding: 40px 0;
  }
  .thanks__inner-title {
    margin-bottom: 24px;
  }
  .thanks__inner-tag {
    padding: 8px 12px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .thanks__inner-icon {
    margin-bottom: 24px;
    width: 140px;
  }
}
.terms {
  padding: 85px 0;
}
.terms__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.terms__inner-nav {
  width: 325px;
  border-right: 3px solid rgba(0, 0, 0, 0.04);
  padding-right: 30px;
  padding: 14px 30px 14px 0;
}
.terms__inner-content {
  width: calc(100% - 370px);
  max-width: 1020px;
  padding: 14px 0;
}
.termsSelect {
  max-width: 266px;
}
.termsSelect__selected {
  display: none;
}
.termsSelect__options li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #212729;
  margin-bottom: 16px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.termsSelect__options li:hover {
  color: #7C0005;
}
.termsSelect__options li:last-child {
  margin: 0;
}
.termsSelect__options li.active {
  color: #7C0005;
}
.termsSelect__options li img {
  width: 24px;
  height: 24px;
  margin-right: 16px;
}
.termsItem {
  display: none;
  color: #212729;
}
.termsItem.active {
  display: block;
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}
.termsItem p {
  margin-bottom: 20px;
  line-height: 130%;
}
.termsItem p:last-child {
  margin: 0;
}
.termsItem a {
  color: #7C0005;
  text-decoration: underline;
}
.termsItem a:hover {
  opacity: 0.7;
}
.termsItem ul {
  padding-left: 24px;
  margin-bottom: 20px;
}
.termsItem ul:last-child {
  margin: 0;
}
.termsItem ul li {
  list-style: disc;
  margin-bottom: 4px;
  line-height: 130%;
}
.termsItem ul li:last-child {
  margin: 0;
}

@media (max-width: 1180px) {
  .terms {
    padding: 70px 0;
  }
  .terms__inner-nav {
    width: 270px;
    padding-right: 20px;
  }
  .terms__inner-content {
    width: calc(100% - 300px);
  }
  .termsSelect__options li {
    font-size: 18px;
    line-height: 22px;
  }
  .termsSelect__options li img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 930px) {
  .terms {
    padding: 50px 0;
  }
  .terms__inner-nav {
    width: 230px;
    padding-right: 20px;
  }
  .terms__inner-content {
    width: calc(100% - 250px);
  }
  .termsSelect__options li {
    font-size: 16px;
    line-height: 20px;
  }
  .termsSelect__options li img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
}
@media (max-width: 540px) {
  .terms {
    padding: 40px 0;
  }
  .terms__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .terms__inner-nav {
    width: 100%;
    max-width: unset;
    border: unset;
    padding: 0;
    margin-bottom: 20px;
  }
  .terms__inner-content {
    width: 100%;
    max-width: unset;
    padding: 0;
  }
  .termsSelect {
    position: relative;
    z-index: 10;
    max-width: unset;
  }
  .termsSelect.open .termsSelect__selected::before {
    -webkit-transform: translateY(-40%) rotate(-45deg);
            transform: translateY(-40%) rotate(-45deg);
  }
  .termsSelect.open .termsSelect__options {
    max-height: 700px;
    opacity: 1;
    padding: 12px;
  }
  .termsSelect__selected {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #212729;
    padding: 12px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #bdbdbd;
    position: relative;
  }
  .termsSelect__selected::before {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 10px;
    height: 10px;
    content: "";
    border-top: 2px solid #7C0005;
    border-right: 2px solid #7C0005;
    -webkit-transform: translateY(-60%) rotate(135deg);
            transform: translateY(-60%) rotate(135deg);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .termsSelect__selected img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
  .termsSelect__options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 12px;
    background: #fff;
    border-radius: 10px;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    border: 1px solid #bdbdbd;
  }
  .termsSelect__options li {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 400;
  }
  .termsSelect__options li img {
    width: 16px;
    height: 16px;
    margin-right: 14px;
  }
}
.donation {
  padding: 102px 0 148px;
}
.donation__inner-title {
  text-align: center;
  margin-bottom: 55px;
}
.donation__inner-title h6.sup {
  color: #E1C6AF;
}
.donationMain {
  max-width: 1110px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid rgba(222, 222, 222, 0.59);
  -webkit-box-shadow: 0px 0px 29.1734px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 29.1734px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  padding: 52px 30px 48px;
}
.donationMain__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.donationMain__tabs button {
  width: 33.3%;
  font-family: "SF Pro", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #979797;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
  padding: 0 16px 16px 16px;
}
.donationMain__tabs button.active {
  color: #7C0005;
}
.donationMain__tabs button.active::before {
  opacity: 1;
}
.donationMain__tabs button::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #7C0005;
  content: "";
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.donationStep {
  padding-top: 40px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 600px;
}
.donationStep.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}
.donationStep__title {
  margin-bottom: 38px;
}
.donationStep__title h6 {
  font-weight: 700;
}
.donationStep__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 24px;
}
.donationStep__col .input__outer {
  margin-bottom: 24px;
}
.donationStep__col .input__outer:last-child {
  margin: 0;
}
.donationStep__col .input p {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 510;
  font-size: 16px;
  line-height: 19px;
  color: #212729;
  pointer-events: none;
}
.donationStep__col .input input {
  text-align: end;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  padding: 12px 20px;
}
.donationStep__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px 30px;
}
.donationStep__row .input__outer {
  width: calc(33.3% - 20px);
  margin: 12px 10px;
}
.donationStep__row .input__outer.big {
  width: calc(50% - 20px);
}
.donationStep__row .input input,
.donationStep__row .input textarea,
.donationStep__row .input select {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #212729;
  padding: 12px 16px;
}
.donationStep__support {
  margin-bottom: 48px;
}
.donationStep__support h6 {
  margin-bottom: 10px;
  font-weight: 700;
}
.donationStep__payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 86px;
}
.donationStep__payment button {
  width: calc(50% - 10px);
  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;
  font-family: "SF Pro", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #000000;
  position: relative;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 9px;
  padding: 17px;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.donationStep__payment button.active {
  border-color: #7C0005;
  background: #fff;
}
.donationStep__payment button span {
  position: absolute;
  top: 50%;
  left: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.donationStep__payment button span img {
  height: 100%;
}
.donationStep__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 20px 0;
  border-top: 3px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 40px;
}
.donationStep__total h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #000000;
}
.donationStep__foot {
  margin: auto 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.donationStep__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.donationStep__buttons .button {
  margin-right: 16px;
}
.donationStep__buttons .button:last-child {
  margin: 0;
}
.donation h6 {
  font-size: 18px;
  line-height: 21px;
  color: #000000;
}

.paymentForm {
  display: none;
  margin-bottom: 30px;
}
.paymentForm.active {
  display: block;
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}
.paymentForm p {
  color: #212729;
}

@media (max-width: 1380px) {
  .donation {
    padding: 100px 0 110px;
  }
}
@media (max-width: 1180px) {
  .donation {
    padding: 80px 0;
  }
  .donationMain {
    padding: 40px 30px;
  }
}
@media (max-width: 930px) {
  .donation {
    padding: 60px 0;
  }
  .donation__inner-title {
    margin-bottom: 40px;
  }
  .donationStep {
    padding-top: 30px;
    min-height: unset;
  }
  .donationStep__support {
    margin-bottom: 30px;
  }
  .donationStep__payment {
    margin-bottom: 50px;
  }
  .donationStep__payment button {
    font-size: 16px;
    line-height: 20px;
    padding: 14px;
  }
  .donationStep__payment button span {
    height: 18px;
    left: 16px;
  }
  .donationMain__tabs button {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .donationMain {
    padding: 24px 20px;
    border-radius: 10px;
  }
  .donationMain__tabs {
    overflow: hidden;
    overflow-x: auto;
  }
  .donationMain__tabs::-webkit-scrollbar {
    display: none;
  }
  .donationMain__tabs button {
    white-space: nowrap;
    font-size: 15px;
    padding: 0 14px 10px 14px;
    width: unset;
  }
  .donationMain__tabs button::before {
    height: 2px;
  }
  .donationStep__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 24px 0;
  }
  .donationStep__row .input__outer {
    width: 100%;
    margin: 0 0 14px 0;
  }
  .donationStep__row .input__outer:last-child {
    margin: 0;
  }
  .donationStep__row .input__outer.big {
    width: 100%;
  }
  .donationStep__payment {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
  .donationStep__payment button {
    width: 100%;
    margin-bottom: 16px;
  }
  .donationStep__payment button:last-child {
    margin: 0;
  }
}
@media (max-width: 540px) {
  .donation {
    padding: 40px 0;
  }
  .donation__inner-title {
    margin-bottom: 30px;
  }
  .donationStep__title {
    margin-bottom: 24px;
  }
  .donationStep__col .input__outer {
    margin-bottom: 16px;
  }
  .donationStep__col .input input {
    padding: 10px 16px;
  }
  .donationStep__col .input p {
    font-size: 14px;
    left: 16px;
  }
  .donationStep__row .input input,
.donationStep__row .input select {
    padding: 10px 16px;
  }
  .donationStep__total {
    margin-bottom: 30px;
    padding: 12px 10px 0;
  }
  .donationStep__support {
    margin-bottom: 22px;
  }
  .donationStep__foot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .donationStep__foot .button {
    font-size: 15px;
    padding: 9px 20px;
  }
  .donationStep__back {
    width: 100%;
    margin-bottom: 16px;
  }
  .donationStep__back .button {
    width: 100%;
  }
  .donationStep__buttons {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .donationStep__buttons .button {
    width: calc(50% - 6px);
    margin: 0;
  }
  .donation h6 {
    font-size: 16px;
  }

  .paymentForm {
    margin-bottom: 20px;
  }
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

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

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

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

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

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

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

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

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

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

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

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

/*n3o form custom styling*/

.n3o-form-header__title {
  color: black !important;
  font-size: large !important;
}