/* @import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* BUTTON CALL */

.fab-container {
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 999;
  cursor: pointer;
}

.fab-icon-holder {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #016fb9;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.fab-icon-holder:hover {
  opacity: 0.8;
}

.fab-icon-holder i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-style: 25px;
  color: #fff;
}

.fab1 {
  width: 75px;
  height: 75px;
  background: #69b9ff;
}

.fab-options {
  list-style-type: none;
  margin: 7px;
  position: absolute;
  bottom: 70px;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease;
  transform: scale(0);
  transform-origin: 85% bottom;
}

.fab1:hover + .fab-options,
.fab-options:hover {
  opacity: 1;
  transform: scale(1);
}

.fab-options li {
  display: flex;
  justify-content: flex-end;
  padding: 5px;
}

.fab-label {
  padding: 2px 5px;
  align-self: center;
  user-select: none;
  white-space: nowrap;
  border-radius: 3px;
  font-size: 16px;
  background: #666;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  margin-right: 10px;
}

/* HEADER */
body {
  /* font-family: "Open Sans", sans-serif; */
  font-family: "Montserrat", sans-serif;

  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.logo {
  display: flex;
}

.eng-logo {
  font-size: 18px;
  color: red;
  padding-left: 20px;
  padding-top: 4px;
}

.order-call-button {
  font-weight: 500;
  font-size: 16px;
  padding: 12px;
  border: 2px solid;
  border-radius: 7px;
  color: white;
  background-color: #69b9ff;
  transition: 0.3s;
}

.order-call-button:hover {
  background-color: #2c9dff;
}

.logo-style {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #69b9ff;
}

.header-right-icons {
  width: 20px;
  height: 20px;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
}

.phone-call-info {
  display: none;
}

.header {
  left: 0;
  top: 0;
  width: 100%;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
  z-index: 1;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo img {
  vertical-align: middle;
}

.whatsapp-logo {
  display: none;
}

.telegram-logo {
  display: none;
}

.w-t-logo-a {
  display: none;
}

.header .menu .head {
  display: none;
}

.header .menu ul {
  list-style: none;
}

.header .menu > ul > li {
  display: inline-block;
}

.header .menu > ul > li:not(:last-child) {
  margin-right: 40px;
}

.header .menu .dropdown {
  position: relative;
}

.header .menu a {
  text-decoration: none;
  font-size: 18px;
  color: black;
  line-height: 1.5;
  display: block;
  font-weight: 500;
}

.header .menu > ul > li > a {
  padding: 24px 0;
}

.header .menu > ul > .dropdown > a {
  padding-right: 15px;
}

.header .menu i {
  font-size: 10px;
  pointer-events: none;
  user-select: none;
  position: absolute;
  color: black;
  top: calc(50% - 5px);
}

.header .menu > ul > li > i {
  right: 0;
}

.header .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: -100px;
  width: 300px;
  padding: 15px 0;
  background-color: white;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.5);
  z-index: 1;
  transform-origin: top;
  transform: scaleY(0);
  visibility: hidden;
  opacity: 0;
}

.header .menu .sub-menu-right {
  left: 100%;
  top: 0;
}

.header .menu .sub-menu-left {
  top: 0;
  left: auto;
  right: 100%;
}

.header .menu li:hover > .sub-menu {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: all 0.5s ease;
}

.header .menu .sub-menu a {
  padding: 6px 24px;
}

.header .menu .sub-menu .dropdown > a {
  padding-right: 34px;
}

.header .menu .sub-menu span {
  background-image: linear-gradient(hsl(0, 0%, 100%), #69b9ff 0%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.5s ease;
}

.header .menu .sub-menu li:hover > a > span {
  background-size: 100% 1px;
}

.header .menu .sub-menu i {
  transform: rotate(-90deg);
  right: 24px;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right > * {
  margin-left: 25px;
}

.header-right .icon-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: hsl(0, 0%, 0%);
  font-size: 16px;
}

.header-right .open-menu-btn {
  display: none;
}

@media (max-width: 1220px) {
  .header .container {
    margin: 0 25px;
  }
}

@media (max-width: 1140px) {
  .header-right > * {
    margin-left: 10px;
  }
  .header-container {
    padding: 15px 0;
  }

  .header .menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 320px;
    height: 100%;
    background-color: white;
    padding: 15px 30px 30px;
    overflow-y: auto;
    z-index: 1000;
    transform: translateX(100%);
  }

  .header .menu.open {
    transform: none;
  }

  .w-t-logo-a {
    display: flex;
  }

  .whatsapp-logo {
    display: flex;
    width: 35px;
    margin-bottom: 1px;
  }

  .telegram-logo {
    display: flex;
    width: 34px;
  }

  .header .menu .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    margin-top: 5px;
  }

  .header .menu .close-menu-btn {
    height: 35px;
    width: 35px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    border: none;
  }

  .header .menu .close-menu-btn::before,
  .header .menu .close-menu-btn::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2.6px;
    background-color: #69b9ff;
  }

  .header .menu .close-menu-btn::before {
    transform: rotate(45deg);
  }

  .header .menu .close-menu-btn::after {
    transform: rotate(-45deg);
  }

  .header .menu > ul > li {
    display: block;
  }

  .header .menu > ul > li:not(:last-child) {
    margin-right: 0;
  }

  .header .menu li {
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.25);
  }

  .header .menu li:first-child {
    border-top: 1px solid hsla(0, 0%, 0%, 0.25);
  }

  .header .menu > ul > li > a {
    padding: 12px 0;
  }

  .header .menu > ul > .dropdown > a {
    padding-right: 34px;
  }

  .header .menu i {
    height: 34px;
    width: 34px;
    border: 1px solid hsla(0, 0%, 0%, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    top: 7px;
  }

  .header .menu .dropdown.active > i {
    background-color: hsla(0, 0%, 100%, 0.25);
    transform: rotate(180deg);
  }

  .header .menu .sub-menu {
    position: static;
    opacity: 1;
    transform: none;
    visibility: visible;
    padding: 0;
    transition: none;
    box-shadow: none;
    width: 100%;
    display: none;
  }

  .header .menu .dropdown.active > .sub-menu {
    display: block;
  }

  .header .menu .sub-menu li:last-child {
    border: none;
  }

  .header .menu .sub-menu a {
    padding: 12px 0 12px 15px;
  }

  .header .menu .sub-menu .sub-menu a {
    padding-left: 30px;
  }

  .header .menu .sub-menu .sub-menu .sub-menu a {
    padding-left: 45px;
  }

  .header .menu .sub-menu span {
    background-image: none;
  }

  .header .menu .sub-menu i {
    transform: none;
    right: 0;
  }

  .header-right .open-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 44px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    border: none;
  }

  .header-right .open-menu-btn .line {
    height: 2.6px;
    width: 30px;
    background-color: #69b9ff;
    position: absolute;
  }

  .header-right .open-menu-btn .line-1 {
    transform: translateY(-8px);
  }

  .header-right .open-menu-btn .line-3 {
    transform: translateY(8px);
  }
}

@media (max-width: 745px) {
  .w-t-logo-a {
    display: none;
  }
}

@media (max-width: 640px) {
  .order-call-button {
    display: none;
  }

  .phone-call-info {
    display: flex;
    width: 30px;
  }
}

@media (max-width: 495px) {
  .logo-style {
    letter-spacing: 2px;
    font-size: 24px;
  }

  .eng-logo {
    font-size: 12px;
    color: red;
    padding-left: 11px;
    padding-top: 5px;
  }

  .header-right > * {
    margin-left: 10px;
  }
}

@media (max-width: 400px) {
  .header .container {
    margin: 0px 10px;
  }

  .eng-logo {
    font-size: 12px;
    color: red;
    padding-left: 5px;
    padding-top: 5px;
  }

  .phone-call-info {
    display: flex;
    width: 27px;
  }

  .header-right > * {
    margin-left: 8px;
  }
}

.hero {
  min-height: 100vh;
  background-image: url(../img/images.jpeg);
  background-size: cover;
  background-position: center;
}

/* ----------------------------------------- FULL SCREEN SLIDER ----------------------------------------------------- */
:root {
  --slide-1-bg: #5b9ab0;
  /* --slide-1-bg: url(./img/Test.jpg); */
  --slide-2-bg: #785d8a;
  --slide-3-bg: #5465b3;
  --slide-4-bg: #13acaf;

  --slide-1-link: #66b9ff;
  --slide-2-link: #33233d;
  --slide-3-link: #b39642;
  --slide-4-link: #b05b27;
}

.slider {
  box-sizing: border-box;
  position: relative;
  /* left: 0;
  right: 0;
  top: 0;
  bottom: 0; */
  height: 740px;
  overflow: hidden;
  z-index: 0;
}

.slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1200px;
  align-items: flex-start;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .slide-content {
    display: block;
    width: auto;
  }
}

.slide {
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  /* top: 0; */
  display: flex;
  align-items: center;
  transition: transform 1000ms cubic-bezier(0.85, 0, 0.15, 1);
  padding: 3rem;
}

.slide img {
  max-width: 110vw;
}

@media screen and (min-width: 1200px) {
  .slide {
    /* padding: 0 0; */
    /* padding: 0 0 0 20rem; */
    justify-content: space-between;
    flex-direction: row;
    text-align: left;
  }

  .slide img {
    max-height: 100vh;
  }
}

