*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

ul,
li {
  padding: 0;
  display: block;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
li {
  margin: 0;
}

body {
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  display: inline-block;
  text-decoration: none;
  outline: none;
  appearance: none;
}

a,
body {
  color: var(--t-foreground-primary-rgb);
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

input,
textarea,
select {
  border: 1px solid rgba(var(--t-foreground-primary-csv), 0.1);
}

textarea {
  resize: vertical;
}

.btn,
input,
button,
textarea,
select {
  appearance: none;
  outline: none;
  border-radius: 8px;
  padding: 5px 20px;
  line-height: 2em;
}

input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
  appearance: auto;
  margin-right: 5px;
}

input[type="date"] {
  cursor: pointer;
  appearance: auto;
  background: #fff;
}

select {
  padding: 5px 40px 5px 20px;
  cursor: pointer;
  background: none;
  color: var(--t-foreground-primary-rgb);
  appearance: none;
  -webkit-appearance: none;
}

.modal {
  display: none !important;
  overflow-y: scroll;
  width: 750px;
  max-width: 100%;
}

.modal_active {
  display: block !important;
  overflow: hidden;
}

.modal_active-flex {
  display: flex !important;
}

.select-wrapper {
  display: inline-block;
  position: relative;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 7px;
  left: calc(100% - 20px);
  top: 50%;
  transform: translate(-100%, -50%);
}

button {
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  transition: all 0.5s ease;
}

.btn {
  background: var(--primary-500-rgb);
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1em;
  padding: 12px 24px;
  border-radius: 8px;
}

.btn:hover {
  background: rgba(var(--primary-500-csv), 0.9);
  color: #fff;
}

.btn-ghost {
  font-weight: 600;
  background: none;
  color: var(--primary-500-rgb);
  border: 1px solid var(--primary-500-rgb);
  text-align: center;
  line-height: 1.3em;
  padding: 8px 20px;
  border-radius: 8px;
}

.btn-ghost:hover {
  background: var(--primary-500-rgb);
  color: #fff;
}

.btn-prev,
.btn-next {
  background: #ffffff;
  border: 1px solid var(--t-foreground-secondary-rgb);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  position: relative;
  box-shadow: 6px 6px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.btn-prev:hover,
.btn-next:hover {
  border: 1px solid var(--t-foreground-primary-rgb);
}

.btn-prev::before,
.btn-next::before {
  content: "";
  width: 11px;
  height: 19px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 60%;
}

.btn-prev:hover::before,
.btn-next:hover::before {
  opacity: 100%;
}

.btn-prev::before {
  background: url("../svg/arrow-left.svg") no-repeat center center/cover;
}

.btn-next::before {
  background: url("../svg/arrow-right.svg") no-repeat center center/cover;
}

.btn-link {
  color: var(--primary-500-rgb);
  font-weight: 600;
}

.btn-link:hover {
  text-decoration: underline;
}

body {
  font: 400 16px/1.8em "Be Vietnam Pro";
}

h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2em;
}

h2 {
  font-weight: 600;
  font-size: 34px;
  line-height: 1.5em;
}

.why-olimp__title,
h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.5em;
}

h4 {
  font-weight: 600;
}

.container {
  /* width: 1140px; */
  /* width: 1200px; */
  /* margin: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important; */
  /*min-height: 100vh;*/
}

/* .header__mobile-nav-content, */
.container {
  /* width: 100% !important; */
  padding: 0 15px !important;
}

