@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Black.woff2") format("woff2");
  font-weight: 900;
  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: "Roboto", sans-serif;
  font-size: 20px;
  color: #0D3123;
  line-height: 24px;
  font-weight: 400;
  background: #ffffff;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #0D3123;
  -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-size: 55px;
  line-height: 65px;
  font-weight: 900;
}
h1.ex {
  font-size: 80px;
  line-height: 96px;
  font-weight: 900;
}
h1.big {
  font-size: 65px;
  line-height: 70px;
}
h1.sm {
  font-size: 45px;
  line-height: 54px;
}

h2 {
  font-size: 45px;
  line-height: 54px;
  font-weight: 700;
}
h2.big {
  font-size: 55px;
  line-height: 66px;
}

h3 {
  font-weight: 700;
  font-size: 35px;
  line-height: 42px;
}

h4 {
  font-weight: 700;
  font-size: 30px;
  line-height: 37px;
}

h5 {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}
h5.big {
  font-size: 25px;
  line-height: 30px;
}
h5.sm {
  font-size: 23px;
  line-height: 30px;
}

h6 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

p.lg {
  font-size: 28px;
  line-height: 40px;
  font-weight: 300;
}
p.sm {
  font-size: 18px;
  line-height: 23px;
}

.main {
  overflow: hidden;
}
.main.sm {
  padding-top: 70px;
}

.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: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 18px 22px;
  text-transform: uppercase;
  border-radius: 30px;
  min-width: 190px;
  border: 2px solid transparent;
}
.button.primary {
  color: #0D3123;
  background: #FDDD58;
  border-color: #FDDD58;
}
.button.primary:hover {
  opacity: 1;
  background: #7F0000;
  color: #ffffff;
  border-color: #7F0000;
}
.button.secondary {
  background: #0D3123;
  color: #ffffff;
  border-color: #0D3123;
}
.button.secondary:hover {
  opacity: 1;
  color: #0D3123;
  background: transparent;
  border-color: #0D3123;
}
.button.light {
  background: #ffffff;
  color: #0D3123;
  border-color: #ffffff;
}
.button.light:hover {
  opacity: 1;
  border-color: #0D3123;
}
.button.solid {
  background: transparent;
  color: #0D3123;
  border-color: #0D3123;
}
.button.solid:hover {
  opacity: 1;
  background: #0D3123;
  color: #ffffff;
}
.button.solidy {
  background: transparent;
  color: #FDDD58;
  border-color: #FDDD58;
}
.button.solidy:hover {
  opacity: 1;
  background: #FDDD58;
  color: #0D3123;
}
.button.solidw {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.button.solidw:hover {
  opacity: 1;
  background: #ffffff;
  color: #0D3123;
}

.video {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 63%;
  position: relative;
}
.video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(57.8%, rgba(21, 44, 74, 0)), to(rgba(21, 44, 74, 0.7)));
  background: linear-gradient(180deg, rgba(21, 44, 74, 0) 57.8%, rgba(21, 44, 74, 0.7) 100%);
  mix-blend-mode: multiply;
  z-index: 2;
}
.video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 44, 74, 0.15);
  content: "";
  z-index: 1;
}
.video.active::before {
  display: none;
}
.video.active::after {
  display: none;
}
.video video,
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
}
.video video [poster],
.video iframe [poster] {
  width: 100%;
  height: 100%;
}
.video video:hover ~ .video__play.active,
.video iframe:hover ~ .video__play.active {
  opacity: 1;
}
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
}
.video__play:hover {
  background: #ffffff;
  color: #0D3123;
}
.video__play.active {
  opacity: 0;
}
.video__play.active span svg {
  opacity: 0;
}
.video__play.active span::after {
  display: block;
}
.video__play.active span::before {
  display: block;
}
.video__play.active:hover {
  opacity: 1;
}
.video__play.active:hover span::after {
  background: #0D3123;
}
.video__play.active:hover span::before {
  background: #0D3123;
}
.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: 35%;
  width: 6px;
  height: 46%;
  background: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 3px;
}
.video__play span::before {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  right: 35%;
  width: 6px;
  height: 46%;
  background: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 3px;
}
.video__play span svg {
  width: 42px;
  height: 36px;
  margin-left: 10px;
}

.select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.select::before {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #0D3123;
  border-right: 3px solid #0D3123;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-60%) rotate(135deg);
          transform: translateY(-60%) rotate(135deg);
  pointer-events: none;
}
.select select {
  width: 100%;
  cursor: pointer;
  font-size: 20px;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  -webkit-appearance: none;
  padding: 12px 40px 12px 20px;
  border-radius: 30px;
  border: 1px solid #0D3123;
}

.input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.input.sel::before {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #0D3123;
  border-right: 3px solid #0D3123;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-60%) rotate(135deg);
          transform: translateY(-60%) rotate(135deg);
  pointer-events: none;
}
.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: 400;
  margin-bottom: 20px;
}
.input__outer p span {
  color: #7F0000;
}
.input__outer .input {
  width: 100%;
}
.input input,
.input textarea,
.input select {
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  resize: unset;
  -webkit-appearance: none;
  border-radius: 23px;
  border: 1px solid #0D3123;
  padding: 12px 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #0D3123;
}
.input input:focus,
.input textarea:focus,
.input select:focus {
  border-color: #FDDD58;
}
.input input::-webkit-input-placeholder, .input textarea::-webkit-input-placeholder, .input select::-webkit-input-placeholder {
  color: #0D3123;
}
.input input::-moz-placeholder, .input textarea::-moz-placeholder, .input select::-moz-placeholder {
  color: #0D3123;
}
.input input:-ms-input-placeholder, .input textarea:-ms-input-placeholder, .input select:-ms-input-placeholder {
  color: #0D3123;
}
.input input::-ms-input-placeholder, .input textarea::-ms-input-placeholder, .input select::-ms-input-placeholder {
  color: #0D3123;
}
.input input::placeholder,
.input textarea::placeholder,
.input select::placeholder {
  color: #0D3123;
}

.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: 18px;
  height: 18px;
  margin-right: 20px;
  position: relative;
}
.check__box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.check__box input:checked ~ span::before {
  opacity: 1;
}
.check__box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #0D3123;
  border-radius: 2px;
}
.check__box span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 5px;
  border-top: 2px solid #0D3123;
  border-right: 2px solid #0D3123;
  -webkit-transform: translate(-50%, -60%) rotate(135deg);
          transform: translate(-50%, -60%) rotate(135deg);
  content: "";
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.check p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.check p b {
  font-weight: 800;
}

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

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

.basket {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
}
.basket.active {
  display: block;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}