.slide h1 {
  text-shadow: 3px 2px 10px black;
  width: 650px;
  color: #fff;
  font-size: 45px;
  line-height: 48px;
  letter-spacing: 1px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.slide h2 {
  text-shadow: 3px 2px 10px black;
  width: 650px;
  color: #fff;
  font-size: 25px;
  line-height: 24px;
  font-weight: 500;
}

.slide-h2-last {
  margin-bottom: 64px;
}

.slide-h2 {
  margin-bottom: 30px;
}

.slide a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 16px 32px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.slide a:hover {
  border-color: #fff;
  color: #fff;
  background-color: transparent !important;
}

#slide-1 {
  border-radius: 20px 20px 0 0;
  background-image: url(img/IMG_9199.png);
  left: 0;
  /* width: 1200px; */
  background-position: center;
  background-size: cover;
}

#slide-2 {
  border-radius: 20px 20px 0 0;
  background-image: url(img/IMG_9193.png);
  background-position: center;
  background-size: cover;
  left: 100%;
}

#slide-3 {
  border-radius: 20px 20px 0 0;
  background-image: url(img/IMG_9192.png);
  background-position: center;
  background-size: cover;
  left: 200%;
}

#slide-4 {
  border-radius: 20px 20px 0 0;
  background-image: url(img/IMG_9196.png);
  background-position: center;
  background-size: cover;
  left: 300%;
}

#slide-5 {
  border-radius: 20px 20px 0 0;
  background-image: url(img/IMG_9196.png);
  background-position: center;
  background-size: cover;
  left: 300%;
}

#slide-1 a {
  background-color: var(--slide-1-link);
}

#slide-2 a {
  background-color: var(--slide-1-link);
}

#slide-3 a {
  background-color: var(--slide-1-link);
}

#slide-4 a {
  background-color: var(--slide-1-link);
}

#slide-5 a {
  background-color: var(--slide-1-link);
}

#slide-radio-1:checked ~ .slide {
  transform: translate3d(0, 0, 0);
}

#slide-radio-2:checked ~ .slide {
  transform: translate3d(-100%, 0, 0);
}

#slide-radio-3:checked ~ .slide {
  transform: translate3d(-200%, 0, 0);
}

#slide-radio-4:checked ~ .slide {
  transform: translate3d(-300%, 0, 0);
}

.pagination {
  z-index: 1;
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  display: flex;
}

.pagination label {
  width: 24px;
  height: 24px;
  padding: 16px;
  opacity: 0.3;
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}

.pagination label:hover {
  opacity: 0.8;
}

.pagination label::before,
.pagination label::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.pagination label::before {
  width: 8px;
  height: 8px;
  background-color: #fff;
}

.pagination label::after {
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#slide-radio-1:checked ~ .pagination label:nth-child(1),
#slide-radio-2:checked ~ .pagination label:nth-child(2),
#slide-radio-3:checked ~ .pagination label:nth-child(3),
#slide-radio-4:checked ~ .pagination label:nth-child(4) {
  opacity: 0.8;
}

#slide-radio-1:checked ~ .pagination label:nth-child(1)::after,
#slide-radio-2:checked ~ .pagination label:nth-child(2)::after,
#slide-radio-3:checked ~ .pagination label:nth-child(3)::after,
#slide-radio-4:checked ~ .pagination label:nth-child(4)::after {
  opacity: 1;
}

/* ----------------------------------------- FULL SCREEN SLIDER ----------------------------------------------------- */

.order {
  /* height: 1000px; */
  display: flex;
  padding: 50px 0 0 0;
  align-items: center;
}

.order__container {
  box-shadow: 4px 4px 7px -6px rgba(34, 60, 80, 0.4);
  width: 100%;
}

.order-pole-important {
  color: red;
}

.order-mainimg {
  fill: #69b9ff;
  color: #69b9ff;
  width: 30px;
}

.order-maintext {
  /* border-radius: 10px 10px 0px 0px; */
  border-radius: 10px;
  /* padding: 20px 120px; */
  /* padding: 50px 40px; */
  background-color: #f7f7f7;
}

.order__maintext {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.order__title {
  /* background-color: #f1f1f1; */
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 30px 40px;
  /* box-shadow: 4px 4px 7px -6px rgba(34, 60, 80, 0.4); */
  box-shadow: 0px 3px 4px 1px rgba(138, 143, 146, 0.15);
  /* border-bottom: 2px solid rgba(190, 190, 190, 0.8); */
}

.order__content__wrapper {
  display: flex;
  /* align-items: flex-start; */
  font-size: 16px;
  gap: 15px;
  margin-top: 30px;
}

.order__content__wrapper > .order__content__wrapper__block {
  flex-grow: 1;
}

/* .order__content__types__volume>.order__content__wrapper__block {
} */

.order__content__wrapper__block input {
  width: 100%;
  /* height: 100%; */
  border: none;
  padding: 16px 15px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid;
}

.order__content form {
  padding: 10px 40px 50px 40px;
  /* margin-top: 20px; */
  display: flex;
  flex-flow: column nowrap;
  gap: 15px;
  justify-content: center;
}

.order__wrapper__title {
  font-size: 1.125rem;
  padding: 15px;
}

.order__wrapper__subtitle {
  padding: 10px 15px 0 15px;
}

.order__content__swap {
  align-content: center;
  font-size: 16px;
  /* padding-bottom: 10px; */
  display: flex;
  margin-top: 55px;
  font-size: 30px;
}

.order__content__wrapper__sending {
  display: flex;
  gap: 15px;
  align-items: flex-end;
}

.order__content__wrapper__sending > .order__content__wrapper__block {
  flex-grow: 1;
}

.order__content__send__button {
  width: 100%;
  height: 100%;
  border: none;
  padding: 15px;
  font-size: 18px;
  color: #242424;
  border-radius: 10px;
  background-color: #69b9ff;
  color: #fff;
  transition: 0.3s;
}

.order__content__send__button:hover {
  background-color: #016fb9;
}

.priority {
  margin: 50px 0;
}

.priority__content {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
}

.priority__title {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.priority__content__inner {
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 4px solid #69b9ff;
  font-size: 20px;
  font-weight: 300;
  padding: 10px 4px;
}

.priority__content__inner__number {
  font-size: 64px;
  font-weight: 700;
  color: #69b9ff;
}

.roadmap__content__ul {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  width: min(60rem, 90%);
  margin-inline: auto;
}

/* .roadmap__content__ul {
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  width: min(60rem, 90%);
  margin-inline: auto;
} */

.roadmap__content__ul::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: rgb(225, 225, 225);
  border-radius: calc(var(--line-w) / 2);
}

.roadmap__content__ul li:not(:last-child) {
  margin-bottom: var(--row-gap);
}

.roadmap__content__ul li {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
}

.roadmap__content__ul li .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);

  text-align: center;
  background-color: var(--accent-color);

  color: white;
  font-size: 1.25rem;
  font-weight: 700;

  display: grid;
  place-content: center;
  position: relative;

  border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

.roadmap__content__ul li .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

.roadmap__content__ul li .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;

  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

.roadmap__content__ul li .title,
.roadmap__content__ul li .descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
}

.roadmap__content__ul li .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 500;
}

.roadmap__content__ul li .descr {
  padding-block-end: 1.5rem;
  font-weight: 300;
}

/* shadows */
.roadmap__content__ul li .title::before,
.roadmap__content__ul li .descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
}

.roadmap__content__ul li .title::before {
  bottom: calc(100% + 0.125rem);
}

.roadmap__content__ul li .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}

.credits {
  margin-top: 1rem;
  text-align: right;
}

@media (min-width: 40rem) {
  .roadmap__content__ul {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }

  .roadmap__content__ul::before {
    grid-column: 2;
  }

  .roadmap__content__ul li:nth-child(odd) {
    grid-column: 1;
  }

  .roadmap__content__ul li:nth-child(even) {
    grid-column: 3;
  }

  /* .roadmap__content__ul li:nth-child(2) {
      grid-row: 2/4;
  } */

  .roadmap__content__ul li:nth-child(odd) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .roadmap__content__ul li:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }

  .roadmap__content__ul li:nth-child(odd) .date {
    border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
  }
}

.credits a {
  color: var(--color);
}

/* ------------------------------------------------------ BURGER MENU -------------------------------------------------- */

/* 
.header_wrapper {
  display: none;
}


.header_wrapper > div {
  margin: 0 10px;
}

#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked, .hamburger-menu {
  z-index: 1000;
}

#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
  background-color: #000;
}

#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
  background-color: #000;
}

#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background-color: #000;
}

#menu__toggle:checked ~ .menu__box {
  top: 0 !important;
}

.menu__btn {
  position: relative;
  top: 2px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  background-color: #69b9ff;
  height: 2px;
  transition-duration: 0.25s;
}

.menu__btn > span::before {
  content: "";
  top: -8px;
}

.menu__btn > span::after {
  content: "";
  top: 8px;
}

.menu__box {
  box-sizing: border-box;
  display: block;
  position: fixed;
  top: -101%;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #b6ddff;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  transition-duration: 0.25s;
}

.menu__item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.25s;
}

.menu__item:hover {
  background-color: #cfd8dc;
} */

/* ------------------------------------------------------ BURGER MENU -------------------------------------------------- */

/*-------------------------------------------------------- WELCOME --------------------------------------------------------------- */

/* .welcome {
  /* display: flex; */
/* height: 740px; */
/* align-content: center; */
/* background-image: url(img/perevozka_sbornykh_gruzov_1440_1.png); */
/* background-size: cover; */
/* background-position: center; */

.welcome-text {
  width: 550px;
  font-size: 34px;
  font-weight: unset;
}

.welcome-paragraph {
  margin-top: 20px;
  padding: 0px 0px 65px 0px;
  font-weight: 500;
  font-size: 18px;
}

.welcome-img {
  height: 550px;
}