.container-full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.card-base {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 15px 0px rgba(0, 113, 240, 0.10);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.swiper {
  width: 100%;
}

button:disabled {
  background: #b6c2d9 !important;
}

.button-preloader,
.preloader {
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.button-preloader {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-spinner,
.spinner {
  border: 4px solid #416283;
  border-radius: 100%;
  border-top-color: var(--primary-500-rgb);
  height: 80px;
  width: 80px;
  animation: 1s linear 0s normal none infinite running spinner;
  -webkit-animation: 1s linear 0s normal none infinite running spinner;
}

.button-spinner {
  height: 20px;
  width: 20px;
  border: 2px solid #fff;
  border-top-color: transparent;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.tooltip {
  position: relative;
}

.tooltip:after {
  content: "";
  position: absolute;
  background: url("../svg/tooltip.svg") no-repeat center center/cover;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 5px;
  transform: translate(0, -50%);
}

/*intl-tel-input*/

.iti {
  display: block;
}

/* Hide the default autocomplete placeholder Google Maps API*/
.pac-input::placeholder {
  display: none;
}

/* Section header */

.header {
  width: 100vw;
  position: sticky;
  top: -100%;
  z-index: 100;
  background: #fff;
  transition: all 0.5s ease;
  /*box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);*/
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}

.header-scrolling {
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}

.header_active {
  top: 0;
}

/* .header-container {
  min-height: unset;
  width: 1200px;
} */

.header__navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*.header__*/

.menu-item-has-children a {
  padding: 24px 0;
}

.header__nav-item {
  padding: 0 20px;
}

.header-rfq-btn {
  padding: 5px 20px;
  /*margin-left: 20px; !* Delete this line when apply new header *!*/
  background: var(--primary-500-rgb);
}

.header-rfq-btn:hover {
  background: rgba(var(--primary-500-csv), 0.9);
}

.sub-menu {
  /*display: flex;*/
  background: #f6f6f6;
  width: 100%;
  position: absolute;
  left: 0;
  top: calc(100%);
  align-items: center;
  justify-content: center;
  height: 75px;
  z-index: -100;
  display: none;
  /*visibility: hidden;*/
  /*opacity: 0;*/
  /*transition: opacity 0.5s ease, visibility 0s; !* Reset the transition properties without delay *!*/
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}

.menu-item-has-children:hover > .sub-menu {
  display: flex;
  /*visibility: visible;*/
  /*opacity: 1;*/
  /*transition: opacity 0.5s ease, visibility 0s; !* Reset the transition properties without delay *!*/
}

.header-rfq-btn {
  /*margin: 4px 12px;*/
  line-height: 1.5em;
}

.header-rfq-btn a {
  color: #fff !important;
  margin: 0;
}

.header__account-sign-in,
.header__nav-item a,
.header__account-btn {
  position: relative;
  font-weight: 600;
}

.header__nav-item a {
  height: 100%;
}

.header__nav-item_hovered > a::after,
.header__account-sign-in::after,
.header__nav-item a::after,
.header__account-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% - 4px);
  height: 4px;
  width: 100%;
  background: transparent;
  z-index: 3;
}

.header__nav-item_hovered > a::after,
.header__account-sign-in:hover::after,
.current-menu-parent > a::after,
.header__nav-item_active a::after,
.header__nav-item a:hover::after {
  background: var(--primary-500-rgb);
  color: var(--primary-500-rgb);
  transition: all 0.5s ease;
}

.header-rfq-btn a:hover::after {
  background: transparent;
}

.header__account-sign-in:hover,
.header__nav-item_active a,
.header__nav-item a:hover {
  color: var(--primary-500-rgb);
}

.header-rfq-btn a:hover {
  color: #fff;
}

.header__account-sign-in {
  margin-right: 36px;
}

.header__mobile-navigation {
  display: none;
}

/* Main offer section */

.header__main-offer-partners,
.header__main-offer {
  height: calc(0.44 * 100vw);
  /*height: 750px;*/
  width: 100vw;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 65px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  position: relative;
}

.header__main-offer-partners {
  height: auto;
  padding: 103px 0;
  min-height: 360px;
}

.header__img {
  filter: brightness(85%);
}

.header__img,
.header__main-video {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/*.header__title-partners,*/
.header__img-video {
  display: none;
}

.header__overlay {
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(0, 0);
  width: 850px;
  max-width: 100%;
}

.header__description,
.header__title {
  text-shadow: 2px 4px 30px black;
  text-transform: uppercase;
}

.header__title-partners {
  text-align: center;
  max-width: 650px;
  margin: auto;
}

.header__rfq-btn-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px auto 0;
}

.header__rfq-btn-partners {
  margin: auto;
}

.header__description {
  margin-top: 10px;
  text-align: center;
  font-size: 20px;
}

.header__main-offer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  background: #ffffff;
  margin: 32px auto 0;
}

.header__main-offer-btn-text {
  margin-left: 17.5px;
  position: relative;
}

.header__main-offer-btn-text::before {
  content: "";
  position: absolute;
  left: -17.5px;
  top: 50%;
  width: 8.5px;
  height: 10px;
  background: url("../svg/discover-btn-arrow.svg") no-repeat center center/cover;
  transform: translate(0, -50%);
  transition: all 0.5s ease;
}

.header__main-offer-btn:hover .header__main-offer-btn-text::before {
  background: url("../svg/discover-btn-arrow-white.svg") no-repeat center
    center/cover;
}

/* Why Olimp section */

.why-olimp {
  margin: 100px 0 60px;
  text-align: center;
}

.why-olimp__description {
  max-width: 850px;
  margin: 30px auto 80px;
}

.why-olimp__items-list {
  display: flex;
  justify-content: center;
  text-align: left;
}

.why-olimp__item:not(:last-child) {
  margin-right: 20px;
}

.why-olimp__item {
  width: 224px;
  height: 176px;
  display: block;
  border-radius: 16px;
}

.why-olimp__item-link {
  border-radius: 16px;
  position: relative;
  color: #ffffff;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  transition: all 0.5s ease;
}

.no-minimums__btn {
  display: block;
  background: transparent;
  text-align: left;
}

.why-olimp__item-link::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
}