.basket__top {
  padding: 40px;
}
.basket__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 500px;
  color: #0D3123;
  background: #ffffff;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.basket__inner-head {
  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;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(13, 49, 35, 0.2);
  margin-bottom: 30px;
}
.basket__inner-head h3 {
  margin-bottom: 20px;
  padding-right: 40px;
}
.basket__inner-head p {
  font-weight: 300;
}
.basket__inner-head p b {
  font-weight: 600;
}
.basket__inner-close {
  position: absolute;
  top: 6px;
  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;
  z-index: 3;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(13, 49, 35, 0.2);
}
.basket__inner-close:hover {
  opacity: 1;
  border-color: #FDDD58;
  background: #0D3123;
}
.basket__inner-close:hover::before {
  background: #ffffff;
}
.basket__inner-close:hover::after {
  background: #ffffff;
}
.basket__inner-close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 45%;
  content: "";
  background: #0D3123;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  pointer-events: none;
}
.basket__inner-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 45%;
  content: "";
  background: #0D3123;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  pointer-events: none;
}
.basket__total {
  margin: auto 0 0 0;
  width: 100%;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #0D3123;
  color: #ffffff;
}
.basket__total-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.basket__total .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}
.basket__total .button.primary:hover {
  background: #7F0000;
  color: #ffffff;
}
.basket__total .button:last-child {
  margin: 0;
}
.basketBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  cursor: pointer;
  background: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  height: 50px;
  width: 44px;
  position: relative;
  margin-left: 20px;
}
.basketBtn:hover .basketBtn__number {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.basketBtn__number {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  line-height: 100%;
  font-weight: 700;
  background: #FDDD58;
  color: #0D3123;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.basketBtn__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 72%;
  color: #ffffff;
}
.basketBtn__icon svg {
  width: 100%;
  height: 100%;
}
.basketItem {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(13, 49, 35, 0.2);
  margin-bottom: 30px;
}
.basketItem:last-child {
  margin: 0;
}
.basketItem__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.basketItem__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.basketItem__info p {
  font-weight: 300;
  margin-bottom: 14px;
}
.basketItem__info p:last-child {
  margin: 0;
}
.basketItem__info p b {
  font-weight: 700;
}
.basketItem__remove {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  color: #7F0000;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.basketItem__remove:hover {
  color: #0D3123;
}
.basketItem__remove span {
  text-decoration: underline;
  margin-left: 5px;
}

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

.tabSelect {
  margin-bottom: 20px;
}
.tabSelect__selected {
  display: none;
}
.tabSelect__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tabSelect button {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  border: 1px solid #ffffff;
  padding: 16px 20px;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-right: 15px;
  border-radius: 30px;
  color: #ffffff;
}
.tabSelect button.active {
  background: #FDDD58;
  color: #0D3123;
  border-color: #FDDD58;
}
.tabSelect button:last-child {
  margin: 0;
}

.differ {
  background: #f9f8fb;
  padding: 112px 0 145px;
}
.differ__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.differContent {
  width: calc(51% - 12px);
}
.differContent__title {
  margin-bottom: 40px;
}
.differContent__title p {
  max-width: 670px;
}
.differContent__text {
  padding-left: 40px;
  border-left: 3px solid #0D3123;
  margin-bottom: 50px;
  max-width: 670px;
}
.differContent__text:last-child {
  margin-bottom: 0;
}
.differContent h2 {
  margin-bottom: 20px;
}
.differMain {
  width: calc(49% - 12px);
  position: relative;
}
.differMain__row {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}
.differMain__shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 618px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(25%, -6%);
  transform: translate(25%, -6%);
}
.differMain__shape img {
  width: 100%;
}
.differItem {
  width: calc(50% - 20px);
  margin: 10px;
  padding: 30px;
  background: #ffffff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 30px;
}
.differItem:hover {
  background: #FDDD58;
}
.differItem__icon {
  width: 50px;
  height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.differItem__icon img {
  width: 100%;
}
.differItem h5 {
  margin-bottom: 15px;
}
.differContent__text {
  font-size: 28px;
  line-height: 40px;
  font-weight: 300;
}

.history {
  padding: 60px 0;
}
.history__inner-title {
  text-align: center;
  max-width: 795px;
  margin: 0 auto 30px;
}
.history__inner-slider {
  margin-bottom: 20px !important;
}
.history__inner-slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.history__inner-slider .slick-slide {
  height: unset !important;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}
.history__inner-slider .slick-active {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
.history__inner-slider .slick-current {
  -webkit-transform: scale(1);
  transform: scale(1);
  position: relative;
  z-index: 2;
}
.history__inner-slider .slick-dots {
  display: none !important;
}
.history__inner-slider .slick-arrow {
  position: absolute;
  z-index: 3;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #0D3123;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.history__inner-slider .slick-arrow:hover {
  opacity: 1;
  background: #7F0000;
}
.history__inner-slider .slick-arrow:focus {
  background: #7F0000;
}
.history__inner-slider .slick-arrow::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url("../images/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1 !important;
}
.history__inner-slider .slick-prev {
  left: 0;
}
.history__inner-slider .slick-prev::before {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.history__inner-slider .slick-next {
  right: 0;
}
.history__inner h2 {
  margin-bottom: 20px;
}
.historyItem {
  border-radius: 35px;
  overflow: hidden;
  border: 3px solid #ffffff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.historyItem__inner {
  width: 100%;
  height: 100%;
  padding-bottom: 90%;
  position: relative;
}
.historyItem__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.historyContent {
  text-align: center;
}
.historyContent h3 {
  margin-bottom: 20px;
}
.historyContent p {
  max-width: 795px;
  margin: 0 auto;
}

.vacancies {
  padding: 56px 0 40px;
  overflow: hidden;
  border-top: 10px solid #FDDD58;
  background: #f9f8fb;
  position: relative;
}
.vacancies__shape {
  position: absolute;
  top: 50%;
  right: 0;
  width: 690px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  pointer-events: none;
}
.vacancies__shape img {
  width: 100%;
}
.vacancies__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.vacanciesItem {
  width: calc(33.3% - 40px);
  margin: 20px;
  border-radius: 30px 30px 0 0;
  border-bottom: 5px solid #FDDD58;
  padding: 40px;
  background: #ffffff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.vacanciesItem h5 {
  font-weight: 500;
  margin-bottom: 10px;
}
.vacanciesItem.new{
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.vacanciesItem.btn p{
  margin-bottom: 14px;
}

.vacanciesItem.new:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

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

  p.lg {
    font-size: 25px;
    line-height: 35px;
  }

  .basketBtn {
    width: 31px;
    height: 35px;
  }
  .basketBtn__number {
    width: 17px;
    height: 17px;
    font-size: 11px;
  }
  .differ {
    padding: 100px 0;
  }
  .differContent__text{
    font-size: 25px;
    line-height: 35px;
  }
  .vacancies {
    padding: 40px 0;
  }
  .vacancies__inner-row {
    margin: 0 -15px;
  }
  .vacanciesItem {
    width: calc(33.3% - 30px);
    margin: 15px;
  }
}
@media (max-width: 1180px) {
  .auto__container {
    padding: 0 30px;
  }

  h1 {
    font-size: 45px;
  }
  h1.big {
    font-size: 55px;
  }
  h1.sm {
    font-size: 35px;
    line-height: 40px;
  }

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

  h6 {
    font-size: 18px;
    line-height: 22px;
  }

  p {
    font-size: 18px;
    line-height: 22px;
  }

  .button {
    font-size: 18px;
    line-height: 100%;
    padding: 14px 20px;
    min-width: 170px;
  }

  .video__play {
    width: 80px;
    height: 80px;
  }
  .video__play span svg {
    width: 36px;
    height: 30px;
  }

  .banner {
    padding: 50px 0;
  }
  .differ {
    padding: 70px 0;
  }
  .differContent__title {
    margin-bottom: 30px;
  }
  .differContent__text {
    margin-bottom: 30px;
    padding-left: 24px;
  }
  .differMain__shape {
    width: 540px;
    top: 50%;
    -webkit-transform: translate(25%, -50%);
    transform: translate(25%, -50%);
  }
  .differMain__row {
    margin: -6px;
  }
  .differItem {
    padding: 20px;
    width: calc(50% - 12px);
    margin: 6px;
  }
  .differItem__icon {
    width: 40px;
    height: 50px;
    margin-bottom: 15px;
  }
  .history {
    padding: 50px 0;
  }
  .history__inner-slider {
    padding: 0 20px;
  }
  .history__inner-slider .slick-list {
    padding: 0 !important;
  }
  .history__inner-slider .slick-slide {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    margin: 0 8px;
  }
  .history__inner-slider .slick-active {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  .history__inner-slider .slick-current {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .history__inner-slider .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .history__inner-slider .slick-prev {
    left: -20px;
  }
  .history__inner-slider .slick-next {
    right: -20px;
  }
  .vacancies__inner-row {
    margin: 0 -10px;
  }
  .vacanciesItem {
    width: calc(33.3% - 20px);
    margin: 10px;
    padding: 30px;
  }
}
@media (max-width: 1024px) {
  body.active {
    overflow: hidden;
  }
}
@media (max-width: 930px) {
  h1.ex {
    font-size: 70px;
    line-height: 110%;
  }
  h1.big {
    font-size: 50px;
  }

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

  .tabSelect__options {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -5px;
  }
  .tabSelect button {
    font-size: 18px;
    line-height: 20px;
    padding: 12px 16px;
    margin-right: 8px;
    margin: 5px;
  }
  .tabSelect button:last-child {
    margin: 5px;
  }

  .banner {
    padding: 40px 0;
  }
  .differ {
    padding: 40px 0;
  }
  .differ__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .differContent {
    width: 100%;
    margin-bottom: 30px;
  }
  .differMain {
    width: 100%;
  }
  .differMain__shape {
    width: 460px;
  }
  .differMain__text {
    max-width: unset;
  }
  .differMain__row {
    margin: -10px;
  }
  .differItem {
    width: calc(50% - 20px);
    margin: 10px;
  }
  .history {
    padding: 40px 0;
  }
  .history__inner-slider {
    padding: 0 40px;
  }
  .history__inner-slider .slick-slide {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .history__inner-slider .slick-active {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .history__inner-slider .slick-prev {
    left: 0;
  }
  .history__inner-slider .slick-next {
    right: 0;
  }
  .vacanciesItem {
    width: calc(50% - 20px);
  }
}
@media (max-width: 750px) {
  .auto__container {
    padding: 0 20px;
  }

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

  .tabSelect {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
  }
  .tabSelect.active .tabSelect__options {
    opacity: 1;
    visibility: visible;
  }
  .tabSelect__selected {
    font-size: 20px;
    line-height: 24px;
    width: 100%;
    border-radius: 30px;
    border: 1px solid #ffffff;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 17px 20px;
  }
  .tabSelect__selected::before {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    content: "";
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transform: translate(0, -70%) rotate(135deg);
            transform: translate(0, -70%) rotate(135deg);
  }
  .tabSelect__options {
    position: absolute;
    top: 100%;
    left: 0;
    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;
    z-index: 3;
    padding: 20px;
    border: 1px solid #ffffff;
    background: #ffffff;
    border-radius: 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin: 0;
  }
  .tabSelect__options button {
    padding: 12px 10px;
    width: 100%;
    border: unset;
    color: #0D3123;
    margin: 0 0 10px 0;
  }
  .tabSelect__options button:last-child {
    margin: 0;
  }
}
@media (max-width: 540px) {
  h1.ex {
    font-size: 50px;
    line-height: 60px;
  }
  h1.big {
    font-size: 45px;
  }

  .basket__top {
    padding: 20px;
  }
  .basket__inner {
    max-width: unset;
  }
  .basket__inner-head {
    margin-bottom: 20px;
  }
  .basket__inner-close {
    top: 3px;
  }
  .basket__inner h3 {
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 16px;
  }
  .basketItem {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .basketItem__top p {
    max-width: 220px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .basketItem__top h6 {
    margin-left: 12px;
  }
  .basket__total {
    padding: 20px;
  }

  .video {
    padding-bottom: 68%;
  }
  .video__play {
    width: 60px;
    height: 60px;
  }
  .video__play span svg {
    width: 25px;
    height: 20px;
    margin-left: 3px;
  }

  .input__outer p {
    margin-bottom: 18px;
  }

  .banner {
    padding: 30px 0;
  }
  .banner__inner {
    border-radius: 20px;
  }
}
@-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.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);
  background: #ffffff;
}
.header.sticky .header__inner {
  padding: 3px 0;
  border-color: transparent;
  height: 70px;
}
.header.sticky .header__inner-logo {
  width: 127px;
}
.header.sticky .header__inner-logo img {
  /*opacity: 0;*/
}
.header.sticky .header__inner-logo img.dark {
  opacity: 1;
}
.header.sticky .nav__inner-link {
  color: #0D3123;
}
.header.sticky .button {
  background: #FDDD58;
  color: #0D3123;
}
.header.sticky .button:hover {
  opacity: 1;
  background: #0D3123;
  border-color: #0D3123;
  color: #FDDD58;
}
.header.sticky .basketBtn__icon {
  color: #0D3123;
}
.header.sticky .burger::before {
  background: #0D3123;
}
.header.sticky .burger::after {
  background: #0D3123;
}
.header.sticky .burger span {
  background: #0D3123;
}
.header.light {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: #ffffff;
}
.header.light .header__inner {
  padding: 3px 0;
  border-color: transparent;
  height: 70px;
}
.header.light .header__inner-logo {
  width: 127px;
}
.header.light .header__inner-logo img {
  opacity: 0;
}
.header.light .header__inner-logo img.dark {
  opacity: 1;
}
.header.light .nav__inner-link {
  color: #0D3123;
}
.header.light .button {
  background: #FDDD58;
  color: #0D3123;
}
.header.light .button:hover {
  opacity: 1;
  background: #0D3123;
  border-color: #0D3123;
  color: #FDDD58;
}
.header.light .basketBtn__icon {
  color: #0D3123;
}
.header.light .burger::before {
  background: #0D3123;
}
.header.light .burger::after {
  background: #0D3123;
}
.header.light .burger span {
  background: #0D3123;
}
.header__inner {
  padding: 30px 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;
  border-bottom: 1px solid #ffffff;
}
.header__inner-main {
  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;
}
.header__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
}
.header__inner-buttons .button {
  border-radius: 28px;
  border: 2px solid #FDDD58;
  color: #ffffff;
  padding: 15px;
  min-width: 180px;
}
.header__inner-buttons .button:hover {
  opacity: 1;
  background: #FDDD58;
  color: #0D3123;
}
.header__inner-buttons .button span {
  margin-left: 6px;
}
.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: 178px;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__inner-logo img {
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__inner-logo img.dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

@media (max-width: 1380px) {
  .header__inner {
    padding: 20px 0;
  }
  .header__inner-logo {
    width: 150px;
  }
  .header__inner-buttons {
    margin-left: 20px;
  }
  .header__inner-buttons .button {
    padding: 12px 18px;
    min-width: unset;
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 1180px) {
  .header__inner {
    padding: 15px 0;
  }
  .header__inner-logo {
    width: 127px;
  }
}
@media (max-width: 1024px) {
  .header.sticky .header__inner {
    padding: 10px 0;
  }
  .header.sticky .header__inner-logo {
    width: 104px;
  }
  .header.sticky .nav {
    top: 70px;
    height: calc(100% - 70px);
  }
  .header.light .header__inner {
    padding: 10px 0;
  }
  .header.light .header__inner-logo {
    width: 104px;
  }
  .header.light .nav {
    top: 70px;
    height: calc(100% - 70px);
  }
  .header.mobLight {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    background: #ffffff;
  }
  .header.mobLight .header__inner {
    padding: 10px 0;
    border-color: transparent;
    height: 70px;
  }
  .header.mobLight .header__inner-logo {
    width: 104px;
  }
  .header.mobLight .header__inner-logo img {
    opacity: 0;
  }
  .header.mobLight .header__inner-logo img.dark {
    opacity: 1;
  }
  .header.mobLight .nav {
    top: 70px;
    height: calc(100% - 70px);
  }
  .header.mobLight .nav__inner-link {
    color: #0D3123;
  }
  .header.mobLight .button {
    background: #FDDD58;
    color: #0D3123;
  }
  .header.mobLight .button:hover {
    opacity: 1;
    background: #0D3123;
    border-color: #0D3123;
    color: #FDDD58;
  }
  .header.mobLight .basketBtn__icon {
    color: #0D3123;
  }
  .header.mobLight .burger::before {
    background: #0D3123;
  }
  .header.mobLight .burger::after {
    background: #0D3123;
  }
  .header.mobLight .burger span {
    background: #0D3123;
  }
  .header.active {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    background: #ffffff;
  }
  .header.active .header__inner {
    border-color: transparent;
  }
  .header.active .header__inner-logo img {
    opacity: 0;
  }
  .header.active .header__inner-logo img.dark {
    opacity: 1;
  }
  .header.active .nav__inner-link {
    color: #0D3123;
  }
  .header.active .button {
    background: #FDDD58;
    color: #0D3123;
  }
  .header.active .button:hover {
    opacity: 1;
    background: #0D3123;
    border-color: #0D3123;
    color: #FDDD58;
  }
  .header.active .basketBtn__icon {
    color: #0D3123;
  }
  .header.active .burger::before {
    background: #0D3123;
  }
  .header.active .burger::after {
    background: #0D3123;
  }
  .header.active .burger span {
    background: #0D3123;
  }
  .header__inner {
    padding: 16px 0;
    height: 85px;
  }
  .header__inner-logo {
    width: 104px;
  }
  .header__inner .button {
    padding: 8px 18px;
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 650px){
  .history__inner-slider {
    padding: 0 0 40px 0;
    margin: 0 -10px 20px !important;
  }
  .history__inner-slider .slick-slide {
    margin: 0 10px;
  }
  .history__inner-slider .slick-arrow {
    display: none !important;
  }
  .history__inner-slider .slick-dots {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .history__inner-slider .slick-dots li {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    background: #0D3123;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0.5;
  }
  .history__inner-slider .slick-dots li.slick-active {
    opacity: 1;
  }
  .history__inner-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 0;
    background: transparent;
  }
  .history__inner-slider .slick-dots li button::before {
    display: none;
  }
  .vacancies__shape {
    display: none;
  }
  .vacancies__inner-row {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .vacanciesItem {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 40px;
  }
  .vacanciesItem:last-child {
    margin: 0;
  }
}
@media (max-width: 540px) {
  .header__inner-logo {
    width: 98px;
  }
  .header__inner .button {
    padding: 7px 20px;
    font-size: 15px;
    line-height: 18px;
  }
  .header__inner .button span {
    display: none;
  }
  .differ {
    padding: 30px 0;
    overflow: hidden;
  }
  .differMain__shape {
    top: 0;
    left: 50%;
    right: unset;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 610px;
  }
  .differMain__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  .differContent__title {
    margin-bottom: 24px;
  }
  .differContent__text {
    padding-left: 20px;
  }
  .differItem {
    width: 100%;
    padding: 30px;
    margin: 0 0 20px 0;
  }
  .differItem:last-child {
    margin: 0;
  }
  .history {
    padding: 30px 0;
  }
  .historyContent h3 {
    font-size: 28px;
    line-height: 34px;
  }
  .vacancies {
    padding: 30px 0;
  }
}
@media (max-width: 380px) {
  .header__inner .button {
    display: none;
  }
}
@-webkit-keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner-links > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
}
.nav__inner-links > li:last-child {
  margin: 0;
}
.nav__inner-link {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #ffffff;
  position: relative;
  padding: 20px 10px;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.nav__inner-link:hover {
  opacity: 1;
}
.nav__inner-link span {
  display: none;
}

.drop {
  position: relative;
  cursor: pointer;
}
.drop:hover {
  opacity: 1;
}
.drop:hover .dropMenu {
  opacity: 1;
  visibility: visible;
}
.dropMenu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 10px;
  padding-top: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 308px;
}
.dropMenu__list {
  background-color: #ffffff;
  -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;
  padding: 15px 20px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.dropMenu__list::before {
  position: absolute;
  content: "";
  bottom: calc(100% - 1px);
  left: 25px;
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  -webkit-transform: translate(0, 50%) rotate(45deg);
          transform: translate(0, 50%) rotate(45deg);
  z-index: -1;
}
.dropMenu__list li {
  margin-bottom: 5px;
}
.dropMenu__list li:last-child {
  margin: 0;
}
.dropMenu__list li:last-child a,
.dropMenu__list li:last-child button {
  border: unset;
}
.dropMenu__list a,
.dropMenu__list button {
  width: 100%;
  font-weight: 500;
  color: #0D3123;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(13, 49, 35, 0.2);
}
.dropMenu__list a:hover,
.dropMenu__list button:hover {
  opacity: 1;
}
.dropMenu__list a:hover span,
.dropMenu__list button:hover span {
  background: #7F0000;
  color: #ffffff;
}
.dropMenu__list a span,
.dropMenu__list button span {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  background: #FDDD58;
  color: #0D3123;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.dropMenu__list a span svg,
.dropMenu__list button span svg {
  width: 100%;
  height: 100%;
}

.burger {
  display: none;
}

@media (max-width: 1380px) {
  .nav__inner-links > li {
    margin-right: 15px;
  }
  .nav__inner-link {
    font-size: 18px;
  }

  .dropMenu {
    width: 280px;
  }
  .dropMenu__list {
    padding: 10px 15px;
    border-radius: 16px;
  }
  .dropMenu__list a,
.dropMenu__list button {
    font-size: 18px;
    line-height: 22px;
    padding: 12px 0;
  }
}
@media (max-width: 1180px) {
  .nav__inner-links > li {
    margin-right: 12px;
  }
  .nav__inner-link {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  body.active {
    overflow: hidden;
  }

  .nav {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    max-width: unset;
    height: calc(100% - 85px);
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    -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;
    overflow-y: auto;
    display: none;
  }
  .nav.active {
    display: block;
    -webkit-animation: fadeIn 0.3s;
            animation: fadeIn 0.3s;
  }
  .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%;
    z-index: 1;
    padding: 10px 20px 20px 20px;
    overflow-y: auto;
    background: #ffffff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .nav__inner-links {
    width: 100%;
    max-width: unset;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav__inner-links > li {
    width: 100%;
    margin: 0;
    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;
    border-bottom: 1px solid rgba(13, 49, 35, 0.2);
  }
  .nav__inner-links > li:last-child {
    border: unset;
  }
  .nav__inner-link {
    width: 100%;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .nav__inner-link:hover span {
    background: #7F0000;
    color: #ffffff;
  }
  .nav__inner-link.active span svg {
    -webkit-transform: rotate(-90deg) !important;
            transform: rotate(-90deg) !important;
  }
  .nav__inner-link span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FDDD58;
  }
  .nav__inner-link span svg {
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }

  .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: 28px;
    height: 28px;
    margin-left: 20px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 18%;
    width: 100%;
    height: 2px;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    border-radius: 3px;
  }
  .burger span {
    top: 50%;
    width: 100%;
    height: 2px;
    background: #ffffff;
    -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: 18%;
    width: 100%;
    height: 2px;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    border-radius: 3px;
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }

  .drop {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: static;
  }
  .drop.active .nav__inner-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .dropMenu {
    position: static;
    top: 0;
    right: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    z-index: 2;
    background-color: transparent;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: none;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .dropMenu.active {
    display: block;
    -webkit-animation: fadeIn 0.3s ease;
            animation: fadeIn 0.3s ease;
  }
  .dropMenu__list {
    background-color: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 0 20px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .dropMenu__list::before {
    display: none;
  }
  .dropMenu__list li {
    margin-bottom: 24px;
  }
  .dropMenu__list li:last-child {
    margin: 0;
  }
  .dropMenu__list a,
.dropMenu__list button {
    font-size: 20px;
    line-height: 24px;
    padding: 0;
    border: unset;
  }
  .dropMenu__list a:hover,
.dropMenu__list button:hover {
    color: #7F0000;
  }
  .dropMenu__list a span,
.dropMenu__list button span {
    display: none;
  }
  .drop .nav__inner-link span svg {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .lang {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
  .lang::before {
    top: 11px;
  }
  .lang__inner {
    width: 100%;
  }
  .lang .dropMenu {
    padding: 0 15px;
  }
  .lang .dropMenu.active {
    padding: 20px 15px 0;
  }
  .lang .dropMenu li {
    margin-bottom: 10px;
  }
}
.project {
  background: #0D3123;
  color: #ffffff;
  padding: 60px 0;
}
.project__inner-title {
  text-align: center;
  margin-bottom: 20px;
}
.project__inner-title h1 {
  margin-bottom: 12px;
}
.project__inner-title h2 {
  margin-bottom: 20px;
}
.project__inner-title p {
  max-width: 795px;
  margin: 0 auto;
}
.project__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}
.project__inner-row.filterRow .projectItem {
  display: none;
}
.project__inner-row.filterRow .projectItem.active {
  display: block;
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}
.project__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 15px;
}
.projectItem {
  width: calc(33.3% - 40px);
  margin: 27px 20px;
  display: block;
  color: #ffffff;
  position: relative;
}
.projectItem:hover {
  opacity: 1;
}
.projectItem:hover .projectItem__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.projectItem:hover .projectItem__arrow svg {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.projectItem__image {
  width: 100%;
  padding-bottom: 91%;
  position: relative;
  margin-bottom: 30px;
  -webkit-mask-image: url(../images/mask.png);
  mask-image: url(../images/mask.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
.projectItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.projectItem__content {
  text-align: center;
}
.projectItem__arrow {
  position: absolute;
  top: 0;
  right: 6%;
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: #FDDD58;
  color: #000000;
}
.projectItem__arrow svg {
  width: 40%;
  height: 40%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.projectItem h5 {
  margin-bottom: 20px;
  line-height: 30px;
  height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #FDDD58;
  text-transform: uppercase;
}
.projectItem p {
  line-height: 24px;
  height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1380px) {
  .project__inner-row {
    margin: 0 -15px;
  }
  .projectItem {
    width: calc(33.3% - 30px);
    margin: 15px;
  }
  .projectItem__arrow {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 1180px) {
  .project {
    padding: 50px 0;
  }
  .project__inner-row {
    margin: 0 -10px;
  }
  .projectItem {
    width: calc(33.3% - 20px);
    margin: 10px;
  }
  .projectItem__arrow {
    width: 42px;
    height: 42px;
    right: 5%;
  }
  .projectItem h5 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 18px;
    height: 50px;
  }
}
@media (max-width: 930px) {
  .project {
    padding: 40px 0;
  }
  .project__inner .slick-dots {
    display: none !important;
  }
  .projectItem {
    width: calc(50% - 20px);
  }
  .projectItem__arrow {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 750px) {
  .projectItem__arrow {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 650px) {
  .project__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .project__inner-row.slider {
    padding-bottom: 30px;
    position: relative;
    margin: 0 -10px 10px !important;
  }
  .project__inner-row.slider:last-child {
    margin: 0 -10px !important;
  }
  .project__inner-foot {
    padding-top: 20px;
  }
  .project__inner .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .project__inner .slick-slide {
    margin: 0 10px;
    height: unset !important;
  }
  .project__inner .slick-dots {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .project__inner .slick-dots li {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0.5;
  }
  .project__inner .slick-dots li.slick-active {
    opacity: 1;
  }
  .project__inner .slick-dots li button {
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 0;
    background: transparent;
  }
  .project__inner .slick-dots li button::before {
    display: none;
  }
  .projectItem {
    margin: 0 0 30px 0;
    width: 100%;
  }
  .projectItem__arrow {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 540px) {
  .project {
    padding: 30px 0;
  }
  .project__inner h1 {
    font-size: 35px;
    line-height: 120%;
    margin-bottom: 15px;
  }
  .project__inner h2 {
    margin-bottom: 15px;
  }
  .projectItem__image {
    margin-bottom: 20px;
  }
}
.differ {
  background: #f9f8fb;
  padding: 112px 0 145px;
}
.differ__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.differContent {
  width: calc(51% - 12px);
}
.differContent__title {
  margin-bottom: 40px;
}
.differContent__title p {
  max-width: 670px;
}
.differContent__text {
  padding-left: 40px;
  border-left: 3px solid #0D3123;
  margin-bottom: 50px;
  max-width: 670px;
}
.differContent__text:last-child {
  margin-bottom: 0;
}
.differContent h2 {
  margin-bottom: 20px;
}
.differMain {
  width: calc(49% - 12px);
  position: relative;
}
.differMain__row {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}
.differMain__shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 618px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(25%, -6%);
          transform: translate(25%, -6%);
}
.differMain__shape img {
  width: 100%;
}
.differItem {
  width: calc(50% - 20px);
  margin: 10px;
  padding: 30px;
  background: #ffffff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 30px;
}
.differItem:hover {
  background: #FDDD58;
}
.differItem__icon {
  width: 50px;
  height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.differItem__icon img {
  width: 100%;
}
.differItem h5 {
  margin-bottom: 15px;
}

@media (max-width: 1380px) {
  .differ {
    padding: 100px 0;
  }
}
@media (max-width: 1180px) {
  .differ {
    padding: 70px 0;
  }
  .differContent__title {
    margin-bottom: 30px;
  }
  .differContent__text {
    margin-bottom: 30px;
    padding-left: 24px;
  }
  .differMain__shape {
    width: 540px;
    top: 50%;
    -webkit-transform: translate(25%, -50%);
            transform: translate(25%, -50%);
  }
  .differMain__row {
    margin: -6px;
  }
  .differItem {
    padding: 20px;
    width: calc(50% - 12px);
    margin: 6px;
  }
  .differItem__icon {
    width: 40px;
    height: 50px;
    margin-bottom: 15px;
  }
}
@media (max-width: 930px) {
  .differ {
    padding: 40px 0;
  }
  .differ__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .differContent {
    width: 100%;
    margin-bottom: 30px;
  }
  .differMain {
    width: 100%;
  }
  .differMain__shape {
    width: 460px;
  }
  .differMain__text {
    max-width: unset;
  }
  .differMain__row {
    margin: -10px;
  }
  .differItem {
    width: calc(50% - 20px);
    margin: 10px;
  }
}
@media (max-width: 540px) {
  .differ {
    padding: 30px 0;
    overflow: hidden;
  }
  .differMain__shape {
    top: 0;
    left: 50%;
    right: unset;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 610px;
  }
  .differMain__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .differContent__title {
    margin-bottom: 24px;
  }
  .differContent__text {
    padding-left: 20px;
  }
  .differItem {
    width: 100%;
    padding: 30px;
    margin: 0 0 20px 0;
  }
  .differItem:last-child {
    margin: 0;
  }
}
.news {
  background: #FDDD58;
  padding: 60px 0;
}
.news__inner-title {
  text-align: center;
  max-width: 795px;
  margin: 0 auto 20px;
}
.news__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}
.news__inner-row.showMore.active .newsItem:nth-child(n) {
  display: block;
}
.news__inner-row.showMore .newsItem:nth-child(n+10) {
  display: none;
}
.news__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 30px;
}
.news__inner h2 {
  margin-bottom: 20px;
}
.newsItem {
  width: calc(33.3% - 40px);
  margin: 20px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  display: block;
}
.newsItem:hover {
  opacity: 1;
}
.newsItem:hover .newsItem__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.newsItem:hover .newsItem__link svg {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
  color: #0D3123;
}
.newsItem__image {
  width: 100%;
  padding-bottom: 64%;
  position: relative;
  background: #f9f8fb;
  overflow: hidden;
}
.newsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.newsItem__content {
  padding: 30px;
}
.newsItem__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0D3123;
}
.newsItem__link svg {
  width: 14px;
  height: 14px;
  color: #FDDD58;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  margin-left: 10px;
}
.newsItem h5 {
  margin-bottom: 18px;
  font-weight: 500;
}
.newsItem p {
  margin-bottom: 30px;
}
.newsItem p:last-child {
  margin: 0;
}

@media (max-width: 1380px) {
  .news__inner-row {
    margin: 0 -15px;
  }
  .newsItem {
    width: calc(33.3% - 30px);
    margin: 15px;
  }
}
@media (max-width: 1180px) {
  .news {
    padding: 50px 0;
  }
  .news__inner-row {
    margin: 0 -10px;
  }
  .news__inner-foot {
    padding-top: 20px;
  }
  .newsItem {
    width: calc(33.3% - 20px);
    margin: 10px;
  }
  .newsItem__content {
    padding: 20px 20px 30px 20px;
  }
  .newsItem__link {
    font-size: 18px;
    line-height: 22px;
  }
  .newsItem p {
    margin-bottom: 24px;
  }
}
@media (max-width: 930px) {
  .news {
    padding: 40px 0;
  }
  .news__inner .slick-dots {
    display: none !important;
  }
  .newsItem {
    width: calc(50% - 20px);
  }
}
@media (max-width: 650px) {
  .news__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .news__inner-row.showMore.active .newsItem:nth-child(n) {
    display: block;
  }
  .news__inner-row.showMore .newsItem:nth-child(n+6) {
    display: none;
  }
  .news__inner-row.slider {
    padding-bottom: 40px;
    position: relative;
    margin: 0 -10px 10px !important;
  }
  .news__inner-row.slider:last-child {
    margin: 0 -10px !important;
  }
  .news__inner-foot {
    padding-top: 20px;
  }
  .news__inner .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .news__inner .slick-slide {
    margin: 0 10px;
    height: unset !important;
  }
  .news__inner .slick-dots {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .news__inner .slick-dots li {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    background: #0D3123;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0.5;
  }
  .news__inner .slick-dots li.slick-active {
    opacity: 1;
  }
  .news__inner .slick-dots li button {
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 0;
    background: transparent;
  }
  .news__inner .slick-dots li button::before {
    display: none;
  }
  .newsItem {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 540px) {
  .news {
    padding: 30px 0;
  }
  .news__inner h2 {
    margin-bottom: 15px;
  }
  .newsItem__image {
    padding-bottom: 78%;
  }
  .newsItem h5 {
    margin-bottom: 10px;
  }
  .newsItem p {
    margin-bottom: 16px;
  }
}
.donate {
  position: fixed;
  bottom: -1px;
  left: 0;
  width: 100%;
  background: #243542;
  z-index: 99;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.donate__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.donate__inner-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.donate__inner-title h4 {
  font-weight: 900;
  color: #ffffff;
}
.donate__inner-title span {
  display: none;
}
.donate__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 210px);
  max-width: 1180px;
  margin: 0 -6px;
}
.donate__inner .button {
  width: 100%;
  padding: 13px 10px;
  min-width: unset;
}
.donate__inner .button:hover {
  background: #ffffff;
  color: #0D3123;
  border-color: #ffffff;
}
.donate__inner .select {
  width: 100%;
}
.donate__inner .select select {
  background: #ffffff;
  color: #4d4641;
  border: unset;
  border-radius: 30px;
}
.donate__inner .input {
  width: 100%;
  position: relative;
}
.donate__inner .input input {
  padding: 8px 15px 8px 40px;
}
.donate__inner .input input::-webkit-input-placeholder {
  color: #4d4641;
}
.donate__inner .input input::-moz-placeholder {
  color: #4d4641;
}
.donate__inner .input input:-ms-input-placeholder {
  color: #4d4641;
}
.donate__inner .input input::-ms-input-placeholder {
  color: #4d4641;
}
.donate__inner .input input::placeholder {
  color: #4d4641;
}
.donateItem {
  width: calc(27% - 12px);
  max-width: 300px;
  margin: 0 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.donateItem:last-child {
  width: calc(19% - 12px);
  max-width: 220px;
}
.donateSelect {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.donateSelect.int::before {
  display: none;
}
.donateSelect::before {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #0D3123;
  border-right: 3px solid #0D3123;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-60%) rotate(135deg);
          transform: translateY(-60%) rotate(135deg);
  pointer-events: none;
}
.donateSelect select,
.donateSelect input {
  background: #ffffff;
  color: #4d4641;
  border: unset;
  border-radius: 30px;
  width: 100%;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  -webkit-appearance: none;
  padding: 13px 30px 13px 20px;
}
.donateSelect select::-webkit-input-placeholder, .donateSelect input::-webkit-input-placeholder {
  color: #4D4641;
}
.donateSelect select::-moz-placeholder, .donateSelect input::-moz-placeholder {
  color: #4D4641;
}
.donateSelect select:-ms-input-placeholder, .donateSelect input:-ms-input-placeholder {
  color: #4D4641;
}
.donateSelect select::-ms-input-placeholder, .donateSelect input::-ms-input-placeholder {
  color: #4D4641;
}
.donateSelect select::placeholder,
.donateSelect input::placeholder {
  color: #4D4641;
}
.donateSelect input {
  padding: 13px 20px 13px 50px;
}
.donateSelect label {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #243542;
  pointer-events: none;
}

@media (max-width: 1380px) {
  .donate__inner-title {
    margin-right: 20px;
  }
  .donate__inner-row {
    width: unset;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .donate__inner h4 {
    font-size: 25px;
    line-height: 30px;
  }
  .donate__inner .button {
    font-size: 18px;
    line-height: 22px;
    padding: 10px;
  }
  .donateItem:last-child {
    width: 180px;
  }
  .donateSelect::before {
    width: 10px;
    height: 10px;
  }
  .donateSelect select,
.donateSelect input {
    font-size: 18px;
    line-height: 22px;
    padding: 10px 30px 10px 16px;
  }
  .donateSelect input {
    padding-left: 36px;
  }
  .donateSelect label {
    left: 16px;
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 1180px) {
  .donate__inner h4 {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 1024px) {
  .donate__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .donate__inner-title {
    padding: 7px 0;
    height: 51px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
    margin: 0;
  }
  .donate__inner-title.active span svg {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .donate__inner-title > span {
    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: 35px;
    height: 35px;
    background: #FDDD58;
    border-radius: 50%;
    position: relative;
    margin: 0;
    color: #000000;
  }
  .donate__inner-title > span svg {
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .donate__inner-row {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    max-width: unset;
    transition: 0.3s ease;
  }
  .donate__inner-row.active {
    max-height: 300px;
    opacity: 1;
    padding: 10px 0 20px;
  }
}
@media (max-width: 930px) {
  .donate__inner-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .donate__inner .button {
    padding: 8px;
  }
  .donateItem {
    margin: 5px;
  }
  .donateItem:nth-child(n) {
    width: calc(50% - 10px);
    max-width: unset;
  }
}
@media (max-width: 540px) {
  .donate__inner .button {
    padding: 11px;
    font-size: 20px;
    line-height: 24px;
  }
  .donateItem {
    margin: 5px;
    margin: 0 0 15px 0;
  }
  .donateItem:last-child {
    margin: 0;
  }
  .donateItem:nth-child(n) {
    width: 100%;
    max-width: unset;
  }
  .donateSelect::before {
    width: 10px;
    height: 10px;
  }
  .donateSelect select,
.donateSelect input {
    font-size: 20px;
    line-height: 24px;
    padding: 13px 30px 13px 20px;
  }
  .donateSelect input {
    padding-left: 50px;
  }
  .donateSelect label {
    left: 20px;
    font-size: 20px;
    line-height: 24px;
  }
}
.history {
  padding: 60px 0;
}
.history__inner-title {
  text-align: center;
  max-width: 795px;
  margin: 0 auto 30px;
}
.history__inner-slider {
  margin-bottom: 20px !important;
}
.history__inner-slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.history__inner-slider .slick-slide {
  height: unset !important;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
.history__inner-slider .slick-active {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.history__inner-slider .slick-current {
  -webkit-transform: scale(1);
          transform: scale(1);
  position: relative;
  z-index: 2;
}
.history__inner-slider .slick-dots {
  display: none !important;
}
.history__inner-slider .slick-arrow {
  position: absolute;
  z-index: 3;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #0D3123;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.history__inner-slider .slick-arrow:hover {
  opacity: 1;
  background: #7F0000;
}
.history__inner-slider .slick-arrow:focus {
  background: #7F0000;
}
.history__inner-slider .slick-arrow::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url("/assets/images/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1 !important;
}
.history__inner-slider .slick-prev {
  left: 0;
}
.history__inner-slider .slick-prev::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.history__inner-slider .slick-next {
  right: 0;
}
.history__inner h2 {
  margin-bottom: 20px;
}
.historyItem {
  border-radius: 35px;
  overflow: hidden;
  border: 3px solid #ffffff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.historyItem__inner {
  width: 100%;
  height: 100%;
  padding-bottom: 90%;
  position: relative;
}
.historyItem__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.historyContent {
  text-align: center;
}
.historyContent h3 {
  margin-bottom: 20px;
}
.historyContent p {
  max-width: 795px;
  margin: 0 auto;
}

@media (max-width: 1180px) {
  .history {
    padding: 50px 0;
  }
  .history__inner-slider {
    padding: 0 20px;
  }
  .history__inner-slider .slick-list {
    padding: 0 !important;
  }
  .history__inner-slider .slick-slide {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    margin: 0 8px;
  }
  .history__inner-slider .slick-active {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  .history__inner-slider .slick-current {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .history__inner-slider .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .history__inner-slider .slick-prev {
    left: -20px;
  }
  .history__inner-slider .slick-next {
    right: -20px;
  }
}
@media (max-width: 930px) {
  .history {
    padding: 40px 0;
  }
  .history__inner-slider {
    padding: 0 40px;
  }
  .history__inner-slider .slick-slide {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .history__inner-slider .slick-active {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .history__inner-slider .slick-prev {
    left: 0;
  }
  .history__inner-slider .slick-next {
    right: 0;
  }
}
@media (max-width: 650px) {
  .history__inner-slider {
    padding: 0 0 40px 0;
    margin: 0 -10px 20px !important;
  }
  .history__inner-slider .slick-slide {
    margin: 0 10px;
  }
  .history__inner-slider .slick-arrow {
    display: none !important;
  }
  .history__inner-slider .slick-dots {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .history__inner-slider .slick-dots li {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    background: #0D3123;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0.5;
  }
  .history__inner-slider .slick-dots li.slick-active {
    opacity: 1;
  }
  .history__inner-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 0;
    background: transparent;
  }
  .history__inner-slider .slick-dots li button::before {
    display: none;
  }
}
@media (max-width: 540px) {
  .history {
    padding: 30px 0;
  }
  .historyContent h3 {
    font-size: 28px;
    line-height: 34px;
  }
}
.instant {
  width: 100%;
  max-width: 430px;
  border-radius: 30px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  /*padding: 10px;*/
  background: rgba(13, 49, 35, 0.6);
}
.instant__head {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ffffff;
}
.instant__btns {
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.instant__btn {
  position: relative;
  width: 50%;
  text-align: center;
}
.instant__btn input {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}
.instant__btn input:checked + label {
  background: #FDDD58;
}
.instant__btn label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  font-family: "Roboto", sans-serif;
  color: #0D3123;
  font-weight: 700;
  background: #ffffff;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  text-transform: uppercase;
}
.instant__select {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.instant__select::before {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #0D3123;
  border-right: 3px solid #0D3123;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-60%) rotate(135deg);
          transform: translateY(-60%) rotate(135deg);
  pointer-events: none;
}
.instant__select select {
  width: 100%;
  background: #ffffff;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding: 13px 30px 13px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #0D3123;
  border-radius: 25px;
  cursor: pointer;
}
.instant__input {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.instant__input input {
  width: 100%;
  background: #ffffff;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding: 13px 20px 13px 40px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #0D3123;
  border-radius: 25px;
}
.instant__input input::-webkit-input-placeholder {
  color: #0D3123;
}
.instant__input input::-moz-placeholder {
  color: #0D3123;
}
.instant__input input:-ms-input-placeholder {
  color: #0D3123;
}
.instant__input input::-ms-input-placeholder {
  color: #0D3123;
}
.instant__input input::placeholder {
  color: #0D3123;
}
.instant__input label {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: #0D3123;
  pointer-events: none;
}
.instant__text {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}
.instant__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.instant__radio {
  position: relative;
  width: calc(33.3% - 6px);
  max-width: 100px;
  overflow: hidden;
}
.instant__radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
  cursor: pointer;
}
.instant__radio input:checked + label {
  background: #FDDD58;
}
.instant__radio label {
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
  color: #0D3123;
  font-weight: 900;
  background: #ffffff;
  height: 50px;
  border-radius: 25px;
}
.instant .button {
  width: 100%;
}

@media (max-width: 1380px) {
  .instant {
    /*padding: 30px;*/
    width: 400px;
  }
}
@media (max-width: 1180px) {
  .instant {
    /*padding: 20px;*/
    width: 370px;
  }
}
.intro {
  position: relative;
  background: #0D3123;
  color: #ffffff;
}
.intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.intro__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#0d3123), color-stop(20%, #0d3123f8), color-stop(75%, #0b2a1e83), to(#00000000));
  background: linear-gradient(90deg, #0d3123 0%, #0d3123f8 20%, #0b2a1e83 75%, #00000000 100%);
  z-index: 1;
  pointer-events: none;
}
.intro__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.intro__bg img.mob {
  display: none;
}
.intro__inner {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  min-height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intro__inner-content {
  max-width: 560px;
}
.intro__inner h1,
.intro__inner h2 {
  margin-bottom: 20px;
}
.intro__inner p {
  margin-bottom: 40px;
}
.intro__inner .button {
  color: #ffffff;
}

@media (max-width: 540px) {
  .intro__bg::before {
    top: unset;
    bottom: 0;
    height: 88%;
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(#0d3123), color-stop(20%, #0d3123f8), color-stop(75%, #0b2a1e83), to(#00000000));
    background: linear-gradient(0deg, #0d3123 0%, #0d3123f8 20%, #0b2a1e83 75%, #00000000 100%);
  }
  .intro__bg img.desk {
    display: none;
  }
  .intro__bg img.mob {
    display: block;
  }
  .intro__inner {
    padding: 60px 0 30px;
    -webkit-box-align: end;
        -ms-flex-align: end;
           /* align-items: flex-end;*/
  }
  .intro__inner p {
    margin-bottom: 30px;
  }
}
.faq {
  padding: 60px 0;
  position: relative;
  background: #f9f8fb;
}
.faq__inner-title {
  margin-bottom: 30px;
  text-align: center;
}
.faq__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.faq__inner-col {
  width: calc(50% - 20px);
  max-width: 670px;
}
.faqItem {
  border-bottom: 1px solid rgba(13, 49, 35, 0.2);
}
.faqItem__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
.faqItem__head.active span::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0;
}
.faqItem__head h5 {
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faqItem__head span {
  width: 30px;
  height: 30px;
  position: relative;
  border-radius: 50%;
  background: #FDDD58;
  display: block;
  margin-left: 20px;
}
.faqItem__head span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 14px;
  content: "";
  background-color: #0D3123;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faqItem__head span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 3px;
  content: "";
  background-color: #0D3123;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.faqItem__body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faqItem__body.active {
  max-height: 600px;
  opacity: 1;
  padding-bottom: 30px;
}

@media (max-width: 1180px) {
  .faq {
    padding: 50px 0;
  }
}
@media (max-width: 1024px) {
  .faq__inner-title {
    margin-bottom: 20px;
  }
  .faq__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .faq__inner-col {
    width: 100%;
    max-width: unset;
  }
  .faq__inner-col:last-child .faqItem:last-child {
    border: unset;
  }
}
@media (max-width: 930px) {
  .faq {
    padding: 40px 0;
  }
}
@media (max-width: 540px) {
  .faq {
    padding: 30px 0 20px;
  }
  .faq__inner-title {
    text-align: start;
  }
  .faqItem__head {
    padding: 20px 0;
  }
  .faqItem__head h5 {
    line-height: 100%;
  }
}
.help {
  padding: 60px 0;
}
.help__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;
  position: relative;
}
.helpContent {
  width: calc(50% - 15px);
  max-width: 670px;
}
.helpContent__title {
  margin-bottom: 15px;
}
.helpContent__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px 25px;
}
.helpContent__row:last-child {
  margin-bottom: 0;
}
.helpContent h2 {
  margin-bottom: 20px;
}
.helpImage {
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(50% - 15px);
  max-width: 670px;
  border-radius: 35px;
  overflow: hidden;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.helpImage__inner {
  width: 100%;
  padding-bottom: 74%;
  position: relative;
}
.helpImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.helpPlace {
  width: calc(50% - 15px);
  max-width: 670px;
}
.helpPlace__inner {
  width: 100%;
  padding-bottom: 74%;
}
.helpItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px;
  width: calc(50% - 30px);
}
.helpItem__icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FDDD58;
  border-radius: 50%;
  margin-right: 20px;
}
.helpItem__icon img {
  width: 43%;
}
.helpItem p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.helpItem p b {
  font-weight: 900;
}

@media (max-width: 1180px) {
  .help {
    padding: 50px 0;
  }
  .helpContent__row {
    margin: 0 -10px 15px;
  }
  .helpItem {
    margin: 10px;
    width: calc(50% - 20px);
  }
  .helpItem__icon {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 930px) {
  .help {
    padding: 40px 0;
  }
  .help__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .helpContent {
    width: 100%;
    max-width: unset;
  }
  .helpPlace {
    display: none;
  }
  .helpImage {
    position: static;
    -webkit-transform: translate(0);
            transform: translate(0);
    max-width: unset;
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 540px) {
  .help {
    padding: 30px 0 40px;
  }
  .helpImage {
    margin-bottom: 20px;
  }
  .helpContent__title {
    margin-bottom: 28px;
  }
  .helpContent__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 30px 0;
  }
  .helpContent h2 {
    margin-bottom: 15px;
  }
  .helpItem {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .helpItem:last-child {
    margin: 0;
  }
  .helpItem__icon {
    margin-right: 30px;
  }
  .helpItem__icon img {
    width: 50%;
  }
  .helpItem br {
    display: none;
  }
}
.footer {
  padding: 60px 0 100px;
  position: relative;
  background: #0D3123;
  color: #ffffff;
}
.footer__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;
  padding-bottom: 40px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 40px;
}
.footer__inner-content {
  width: calc(50% - 15px);
  max-width: 670px;
}
.footer__inner-content h2 {
  margin-bottom: 20px;
}
.footer__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 35px;
}
.footer__inner-links {
  width: calc(45% - 15px);
  max-width: 570px;
  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 h6 {
  margin-bottom: 20px;
}
.footer__inner-col a {
  color: #ffffff;
  margin-bottom: 17px;
}
.footer__inner-col a:last-child {
  margin: 0;
}
.footer__inner-col a:hover {
  color: #FDDD58;
  opacity: 1;
}
.footer__inner-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.footerForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(50% - 15px);
  max-width: 670px;
}
.footerForm__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footerForm__input input {
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  padding: 14px 20px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  background: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footerForm__input input:focus {
  border-color: #FDDD58;
}
.footerForm__input input::-webkit-input-placeholder {
  color: #ffffff;
}
.footerForm__input input::-moz-placeholder {
  color: #ffffff;
}
.footerForm__input input:-ms-input-placeholder {
  color: #ffffff;
}
.footerForm__input input::-ms-input-placeholder {
  color: #ffffff;
}
.footerForm__input input::placeholder {
  color: #ffffff;
}
.footerForm__button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #FDDD58;
  color: #0D3123;
  margin-left: 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;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.footerForm__button:hover {
  background: #ffffff;
}
.footerForm__button svg {
  width: 66%;
  height: 66%;
}
.footerInfo {
  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;
  width: calc(55% - 15px);
  max-width: 728px;
}
.footerInfo__logo {
  width: calc(42% - 15px);
  max-width: 285px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footerInfo__logo img {
  width: 100%;
}
.footerInfo__content {
  width: calc(58% - 15px);
  max-width: 350px;
  background: #FDDD58;
  border-radius: 30px;
  padding: 30px;
}
.footerInfo__content p {
  margin-bottom: 30px;
  color: #0D3123;
}
.footerItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 100px;
  color: #ffffff;
}
.footerItem:last-child {
  margin: 0;
}
.footerItem:hover {
  opacity: 1;
  color: #FDDD58;
}
.footerItem__icon {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
  color: #FDDD58;
}
.footerItem__icon svg {
  width: 100%;
  height: 100%;
}
.footerItem__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footerItem h6 {
  margin-bottom: 10px;
}
.footerCopy {
  padding-top: 30px;
  border-top: 1px solid #ffffff;
  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;
}
.footerCopy__terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footerCopy__terms a {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-right: 40px;
  text-decoration: underline;
}
.footerCopy__terms a:last-child {
  margin: 0;
}
.footerCopy__terms a:hover {
  opacity: 1;
  color: #FDDD58;
}
.footerCopy__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footerCopy__social a {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 18px;
  color: #ffffff;
}
.footerCopy__social a:last-child {
  margin: 0;
}
.footerCopy__social a:hover {
  opacity: 1;
  color: #FDDD58;
}
.footerCopy__social a.sm {
  width: 12px;
}
.footerCopy__social a.big {
  width: 23px;
}
.footerCopy__social a svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1180px) {
  .footer {
    padding: 50px 0 80px;
  }
  .footer__inner-content {
    width: calc(50% - 12px);
  }
  .footer__inner-top {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .footer__inner-links {
    width: calc(48% - 12px);
  }
  .footer__inner-col h6 {
    margin-bottom: 12px;
  }
  .footer__inner-col a {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 12px;
  }
  .footerForm {
    width: calc(50% - 12px);
  }
  .footerInfo {
    width: calc(52% - 12px);
  }
  .footerInfo__content {
    padding: 20px;
  }
  .footerInfo__content p {
    margin-bottom: 20px;
  }
  .footerItem {
    margin-right: 60px;
  }
}
@media (max-width: 930px) {
  .footer {
    padding: 40px 0 80px;
  }
  .footer__inner-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__inner-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }
  .footer__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__inner-links {
    width: 100%;
    max-width: unset;
  }
  .footer__inner-contact {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #ffffff;
  }
  .footerForm {
    width: 100%;
    max-width: unset;
  }
  .footerInfo {
    width: 100%;
    max-width: unset;
    margin-bottom: 40px;
  }
  .footerInfo__logo {
    max-width: 218px;
  }
  .footerItem {
    margin-right: 40px;
  }
  .footerCopy__terms a {
    margin-right: 22px;
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 750px) {
  .footer__inner-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footerItem {
    width: 100%;
    margin: 0 0 22px 0;
  }
  .footerItem:last-child {
    margin: 0;
  }
  .footerItem__icon {
    margin-right: 20px;
  }
  .footerCopy {
    -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;
  }
  .footerCopy__terms {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
  }
}
@media (max-width: 540px) {
  .footer {
    padding: 30px 0 70px;
  }
  .footer__inner-content h2 {
    margin-bottom: 15px;
  }
  .footer__inner-row {
    margin-bottom: 30px;
  }
  .footer__inner-col {
    min-width: 120px;
  }
  .footer__inner-col:last-child {
    display: none;
  }
  .footer__inner-col a {
    font-size: 18px;
    line-height: 24px;
  }
  .footerInfo {
    -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;
  }
  .footerInfo__logo {
    width: 65%;
    margin-bottom: 30px;
  }
  .footerInfo__content {
    width: 100%;
    max-width: unset;
  }
  .footerInfo__content p {
    margin-bottom: 12px;
  }
  .footerCopy {
    padding-top: 22px;
  }
  .footerCopy__terms {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -5px 30px;
    width: calc(100% + 10px);
  }
  .footerCopy__terms a {
    min-width: 120px;
    margin: 8px 5px !important;
    font-size: 18px;
    line-height: 22px;
  }
}
.contact {
  background: #f9f8fb;
  position: relative;
  padding: 90px 0 177px;
  overflow: hidden;
}
.contact__shape {
  position: absolute;
  top: 50%;
  left: 0;
  width: 814px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.contact__shape img {
  width: 100%;
}
.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.contactForm {
  background: #ffffff;
  padding: 40px;
  width: 65%;
}
.contactForm__title {
  margin-bottom: 15px;
}
.contactForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}
.contactForm__foot {
  padding-top: 25px;
}
.contactForm .input__outer {
  margin: 15px 10px;
  width: calc(50% - 20px);
}
.contactForm .input__outer.big {
  width: calc(100% - 20px);
}
.contactContent {
  width: 35%;
  color: #ffffff;
  background: #0D3123;
  padding: 40px;
}
.contactContent__title {
  margin-bottom: 30px;
}
.contactContent__title h3 {
  color: #ffffff;
}
.contactContent__links {
  margin-bottom: 70px;
}
.contactContent__links:last-child {
  margin: 0;
}
.contactContent__links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  margin-bottom: 30px;
}
.contactContent__links a:last-child {
  margin: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contactContent__links a:hover {
  opacity: 1;
  color: #FDDD58;
}
.contactContent__links a span {
  width: 28px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
.contactContent__links a span.big img {
  width: 100%;
}
.contactContent__links a span img {
  width: 80%;
}
.contactContent__links a p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 300px;
}
.contactContent__foot h6 {
  margin-bottom: 15px;
}
.contactContent__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contactContent__social a {
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 18px;
  color: #FDDD58;
}
.contactContent__social a:last-child {
  margin: 0;
}
.contactContent__social a:hover {
  opacity: 1;
  color: #f9f8fb;
}
.contactContent__social a.sm {
  width: 14px;
}
.contactContent__social a.big {
  width: 28px;
}
.contactContent__social a svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1380px) {
  .contact {
    padding: 70px 0 140px;
  }
}
@media (max-width: 1180px) {
  .contact {
    padding: 60px 0 100px;
  }
  .contact__shape {
    width: 700px;
  }
  .contactContent {
    padding: 30px;
    width: 360px;
  }
  .contactForm {
    width: unset;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 30px;
  }
  .contactForm .input__outer {
    margin: 10px;
  }
}
@media (max-width: 930px) {
  .contact {
    padding: 40px 0 60px;
  }
  .contact__shape {
    display: none;
  }
  .contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contactContent {
    width: 100%;
  }
  .contactForm {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .contact {
    padding: 30px 0;
  }
  .contactContent {
    padding: 25px 20px 30px;
  }
  .contactContent__links {
    margin-bottom: 30px;
  }
  .contactForm {
    padding: 25px 20px 30px;
  }
  .contactForm__title {
    margin-bottom: 30px;
  }
  .contactForm__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .contactForm__foot {
    padding-top: 30px;
  }
  .contactForm .input__outer {
    width: 100% !important;
    margin: 0 0 20px 0;
  }
  .contactForm .input__outer:last-child {
    margin: 0;
  }
}
.team {
  background: #0D3123;
  color: #ffffff;
  padding: 50px 0;
}
.team__inner-title {
  text-align: center;
  margin-bottom: 30px;
}
.team__inner-title h1 {
  margin-bottom: 12px;
}
.team__inner-title p {
  max-width: 600px;
  margin: 0 auto;
}
.team__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}
.team__inner-row.filterRow .teamItem {
  display: none;
}
.team__inner-row.filterRow .teamItem.active {
  display: block;
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}
.team__inner-row.showMore.active .teamItem:nth-child(n) {
  display: block;
}
.team__inner-row.showMore .teamItem:nth-child(n+4) {
  display: none;
}
.team__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 20px;
}
.teamItem {
  width: calc(33.3% - 40px);
  margin: 20px;
  display: block;
  color: #ffffff;
  position: relative;
}
.teamItem:hover {
  opacity: 1;
}
.teamItem:hover .projectItem__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.teamItem:hover .projectItem__arrow svg {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.teamItem__image {
  width: 100%;
  padding-bottom: 91%;
  position: relative;
  margin-bottom: 30px;
  -webkit-mask-image: url(../images/mask.png);
  mask-image: url(../images/mask.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
.teamItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.teamItem__arrow {
  position: absolute;
  top: 0;
  right: 6%;
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: #FDDD58;
  color: #000000;
}
.teamItem__arrow svg {
  width: 40%;
  height: 40%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.teamItem__arrow img {
  width: 40%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.teamItem h5 {
  margin-bottom: 8px;
}
.teamItem h5:last-child {
  margin: 0;
}

@media (max-width: 1380px) {
  .team__inner-row {
    margin: 0 -15px;
  }
  .teamItem {
    width: calc(33.3% - 30px);
    margin: 15px;
  }
  .teamItem__arrow {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 1180px) {
  .team {
    padding: 50px 0;
  }
  .team__inner-row {
    margin: 0 -10px;
  }
  .teamItem {
    width: calc(33.3% - 20px);
    margin: 12px 10px;
  }
  .teamItem__arrow {
    width: 42px;
    height: 42px;
    right: 5%;
  }
  .teamItem__image {
    margin-bottom: 20px;
  }
}
@media (max-width: 930px) {
  .team {
    padding: 40px 0;
  }
  .team__inner-row.showMore .teamItem:nth-child(n) {
    display: block;
  }
  .team__inner .slick-dots {
    display: none !important;
  }
  .teamItem {
    width: calc(50% - 20px);
  }
  .teamItem__arrow {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 750px) {
  .teamItem__arrow {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 650px) {
  .team__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .team__inner-row.slider {
    padding-bottom: 40px;
    position: relative;
    margin: 0 -10px 20px !important;
  }
  .team__inner-foot {
    padding-top: 10px;
  }
  .team__inner .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .team__inner .slick-slide {
    margin: 0 10px;
    height: unset !important;
  }
  .team__inner .slick-dots {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .team__inner .slick-dots li {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0.5;
  }
  .team__inner .slick-dots li.slick-active {
    opacity: 1;
  }
  .team__inner .slick-dots li button {
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 0;
    background: transparent;
  }
  .team__inner .slick-dots li button::before {
    display: none;
  }
  .teamItem {
    margin: 0 0 30px 0;
    width: 100%;
    text-align: center;
  }
  .teamItem__arrow {
    width: 50px;
    height: 50px;
  }
  .teamItem__arrow svg {
    width: 45%;
    height: 45%;
  }
  .teamItem__arrow img {
    width: 45%;
  }
}
@media (max-width: 540px) {
  .team {
    padding: 30px 0;
  }
  .team__inner h2 {
    margin-bottom: 15px;
  }
}
.article {
  padding: 40px 0 60px;
}
.article .auto__container {
  max-width: 1280px;
}
.article__inner-title {
  max-width: 850px;
  margin: 0 auto 40px;
}
.article__inner-title p {
  margin-bottom: 20px;
  color: rgba(13, 49, 35, 0.5);
}
.article__inner-title h2 {
  text-transform: unset;
  margin-bottom: 30px;
  font-weight: 900;
}
.article__inner-image {
  width: 100%;
  padding-bottom: 49%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  min-height: 250px;
}
.article__inner-image:last-child {
  margin: 0;
}
.article__inner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.article__inner-text {
  max-width: 850px;
  margin: 0 auto 40px;
}
.article__inner-text p {
  margin-bottom: 30px;
}
.article__inner-text p:last-child {
  margin: 0;
}
.article__inner-text h6 {
  font-weight: 700;
  margin-bottom: 20px;
}
.article__inner-text h2,
.article__inner-text h3 {
  margin-bottom: 20px;
  line-height: 110%;
}
.article__inner-foot {
  max-width: 850px;
  margin: 0 auto;
}
.article__inner-foot h6 {
  margin-bottom: 20px;
  font-weight: 700;
}
.article__inner-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.article__inner-social:last-child {
  margin: 0;
}
.article__inner-social a {
  width: 26px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 25px;
  opacity: 0.5;
}
.article__inner-social a:hover {
  opacity: 1;
}
.article__inner-social a:last-child {
  margin: 0;
}
.article__inner-social a.sm {
  width: 15px;
}
.article__inner-social a.mid {
  width: 20px;
}
.article__inner-social a img {
  width: 100%;
}

@media (max-width: 930px) {
  .article {
    padding: 40px 0;
  }
  .article__inner-image {
    margin-bottom: 30px;
  }
}
@media (max-width: 540px) {
  .article {
    padding: 30px 0;
  }
  .article__inner-title {
    margin-bottom: 30px;
  }
  .article__inner-title h2 {
    margin-bottom: 20px;
  }
  .article__inner-image {
    margin-bottom: 20px;
  }
  .article__inner-text {
    margin-bottom: 30px;
  }
  .article__inner-text h2 br {
    display: none;
  }
}
.events {
  background: #FDDD58;
  padding: 50px 0;
}
.events__inner-title {
  text-align: center;
  max-width: 795px;
  margin: 0 auto 20px;
}
.events__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}
.events__inner-row.showMore.active .eventsItem:nth-child(n) {
  display: block;
}
.events__inner-row.showMore .eventsItem:nth-child(n+7) {
  display: none;
}
.events__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 20px;
}
.events__inner h2 {
  margin-bottom: 20px;
}
.eventsItem {
  width: calc(33.3% - 40px);
  margin: 20px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  display: block;
}
.eventsItem:hover {
  opacity: 1;
}
.eventsItem:hover .eventsItem__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.eventsItem__image {
  width: 100%;
  padding-bottom: 50%;
  min-height: 220px;
  position: relative;
  background: #f9f8fb;
  overflow: hidden;
}
.eventsItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.eventsItem__content {
  padding: 30px 30px 33px 30px;
}
.eventsItem__content > p {
  margin-bottom: 30px;
}
.eventsItem__content > p:last-child {
  margin: 0;
}
.eventsItem__info {
  margin-bottom: 20px;
}
.eventsItem__info:last-child {
  margin: 0;
}
.eventsItem__info p {
  font-weight: 300;
  margin-bottom: 5px;
}
.eventsItem__info h6 {
  font-weight: 500;
}
.eventsItem h5 {
  margin-bottom: 18px;
  font-weight: 500;
}

@media (max-width: 1380px) {
  .events__inner-row {
    margin: 0 -15px;
  }
  .eventsItem {
    width: calc(33.3% - 30px);
    margin: 15px;
  }
}
@media (max-width: 1180px) {
  .events__inner-row {
    margin: 0 -10px;
  }
  .events__inner-foot {
    padding-top: 20px;
  }
  .eventsItem {
    width: calc(33.3% - 20px);
    margin: 10px;
  }
  .eventsItem__content {
    padding: 20px 20px 30px 20px;
  }
  .eventsItem__content > p {
    margin-bottom: 24px;
  }
}
@media (max-width: 930px) {
  .events {
    padding: 40px 0;
  }
  .eventsItem {
    width: calc(50% - 20px);
  }
}
@media (max-width: 650px) {
  .events__inner-title {
    margin-bottom: 30px;
  }
  .events__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .events__inner-row.showMore.active .eventsItem:nth-child(n) {
    display: block;
  }
  .events__inner-row.showMore .eventsItem:nth-child(n+5) {
    display: none;
  }
  .events__inner-foot {
    padding-top: 10px;
  }
  .eventsItem {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .eventsItem__content {
    padding: 30px 24px;
  }
  .eventsItem__content > p {
    margin-bottom: 24px;
  }
}
@media (max-width: 540px) {
  .events {
    padding: 30px 0;
  }
}


@media (max-width: 1380px) {
  .vacancies {
    padding: 40px 0;
  }
  .vacancies__inner-row {
    margin: 0 -15px;
  }
  .vacanciesItem {
    width: calc(33.3% - 30px);
    margin: 15px;
  }
}
@media (max-width: 1180px) {
  .vacancies__inner-row {
    margin: 0 -10px;
  }
  .vacanciesItem {
    width: calc(33.3% - 20px);
    margin: 10px;
    padding: 30px;
  }
}
@media (max-width: 930px) {
  .vacanciesItem {
    width: calc(50% - 20px);
  }
}
@media (max-width: 650px) {
  .vacancies__shape {
    display: none;
  }
  .vacancies__inner-row {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .vacanciesItem {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 40px;
  }
  .vacanciesItem:last-child {
    margin: 0;
  }
}
@media (max-width: 540px) {
  .vacancies {
    padding: 30px 0;
  }
}
.calc {
  padding: 50px 0 60px;
  background: #0D3123;
}
.calc__inner-content {
  margin-bottom: 40px;
  color: #ffffff;
}
.calc__inner-content h1,
.calc__inner-content h2,
.calc__inner-content h3,
.calc__inner-content h4,
.calc__inner-content h5,
.calc__inner-content h6,
.calc__inner-content p {
  margin-bottom: 20px;
}
.calc__inner-content h1:last-child,
.calc__inner-content h2:last-child,
.calc__inner-content h3:last-child,
.calc__inner-content h4:last-child,
.calc__inner-content h5:last-child,
.calc__inner-content h6:last-child,
.calc__inner-content p:last-child {
  margin: 0;
}
.calc__inner-content h1 {
  font-weight: 900;
}
.calc__inner-content h6 {
  font-weight: 500;
}
.calc__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.calcForm {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 950px;
  background: #ffffff;
  border-radius: 30px;
  padding: 40px 40px 30px 40px;
}
.calcForm__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}
.calcForm__title h6 {
  font-weight: 500;
  margin-bottom: 20px;
}
.calcForm__title .select {
  width: 90px;
}
.calcForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -10px 20px;
}
.calcForm__row:last-child {
  margin-bottom: 0;
}
.calcForm__foot {
  margin-bottom: 10px;
}
.calcForm__foot h6 {
  font-weight: 700;
  margin-bottom: 15px;
}
.calcForm .input__outer {
  width: calc(50% - 20px);
  margin: 10px;
}
.calcForm .input__outer p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.calcForm .input__outer p b {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.calcSummary {
  width: 410px;
  background: #ffffff;
  padding: 20px;
  border-radius: 30px;
  margin-left: 30px;
}
.calcSummary.mob {
  display: none;
}
.calcSummary__top {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 30px;
  margin-bottom: 30px;
  background: #f9f8fb;
}
.calcSummary__top:last-child {
  margin: 0;
}
.calcSummary__top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.calcSummary__top-col {
  width: calc(50% - 10px);
}
.calcSummary__top > p {
  margin-bottom: 15px;
  font-weight: 300;
}
.calcSummary__top h6 {
  margin-bottom: 10px;
  font-weight: 700;
}
.calcSummary__top p {
  font-weight: 300;
}
.calcSummary__body {
  padding: 20px;
}
.calcSummary__body > h6 {
  font-weight: 600;
  margin-bottom: 20px;
}
.calcSummary__body-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}
.calcSummary__body-row:last-child {
  margin: 0;
}
.calcSummary__body-select {
  position: relative;
  padding: 5px 25px 5px 12px;
  background: #f9f8fb;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.calcSummary__body-select::before {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 2px solid #0D3123;
  border-right: 2px solid #0D3123;
  -webkit-transform: translateY(-70%) rotate(135deg);
          transform: translateY(-70%) rotate(135deg);
}
.calcSummary__body-select select {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  color: #0D3123;
  -webkit-appearance: none;
  background: transparent;
}
.calcSummary__body-total {
  padding-top: 20px;
  border-top: 1px solid rgba(13, 49, 35, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
.calcSummary__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px;
}
.calcSummary__foot .button {
  width: 100%;
}

@media (max-width: 1380px) {
  .calcForm {
    padding: 30px 30px 20px 30px;
  }
  .calcSummary {
    width: 370px;
    margin-left: 24px;
  }
  .calcSummary__body {
    padding: 10px;
  }
  .calcSummary__foot {
    padding: 10px;
  }
}
@media (max-width: 1180px) {
  .calc {
    padding: 50px 0;
  }
}
@media (max-width: 1024px) {
  .calc__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .calcForm {
    width: 100%;
    margin-bottom: 30px;
  }
  .calcSummary {
    width: 100%;
    margin: 0;
    padding: 30px;
  }
  .calcSummary.mob {
    display: block;
    margin-bottom: 30px;
    padding: 0;
    background: unset;
  }
  .calcSummary.mob .calcSummary__top {
    display: block;
    padding: 30px;
  }
  .calcSummary__top {
    display: none;
  }
  .calcSummary__body {
    padding: 0;
    margin-bottom: 30px;
  }
  .calcSummary__foot {
    padding: 0;
  }
}
@media (max-width: 930px) {
  .calc {
    padding: 40px 0;
  }
}
@media (max-width: 750px) {
  .calcForm {
    padding: 30px;
  }
  .calcForm__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 20px 0;
  }
  .calcForm__row:last-child {
    margin: 0;
  }
  .calcForm .input__outer {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .calcForm .input__outer:last-child {
    margin: 0;
  }
}
@media (max-width: 540px) {
  .calc {
    padding: 30px 0;
  }
  .calc__inner-content {
    margin-bottom: 30px;
  }
  .calcSummary {
    padding: 20px;
  }
  .calcSummary.mob {
    margin-bottom: 20px;
  }
  .calcSummary.mob .calcSummary__top {
    padding: 20px;
  }
  .calcSummary__body {
    margin-bottom: 20px;
  }
  .calcForm {
    padding: 20px;
  }
}
.about {
  padding: 60px 0;
  border-top: 10px solid #FDDD58;
}
.about__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;
}
.aboutContent {
  width: calc(50% - 15px);
  max-width: 670px;
}
.aboutContent h2 {
  margin-bottom: 20px;
}
.aboutContent p {
  margin-bottom: 30px;
}
.aboutImage {
  width: calc(50% - 15px);
  max-width: 670px;
  border-radius: 30px;
  overflow: hidden;
}
.aboutImage__inner {
  width: 100%;
  height: 100%;
  padding-bottom: 66%;
  position: relative;
}
.aboutImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

@media (max-width: 1180px) {
  .about {
    padding: 50px 0;
  }
}
@media (max-width: 930px) {
  .about {
    padding: 40px 0;
  }
  .about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .aboutContent {
    width: 100%;
    max-width: unset;
  }
  .aboutImage {
    width: 100%;
    max-width: unset;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
}
@media (max-width: 540px) {
  .about {
    padding: 30px 0;
    border: unset;
  }
  .aboutImage__inner {
    min-height: 240px;
  }
}
.hero {
  position: relative;
}
.hero.dark .heroMain__bg::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 77%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#00000000), to(#000000));
  background: linear-gradient(180deg, #00000000 0%, #000000 100%);
  z-index: 1;
  pointer-events: none;
}
.hero.dark .heroMain__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 32%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#000000cc), to(#00000000));
  background: linear-gradient(180deg, #000000cc 0%, #00000000 100%);
  z-index: 1;
  pointer-events: none;
}
.hero.big .heroMain__inner {
  padding: 300px 0 110px;
}
.hero.big .heroMain__content {
  width: 100%;
  max-width: unset;
}
.hero.uniq .heroMain__content {
  min-height: 340px;
}
.heroMain__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;
}
.heroMain__bg::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 77%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#0d312300), to(#0d3123));
  background: linear-gradient(180deg, #0d312300 0%, #0d3123 100%);
  z-index: 1;
  pointer-events: none;
}
.heroMain__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 32%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#0d3123), to(#0d312300));
  background: linear-gradient(180deg, #0d3123 0%, #0d312300 100%);
  z-index: 1;
  pointer-events: none;
}
.heroMain__bg video,
.heroMain__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.heroMain__bg video.active,
.heroMain__bg img.active {
  opacity: 1;
}
.heroMain__inner {
  min-height: calc(100vh - 70px);
  padding: 300px 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          /*align-items: flex-end;*/
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 2;
}
.heroMain__content {
  width: calc(100% - 480px);
  max-width: 850px;
  color: #ffffff;
}
.heroMain__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  margin-bottom: 30px;
  border-bottom: 1px solid #ffffff;
}
.heroMain__tabs::-webkit-scrollbar {
  display: none;
}
.heroMain__tabs button {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 20px 10px;
  color: #ffffff;
  position: relative;
  margin-right: 20px;
  background: transparent;
  white-space: nowrap;
  opacity: 0.85;
}
.heroMain__tabs button.active {
  opacity: 1;
}
.heroMain__tabs button.active::before {
  opacity: 1;
}
.heroMain__tabs button:hover {
  opacity: 1;
}
.heroMain__tabs button:last-child {
  margin: 0;
}
.heroMain__tabs button::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: #FDDD58;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
}
.heroItem {
  display: none;
}
.heroItem.active {
  display: block;
  -webkit-animation: fadeIn 0.4s;
          animation: fadeIn 0.4s;
}
.heroItem h1,
.heroItem h2,
.heroItem h3,
.heroItem h4,
.heroItem h5,
.heroItem h6 {
  margin-bottom: 20px;
}
.heroItem h1:last-child,
.heroItem h2:last-child,
.heroItem h3:last-child,
.heroItem h4:last-child,
.heroItem h5:last-child,
.heroItem h6:last-child {
  margin: 0;
}
.heroItem p {
  margin-bottom: 40px;
}
.heroForm__inner {
  position: relative;
  z-index: 3;
}
.heroForm .instant {
  position: absolute;
  bottom: 60px;
  left: 0;
}
.hero--donation .heroMain__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  padding: 305px 0 50px;
}
.hero--donation .heroMain__content {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 850px;
}
.hero--donation .heroForm {
  width: 100%;
  max-width: 430px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 430px;
          flex: 0 0 430px;
  padding: 0;
}
.hero--donation .heroForm .instant {
  position: static;
  width: 100%;
  max-width: 430px;
}

@media (max-width: 1380px) {
  .hero.big .heroMain__inner {
    padding: 250px 0 70px;
  }
  .heroMain__inner {
    padding: 380px 0 70px;
    min-height: calc(100vh - 66px);
  }
  .heroMain__content {
    width: calc(100% - 440px);
  }
  .heroForm .instant {
    bottom: 40px;
  }
  .hero--donation .heroMain__inner {
    padding: 180px 0 45px;
  }
  .hero--donation .heroForm {
    max-width: 400px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
  }
  .hero--donation .heroForm .instant {
    max-width: 400px;
  }
}
@media (max-width: 1180px) {
  .hero.big .heroMain__inner {
    padding: 180px 0 40px;
  }
  .heroMain__inner {
    padding: 350px 0 40px;
  }
  .heroMain__content {
    width: calc(100% - 400px);
  }
  .heroMain__tabs button {
    font-size: 18px;
    line-height: 20px;
    padding: 15px 8px;
    margin-right: 10px;
  }
  .heroItem p {
    margin-bottom: 30px;
  }
  .hero--donation .heroMain__inner {
    padding: 155px 0 35px;
  }
  .hero--donation .heroForm {
    max-width: 370px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 370px;
            flex: 0 0 370px;
  }
  .hero--donation .heroForm .instant {
    max-width: 370px;
  }
}
@media (max-width: 1280px) {
  .hero--donation .heroMain__inner {    
    padding: 155px 0 35px;
  }
  .hero--donation .heroMain__content {
    width: 100%;
    max-width: unset;
  }
  .hero--donation .heroForm {
    max-width: unset;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;    
  }
  .hero--donation .heroForm .instant {
    position: static;
    max-width: unset;
    width: 100%;
    padding: 40px;
    background: #0D3123;
  }
}
@media (max-width: 1024px) {
  .hero.uniq {
    padding-top: 70px;
  }
  .hero.uniq .heroMain {
    display: none;
  }
  .hero.big .heroMain__inner {
    padding: 140px 0 40px;
  }
  .heroMain {
    position: relative;
  }
  .heroMain__inner {
    min-height: calc(100vh - 50px);
    padding: 140px 0 40px;
  }
  .heroMain__content {
    width: 100%;
    max-width: unset;
  }
  .heroForm {
    padding: 30px 0;
  }
  .heroForm .instant {
    position: static;
    width: 100%;
    max-width: unset;
    padding: 40px;
    background: #0D3123;
  }
  .hero--donation .heroMain__inner {
    display: block;
    padding: 140px 0 40px;
  }
  .hero--donation .heroMain__content {
    width: 100%;
    max-width: unset;
  }
  .hero--donation .heroForm {
    max-width: unset;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    padding: 30px 0 0;
  }
  .hero--donation .heroForm .instant {
    max-width: unset;
    width: 100%;
  }
}
@media (max-width: 540px) {
  .heroForm {
    padding: 20px 0;
  }
  .heroForm .instant {
    padding: 20px;
  }
  .hero--donation .heroForm {
    padding: 20px 0 0;
  }
  .heroMain__tabs.mobRem {
    display: none;
  }
  .heroMain__content h1,
.heroMain__content h2 {
    line-height: 100% !important;
  }
}
.dream {
  padding: 60px 0;
}
.dream__inner-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FDDD58;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 60px;
}
.dream__inner-main:last-child {
  margin: 0;
}
.dream__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: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.dreamVideo {
  width: 43%;
}
.dreamVideo__inner {
  width: 100%;
  height: 100%;
  padding-bottom: 63%;
  position: relative;
}
.dreamVideo__inner img,
.dreamVideo__inner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.dreamInfo {
  width: 57%;
  padding: 50px;
}
.dreamInfo__title {
  margin-bottom: 40px;
}
.dreamInfo__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dreamInfo__buttons .button {
  margin-right: 20px;
}
.dreamInfo__buttons .button:last-child {
  margin: 0;
}
.dreamInfo h2 {
  margin-bottom: 20px;
}
.dreamContent {
  width: calc(50% - 15px);
  max-width: 670px;
}
.dreamContent h2 {
  margin-bottom: 20px;
}
.dreamContent p {
  margin-bottom: 40px;
}
.dreamContent p:last-child {
  margin: 0;
}
.dreamImage {
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(50% - 15px);
  max-width: 670px;
  border-radius: 30px;
  overflow: hidden;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.dreamImage__inner {
  width: 100%;
  padding-bottom: 61%;
  position: relative;
}
.dreamImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.dreamPlace {
  width: calc(50% - 15px);
  max-width: 670px;
}
.dreamPlace__inner {
  width: 100%;
  padding-bottom: 61%;
}

@media (max-width: 1380px) {
  .dreamInfo {
    padding: 40px;
  }
}
@media (max-width: 1180px) {
  .dream {
    padding: 50px 0;
  }
  .dream__inner-main {
    margin-bottom: 50px;
  }
  .dreamInfo {
    padding: 30px;
  }
  .dreamInfo__title {
    margin-bottom: 30px;
  }
  .dreamContent p {
    margin-bottom: 30px;
  }
}
@media (max-width: 930px) {
  .dream {
    padding: 40px 0;
  }
  .dream__inner-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
  .dream__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .dreamInfo {
    width: 100%;
  }
  .dreamVideo {
    width: 100%;
  }
  .dreamContent {
    width: 100%;
    max-width: unset;
  }
  .dreamPlace {
    display: none;
  }
  .dreamImage {
    position: static;
    -webkit-transform: translate(0);
            transform: translate(0);
    max-width: unset;
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 540px) {
  .dream {
    padding: 30px 0;
  }
  .dream__inner-main {
    margin-bottom: 30px;
  }
  .dreamInfo {
    padding: 20px 20px 30px 20px;
  }
  .dreamInfo__title {
    margin-bottom: 18px;
  }
  .dreamInfo__buttons {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .dreamInfo h2 {
    margin-bottom: 15px;
  }
  .dreamInfo .button {
    width: calc(50% - 8px);
    padding: 14px 10px;
    margin: 0;
    min-width: unset;
  }
  .dreamContent p {
    margin-bottom: 26px;
  }
  .dreamContent h2 {
    margin-bottom: 15px;
  }
  .dreamImage {
    margin-bottom: 20px;
  }
}
@media (max-width: 380px) {
  .dreamInfo__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .dreamInfo .button {
    width: 100%;
    margin-bottom: 15px;
  }
  .dreamInfo .button:last-child {
    margin: 0;
  }
}
.donation {
  padding: 60px 0 40px;
  overflow: hidden;
  background: #f9f8fb;
  position: relative;
}
.donation__shape {
  position: absolute;
  top: 50%;
  right: 0;
  width: 690px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  pointer-events: none;
}
.donation__shape img {
  width: 100%;
}
.donation__inner-title {
  text-align: center;
  max-width: 795px;
  margin: 0 auto 20px;
}
.donation__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}
.donation__inner h2 {
  margin-bottom: 20px;
}
.donationItem {
  width: calc(33.3% - 40px);
  margin: 20px;
  background: #ffffff;
  padding: 30px 20px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: 30px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.donationItem:hover {
  background: #FDDD58;
}
.donationItem__icon {
  width: 50px;
  height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.donationItem__icon img {
  width: 100%;
}
.donationItem h5 {
  margin-bottom: 15px;
  font-weight: 700;
}

@media (max-width: 1380px) {
  .donation__inner-row {
    margin: 0 -15px;
  }
  .donationItem {
    width: calc(33.3% - 30px);
    margin: 15px;
  }
}
@media (max-width: 1180px) {
  .donation {
    padding: 50px 0 40px;
  }
  .donation__inner-row {
    margin: 0 -10px;
  }
  .donationItem {
    width: calc(33.3% - 20px);
    margin: 10px;
    padding: 24px;
  }
  .donationItem__icon {
    width: 40px;
    height: 50px;
  }
}
@media (max-width: 930px) {
  .donation {
    padding: 40px 0 30px;
  }
  .donation__inner-row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .donationItem {
    width: calc(50% - 20px);
  }
}
@media (max-width: 650px) {
  .donation__shape {
    width: 610px;
    bottom: 100px;
    right: unset;
    left: 50%;
    top: unset;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .donation__inner-title {
    margin-bottom: 30px;
  }
  .donation__inner-row {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .donationItem {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 30px;
  }
  .donationItem:last-child {
    margin: 0;
  }
  .donationItem__icon {
    width: 50px;
    height: 60px;
  }
}
@media (max-width: 540px) {
  .donation {
    padding: 30px 0;
  }
}
.checkout {
  position: relative;
}
.checkout__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0D3123;
}
.checkout__shape {
  position: absolute;
  top: 45px;
  width: 80%;
  max-width: 935px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkout__shape.left {
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.checkout__shape.right {
  right: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.checkout__shape img {
  width: 100%;
}
.checkout__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: calc(100vh - 70px);
  padding: 60px 0;
}
.checkout__inner {
  position: relative;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  -webkit-animation: 0.3s linear fadeUp;
          animation: 0.3s linear fadeUp;
  display: none;
  padding: 40px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.checkout__inner.active {
  display: block;
}
.checkout__inner-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-bottom: 30px;
}
.checkout__inner-steps::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: calc(100% - 4px);
  height: 0;
  content: "";
  border-top: 2px dashed #e6e5e5;
}
.checkout__inner-steps span {
  width: 30px;
  height: 30px;
  background: #ced5d3;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  color: rgba(13, 49, 35, 0.8);
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.checkout__inner-steps span.active {
  color: #ffffff;
  background: #0D3123;
}
.checkout__group {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(13, 49, 35, 0.2);
}
.checkout__group:last-child {
  border-bottom: unset;
  padding-bottom: 0;
  margin-bottom: 0;
}
.checkout__head {
  margin-bottom: 20px;
  position: relative;
}
.checkout__head h3 {
  margin-bottom: 20px;
  text-transform: capitalize;
}
.checkout__head h6 {
  font-weight: 700;
  color: #0D3123;
  text-decoration: underline;
}
.checkout__body > p {
  margin-bottom: 20px;
}
.checkout__body > p:last-child {
  margin: 0;
}
.checkout__body .input {
  position: relative;
}
.checkout__body .input__outer {
  width: calc(50% - 10px);
  max-width: 325px;
  position: relative;
}
.checkout__body .check {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.checkout__body .check__box {
  margin-top: 3px;
}
.checkout__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.checkout__row.big {
  margin-bottom: 30px;
}
.checkout__address {
  margin-bottom: 30px;
}
.checkout__address p {
  margin-bottom: 20px;
}
.checkout__address .input {
  margin-bottom: 20px;
}
.checkout__address a {
  color: #0D3123;
  text-decoration: underline;
}
.checkout__address a:hover {
  opacity: 1;
  color: #7F0000;
}
.checkout__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: #0D3123;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}
.checkout__back svg {
  width: 11px;
  height: 11px;
  margin-right: 8px;
}
.checkout__total h5 {
  margin-bottom: 20px;
}
.checkout__total-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.checkout__total-row.last {
  display: none;
}
.checkout__total-row:last-child {
  margin: 0;
}
.checkout__total-row h6 {
  font-weight: 700;
}
.checkout__total-row h6 b {
  font-weight: 900;
}
.checkout__total-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 40px;
}
.checkout__total-secure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 100%;
}
.checkout__total-secure span {
  width: 14px;
  height: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 8px;
}
.checkout__total-secure span img {
  width: 100%;
}
.checkout__total .button {
  width: 60%;
  height: 60px;
  max-width: 260px;
}
.checkout__total .button.paypal {
  background: #f5b91e;
  max-width: 220px;
}
.checkout__total .button.paypal:hover {
  opacity: 0.8;
}
.checkout__total .button.paypal img {
  width: 84px;
}
.checkout__total .button.apple {
  max-width: 220px;
  background: #1e2422;
}
.checkout__total .button.apple:hover {
  opacity: 0.8;
}
.checkout__total .button.apple img {
  width: 66px;
}
.checkout__total .button.google {
  max-width: 220px;
  background: #1e2422;
}
.checkout__total .button.google:hover {
  opacity: 0.8;
}
.checkout__total .button.google img {
  width: 54px;
}
.checkout__foot {
  padding-top: 30px;
  margin-bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.checkout__foot p {
  width: 100%;
  margin-bottom: 20px;
}
.checkout__foot .check {
  margin-bottom: 20px;
}
.checkout__foot .check:last-child {
  margin: 0;
}
.checkout__foot .check p {
  margin: 0;
}
.checkout__foot .input__outer {
  width: 100%;
  max-width: unset;
  margin-bottom: 20px;
}
.checkout__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkout__tabs .paymentItem {
  margin-right: 40px;
}
.checkout__tabs .paymentItem:last-child {
  margin-right: 0;
}
.checkout__tab {
  -webkit-animation: 0.2s linear fadeUp;
          animation: 0.2s linear fadeUp;
  display: none;
}
.checkout__tab-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.checkout__tab-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkout__tab-radio {
  position: relative;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkout__tab-radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}
.checkout__tab-radio input:checked ~ span {
  background-color: #FDDD58;
  color: #ffffff;
}
.checkout__tab-radio span {
  width: 100%;
  height: 100%;
  padding: 7px 13px;
  background-color: transparent;
  border-radius: 8px;
  color: #FDDD58;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #FDDD58;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.checkout__tab-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px 0 20px;
}
.checkout__tab-row p {
  font-weight: 500;
}
.checkout__tab-icon {
  width: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkout__tab-icon img {
  width: 100%;
}
.checkout__tab-content {
  padding-bottom: 30px;
  border-bottom: 1px solid #FDDD58;
  margin-bottom: 30px;
}
.checkout__tab-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 300;
  margin-bottom: 10px;
}
.checkout__tab-content p.active {
  display: block;
}
.checkout__tab-content button {
  background-color: transparent;
  font-size: 15px;
  line-height: 20px;
  text-decoration: underline;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
.checkout__tab.active {
  display: block;
}
.checkout__tab > p {
  margin-bottom: 30px;
}
.checkout .formBtn {
  display: none;
  -webkit-animation: 0.2s linear fadeUp;
          animation: 0.2s linear fadeUp;
}
.checkout .formBtn.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkoutBasket__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkoutBasket__title h6 {
  color: #7F0000;
  font-weight: 700;
}
.checkoutBasket__rows {
  margin-bottom: 20px;
}
.checkoutBasket__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #e6e5e5;
}
.checkoutBasket__row h6 {
  font-weight: 700;
}
.checkoutBasket__row h6 b {
  font-weight: 900;
}
.checkoutBasket__row p b {
  font-weight: 700;
}
.checkoutBasket__support {
  margin-bottom: 36px;
}
.checkoutBasket__support > h6 {
  margin-bottom: 20px;
  font-weight: 700;
  color: #7F0000;
}
.checkoutBasket__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}
.checkoutBasket__item:last-child {
  margin: 0;
}
.checkoutBasket__item .enterAmount {
  font-size: 18px;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkoutBasket__item .enterAmount.active input {
  opacity: 1;
  visibility: visible;
}
.checkoutBasket__item .enterAmount.active span {
  visibility: hidden;
  opacity: 0;
}
.checkoutBasket__item .enterAmount__number {
  position: relative;
  width: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkoutBasket__item .enterAmount__number::before {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #0D3123;
  content: "";
}
.checkoutBasket__item .enterAmount__number span {
  color: #0D3123;
  font-weight: 300;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.checkoutBasket__item .enterAmount__number input {
  width: 100%;
  height: 100%;
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  color: #0D3123;
  background: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.checkoutBasket__item .enterAmount b {
  font-weight: 700;
  color: #0D3123;
  margin-right: 5px;
}

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

.gift {
  padding: 40px 40px 30px 40px;
  border-radius: 30px;
  background: #0D3123;
  color: #ffffff;
}
.gift__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
  margin-bottom: 30px;
}
.gift__head h6 {
  font-weight: 900;
  margin-bottom: 15px;
}
.gift__head p b {
  font-weight: 700;
}
.gift__icon {
  width: 143px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.gift__icon img {
  width: 100%;
}
.gift p {
  font-weight: 300;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gift p:last-child {
  margin: 0;
}
.gift p.active {
  display: block;
}
.gift button {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 20px;
  background: transparent;
  cursor: pointer;
  font-weight: 300;
  color: #ffffff;
  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;
}
.gift button.active svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.gift button:hover {
  color: #FDDD58;
}
.gift button svg {
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #FDDD58;
  margin-left: 8px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

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

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

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@media (max-width: 1180px) {
  .checkout__wrapper {
    padding: 50px 0;
  }
  .checkout__total .button {
    height: 50px;
  }
}
@media (max-width: 930px) {
  .checkout__wrapper {
    padding: 50px 0;
  }
}
@media (max-width: 750px) {
  .checkout__inner {
    padding: 30px;
  }
}
@media (max-width: 540px) {
  .checkout {
    background: #0D3123;
  }
  .checkout__bg {
    display: none;
  }
  .checkout__wrapper {
    padding: 20px 0;
  }
  .checkout__inner {
    padding: 20px;
  }
  .checkout__head h3 {
    font-size: 30px;
    line-height: 120%;
  }
  .checkout__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .checkout__row.big {
    margin-bottom: 20px;
  }
  .checkout__row .input__outer {
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }
  .checkout__row .input__outer:last-child {
    margin: 0;
  }
  .checkout__group {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .checkout__total-row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .checkout__total-row p {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 200px;
  }
  .checkout__total-foot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 30px;
  }
  .checkout__total .button {
    width: 100%;
    max-width: unset !important;
    margin-bottom: 20px;
  }
  .checkoutBasket__row p {
    max-width: 180px;
  }
  .checkoutBasket__item {
    -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: 30px;
  }
  .checkoutBasket__item .check {
    width: 100%;
  }
  .checkoutBasket__item .enterAmount {
    margin-top: 10px;
    margin-left: 38px;
  }

  .gift {
    padding: 20px;
  }
  .gift p {
    margin-bottom: 15px;
  }

  .payment__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 20px;
  }
  .paymentInfo {
    padding-bottom: 20px;
  }
  .paymentInfo.active {
    margin-bottom: 20px;
  }
  .paymentInfo .input__outer {
    width: 100% !important;
  }
  .paymentInfo .input__outer.w-25 {
    width: calc(60% - 20px) !important;
  }
  .paymentInfo .input__outer.w-20 {
    width: calc(40% - 20px) !important;
  }
}
.appeals {
  background: #0D3123;
  padding: 60px 0;
}
.appeals__inner-title {
  text-align: center;
  color: #ffffff;
  max-width: 795px;
  margin: 0 auto;
}
.appeals__inner-slider {
  margin: 0 -20px;
  padding: 50px 0;
}
.appeals__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.appeals__inner .slick-slide {
  margin: 0 20px;
  height: unset !important;
}
.appeals__inner .slick-dots {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.appeals__inner .slick-dots li {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 4px;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.appeals__inner .slick-dots li.slick-active {
  background: #FDDD58;
}
.appeals__inner .slick-dots li button {
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0;
  background: transparent;
}
.appeals__inner .slick-dots li button::before {
  display: none;
}
.appeals__inner .slick-arrow {
  position: absolute;
  z-index: 3;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FDDD58;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.appeals__inner .slick-arrow:hover {
  opacity: 1;
  background: #ffffff;
}
.appeals__inner .slick-arrow:focus {
  background: #ffffff;
}
.appeals__inner .slick-arrow::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url("/assets/images/icons/arrow-dark.svg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1 !important;
}
.appeals__inner .slick-prev {
  left: -85px;
}
.appeals__inner .slick-prev::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.appeals__inner .slick-next {
  right: -85px;
}
.appeals__inner h2 {
  margin-bottom: 20px;
}
.appealsItem {
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.appealsItem__price {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 25px;
  line-height: 30px;
  font-weight: 900;
  margin-bottom: 20px;
  padding: 15px 35px;
  background: #f9f8fb;
  border-radius: 30px;
}
.appealsItem h5 {
  margin-bottom: 24px;
  font-weight: 900;
  text-transform: uppercase;
}
.appealsItem p {
  margin-bottom: 36px;
}

@media (max-width: 1650px) {
  .appeals__inner {
    padding: 0 40px;
  }
  .appeals__inner .slick-prev {
    left: -45px;
  }
  .appeals__inner .slick-next {
    right: -45px;
  }
}
@media (max-width: 1380px) {
  .appeals__inner-slider {
    margin: 0 -15px;
  }
  .appeals__inner .slick-slide {
    margin: 0 15px;
  }
  .appeals__inner .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .appealsItem {
    padding: 30px;
  }
}
@media (max-width: 1180px) {
  .appeals {
    padding: 50px 0;
  }
  .appeals__inner-slider {
    margin: 0 -10px;
    padding: 40px 0;
  }
  .appeals__inner .slick-slide {
    margin: 0 10px;
  }
  .appeals__inner .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .appealsItem {
    padding: 24px;
  }
  .appealsItem h5 {
    margin-bottom: 20px;
  }
  .appealsItem p {
    margin-bottom: 30px;
  }
}
@media (max-width: 930px) {
  .appeals {
    padding: 40px 0;
  }
}
@media (max-width: 750px) {
  .appeals__inner .slick-prev {
    left: -40px;
  }
  .appeals__inner .slick-next {
    right: -40px;
  }
}
@media (max-width: 650px) {
  .appeals__inner {
    padding: 0;
  }
  .appeals__inner-title {
    margin-bottom: 30px;
  }
  .appeals__inner-slider {
    padding: 0 0 40px 0;
  }
  .appeals__inner .slick-arrow {
    display: none !important;
  }
  .appeals__inner .slick-list {
    overflow: visible !important;
  }
}
@media (max-width: 540px) {
  .appeals {
    padding: 30px 0;
  }
}
.info {
  padding: 60px 0;
}
.info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  background: #FDDD58;
}
.infoContent {
  width: 50%;
  padding: 40px;
}
.infoContent h2 {
  margin-bottom: 20px;
}
.infoContent p {
  margin-bottom: 40px;
}
.infoImage {
  width: 50%;
}
.infoImage__inner {
  width: 100%;
  height: 100%;
  padding-bottom: 83%;
  position: relative;
}
.infoImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

@media (max-width: 1180px) {
  .info {
    padding: 50px 0;
  }
  .infoContent {
    padding: 30px;
  }
  .infoContent p {
    margin-bottom: 30px;
  }
}
@media (max-width: 930px) {
  .info {
    padding: 40px 0;
  }
  .info__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .infoContent {
    width: 100%;
  }
  .infoImage {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .infoImage__inner {
    padding-bottom: 68%;
  }
}
@media (max-width: 540px) {
  .info {
    padding: 30px 0;
  }
  .infoContent {
    padding: 20px;
  }
}
.thanks {
  position: relative;
}
.thanks__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0D3123;
}
.thanks__shape {
  position: absolute;
  top: 45px;
  width: 80%;
  max-width: 935px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.thanks__shape.left {
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.thanks__shape.right {
  right: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.thanks__shape img {
  width: 100%;
}
.thanks__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: calc(100vh - 70px);
  padding: 190px 0 60px;
  color: #ffffff;
}
.thanks__inner-content {
  max-width: 670px;
  margin: 0 auto;
  text-align: center;
}
.thanks__inner h1 {
  margin-bottom: 20px;
}
.thanks__inner p {
  margin-bottom: 40px;
}
.thanks__inner .button {
  color: #ffffff;
  width: 100%;
  max-width: 320px;
}

@media (max-width: 1380px) {
  .thanks__inner {
    padding: 150px 0 60px;
  }
}
@media (max-width: 1180px) {
  .thanks__inner {
    padding: 120px 0 50px;
  }
}
@media (max-width: 930px) {
  .thanks__shape {
    width: 95%;
  }
  .thanks__inner {
    padding: 90px 0 50px;
  }
}
@media (max-width: 540px) {
  .thanks__shape {
    top: 50px;
    width: 680px;
  }
  .thanks__shape.left {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .thanks__shape.right {
    display: none;
  }
  .thanks__inner h1 {
    margin-bottom: 18px;
  }
  .thanks__inner p {
    margin-bottom: 30px;
  }
}
/* 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;
}

.modall {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  opacity: 0;
  display: flex;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}
.modall.big .modall__inner {
  max-width: 480px;
  padding: 20px;
}
.modall.sm .modall__inner {
  max-width: 360px;
  padding: 20px;
}
.modall.active {
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.4s;
}
.modall__inner {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 360px;
  margin: auto;
  position: relative;
  overflow: hidden;
}
.modall__inner-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 0 0 0 10px;
  background: #db3c16;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modall__inner-close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  content: "";
  background: #fff;
  transition: 0.3s ease;
  transform: translate(-50%, -50%) rotate(45deg);
}
.modall__inner-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  content: "";
  background: #fff;
  transition: 0.3s ease;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modall__inner-close:hover {
  background: #fff;
}
.modall__inner-close:hover::before {
  background: #FDDD58;
}
.modall__inner-close:hover::after {
  background: #FDDD58;
}
.modall__inner-close img {
  width: 9px;
  pointer-events: none;
}