.welcome__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.welcome-button {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border: 2px solid #69b9ff;
  background-color: #69b9ff;
  padding: 10px;
  border-radius: 7px;
  transition: 0.3s;
}

.welcome-button:hover {
  border: 2px solid #4d4f55;
  background-color: #4d4f55;
}

/* --------------------------------------------------------- WELCOME ----------------------------------------------------------- */

/* ----------------------------------------------------------UNDER WELCOME BLOCK ----------------------------------------------------- */
.underWelcome {
  margin: 0 5px;
  background: #efefef;
  border-radius: 0 0 20px 20px;
}

.underWelcome-img {
  width: 70px;
}

.underWelcomeBlock {
  gap: 15px;
  display: flex;
  padding: 30px 0;
  /* max-height: 124px; */
  justify-content: space-between;
}

.info__card {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-basis: 100%;
}

@media (max-width: 1200px) {
  .underWelcomeBlock {
  }

  .info__card {
    flex-direction: column;
    text-align: center;
  }

  .info__card__img {
    height: 50px;
  }

  /* .info__card img {
  } */
}

@media (max-width: 730px) {
  .underWelcomeBlock {
    display: grid;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .order__content__wrapper {
    flex-direction: column;
  }

  .order__content__swap {
    display: none;
  }

  .order__content__wrapper__sending {
    flex-direction: column;
    align-items: stretch;
  }

  .order__wrapper__title {
    padding: 10px;
  }
}

/* .info__card{
  flex-basis: auto;
  display: flex;
  align-items: center;
} */

.info__card > span {
  padding: 0px 10px;
  word-wrap: break-all;
  line-height: 2;
  font-weight: 500;
}

/* ----------------------------------------------------------UNDER WELCOME BLOCK ----------------------------------------------------- */

/* ------------------------------------------------------------------- TRUST ---------------------------------------*/

.trust__container {
  margin-top: 50px;
}

.trust__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 50px 0;
}

.trust_card img {
  object-fit: cover;
  border-radius: 10px;
}

.trust_card {
  display: flex;
  gap: 25px;
}

.trust__content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  /* align-items: ; */
}

.trust__content > * {
  width: fit-content;
}

.trust__content p {
  line-height: 2;
}

/* ------------------------------------------------------------------- TRUST ---------------------------------------*/

/* -------------------------------------------------------------------- LOGISTICS -------------------------------------------- */

.logistic {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
}

.logistics__cards {
  margin-top: 40px;
  display: flex;
  gap: 250px;
}

.logistics__card img {
  width: 130px;
}