.why-olimp__item-link:hover::after {
  opacity: 0.4;
}

.why-olimp__text-wrapper {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 80px;
  padding: 16px;
  z-index: 1;
  cursor: pointer;
  transition: all 0.5s ease;
  overflow: auto;
  text-shadow: 0 0 4px black;
}

.why-olimp__item-link:hover .why-olimp__text-wrapper {
  top: 0;
}

.why-olimp__item-title {
  font:
    500 16px/1.5em "Be Vietnam Pro",
    sans-serif;
  margin-bottom: 12px;
}

.why-olimp__item-description {
  font:
    400 13px/1.5em "Be Vietnam Pro",
    sans-serif;
  opacity: 0;
  transition: all 0.5s ease;
}

.why-olimp__item:hover .why-olimp__item-description {
  opacity: 1;
}

/*Section Intro*/

.intro {
  margin: 100px 0;
}

.intro__title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.5em;
}

.intro__par {
  margin-bottom: 12px;
  text-align: center;
}

.intro__par:last-of-type {
  margin-bottom: 0;
}

/* Section zip-search */

.zip-search {
  padding: 60px 0;
}

.zip-search__wrapper {
  background: #ffffff;
  box-shadow: 4px 4px 24px rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  padding: 16px;
  max-width: 550px;
  width: 100%;
  margin: auto;
}

.zip-search__form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zip-search__input {
  margin-right: 16px;
  flex-grow: 1;
}

.zip-search__input_error {
  border-color: var(--danger-500-rgb);
}

.zip-search__input::placeholder {
  color: rgba(29, 29, 29, 0.6);
}

.zip-search__tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zip-search__tag-link {
  font-weight: 600;
  padding: 7px 16px;
  background: #f0f2f4;
  border-radius: 40px;
}

/* Benefits section */

.benefits {
  padding-bottom: 90px;
}

.benefits__item {
  width: 250px;
  height: 192px;
}

.benefits__text-wrapper {
  top: 110px;
}

/* Steps section */

.steps {
  padding-bottom: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.steps__list {
  margin: 30px 0 35px;
}

.steps__mockup {
  width: 800px;
  height: 485px;
  margin-right: -53px;
}

.steps__item {
  margin-left: 43px;
  position: relative;
  line-height: 1.5em;
}

.steps__item::before {
  content: "";
  position: absolute;
  left: -45px;
  top: -5px;
  font-weight: 600;
  line-height: 2em;
  height: 32px;
  width: 32px;
  background: #f0f2f4;
  border-radius: 50%;
  text-align: center;
}

.steps__item:nth-child(1)::before {
  content: "1";
}

.steps__item:nth-child(2)::before {
  content: "2";
}

.steps__item:nth-child(3)::before {
  content: "3";
}

.steps__item:not(:last-child) {
  margin-bottom: 15px;
}

.steps__list span {
  font-weight: 600;
}

/* Features section */

.features {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.feature {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0.5)
    ),
    #f0f2f4;
  height: 650px;
}

.feature__info {
  order: 1;
  width: 50vw;
  padding: 60px 100px;
}

.feature:nth-child(2n + 1) .feature__info {
  order: -1;
}

.feature__title {
  /*font-size: 30px;*/
  line-height: 1.4em;
}

.feature__description {
  font-size: 16px;
}

.feature__img {
  width: 50vw;
  object-fit: cover;
  height: 100%;
}

/* Partners section */

.partners {
  padding-top: 136px;
  padding-bottom: 142px;
  position: relative;
}

.partners__title {
  max-width: 443px;
  margin-bottom: 60px;
}

.partners__comments-swiper {
  margin-bottom: 60px;
}

.partners__comment-slides {
  margin-bottom: 88px;
  width: 100%;
}

.partners__comment {
  max-width: 45%;
}

.partners__comment-img-wrapper {
  width: 144px;
  height: 65px;
  display: flex;
  align-items: flex-end;
}

.partners__comment-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partners__author-info {
  margin: 15px 0;
}

.partners__author-name {
  margin-bottom: 4px;
  font-weight: 600;
}

.partners__position {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4em;
}

.partners__comments-btns {
  display: flex;
  position: absolute;
  left: 100%;
  top: 40px;
  transform: translate(-100%, 0);
  z-index: 1;
}

.partners__comments-btn {
  margin-right: 24px;
}

.partners__comments-pagination {
  display: none !important;
}

.partners__icon-slides {
  display: flex;
  justify-content: space-between;
}

.partners__icon-wrapper {
  width: 144px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners__icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.job-listing {
  margin: 60px 0;
}

.pagination {
  display: flex;
}

.swiper-wrapper {
  margin-bottom: 32px !important;
}

.swiper-pagination-bullet,
.pagination-btn {
  width: 32px;
  height: 6px;
  background: #f0f2f4;
  border-radius: 10px;
  padding: 0;
  opacity: 1;
  transition: all 0.5s ease;
}

.swiper-pagination-bullet:not(:last-child),
.pagination-btn:not(:last-child) {
  margin-right: 12px;
}

.swiper-pagination-bullet-active,
.pagination-btn_active {
  background: var(--primary-500-rgb);
}

/* Mobile Section */

.mobile {
  position: relative;
  margin-bottom: 163px;
  padding: 50px 0 64px;
  color: #ffffff;
}

.mobile::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background: #454753;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  z-index: -1;
}

.mobile__links {
  line-height: 0;
  margin: 24px 0 32px;
}

.mobile__links-img {
  height: 32px;
  margin-right: 8px;
  width: 108px;
}

.mobile__qr-code-wrapper {
  width: 151px;
  height: 151px;
  border-radius: 9px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile__qr-code {
  width: 111px;
  height: 111px;
}

.mobile__phones {
  position: absolute;
  width: 639px;
  height: 624px;
  right: 0;
  top: -93px;
}

/* Media section */

.media {
  position: relative;
}

.media__top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}

.media__title {
  margin-right: 670px;
}

.media-swiper {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}

.media__item {
  /*position: relative;*/
  min-height: 350px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 40px;
  /*padding: 56px 32px 32px 32px;*/
  /*flex-shrink: 0;*/
  cursor: pointer;
  /*display: block;*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.media__item_slider {
  width: 304px;
  max-width: 90%;
}

.media__item:hover {
  box-shadow: 6px 6px 24px rgba(0, 0, 0, 0.08);
}

.media__item:hover .media__item-link-img {
  opacity: 1;
}

.media__pagination {
  display: none;
}

.media__btns {
  display: flex;
}

.media__btn_prev {
  margin-right: 24px;
}

.media__item-img-wrapper {
  /*height: 38px;*/
  /*width: 100%;*/
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.media__item-img {
  height: 65px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.media__item-description {
  /*margin-top: 30px;*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  font-size: 18px;
}

.media__item-btn {
  /*position: absolute;*/
  /*left: 32px;*/
  /*bottom: 32px;*/
  /*z-index: 1;*/
}

.media__item-link-img {
  opacity: 0.6;
}

.media__item-link-img:hover {
  opacity: 1;
}

/* Footer section */

.reqister-warehouse__btn-wrapper,
.zip-search__wrapper-footer {
  margin-top: 70px;
}

.reqister-warehouse__btn,
.footer-warehouses-search__btn {
  margin: auto;
  padding: 12px 45px;
}

.reqister-warehouse__btn-wrapper {
  display: flex;
  align-items: center;
}

.footer__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8em;
  margin-bottom: 16px;
}

.footer__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8em;
}

.footer__item a {
  color: var(--t-foreground-secondary-rgb);
}

.footer__item:not(:last-child) {
  margin-bottom: 12px;
}

.footer__item:hover a {
  color: var(--t-foreground-primary-rgb);
}

.footer__item_terms {
  font-size: 14px;
  font-weight: 400;
  margin-top: 80px;
  margin-bottom: 15px;
}

.footer__item_terms-copyright {
  padding: 0 3px;
}

.footer__item_terms-link {
  font-weight: 600;
}

.footer__item_terms-link:hover {
  text-decoration: underline;
}

.footer__social-item:not(:last-child) {
  margin-right: 12px;
}

.footer__social-links {
  display: flex;
}

.footer__social-item:hover {
  transform: rotate(360deg);
  transition: all 1.5s ease;
}

.footer__social-link-img {
  width: 25px;
  height: 25px;
}

.footer__apps {
  display: flex;
  margin-top: 24px;
}

.footer__apps-item {
  line-height: 0;
}

.footer__apps-item:not(:last-child) {
  margin-right: 12px;
}