.logistics__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logistics__title {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.logistics__subtitle {
  color: #6c6c6c;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  max-width: 450px;
  margin: 20px auto 0 auto;
  text-align: center;
}

.logistic__card__title {
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.logistic__card__cost {
  color: #6c6c6c;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}

.logistic__card__cost span {
  font-size: 20px;
  line-height: 28px;
  color: #69b9ff;
}

/* -------------------------------------------------------------------- LOGISTICS -------------------------------------------- */

/* USLUGI */

.uslugi {
  display: grid;
  height: 670px;
  background-color: #69b9ff;
  align-content: center;
  text-align: center;
}

.uslugi__text {
  margin-bottom: 35px;
  font-size: 30px;
  color: #fff;
}

.cards__container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.uslugi__cards {
  display: grid;
  justify-content: center;
}

.card-image {
  height: 130px;
  padding: 10px;
}

.card {
  width: 230px;
  height: 200px;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  margin: 0px 10px 0px 10px;
  box-shadow: 15px 15px 25px #434343;
  transition: 0.3s;
}

.card:hover {
  background-color: #e2e2e2;
}

/* ВЫКУПИМ ДЛЯ ВАС sdelka */

.sdelka {
  display: flex;
  height: 640px;
  align-content: center;
  background-color: #ffffff;
}

.sdelka__container {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sdelka-img {
  width: 550px;
}

.sdelka-paragraphtext {
  width: 465px;
  font-size: 18px;
}

.sdelka__text {
  display: flex;
  align-items: center;
  margin: 25px 0px 25px 0px;
}

.sdelkamini-img {
  width: 50px;
}

.sdelka-textmini {
  margin-left: 25px;
}

.sdelka-headdingtext {
  font-weight: unset;
  font-size: 26px;
}

/* howtowork */

.howtowork {
  display: grid;
  height: auto;
  padding: 0 0 50px 0;
  align-content: center;
  text-align: left;
}

.howtowork__content {
  display: flex;
  justify-content: space-between;
}

.howtowork__img {
  display: flex;
  align-content: center;
  align-items: center;
}

.howtowork-img {
  width: 550px;
}

.howtowork-card {
  width: fit-content;
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
}

.howtowork__text {
  margin-left: 10px;
  margin-bottom: 25px;
  font-size: 25px;
  color: #66b9ff;
}

.howtowork__cards {
  display: grid;
  padding: 10px 10px 10px 0px;
}

.howtowork-number {
  width: 80px;
  border-radius: 10px 0px 0px 10px;
  color: #fff;
  background-color: #69b9ff;
  padding: 50px 25px;
}

.howtowork__textcard {
  display: grid;
  border-radius: 0px 10px 10px 0px;
  align-content: center;
  background-color: #fff;
  border-right: 1px solid rgb(98, 98, 98);
  border-top: 1px solid rgb(98, 98, 98);
  border-bottom: 1px solid rgb(98, 98, 98);
}

.howtowork-text {
  text-align: center;
  color: #000000;
  font-weight: 700;
  font-size: 32px;
}

.howtoworkp1 {
  display: flex;
}

.howtoworkp1 div + div {
  margin-left: 20px;
}

.howtoworkp2 div + div {
  margin-left: 20px;
}

.howtoworkp2 {
  display: flex;
}

.howtowork-texth6card {
  font-size: 20px;
  text-align: left;
  margin-left: 20px;
}

.howtowork-textparagraphcard {
  width: 460px;
  text-align: left;
  margin-left: 20px;
}

@media (max-width: 1170px) {
  .howtoworkp1 {
    display: grid;
  }

  .howtoworkp2 {
    flex-direction: column;
  }

  .howtoworkp1 div + div {
    margin-left: 0;
  }

  .howtoworkp2 div + div {
    margin-left: 0;
  }
}

/* TARIF */

.tarif {
  padding: 50px 0;
  display: flex;
  height: auto;
  align-items: center;
}

.tarif-text-style {
}

.header-card-text {
  font-weight: 600;
  color: white;
  font-size: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #69b9ff;
  margin: 0;
  padding: 20px 0 30px 0;
  border-radius: 15px 15px 0 0;
  text-shadow: 1px 1px 8px darkslategrey;
}

.tarif-header-design {
  height: 65px;
}

.tarif-text-div {
  margin-top: 80px;
  margin-left: 20px;
  margin-right: 20px;
}

.tarif-img-plane {
  margin: -26px 115px 0px 146px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  justify-items: center;
  background-color: #69b9ff;
  border-radius: 39px;
  padding: 7px;
}

.tarif-paragraph-div-img {
  width: 55px;
}

.tarif-img-plane {
  width: 67px;
}

.tarif-paragraph-div {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
}

.tarif-cards {
  display: flex;
}

.tarif-card1 {
  border-radius: 16px;
  box-shadow: 2px 2px 8px gray;
  width: 360px;
  height: auto;
  margin: 0 10px;
}

.tarif-paragraph-text {
  margin-left: 8px;
  font-size: 25px;
  display: flex;
  align-items: center;
}

.tarif-paragraph-text-red {
  font-size: 20px;
  color: gray;
  margin-right: 7px;
}

.tarif-price-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin: 20px 0;
}

.tarif-price-text-red {
  margin-left: 7px;
  display: flex;
  justify-content: center;
  font-size: 35px;
  font-weight: 500;
}

.tarif-button-to-call {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: white;
  padding: 20px;
  background-color: #69b9ff;
  border-radius: 0 0 15px 15px;
  font-weight: 540;
  font-size: 19px;
  transition: 0.3s;
}

.tarif-button-to-call:hover {
  background-color: #016fb9;
}

.tarif-headertext {
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 820px) {
  .tarif-cards {
    display: grid;
  }
  .tarif-card1 {
    margin: 10px 0;
  }
}

@media (max-width: 390px) {
  .tarif-card1 {
    border-radius: 16px;
    box-shadow: 2px 2px 8px grey;
    width: 300px;
    height: auto;
  }
  .tarif-img-plane {
    margin: -26px 115px 0px 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
    background-color: #69b9ff;
    border-radius: 39px;
    padding: 7px;
  }
}

/* ------------------------------------------------------------------------------------------------------- */

.mail {
  background-color: #f7f7f7;
  height: auto;
  display: flex;
  padding: 50px 10px;
}

.mail-header {
  text-align: center;
  font-size: 40px;
  width: 800px;
  margin-bottom: 20px;
}

.mail-p {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.mail-enter-button form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.mail-button {
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  padding: 20px 30px;
  background-color: #69b9ff;
  color: #fff;
  font-weight: 600;
  border-radius: 0 10px 10px 0;
  transition: 0.3s;
}

.mail-button:hover {
  background-color: #016fb9;
}

.mail-enter {
  border-radius: 10px 0 0 10px;
  font-size: 15px;
  border: 3px solid #555;
  width: 400px;
  padding: 5px 20px;
  box-sizing: border-box;
}

@media (max-width: 820px) {
  .mail-header {
    width: auto;
  }
}

@media (max-width: 620px) {
  .mail-enter-button form {
    display: grid;
  }

  .mail-button {
    margin-top: 10px;
    text-align: center;
    border-radius: 10px;
  }

  .mail-enter {
    border-radius: 10px;
    padding: 17px 20px;
    width: 310px;
  }
}

@media (max-width: 400px) {
  .mail-header {
    font-size: 30px;
  }

  .mail-enter {
    width: 250px;
  }
}

/* --------------------------------------------------------------------------------------------------------------- */

/* НАШИ КЛИЕНТЫ */

.partners {
  padding: 30px 0 60px 0;
  background-color: #69b9ff;
  /* height: 230px; */
  align-content: center;
}

.partners-text {
  color: #fff;
  text-align: center;
  font-size: 35px;
  margin-bottom: 35px;
}

.partners__img {
  display: flex;
  justify-content: space-between;
}

.promarket-img {
  width: 185px;
  height: 125px;
  align-content: center;
}

.tbank-img {
  width: 180px;
  align-content: center;
}

.merlion-img {
  width: 180px;
  align-content: center;
}

/* Order Call */

/* contacts */

.contacts__container {
  display: flex;
  justify-content: space-between;
  /* padding: 15px; */
  gap: 40px;
  box-shadow: 0px 0px 10px darkgray;
  border-radius: 10px;
  height: 450px;
}

.contacts {
  margin-bottom: 20px;
}

.contacts__map {
  border-radius: 10px;
}

.contacts-map {
  flex-grow: 2;
  background-image: url(img/Screenshot_7.png);
  background-position: center;
  background-size: cover;
}

.contacts-contact {
  padding: 20px 0 30px 30px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  margin-right: 30px;
}

.contacts-adress-details {
  margin-left: 15px;
  font-size: 20px;
  font-weight: 300;
  /* display: flex; */
  align-items: center;
  gap: 5px;
}

/* 
.contacts {
  display: flex;
  justify-content: center;
  height: auto;
  padding: 50px 10px;
}


*/

.contact-prosba {
  font-size: 20px;
  font-weight: 500;
}

.contact-header {
  color: #69b9ff;
  font-size: 45px;
  letter-spacing: 2px;
}

@media (max-width: 400px) {
  .contact-header {
    color: #69b9ff;
    font-size: 41px;
    letter-spacing: 2px;
  }
}

.contacts-adress {
  display: flex;
  align-items: center;
}

.contact-adress-img {
  width: 30px;
  height: 30px;
  background-color: #69b9ff;
  border-radius: 10px;
  padding: 10px;
  box-sizing: content-box;
  fill: #fff;
}

ul {
  list-style: none;
}

@media (max-width: 1000px) {
  .contacts {
    padding: 0 10px 50px 10px;
    height: auto;
  }

  .contacts-map {
    height: 350px;
  }

  .contacts-map iframe {
    height: 350px;
  }

  .contacts__container {
    flex-direction: column;
  }

  .contacts__container {
    height: auto;
  }
}

@media (max-width: 500px) {
  .contacts-adress-details {
    font-size: 18px;
  }
}

@media (max-width: 430px) {
  .contacts-adress-details {
    font-size: 16px;
  }
}

/* ------------------------------------------------- FOOTER ---------------------------------------------- */

/* --------------------------------------------- FOOTER --------------------------------------------------------- */

:root {
  --color-esqueleto: #eff3f5;
}

.cover {
  width: 100%;
  height: 500px;
  background: var(--color-esqueleto);
  margin-top: 20px;
}

.container__article {
  max-width: 1000px;
  padding: 0px 20px;
  margin: auto;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.container__article .box__article {
  width: 200px;
  height: 250px;
  background: var(--color-esqueleto);
  margin: 20px;
}

footer {
  background-color: #f7f7f7;
  width: 100%;
  padding: 50px 0px;
  background-image: url(../Images/background-footer.svg);
  background-size: cover;
}

.logo-footer {
  margin-bottom: 10px;
  font-size: 45px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #69b9ff;
}

.container__footer {
  justify-content: space-between;
  max-width: 1360px;
  margin: auto;
}

.footer-adress-img {
  width: 30px;
  height: 30px;
  background-color: #69b9ff;
  border-radius: 10px;
  padding: 10px;
  box-sizing: content-box;
  fill: #fff;
}

.footer-adress {
  align-items: center;
  padding: 10px 0;
  display: flex;
}

.footer-box-links {
  font-size: 20px;
}

.footer-adress-text {
  margin-left: 10px;
  display: grid;
}

.box__footer {
  display: flex;
  flex-direction: column;
  padding: 40px;
}

.box__footer .logo img {
  width: 180px;
}

.box__footer .terms {
  max-width: 400px;
  font-weight: 500;
  color: #7a7a7a;
  font-size: 18px;
}

.box__footer h2 {
  margin-bottom: 10px;
  color: #343434;
  font-weight: 700;
}

.box__footer a {
  margin-top: 10px;
  color: #7a7a7a;
  font-weight: 600;
}

.box__footer a:hover {
  opacity: 0.8;
}

.box__footer a .fab {
  font-size: 20px;
}

.box__footer1 {
  margin-right: 48px;
  display: flex;
  flex-direction: column;
  padding: 40px;
}

.box__footer1 .logo img {
  width: 180px;
}

.box__footer1 .terms {
  max-width: 400px;
  font-weight: 500;
  color: #7a7a7a;
  font-size: 18px;
}

.box__footer1 h2 {
  margin-bottom: 10px;
  color: #343434;
  font-weight: 700;
}

.box__footer1 a {
  margin-top: 10px;
  color: #7a7a7a;
  font-weight: 600;
}

.box__footer1 a:hover {
  opacity: 0.8;
}

.box__footer1 a .fab {
  font-size: 20px;
}

.box__copyright {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 0px 40px;
}

.box__copyright p {
  margin-top: 20px;
  color: #7a7a7a;
}

.box__copyright hr {
  border: none;
  height: 1px;
  background-color: #7a7a7a;
}

.footer-mainpart {
  display: flex;
}

.footer-part1 {
  display: flex;
  justify-content: space-between;
}

.footer-part2 {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1280px) {
  .footer-mainpart {
    display: grid;
  }

  .footer-part1 {
    display: flex;
    justify-content: space-between;
  }

  .footer-part2 {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 820px) {
  .logo-footer {
    text-align: center;
  }

  .footer-mainpart {
    display: grid;
  }

  .footer-part1 {
    text-align: center;
    justify-content: center;
    display: grid;
  }

  .footer-part2 {
    text-align: center;
    justify-content: center;
    display: grid;
  }

  .footer-textsettings {
    text-align: center;
  }

  .box__footer1 {
    margin-right: 0;
  }

  .footer-adress-text1 {
    text-align: left;
  }

  .footer-adress-text2 {
    text-align: left;
  }
}

@media (max-width: 450px) {
  .logo-footer {
    margin-bottom: 10px;
    font-size: 37px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #69b9ff;
  }
}

@media (max-width: 380px) {
  .logo-footer {
    margin-bottom: 10px;
    font-size: 29px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #69b9ff;
  }
}

/* ------------------------------------------------- POP UP ------------------------------------------------ */

/* ------------------------------------- CAROUSEL ----------------------------------------------- */
.qatar_airways-logo-img {
  height: 190px !important;
}

.pegasus-logo-img {
  height: 55px !important;
}

.header__logo-en-img {
  height: 100px !important;
}

.logo-rus-white-img {
  height: 115px !important;
}

.emirates-logo-badge-img {
  height: 125px !important;
}

.logos-slide img {
  height: 70px;
  margin: 0 40px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos-slide {
  height: 130px;
  white-space: nowrap;
  animation: 80s slide infinite linear;
  display: inline-flex;
  align-items: center;
}

.fab-tg {
  width: 20px;
}

.logos::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos {
  overflow: hidden;
  margin-top: 60px;
  /* padding: 60px 0; */
  white-space: nowrap;
  position: relative;
}

/* --------------------------------------------------------- ADAPTIVE --------------------------------------------------------------- */

@media screen and (max-width: 1250px) {
  .welcome__container {
    padding: 0 20px;
  }

  .header__container {
    padding: 0 20px;
  }

  .parallel__import-container {
    padding: 0 20px;
  }

  .parallel__import-text {
    width: 500px;
    font-size: 34px;
    font-weight: unset;
  }

  .parallel__import-paragraph {
    margin-top: 20px;
    padding: 0px 0px 65px 0px;
    font-weight: 500;
    font-size: 18px;
    width: 500px;
  }

  .priority__container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1150px) {
  .sdelka-img {
    display: none;
  }

  .howtowork__cards {
    display: grid;
    padding: 10px 0px 10px 0px;
  }

  .howtowork-img {
    display: none;
  }

  .welcome-img {
    width: 450px;
    height: 450px;
  }

  .welcome-text {
    width: 455px;
    font-size: 34px;
    font-weight: unset;
  }

  .welcome-paragraph {
    margin-top: 20px;
    padding: 0px 0px 65px 0px;
    font-weight: 500;
    font-size: 18px;
    width: 455px;
  }

  .parallel-img {
    width: 450px;
    height: 450px;
  }

  .parallel__import-text {
    width: 430px;
    font-size: 34px;
    font-weight: unset;
  }

  .parallel__import-paragraph {
    margin-top: 20px;
    padding: 0px 0px 65px 0px;
    font-weight: 500;
    font-size: 18px;
    width: 430px;
  }
}

@media screen and (max-width: 975px) {
  .orderpart-img {
    width: 350px;
    height: 350px;
  }

  .welcome-img {
    width: 350px;
    height: 350px;
  }

  .welcome-text {
    width: 400px;
    font-size: 28px;
    font-weight: unset;
  }

  .welcome-paragraph {
    margin-top: 20px;
    padding: 0px 0px 65px 0px;
    font-weight: 500;
    font-size: 18px;
    width: 400px;
  }

  .parallel-img {
    width: 350px;
    height: 350px;
  }

  .parallel__import-text {
    width: 370px;
    font-size: 28px;
    font-weight: unset;
  }

  .parallel__import-paragraph {
    margin-top: 20px;
    padding: 0px 0px 65px 0px;
    font-weight: 500;
    font-size: 18px;
    width: 370px;
  }

  .priority__content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media screen and (max-width: 800px) {
  .fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    cursor: pointer;
  }

  .welcome__container {
    display: grid;
  }

  .welcome-text {
    width: 580px;
    font-size: 34px;
    font-weight: unset;
  }

  .welcome-paragraph {
    margin-top: 20px;
    padding: 0px 0px 65px 0px;
    font-weight: 500;
    font-size: 20px;
    width: 555px;
  }

  .welcome__img {
    display: flex;
    justify-content: center;
  }

  .parallel__import-container {
    display: grid;
  }

  .parallel__import-container {
    display: grid;
    justify-content: center;
  }

  .parallel__import-img {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 1120px) {
  .header__info a + a {
    margin-left: 12px;
  }
}

@media screen and (max-width: 870px) {
  .ordercall {
    height: auto;
    padding: 20px 0px;
  }

  .ordercall__container {
    padding: 0px 20px;
    display: grid;
    justify-items: center;
    align-items: center;
    max-width: 1000px;
  }
}

@media screen and (max-width: 740px) {
  .header__telegram,
  .header__whatsapp {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .welcome-paragraph {
    margin-top: 20px;
    padding: 0px 0px 65px 0px;
    font-weight: 500;
    font-size: 20px;
    width: 500px;
  }

  .welcome-text {
    width: 500px;
    font-size: 34px;
    font-weight: unset;
  }

  .priority__title {
    text-align: center;
  }

  .priority__content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1120px) {
  .header__contacts {
    display: none;
  }

  .header__container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 750px) {
  .slide h1 {
    width: auto;
  }

  .slide h2 {
    width: auto;
  }
}

@media screen and (max-width: 585px) {
  .slide h1 {
    font-size: 30px;
  }

  .burger__toggle {
    /* display: block;
    width: 20px;
    height: 24px; */
    display: block;
    /* position: absolute; */
    width: 24px;
    height: 24px;
    /* top: 100px;
    left: 120px; */
    transition-duration: 0.5s;
  }

  .burger__menu__icon {
    transition-duration: 0.5s;
    position: absolute;
    height: 2px;
    width: 24px;
    top: 32px;
    background-color: #69b9ff;
  }

  .burger__menu__icon:before {
    transition-duration: 0.5s;
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #69b9ff;
    content: "";
    top: -9px;
  }

  .burger__menu__icon:after {
    transition-duration: 0.5s;
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #69b9ff;
    content: "";
    top: 9px;
  }

  .open {
    .burger__menu__icon {
      transition-duration: 0.5s;
      background: transparent;
    }

    .burger__menu__icon:before {
      transform: rotateZ(45deg) scaleX(1) translate(6.5px, 6.5px);
    }

    .burger__menu__icon:after {
      transform: rotateZ(-45deg) scaleX(1) translate(6px, -6px);
    }
  }

  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }

  .nav__menu::-webkit-scrollbar {
    width: 0;
  }

  .order-text2 {
    width: auto;
    height: auto;
    margin-bottom: 25px;
  }

  .order-text1 {
    width: auto;
    height: auto;
    font-size: 34px;
    font-weight: unset;
    margin-bottom: 25px;
  }

  .sdelka-headdingtext {
    font-weight: unset;
    font-size: 26px;
    width: auto;
  }

  .sdelka-paragraphtext {
    width: 465px;
    font-size: 18px;
    width: auto;
  }

  .howtowork__content {
    justify-content: center;
  }

  .howtowork-textparagraphcard {
    width: 300px;
    padding-right: 20px;
  }

  .howtowork-text {
    text-align: center;
    color: black;
    font-weight: 700;
    font-size: 32px;
  }

  .fab-options {
    margin: -2px;
  }

  .fab1 {
    width: 55px;
    height: 55px;
    background: #69b9ff;
  }

  .media__buttons {
    display: flex;
  }

  .partners-text {
    font-size: 29px;
  }

  .header_wrapper {
    display: flex;
    flex-direction: row;
  }

  .phone__btn {
    display: block;
    background: transparent;
    border: none;
    color: #69b9ff;
  }

  .menu__btn {
    display: block;
    background: transparent;
    border: none;
    color: #69b9ff;
  }

  .logo {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .header__info {
    display: none;
  }

  .header__2 {
    display: none;
  }

  .header__1 {
    border-bottom: 1px solid #69b9ff;
    height: 65px;
  }

  .lang {
    padding-left: 10px;
    font-size: 12px;
    padding-top: 4px;
  }

  .header__container {
    padding: 0 20px;
  }

  .welcome-text {
    width: auto;
    font-size: 24px;
    font-weight: unset;
  }

  .welcome-paragraph {
    margin-top: 20px;
    padding: 0px 0px 65px 0px;
    font-weight: 500;
    font-size: 15px;
    width: auto;
  }
}

@media screen and (max-width: 440px) {
  .howtowork-textparagraphcard {
    width: 220px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 420px) {
  .parallel-img {
    width: 290px;
    height: 290px;
  }

  .parallel__import-text {
    width: auto;
    font-size: 28px;
    font-weight: unset;
  }

  .parallel__import-paragraph {
    margin-top: 20px;
    padding: 0px 0px 65px 0px;
    font-weight: 500;
    font-size: 18px;
    width: auto;
  }
}

@media screen and (max-width: 410px) {
  .slide h1 {
    font-size: 25px;
  }

  .slide h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 400px) {
  .orderpart-img {
    width: 300px;
    height: 300px;
  }

  .welcome-img {
    width: 320px;
    height: auto;
  }
}

@media screen and (max-width: 370px) {
  .parallel-img {
    width: 270px;
    height: 270px;
  }
}

@media screen and (max-width: 360px) {
  .slide h1 {
    font-size: 21px;
    line-height: 30px;
    text-shadow: 3px 2px 10px black;
  }

  .slide h2 {
    font-size: 20px;
    font-weight: 500;
    text-align-last: center;
    text-shadow: 3px 2px 10px black;
  }
}

/* --------------------------------------------------------- ADAPTIVE --------------------------------------------------------------- */
/* ------------------------------------------------- SERVICES SLIDER ---------------------------------------------------------- */

.swiper-text {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.swiper_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height: 100vh; */
}

.swiper__container__outer {
  padding: 30px 0;
  background: #f7f7f7;
}

.slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 70px 55px;
}

.partnersSwiper {
  height: 130px;
  overflow: hidden;
  /* max-width: 1200px; */
  /* margin: 0 70px 55px; */
}

.partnersSwiper > .swiper-wrapper > .swiper-slide {
  background-color: #57aefb;
  border-radius: 10px;
  padding: 0px 20px;
  /* width: fit-content; */
  /* max-width: 340px; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  height: 130px;
  transition: all 0.2s ease-out;
}

.partnersSwiper > .swiper-wrapper > .swiper-slide:hover {
  background-color: #4d8dc5;
}

.partnersSwiper > .swiper-wrapper > .swiper-slide > img {
  object-fit: cover;
  max-height: 100%;
  width: 100%;
  /* max-width: 100%; */
}

.card-list .card-item {
  height: auto;
  color: #000000;
  user-select: none;
  padding: 35px;
  display: grid;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  backdrop-filter: blur(30px);
  background: #d7d7d724;
  border: 1px solid rgba(255, 255, 255, 0.5);
  align-content: space-between;
  justify-items: center;
}

.user-name {
  text-align: center;
}

.card-list .card-item .user-image {
  width: 150px;
  height: 150px;
  margin-bottom: 40px;
  padding: 4px;
}

.card-list .card-item .user-profession {
  text-align: center;
  font-size: 15px;
  color: #000000;
  font-weight: 500;
  margin: 14px 0 40px;
}

.card-list .card-item .message-button {
  font-size: 1.25rem;
  padding: 10px 35px;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  background: #66b9ff;
  border: 1px solid transparent;
  transition: 0.3s;
  margin-top: 40px;
}

.card-list .card-item .message-button:hover {
  background: #fff;
  color: #000000;
}

.slider-wrapper .swiper-pagination-bullet {
  background: #000000;
  height: 13px;
  width: 13px;
  opacity: 0.5;
}

.slider-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.slider-wrapper .swiper-slide-button {
  color: #000000;
  margin-top: -55px;
  transition: 0.2s ease;
}

.slider-wrapper .swiper-slide-button:hover {
  color: #4658ff;
}

@media (max-width: 768px) {
  .slider-wrapper {
    margin: 0 10px 40px;
  }

  .slider-wrapper .swiper-slide-button {
    display: none;
  }
}

/* Section index about */

/* BeinTouch */

.banner {
  display: flex;
  align-items: center;
  height: 450px;
  background-image: url(img/perevozka_sbornykh_gruzov_1440_1\(1\)-fotor-20240627185036.jpg);
  background-size: cover;
  background-position: center;
}

.banner__container {
  padding: 0px 10px;
}

.banner-h1 {
  text-shadow: 3px 2px 10px black;
  color: #fff;
  font-size: 45px;
  width: 650px;
  line-height: 40px;
}

.banner-p {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
  text-shadow: 3px 2px 10px black;
  width: 650px;
  color: #fff;
}

.banner__button {
  font-weight: 600;
  padding: 13px 25px;
  margin-top: 20px;
  color: #fff;
  background-color: #69b9ff;
  border-radius: 10px;
  transition: 0.3s;
}

.banner__button:hover {
  background-color: #016fb9;
}

@media (max-width: 670px) {
  .banner {
    height: auto;
    padding: 100px 0;
  }

  .banner-h1 {
    width: auto;
  }

  .banner-p {
    width: auto;
  }
}

@media (max-width: 470px) {
  .banner-h1 {
    font-size: 35px;
  }
}

@media (max-width: 365px) {
  .banner-h1 {
    font-size: 30px;
  }
}

/* -----------------------------ABOUTUS HTML */

.aboutus1__container {
  padding: 20px 30px 50px 30px;
  display: flex;
  justify-content: space-between;
}

.aboutus1__img {
  border-radius: 15px;
  width: 550px;
  height: 411px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.aboutus1-text {
  width: 550px;
}

.aboutus1-text-h1 {
  font-size: 45px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #69b9ff;
}

.aboutus1-text-h3 {
  text-align: left;
  margin: 15px 0;
  font-weight: 500;
  font-size: 22px;
}

.aboutus1-text-p {
  margin-bottom: 40px;
  text-align: left;
  font-size: 18px;
}

.aboutus1-text-button {
  padding: 16px 26px;
  font-size: 20px;
  font-weight: 500;
  background-color: #69b9ff;
  border-radius: 10px;
  color: #fff;
  transition: 0.3s;
}

.aboutus1-text-button:hover {
  background-color: #016fb9;
}

@media (max-width: 1175px) {
  .aboutus1__container {
    display: grid;
    justify-content: center;
  }

  .aboutus1-text-button {
    justify-content: center;
    display: flex;
  }

  .aboutus1-text {
    width: auto;
  }

  .aboutus1__img {
    margin-top: 20px;
    width: auto;
  }

  .aboutus1-img {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 870px) {
  .aboutus1__img {
    width: 680px;
  }
}

@media (max-width: 715px) {
  .aboutus1__img {
    width: 600px;
  }
}

@media (max-width: 630px) {
  .aboutus1__img {
    width: 520px;
  }
}

@media (max-width: 560px) {
  .aboutus1__img {
    width: 440px;
    height: 440px;
  }
}

@media (max-width: 460px) {
  .aboutus1__img {
    width: 360px;
    height: 360px;
  }
}

@media (max-width: 380px) {
  .aboutus1__img {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 370px) {
  .aboutus1-text-h1 {
    font-size: 35px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #69b9ff;
  }

  .aboutus1__img {
    width: 330px;
    height: 330px;
  }
}

@media (max-width: 350px) {
  .aboutus1__img {
    width: 300px;
    height: 300px;
  }
}

.typeoftrans {
  height: auto;
  padding: 50px 10px;
}

.typeoftrans-text {
  font-size: 40px;
  letter-spacing: 2px;
}

.typeoftrans-img {
  width: 500px;
  height: 330px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.typeoftrans2 {
  display: flex;
  align-items: center;
}

.typeoftrans1 {
  width: 650px;
}

.typeoftrans-p {
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  margin: 15px 0;
}

.typeoftrans__container {
  display: flex;
  justify-content: space-between;
}

.typeoftrans-p1 {
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  margin: 15px 0;
}

.tot-text {
  margin: 10px 0;
  margin-left: 15px;
  font-size: 18px;
  font-weight: 400;
}

.tot {
  display: flex;
  align-items: center;
}

.tot-img {
  width: 40px;
}

@media (max-width: 1190px) {
  .typeoftrans__container {
    display: grid;
    justify-content: center;
  }

  .typeoftrans-img {
    width: auto;
    margin-top: 10px;
  }

  .typeoftrans1 {
    width: 740px;
  }

  .typeoftrans2 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 780px) {
  .typeoftrans1 {
    width: auto;
  }

  .typeoftrans-img {
    width: 600px;
  }
}

@media (max-width: 630px) {
  .typeoftrans-img {
    width: 500px;
  }
}

@media (max-width: 530px) {
  .typeoftrans-img {
    width: 400px;
  }
}

@media (max-width: 430px) {
  .typeoftrans-img {
    width: 360px;
    height: 240px;
  }
}

@media (max-width: 370px) {
  .typeoftrans-img {
    width: 310px;
  }
}

.whyus {
  height: auto;
  padding: 0 10px 50px 10px;
}

.whyus1-img {
  width: 572px;
  height: 697px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.whyus2-p {
  font-size: 18px;
  text-align: left;
  font-weight: 400;
}

.whyus2 {
  margin-left: 36px;
}

.whyus1 {
  justify-content: center;
  display: flex;
  align-items: center;
}

.whyus2-text {
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.whyus__container {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1260px) {
  .whyus__container {
    display: grid;
  }

  .whyus1-img {
    margin-bottom: 20px;
    width: 1000px;
    height: 400px;
  }

  .whyus2 {
    margin-left: 0;
  }
}

@media (max-width: 1080px) {
  .whyus1-img {
    width: 750px;
    height: auto;
  }
}

@media (max-width: 780px) {
  .whyus1-img {
    width: 598px;
    height: auto;
  }
}

@media (max-width: 630px) {
  .whyus1-img {
    width: 500px;
    height: auto;
  }

  .whyus2-text {
    text-align: center;
  }
}

@media (max-width: 530px) {
  .whyus1-img {
    width: 400px;
    height: auto;
  }

  .whyus2-p {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .whyus1-img {
    width: 360px;
    height: auto;
  }

  .whyus2-text {
    text-align: center;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
}

@media (max-width: 370px) {
  .whyus1-img {
    width: 300px;
  }
}

/* -----------------------------ABOUTUS HTML */

/* Order Call HTML */

.ordercall {
  height: auto;
  padding: 50px 10px;
}

.ordercall1-text {
  font-size: 35px;
}

.ordercall1 {
  width: 630px;
}

.proofs {
  margin-top: 50px;
}

.ordercall-proof {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.ordercall-img {
  width: 35px;
}

.ordercall-proof-p {
  color: #000000;
  margin-left: 10px;
  font-size: 25px;
  font-weight: 500;
}

.ordercall-proof {
  display: flex;
}

.ordercall_container {
  display: flex;
  justify-content: space-between;
}

.ordercall2 form {
  border-radius: 15px;
  background-color: #69b9ff;
  display: grid;
  width: 420px;
  height: 550px;
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  justify-items: center;
  box-shadow: 2px 2px 20px darkgrey;
}

.phone-enter {
  display: flex;
  justify-content: center;
  width: 320px;
  height: 55px;
  border-radius: 10px;
  font-size: 15px;
  border: 3px solid #555;
  /* width: 400px; */
  padding: 5px 20px;
  box-sizing: border-box;
}

.ordercall-mail-enter {
  display: flex;
  justify-content: center;
  width: 320px;
  height: 55px;
  border-radius: 10px;
  font-size: 15px;
  border: 3px solid #555;
  /* width: 400px; */
  padding: 5px 20px;
  box-sizing: border-box;
}

.ordercall2-button {
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #fff;
  background-color: rgb(244, 58, 58);
  padding: 20px 35px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.ordercall2-par {
  color: #fff;
  width: 310px;
}

.ordercall2-button:hover {
  background-color: #fff;
  color: #000000;
}

.ordercall2-headertext {
  font-size: 30px;
  margin-top: 22px;
  color: #fff;
}

.fio-enter {
  display: flex;
  justify-content: center;
  width: 320px;
  height: 55px;
  border-radius: 10px;
  font-size: 15px;
  border: 3px solid #555;
  /* width: 400px; */
  padding: 5px 20px;
  box-sizing: border-box;
}

@media (max-width: 1000px) {
  .ordercall1 {
    width: 490px;
  }
}

@media (max-width: 960px) {
  .ordercall1 {
    width: auto;
    display: grid;
  }

  .ordercall_container {
    display: grid;
    justify-items: center;
  }

  .ordercall2 form {
    width: 700px;
    margin-top: 20px;
  }

  .fio-enter {
    width: 500px;
  }

  .phone-enter {
    width: 500px;
  }

  .ordercall-mail-enter {
    width: 500px;
  }
}

@media (max-width: 730px) {
  .ordercall2 form {
    width: 500px;
  }

  .fio-enter {
    width: 320px;
  }

  .phone-enter {
    width: 320px;
  }

  .ordercall-mail-enter {
    width: 320px;
  }
}

@media (max-width: 530px) {
  .ordercall2 form {
    width: 390px;
  }

  .fio-enter {
    width: 300px;
  }

  .phone-enter {
    width: 300px;
  }

  .ordercall-mail-enter {
    width: 300px;
  }
}

@media (max-width: 410px) {
  .ordercall1-text {
    font-size: 30px;
  }

  .proofs {
    margin-top: 20px;
  }

  .ordercall2 form {
    width: 340px;
  }

  .fio-enter {
    width: 300px;
  }

  .phone-enter {
    width: 300px;
  }

  .ordercall-mail-enter {
    width: 300px;
  }
}

@media (max-width: 370px) {
  .ordercall1-text {
    font-size: 24px;
  }

  .ordercall2-par {
    color: #fff;
    width: 230px;
  }

  .ordercall2 form {
    width: 300px;
  }

  .fio-enter {
    width: 290px;
  }

  .phone-enter {
    width: 290px;
  }

  .ordercall-mail-enter {
    width: 290px;
  }
}

/* AVIA HTML */

.faqs {
  height: auto;
  padding: 0 10px 50px 10px;
  display: grid;
  justify-content: center;
}

.faq-header {
  text-align: center;
  display: grid;
  font-size: 35px;
}

.faq {
  max-width: 700px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #69b9ff;
  cursor: pointer;
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.question h3 {
  font-size: 1.8rem;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer p {
  padding-top: 1rem;
  line-height: 1.6;
  font-size: 1.4rem;
}

.faq.active .answer {
  max-height: 300px;
}

/* AVIA HTML */

/* SEA HTML */

.seafromAE {
  height: auto;
  padding: 10px 10px;
}

.seafromAE-headertext {
  font-size: 35px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.seafromAE-p {
  margin-bottom: 25px;
  font-size: 19px;
  text-align: left;
}

.seafromAE-img {
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
  width: 100%;
  height: 100%;
}

.seahowwork {
  height: auto;
  padding: 0 10px 50px 10px;
}

.seahowwork-headertext {
  font-size: 35px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.seahowwork-p {
  font-size: 19px;
  text-align: left;
}

.seaprice {
  height: auto;
  padding: 50px 10px;
}

.seaprice__container {
  display: flex;
  justify-content: space-between;
}

.seaprice1 {
  margin-right: 20px;
}

.seaprice1-headertext {
  font-size: 35px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.seaprice1-p {
  font-size: 19px;
  text-align: left;
}

.seaprice2-img {
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
  width: 590px;
  height: 100%;
}

@media (max-width: 1240px) {
  .seaprice__container {
    display: grid;
    justify-content: center;
    justify-items: center;
  }

  .seaprice2-img {
    margin-top: 25px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 2px 2px 20px darkgrey;
    width: 100%;
    height: 100%;
  }

  .seaprice1 {
    margin-right: 0;
  }
}

/* PARALLEL IMP */

.succesRequest,
.succesRequest:hover {
  background-color: #218838;
  color: white;
}

/* USER AGREE */

.user-agree {
  height: auto;
  padding: 0 10px 15px 10px;
}

.politika {
  height: auto;
  padding: 0 10px 15px 10px;
}

.user-agree-headertext {
  font-size: 30px;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 15px 0px;
}

.user-agree-ptext {
  margin: 15px 0;
}

.aviatoae {
  height: auto;
  padding: 10px 10px;
}

.aviatoae__container {
  display: flex;
  justify-content: space-between;
}

.aviatoae1 {
  margin-right: 50px;
}

.aviatoae1-headertext {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.aviatoae1-textp {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.aviatextcont-text {
  line-height: 25px;
  text-align: left;
  margin-left: 10px;
  display: flex;
  align-items: center;
  font-size: 17px;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.aviatextcont {
  margin: 10px 0;
  display: flex;
}

.aviatextcont-svg {
  width: 35px;
}

.aviatoae1-text {
  line-height: 25px;
  font-weight: 400;
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}

.aviatiae2-img {
  width: 600px;
  height: 650px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.aviatypes {
  height: auto;
}

.aviatypes-headertext {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.aviatypes-p {
  line-height: 25px;
  font-weight: 400;
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}

.aviatypes-pheader {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
}

.aviawhyus2-img {
  width: 600px;
  height: 490px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.aviawhyus {
  height: auto;
  padding: 0 10px 50px 10px;
}

.aviawhyus__container {
  display: flex;
  justify-content: space-between;
}

.aviawhyus1 {
  margin-right: 50px;
}

.aviawhyus1-textheader {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.aviawhyus1-p {
  line-height: 25px;
  font-weight: 400;
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}

@media (max-width: 1210px) {
  .aviawhyus__container {
    display: grid;
    justify-content: center;
    align-items: center;
  }

  .aviawhyus2 {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .aviawhyus2-img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 2px 2px 20px darkgrey;
  }
}

.seafromae__container {
  display: grid;
  justify-content: space-between;
}

.seafromae {
  height: auto;
  padding: 7px 10px 20px 10px;
}

.seafromae2-img {
  width: 100%;
  height: 70%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.seafromae2 {
  height: fit-content;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.seafromae1-p {
  line-height: 25px;
  font-weight: 400;
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}

.seafromae1-headertext {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.seabest {
  height: auto;
  padding: 0 10px 10px 10px;
}

.seabest__container {
  display: flex;
  justify-content: space-between;
}

.seabest2__img {
  width: 600px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.seabest1-headertext {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.seacont {
  margin: 35px 0;
}

.seaservices2 {
  margin-left: 50px;
}

.seaservices__container {
  display: flex;
}

.seaservices1-img {
  width: 570px;
  height: 388px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.sert-tam {
  height: auto;
  padding: 0 10px 0 10px;
}

.seaservices-headertext {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.seaservices {
  height: auto;
  padding: 0 10px 10px 10px;
}

@media (max-width: 1190px) {
  .seabest__container {
    display: grid;
    justify-content: center;
  }

  .seabest2 {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .seaservices__container {
    display: grid;
  }

  .seaservices1 {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .seaservices1-img {
    display: none;
    margin-bottom: 20px;
    width: max-content;
    height: max-content;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 2px 2px 20px darkgrey;
  }

  .seabest2__img {
    width: auto;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 2px 2px 20px darkgrey;
  }

  .seaservices2 {
    margin-left: 0;
  }
}

.seawhyus {
  height: auto;
  padding: 0 10px 50px 10px;
}

.seawhyus-headertext {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.seawhyus-p {
  line-height: 25px;
  font-weight: 400;
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}

.whatimport1-headertext {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.whatimport1-p {
  line-height: 25px;
  font-weight: 400;
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}

.whatimport__container {
  display: flex;
  justify-content: space-between;
}

.whatimport2-img {
  width: 570px;
  height: 515px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.whatimport {
  height: auto;
  padding: 10px 10px;
}

.whyimport {
  height: auto;
  padding: 0 10px 50px 10px;
}

.whatimport1 {
  margin-right: 50px;
}

.whyimport-headertext {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.importcont {
  margin-top: 20px;
}

.whyimport-p {
  line-height: 25px;
  font-weight: 400;
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}

.whyimport-p1 {
  line-height: 25px;
  font-weight: 400;
  text-align: left;
  font-size: 17px;
  margin-top: 20px;
}

.whyimport-img {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

@media (max-width: 1150px) {
  .whatimport__container {
    display: grid;
    /* justify-content: center; */
  }

  .whatimport2-img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 2px 2px 20px darkgrey;
  }

  .whatimport1 {
    margin-right: 0;
  }
}

.tamwhat-img {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.tamwhat {
  height: auto;
  padding: 10px 10px 0 10px;
}

.aviatextcont-text1 {
  line-height: 25px;
  text-align: left;
  display: flex;
  align-items: center;
  font-size: 17px;
  display: flex;
  font-weight: 400;
}

.whytamimp {
  height: auto;
  padding: 0 10px 0 10px;
}

.tamhelp {
  height: auto;
  padding: 0 10px 50px 10px;
}

.stockservices__container {
  display: flex;
  justify-content: space-between;
}

.stockservices2-img {
  width: 660px;
  height: 395px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

@media (max-width: 1220px) {
  .stockservices__container {
    display: grid;
    justify-content: center;
    align-items: center;
  }

  .stockservices2 {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stockservices2-img {
    margin-top: 20px;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 2px 2px 20px darkgrey;
  }

  .stockservices1 {
    margin-right: 0;
  }
}

.stockkkcont {
  padding: 0 10px 10px 10px;
}

.stockp {
  line-height: 25px;
  margin: 10px 0;
  font-weight: 400;
  text-align: left;
  font-size: 17px;
}

.stockheader {
  text-align: left;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.stockservices1 {
  margin-right: 50px;
}

@media (max-width: 1220px) {
  .stockservices1 {
    margin-right: 0;
  }
}

.stockservices {
  height: auto;
  padding: 10px 10px 30px 10px;
}

.stock-last {
  line-height: 25px;
  margin: 20px 0;
  text-align: left;
  /* font-weight: 500; */
  font-size: 17px;
}

.whatissert {
  height: auto;
  padding: 10px 10px 0 10px;
}

.whatissert-headertext {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.whatissert-p {
  text-align: left;
  font-size: 17px;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.whatissert-p1 {
  font-size: 17px;
  display: flex;
  align-items: center;
  font-weight: 400;
  margin-bottom: 20px;
}

.whyussert {
  height: auto;
  padding: 0 10px 50px 10px;
}

.whatissert-img {
  width: 100%;
  height: 100%;
  margin: 20px 0;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.outsource {
  height: auto;
  padding: 10px 10px 30px 10px;
}

.outsource-headertext {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.outsource-p {
  line-height: 25px;
  font-size: 17px;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.ourOutsource {
  height: auto;
  padding: 0 10px 10px 10px;
}

.ourout-cont {
  display: flex;
  margin: 15px 0;
}

.ourout-cont-p {
  line-height: 25px;
  text-align: left;
  margin-left: 10px;
  font-size: 17px;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.ourout-cont-img {
  width: 35px;
}

.outsource-img {
  width: 100%;
  height: 80%;
  margin: 20px 0;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.whyusout__container {
  display: flex;
  justify-content: space-between;
}

.whyusout2-img {
  width: 570px;
  height: 520px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.whyusout1 {
  margin-right: 50px;
}

.whyusout {
  height: auto;
  padding: 0 10px 50px 10px;
}

@media (max-width: 1190px) {
  .whyusout__container {
    display: grid;
    justify-content: center;
  }

  .whyusout2 {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .whyusout2-img {
    width: 100%;
    height: 100%;
    margin-top: 20px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 2px 2px 20px darkgrey;
  }

  .whyusout1 {
    margin-right: 0;
  }
}

.outsource-p1 {
  line-height: 25px;
  text-align: left;
  font-size: 17px;
  display: flex;
  align-items: center;
  font-weight: 400;
  margin-top: 20px;
}

.whyusout3-img {
  width: 570px;
  height: 290px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.whyusout4-img {
  width: 570px;
  height: 495px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

@media (max-width: 1190px) {
  .whyusout3-img {
    width: 100%;
    height: 100%;
    margin-top: 20px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 2px 2px 20px darkgrey;
  }

  .whyusout4-img {
    margin-top: 20px;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 2px 2px 20px darkgrey;
  }
}

@media (max-width: 1210px) {
  .aviatoae__container {
    display: grid;
    justify-content: center;
  }

  .aviatoae1 {
    margin-right: 0;
  }

  .aviatoae2 {
    display: flex;
    justify-content: center;
  }

  .aviatiae2-img {
    margin-top: 20px;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 2px 2px 20px darkgrey;
  }

  .aviawhyus1 {
    margin-right: 0;
  }
}

.aviacontainer {
  padding: 20px 10px;
}

.outscontain {
  padding: 0 10px 10px 10px;
}

.markirovcont {
  padding: 0 10px 20px 10px;
}

.marcont {
  padding: 0 10px 30px 10px;
}

.concoont {
  padding: 0 10px 15px 10px;
}

.agentcontain {
  padding: 0 10px 20px 10px;
}

/* ---------------------------------------------------- VOLUME --------------------------------------------- */

.volume__item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.volume__item:last-child {
  grid-column: 1/3;
}

.volume__container {
  padding: 10px 40px 50px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  gap: 50px;
}

.volume__container__wrapper {
  grid-column: 1/3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 20px;
}

.volume_text {
  padding: 15px 0;
  text-align: left;
  font-size: 1.2rem;
}

.volume__item input {
  width: 100%;
  padding: 16px 15px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid;
}

.volume__item > span {
  padding: 15px;
}

.totalvalue__input:focus {
  outline: none;
}

.volume__counter__button {
  width: 100%;
  height: 100%;
  font-size: 20px;
  padding: 10px;
  width: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid #000;
}

.volume__count__inputs {
  display: flex;
}

.volume__count__inputs > input {
  flex-grow: 1;
}

.volume__count__inputs > .volume__counter__button:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.volume__count__inputs > .volume__counter__button:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media (max-width: 1100px) {
  .volume__container__wrapper {
    grid-column: 1;
  }

  .volume__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .volume__container__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .volume__container__wrapper {
    grid-template-columns: 1fr;
  }
  .volume__item:last-child {
    grid-column: 1;
  }
}

/* ---------------------------------------------------- VOLUME --------------------------------------------- */

.advantagebuyer {
  height: auto;
  padding: 10px 10px 30px 10px;
}

.advantagebuyer__container {
  display: flex;
  justify-content: space-between;
}

.advantagebuyer1 {
  margin-right: 20px;
}

.advantagebuyer1-text {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.advantagebuyer1-p {
  font-weight: 400;
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}

.advantagebuyer2-img {
  width: 600px;
  height: 350px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 2px 2px 20px darkgrey;
}

.advantagebuyer1-header {
  text-align: left;
  font-size: 41px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
  color: #69b9ff;
  margin-top: 15px;
}

.advatagegetitems1-text {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.advatagegetitems1-p {
  font-weight: 400;
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}

.advantagegetitems {
  height: auto;
  padding: 0 10px 10px 10px;
}

@media (max-width: 1215px) {
  .advantagebuyer__container {
    display: grid;
    justify-content: center;
  }

  .advantagebuyer2 {
    display: flex;
    justify-content: center;
  }

  .advantagebuyer2-img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 2px 2px 20px darkgrey;
  }

  .advantagebuyer1 {
    margin-right: 0;
  }
}

@media (max-width: 749px) {
  .advantagebuyer1-header {
    text-align: left;
    font-size: 49px;
    font-weight: 600;
    line-height: 1.1em;
    margin-bottom: 20px;
    color: #69b9ff;
    margin-top: 15px;
  }
}

@media (max-width: 658px) {
  .advantagebuyer1-header {
    text-align: left;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1em;
    margin-bottom: 20px;
    color: #69b9ff;
    margin-top: 15px;
  }
}

@media (max-width: 552px) {
  .advantagebuyer1-header {
    text-align: left;
    font-size: 37px;
    font-weight: 600;
    line-height: 1.1em;
    margin-bottom: 20px;
    color: #69b9ff;
    margin-top: 15px;
  }
}

@media (max-width: 504px) {
  .advantagebuyer1-header {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1em;
    margin-bottom: 20px;
    color: #69b9ff;
    margin-top: 15px;
  }
}

.heavy-text {
  font-weight: 525;
  /* color: #2d2d2d; */
  display: contents;
}

.partners-logo-emirates {
  width: 190px;
}

/* PAYAGENT */

.payagent-welcome {
  padding-bottom: 50px;
}

.payagent-welcome-block {
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 15px;
}

.payagent-welcome-block-main-text {
  font-size: 40px;
  font-weight: bold;
  width: 650px;
}

.payagent-welcome-block-text {
  font-size: 20px;
  font-weight: 15px;
  font-weight: bold;
  margin-top: 35px;
  width: 1000px;
  margin-bottom: 50px;
  color: #454545;
}

.payagent-welcome-block-lead-button {
  font-size: 15px;
  color: white;
  padding: 10px 25px;
  background-color: #69b9ff;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.payagent-welcome-block-lead-button:hover {
  background-color: #016fb9;
}

.payagent-order-main-text {
  font-size: 30px;
  font-weight: bold;
  margin-left: 20px;
}

.payagent-order-text {
  font-size: 20px;
  font-weight: bold;
  color: #454545;
  margin-top: 25px;
  margin-left: 20px;
}

.payagent-order-cards {
  display: grid;
}

.payagent-order-cards-duo {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.payagent-order-card {
  display: flex;
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 10px;
  width: 580px;
}

.payagent-order-card-text {
  font-size: 17px;
  font-weight: bold;
  color: #454545;
  align-content: center;
  margin-left: 35px;
  padding: 15px 0;
}

.payagent-bold-focus {
  color: black;
  font-weight: 800;
}

.payagent-bold-focus1 {
  color: black;
  font-weight: 700;
  margin-left: 10px;
}

.payagent-order-card-img {
  width: 65px;
  height: 68px;
  margin-left: 15px;
}

.payagent-order {
  padding-bottom: 50px;
}

.payagent-for-main-text {
  font-size: 30px;
  font-weight: bold;
  margin-left: 20px;
}

.payagent-for-block-one {
  background-color: #f7f7f7;
  font-size: 15px;
  font-weight: bold;
  margin-top: 35px;
  border-radius: 10px;
}

.payagent-for-block-second {
  background-color: #f7f7f7;
  font-size: 15px;
  font-weight: bold;
  justify-content: right;
  margin-top: 35px;
  border-radius: 10px;
}

.payagent-for-text {
  font-size: 20px;
  font-weight: bold;
  color: #454545;
  padding: 25px 30px;
}

.payagent-for {
  padding-bottom: 50px;
}

.digit-block {
  width: 40px;
  display: flex;
  justify-content: center;
}

.payagent-faq-main-text {
  font-size: 30px;
  font-weight: bold;
  margin-left: 20px;
}

.payagent-faq-block {
  display: flex;
  margin-top: 30px;
}

.payagent-faq-block-count {
  font-size: 45px;
  font-weight: bold;
}

.payagent-faq {
  margin-bottom: 50px;
}

.payagent-faq-block-text {
  color: #454545;
  font-size: 23px;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.greenmark-settings {
  width: 55px;
}

@media (max-width: 920px) {
  .payagent-welcome-block-text {
    width: auto;
  }
}

@media (max-width: 650px) {
  .payagent-welcome-block-main-text {
    width: auto;
  }
}

@media (max-width: 530px) {
  .payagent-welcome-block-main-text {
    font-size: 30px;
  }
  .payagent-welcome-block-text {
    font-size: 17px;
  }
}

@media (max-width: 1170px) {
  .payagent-order-cards-duo {
    display: grid;
    justify-content: center;
    margin-top: 0;
  }
  .payagent-order-card {
    margin-top: 30px;
  }
}

@media (max-width: 610px) {
  .payagent-order-text {
    font-size: 18px;
    padding-right: 10px;
  }
  .payagent-order-card-text {
    margin-left: 15px;
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .payagent-order-card {
    width: auto;
  }
}

@media (max-width: 420px) {
  .payagent-order-card {
    align-items: center;
  }
  .payagent-order-card-img {
    width: 50px;
    height: 54px;
  }
  .payagent-order-text {
    font-size: 17px;
  }
}

@media (max-width: 390px) {
  .payagent-order-main-text {
    font-size: 25px;
  }
  .payagent-order-text {
    font-size: 15px;
  }
  .payagent-order-card-text {
    font-size: 15px;
  }
  .payagent-for-text {
    padding: 25px 5px;
  }
}

@media (max-width: 560px) {
  .payagent-for-text {
    font-size: 16px;
  }
  .payagent-for-main-text {
    font-size: 25px;
  }
}

@media (max-width: 750px) {
  .payagent-faq-block-text {
    font-size: 18px;
    margin-left: 45px;
  }
  .payagent-faq-block-count {
    font-size: 35px;
  }
  .digit-block {
    display: flex;
    align-items: center;
    position: absolute;
  }
  .greenmark-settings {
    position: absolute;
    width: 35px;
  }
}

@media (max-width: 380px) {
  .payagent-faq-main-text {
    font-size: 25px;
  }
  .payagent-faq-block-text {
    font-size: 16px;
  }
}