.footer__links-img {
  height: 32px;
  border: 1px solid var(--t-foreground-primary-rgb);
  border-radius: 6px;
}

.custom-logo-link {
  flex-grow: 0;
  width: 175px;
  height: 40px;

  img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}

/*Contacts section*/

/*.contact-us {*/
/*    !*margin: 130px 0 150px;*!*/
/*    margin: 100px 0 80px;*/
/*}*/

/*.contact-us__contacts {*/
/*    margin-bottom: 30px;*/
/*}*/

/*.contact-us__contacts-list {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: flex-start;*/
/*}*/

/*.contact-us__contacts-icon {*/
/*    display: inline-block;*/
/*    margin-right: 10px;*/
/*}*/

/*.contact-us__title {*/
/*    margin-bottom: 50px;*/
/*}*/

.contact-form {
  max-width: 100%;
  width: 550px;
}

.contact-us__form-data {
  position: relative;
  visibility: hidden;
  z-index: -1;
}

.form-data_active {
  visibility: visible;
  z-index: 1;
}

.contact-form__legend {
  font:
    500 16px/1.8em "Be Vietnam Pro",
    sans-serif;
}

.contact-form__group:first-of-type {
  display: flex;
  flex-direction: column;
}

.contact-form__group {
  margin: 30px 0;
}

.contact-form__response {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  width: 550px;
  text-align: center;
  visibility: hidden;
  z-index: -1;
}

.response_active {
  visibility: visible;
  z-index: 1;
}

.contact-form__legend {
  margin-bottom: 8px;
}

.form__input:not(:last-child) {
  margin-bottom: 20px;
}

.contact-form__btn-done,
.contact-form__btn-submit {
  margin-top: 35px;
  width: 100%;
  display: none;
}

.btn-submit_active {
  display: block !important;
}

.btn-done_active {
  display: block;
}

.search-offline__response {
  text-align: center;
}

.search-offline__response-title {
  font-weight: 600;
  font-size: 24px;
}

.search-offline__response-text {
  margin: 12px auto;
  font-size: 16px;
}

.search-offline__response-phone {
  font-size: 20px;
  color: var(--primary-500-rgb);
}

.search-offline__btn-add-load {
  /*color: var(--primary-500-rgb)*/
}

/*Privacy policy*/

.privacy {
  margin: 50px 0 0;
}

.privacy__company-name {
  text-align: center;
  color: rgb(165, 165, 165);
  letter-spacing: 1em;
  font-weight: 600;
  text-transform: uppercase;
}

.privacy__title {
  margin: 50px 0 80px 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 50px;
}

.privacy__item:not(:last-child) {
  margin-bottom: 60px;
}

.privacy__item-title {
  margin: 40px 0 35px;
}

.privacy__item-text {
  margin: 30px 0;
}

.blog-post__content li,
.privacy__item-list {
  margin-bottom: 15px;
  margin-left: 30px;
  position: relative;
}

.blog-post__content li::before,
.privacy__item-list::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #000;
  display: block;
  position: absolute;
  left: -30px;
  border-radius: 50%;
  line-height: 1.5em;
  transform: translate(0, 240%);
}

/* Security Guide */

.security-guide {
  margin: 50px 0 0;
}

.security-guide__title {
  margin: 50px 0 60px 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.security-guide__intro {
  max-width: 900px;
  margin: 0 auto 70px auto;
  color: #444;
  line-height: 1.8;
  font-size: 16px;
}

.security-guide__intro p {
  margin-bottom: 20px;
}

.security-guide__content {
  max-width: 900px;
  margin: 0 auto;
  color: #222;
  line-height: 1.9;
  font-size: 16px;
}

.security-guide__content h2 {
  margin: 50px 0 25px;
  font-size: 24px;
  font-weight: 600;
}

.security-guide__content p {
  margin: 20px 0;
}


.security-guide__content ul {
  margin: 25px 0 30px 30px;
  padding-left: 20px;
  list-style-position: outside;
}

.security-guide__content li {
  margin-bottom: 14px;
 position: relative;
  padding-left: 15px;
}

.security-guide__content li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #000;
  display: block;
  position: absolute;
  left: -20px;
  top: 0.75em;
  border-radius: 50%;
}

.security-guide__contact {
  max-width: 900px;
  margin: 80px auto 0;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.security-guide__contact h2 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.security-guide__contact p {
  font-size: 16px;
}

.security-guide__contact a {
  color: #000;
  text-decoration: underline;
}

/*Terms and conditions*/

/* .terms {
  margin: 50px 0 0;

  p {
    margin: 10px 0;
  }
}

.terms__top-block {
  margin-bottom: 40px;
  opacity: 0.6;
}

.terms__date {
  margin-bottom: 5px;
}

.agreement {
  margin-bottom: 60px;
}

.agreement__title {
  margin-bottom: 50px;
}

.agreement__description {
  margin-bottom: 20px;
}

.agreement__item {
  margin-bottom: 25px;
}

.agreement__item-title {
  margin-bottom: 10px;
}

.agreement__item-text {
  margin-bottom: 10px;
} */

/*404*/

.section-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 130px;
  flex-direction: column;
}

.section-404 h2 {
  margin-bottom: 10px;
}

/*Modals*/

.no-scroll {
  overflow: hidden;
}

.modal-wrapper {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 20px;
  z-index: 1000;
}

.modal-wrapper_active {
  display: flex;
}

.btn-close-modal {
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
  background: transparent;
  z-index: 100;
  text-shadow:
    0 0 3px #fff,
    0 0 5px #fff;
}

.main-offer-video-wrapper {
  position: relative;
  z-index: 9;
}

.main-offer-video-wrapper video {
  object-fit: cover;
}

.main-offer-video-wrapper,
.main-offer-video-wrapper video {
  max-height: 85vh;
  max-width: 1000px;
  width: auto;
  height: auto;
}

.zip-search__results {
  position: relative;
  text-align: center;
  font-weight: 500;
  background: #fff;
  border-radius: 12px;
  overflow-y: auto;
}

.zip-search__img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  max-height: 50vh;
}

.zip-search__content {
  padding: 40px 20px 50px;
  margin: auto;
}

.zip-search__text-wrapper {
  margin: 15px 0 20px;
}

.zip-search__btns {
  display: flex;
  justify-content: center;
}

.zip-search__book-form {
  margin-right: 12px;
}

.zip-search__book-form,
.zip-search__modal-btn {
  width: 180px;
}

.zip-search__modal-btn:first-child {
  margin-right: 20px;
}

.no-search-results,
.zip-search__text-main span {
  font-weight: 700;
}

.zip-search__text {
  font-size: 14px;
}

.zip-search__text-link {
  color: var(--primary-500-rgb);
  text-decoration: underline;
}

.zip-search__info {
  margin: 60px auto 0;
  text-align: center;
  max-width: 785px;
  width: 100%;
}

.zip-search__info-title {
  font-size: 26px;
}

.zip-search__info-text {
  line-height: 1.8em;
}

.zip-search__info-text,
.feature__description {
  margin: 30px 0 33px;
}

.demo__modal,
.request-a-quote-modal {
  background: #fff;
  max-width: 700px;
  width: 100%;
  padding: 30px 30px 35px;
  border-radius: 12px;
  z-index: -1;
  overflow: auto;
}

.demo__title,
.request-a-quote__title {
  margin-bottom: 25px;
  text-align: center;
}

.request-a-quote__form {
  margin: auto;
}

.form__input_zip {
  margin-bottom: 0 !important;
}

.request-a-quote-select {
  width: 100%;
}

.request-a-quote__form-btns {
  margin-top: 35px;
  display: none;
}

.request-a-quote__btn-submit,
.contact-form__btn-close,
.request-a-quote__btn-close {
  width: 100%;
}

.request-a-quote__btn-submit {
  margin-bottom: 20px;
}

/* .awsm-job-g-recaptcha-group {
  max-width: 100%;
  overflow: hidden;
} */

.no-posts {
  font-weight: 400;
}

.contact-us-formpart .wpcf7-spinner {
  margin-top: 5px;
}

.contact-us-formpart .form-group .submit-button {
  margin-bottom: 0;
}

.grecaptcha-badge {
  display: none !important;
}


/* Media requests */

@media (max-width: 1246px) {
  .steps__mockup {
    margin-right: 0;
  }
}

@media (max-width: 1200px) {
  /* .container { */
    /* width: 960px; */
    /* margin: auto !important; */
  /* } */

  .header {
    position: sticky;
    padding: 0;
    z-index: 8;
    background: #fff;
  }

  /* .header-container {
    margin: auto;
  } */

  .header__navigation {
    display: none;
  }

  .header__mobile-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 4;
    background: #fff;
  }

  .header__mobile-navigation-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    position: relative;
    z-index: 3;
    background: #fff;
  }

  .header__hamburger {
    width: 30px;
    height: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
  }

  .header__hamburger_active {
    display: flex;
  }

  .header__hamburger-layer {
    height: 3px;
    background-color: black;
  }

  .header__hamburger-close-btn {
    font-size: 30px;
    line-height: 0;
    display: none;
  }

  .header__hamburger-close-btn_active {
    display: block;
  }

  .header__mobile-nav-menu {
    position: absolute;
    left: 0;
    top: -1000px;
    background: #fff;
    padding: 12px 0;
    width: 100vw;
    border-radius: 0 0 15px 15px;
    transition: all 0.5s ease-in-out;
    z-index: 2;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 100%;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
    clip-path: inset(0px -15px -15px -15px);
  }

  .header__mobile-nav-menu_active {
    top: 62px;
  }

  .header__mobile-nav-content {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 960px;
    text-align: center;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
  }

  .menu-main-container {
    /*position: initial !important;*/
  }

  .header__nav-list {
    flex-direction: column;
    margin-bottom: 0;
    color: #5c6064;
    text-align: center;
  }

  .header__nav-list a {
    color: #5c6064;
    padding-bottom: 0 !important;
  }

  .menu-item-has-children:not(:last-child) {
    margin-bottom: 12px !important;
  }

  .parent_active {
    border-bottom: 4px solid var(--primary-500-rgb);
  }

  /*.header__nav-item:not(:last-child) {*/
  /*    margin-bottom: 15px;*/
  /*}*/

  /*Uncomment this class why apply new header*/
  .header__nav-item {
    padding: 0;
  }

  .menu-item-has-children a {
    padding: 12px 0;
  }

  /*.header-rfq-btn {        !* Delete this class why apply new header*!*/
  /*    margin: 12px 0 0 !important;*/
  /*}*/

  .header__account-sign-up,
  .header__account-sign-in {
    display: block;
    width: 150px;
    text-align: center;
  }

  .header__account-sign-in {
    margin-bottom: 12px;
    margin-right: 0;
  }

  .header__mobile-nav-wrapper {
    display: flex;
  }

  .header__nav-item a:hover::after,
  .header__nav-item_active a::after {
    display: none;
  }

  .header__nav-item {
    width: 100%;
    margin: 0;
    max-width: 100%;
  }

  .sub-menu {
    box-shadow: none;
  }

  .header__nav-item .sub-menu,
  .header__nav-item:hover .sub-menu {
    top: 0;
    left: 0;
    height: auto;
    /*z-index: 100;*/
  }

  .header__nav-item .sub-menu {
    display: none;
    position: unset;
    background: transparent;
    flex-direction: column;
  }

  .header__nav-item .sub-menu_active {
    display: flex;
  }

  .header__mobile-back-btn_hidden,
  .header__account-btns_hidden,
  .header__nav-item_hidden {
    display: none;
  }

  .header__account-btns {
    margin-top: 32px;
  }

  .header__mobile-back-btn {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
  }

  .header__mobile-back-btn_active {
    display: block;
    padding: 0;
    background: url("../svg/header-back-btn.svg") no-repeat center center/cover;
    width: 11px;
    height: 20px;
  }

  .steps {
    flex-direction: column;
  }

  .steps__info {
    margin-bottom: 90px;
  }

  .feature {
    height: 650px;
  }

  .feature__info {
    padding: 50px;
  }

  .media__title {
    margin-right: 500px;
  }

  .main-offer-video-wrapper,
  .main-offer-video-wrapper video {
    max-width: 850px;
  }
}

@media (max-width: 992px) {
  .header__mobile-nav-content,
  .container {
    /* width: 720px; */
  }

  .main-offer-video-wrapper,
  .main-offer-video-wrapper video {
    max-width: 100%;
  }

  .why-olimp__items-list {
    flex-wrap: wrap;
  }

  .benefits__item:not(:last-child) {
    margin-right: 0;
  }

  .benefits__item:first-child {
    margin: 0 20px 20px 0;
  }

  .benefits__item:last-child {
    margin: 0 0 0 20px;
  }

  .steps__mockup {
    width: 100%;
    object-fit: contain;
    height: unset;
  }

  .feature {
    flex-direction: column;
    height: unset;
  }

  .feature__info {
    order: -1;
    width: 100%;
    padding: 150px 70px;
  }

  .feature:nth-child(2n + 1) .feature__info {
    order: -1;
  }

  .feature__img {
    width: 100%;
  }

  .intro__par {
    text-align: left;
  }

  .mobile {
    margin-bottom: 143px;
  }

  .mobile__phones {
    width: 440px;
    height: 430px;
    right: 0;
    top: 77.5px;
  }

  .media__title {
    margin-right: 250px;
  }

  .why-olimp__item-link:hover::after,
  .why-olimp__item-link::after {
    opacity: 0.4;
  }

  .why-olimp__text-wrapper {
    top: 0;
  }

  .why-olimp__item-description {
    opacity: 1;
  }

  .footer__item_terms {
    margin-top: 56px;
  }
}

@media (max-width: 768px) {
  .header__mobile-nav-content,
  .container {
    /* width: 540px; */
  }

  /*.header__main-offer-partners,*/
  .header__main-offer {
    height: 450px;
  }

  .zip-search__tags {
    flex-wrap: wrap;
    justify-content: center;
  }

  .zip-search__tag {
    margin: 24px 12px 0 0;
  }

  .zip-search__info-text {
    margin-bottom: 40px;
  }

  .why-olimp {
    margin-bottom: 88px;
  }

  .why-olimp__item:nth-child(2) {
    margin-right: 0;
  }

  .why-olimp__item:nth-child(3) {
    margin-top: 20px;
  }

  .benefits__item:nth-child(3) {
    margin-top: 0;
  }

  .partners__comments-btns {
    display: none;
  }

  .partners__comments-pagination {
    display: flex !important;
  }

  .mobile {
    margin-bottom: 135px;
    padding-bottom: 408.5px;
  }

  .mobile__content {
    text-align: center;
  }

  .mobile__qr-code-wrapper {
    margin: auto;
  }

  .mobile__phones {
    position: absolute;
    width: 426px;
    height: 416px;
    left: 50%;
    top: 18px;
    transform: translate(-50%, 100%);
    margin: 0;
  }

  .partners__comment {
    width: 100% !important;
    max-width: 100% !important;
  }

  .media__top {
    display: block;
  }

  .media__title {
    font-weight: 600;
    line-height: 1.5em;
    margin: 0 15px;
  }

  .media__btns {
    display: none;
  }

  .media__pagination {
    display: flex;
  }

  /* .footer {
    margin-bottom: 20px;
  } */

  .footer__item_terms {
    margin-top: 56px;
  }

  /* .footer {
    margin-top: 115px;
  } */
}

@media (max-width: 640px) {
  /* .header__mobile-nav-content,
  .container {
    width: 100% !important;
    padding: 0 15px !important;
  } */

  .header__mobile-nav-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .header__nav-list {
    text-align: center;
  }

  .header__main-video {
    display: none;
  }

  /*.header__title-partners,*/
  .header__img-video {
    display: block;
  }

  .header__mobile-back-btn {
    left: 15px;
  }

  .why-olimp__items-list {
    align-items: center;
    flex-direction: column;
  }

  /*.header__account-btns {*/
  /*    margin-top: 50px;*/
  /*}*/

  /*.header__main-offer-partners {*/
  /*    margin-bottom: 65px;*/
  /*}*/

  .why-olimp {
    margin-top: 40px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.4em;
  }

  h2 {
    font-size: 25px;
  }

  .why-olimp__title,
  h3 {
    font-size: 20px;
  }

  .privacy__title {
    font-size: 32px;
    margin: 25px auto 30px;
  }

  .terms,
  .privacy {
    margin: 30px 0 0;
  }

  .terms__top-block {
    margin-bottom: 30px;
  }

  .zip-search__form {
    flex-direction: column;
  }

  .zip-search__input {
    margin-right: 0;
    width: 100%;
  }

  .zip-search__btn {
    margin-top: 16px;
    width: 100%;
  }

  .why-olimp__item:first-child,
  .why-olimp__item:nth-child(2),
  .why-olimp__item:nth-child(3),
  .why-olimp__item:nth-child(4) {
    margin: 0;
  }

  .why-olimp__item:not(:last-child) {
    margin-bottom: 20px;
  }

  .zip-search__tags {
    margin-top: 50px;
  }

  .zip-search__btns {
    flex-direction: column;
    align-items: center;
  }

  .zip-search__modal-btn {
    display: block;
  }

  .zip-search__modal-btn:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .feature__info {
    padding: 100px 30px;
  }

  .mobile {
    margin-bottom: 136px;
    padding-bottom: 281px;
  }

  .mobile__phones {
    width: 290px;
    height: 285px;
    top: 109px;
  }

  .partners__comments-swiper,
  .partners {
    padding-bottom: 136px;
  }

  .partners__comments-swiper {
    margin-bottom: 0;
  }

  .media__title {
    line-height: 1.3em;
  }

  /*.contact-us {*/
  /*    margin: 80px 0 0;*/
  /*}*/

  /* .zip-search__wrapper-footer {
    margin-top: 115px;
  } */

  .privacy__company-name {
    letter-spacing: 0.5em;
  }
}