@font-face {
  font-family: 'Proxima Nova';
  src: local('ProximaNova-Light'),
        url('assets/fonts/ProximaNova/ProximaNova-Light.woff2');
  font-weight: 300;
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova';
  src: local('Proxima Nova Regular'), local('ProximaNova-Regular'),
        url('assets/fonts/ProximaNova/ProximaNova-Regular.woff2');
  font-weight: 400;
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova';
  src: local('Proxima Nova Bold'), local('ProximaNova-Bold'),
        url('assets/fonts/ProximaNova/ProximaNova-Bold.woff2');
  font-weight: 700;
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: local('Oswald SemiBold'), local('Oswald-SemiBold'),
        url('assets/fonts/Oswald/Oswald-SemiBold.woff2');
  font-weight: 600;
  font-style: normal;
	font-display: swap;
}

/* === general === */
body {
  background: #fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Proxima Nova', sans-serif;
  font-style: normal;
  line-height: normal;
  color: #333;
}
.container {
  margin: 0 auto;
  max-width: 100%;
  width: 1220px;
  height: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
section {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
h1,h2,h3,h4 {
  font-weight: 700;
}
h1 {
  margin-bottom: 10px;
  color:rgba(73, 214, 218, 1);
  text-transform: uppercase;
  font-size: 32px;
}
h2 {
  font-size: 32px;
  color: rgba(55, 159, 162, 1);
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
img {
  display: block;
}
p {
  color:rgba(27, 27, 27, 1);
  font-size: 16px;
}

/* === header === */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
header .container {
  padding-top: 30px;
}
.lang-switcher { 
  position: relative; 
  display: inline-block;
}
.lang-current {
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  gap: 12px;
  user-select: none;
}
.lang-current span {
  color: rgba(255, 255, 255, 1);
}
.lang-current .arrow { 
  transition: transform .2s;
}
.lang-switcher.open .arrow { 
  transform: rotate(180deg); 
}
.lang-menu {
  position: absolute; 
  top: 100%; 
  right: 0; 
  margin-top: 4px;
  border: 1px solid #ccc; 
  border-radius: 6px; 
  background: #fff;
  min-width: 100%; 
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  display: none; 
  overflow: hidden;
}
.lang-switcher.open .lang-menu { 
  display: block; 
}
.lang-menu a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: #333; white-space: nowrap;
}
.lang-menu a:hover { 
  background: #f2f2f2; 
}
.lang-menu a.active { 
  font-weight: bold; 
  background: #f7f7f7; 
}


/* === hero === */

.hero {
  width: 100%;
  height: 580px;
  position: relative;
  overflow: hidden;
}
.hero--fone {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  max-width: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 110px;
}
.hero__box {
  max-width: 100%;
  width: 580px;
}
.hero--logo {
  display: block;
  margin-bottom: 20px;
}
.hero__h4 {
  margin-bottom: 49px;
  position: relative;
}
.hero__h4 span {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  position: relative;
  z-index: 2;
}
.hero__h4--line {
  height: 80px;
  width: 100vw;
  position: absolute;
  z-index: 1;
  right: -75px;
  top: -16px;
  display: flex;
  justify-content: flex-end;
}
.hero__h4--line::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  right: 900px;
  position: absolute;
  top: 0;
  background: #01b8c0;
}
.hero__ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero__li {
  position: relative;
  padding-left: 45px;
}
.hero__li::before {
  content: "";
  display: block;
  width: 30px;
  height: 29px;
  position: absolute;
  top: calc(50% - 15px);
  left: 0;
  background: url(assets/imgs/hero-li.svg) no-repeat;
}
.hero__col-2 {
  padding-top: 50px;
  width: calc(100% - 580px);
  display: flex;
  align-items: flex-end;
  position: relative;
  padding-bottom: 15px;
}
.hero--img {
  position: relative;
  z-index: 2;
}
.hero--arrow {
  position: absolute;
  bottom: 0;
  left: 0;
}


/* === text === */
section.text {
  padding: 70px 0;
}
.text h2 {
  margin-bottom: 20px;
}
.text ul {
  margin-bottom: 30px;
}
.text li {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(29, 47, 83, 1);
  position: relative;
  padding-left: 30px;
}
.text li::before {
  content: "";
  display: block;
  width: 20px;
  height: 10px;
  background: url(assets/imgs/text-li.svg) no-repeat;
  position: absolute;
  left: 0;
  top: calc(50% - 5px)
}

/* === cargoes === */

.cargoes {
  padding-top: 50px;
  padding-bottom: 60px;
  background: #182F89;
}
.cargoes--bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cargoes__box {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.cargoes__item {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 150px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  padding: 24px 27px 24px 300px;
}
.cargoes__item--img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 280px;
  height: 100%;
  object-fit: cover;
}
.cargoes__item--h5 {
  margin-bottom: 15px;
  color: #333;
  font-size: 24px;
  font-weight: 700;
}
.cargoes__item--p {
  color: #555;
}

/* === how-work === */

.how-work {
  padding: 60px 0;
}
.how-work-one {
  display: flex;
  align-items: center;
}
.how-work--h2 {
  margin-bottom: 56px;
}
.how-work--p {
  margin-bottom: 30px;
  transform: translateY(-30px);
  position: relative;
  color: #FFF;
  font-weight: 700;
}
.how-work__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 20px;
  position: relative;
}
.how-work__item {
  width: calc(50% - 10px);
  position: relative;
  padding-left: 160px;
  min-height: 140px;
}
.how-work__item--img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50%;
  z-index: 1;
}
.how-work__item--count {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  background: rgba(55, 159, 162, 1);
  border-radius: 50%;
}
.how-work__item--count div {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  color: #FFF;
  font-family: Oswald;
  font-size: 24px;
  font-weight: 700;
}
.how-work__item--count::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  top: -10px;
  left: -10px;
  opacity: 0.5;
  background: rgba(55, 159, 162, 1);
  border-radius: 50%;

  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-name: count-before;
  animation-duration: 3s;
}
@keyframes count-before {
  0% {
    width: calc(100%);
    height: calc(100%);
    top: 0;
    left: 0;
  }
  40% {
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    top: -20px;
    left: -20px;
  }
  100% {
    width: calc(100%);
    height: calc(100%);
    top: 0;
    left: 0;
  }
}

.how-work__item--h4 {
  margin-bottom: 12px;
  color: #333;
}
.how-work__item--p {
  color: #555;
}
.how-work--bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-work-one .how-work--bg {
  width: 50%;
  height: auto;
  top: auto;
  bottom: auto;
  transition: 2s;
}
.how-work-one .how-work--bg.active {
  transform: translateX(200%);
}
.how-work-one .how-work__box {
  flex-wrap: nowrap;
  justify-content: space-between;
}
.how-work-one .how-work__item {
  width: 220px;
  padding-left: 0;
  z-index: 3;
}
.how-work-one .how-work--h2 {
  color: #fff;
}
.how-work-one .how-work__item--img {
  position: static;
  margin: 0 auto 20px auto;
}
.how-work-one .how-work__item--p {
  text-align: center;
  color: #fff;
}
.how-work-one .how-work__item--count {
  left: 50px;
}
.how-work__box--svg-1,
.how-work__box--svg-2,
.how-work__box--line {
  position: absolute;
  z-index: 2;
}
.how-work__box--svg-1 {
  top: 57px;
  left: -90px;
}
.how-work__box--svg-2 {
  top: 47px;
  right: -100px;
}
.how-work__box--line {
  top: 35px;
  left: -40px;
}
.how-work--under-text {
  margin-top: 40px;
  margin-bottom: 90px;
}
.how-work--under-text * {
  color: #fff;
}
.how-work__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
}
.how-work__line::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: #294192;
  position: absolute;
  top: 0;
  left: 0;
}
.how-work__line__box {
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.how-work--h3 {
  max-width: calc(100% - 450px);
  color: #FFF;
}
.car_delivery-main .how-work--h3 {
  max-width: calc(100% - 350px);
}
.how-work--btn {
  width: 280px;
}

.contacts {
  padding: 70px 0;
  background: rgba(16, 23, 39, 1);
}
.contacts__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contacts__col-1 {
  width: 200px;
  margin-right: 90px;
}
.contacts__col-1 img {
  width: 200px;
  height: auto;
  object-fit: cover;
}
.contacts__col-2 {
  margin-right: 50px;
}
.contacts__col-2,
.contacts__col-3 {
  min-width: 380px;
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.contacts--item {
  position: relative;
  text-decoration: none;
  padding-left: 34px;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 1);
}
.contacts--item strong {
  color: rgba(255, 255, 255, 1);
}
.contacts--item svg {
  min-width: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.footer {
  padding: 40px 0;
}
.copyright {
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(85, 85, 85, 1);
}



@media (min-width: 1600px){
  .hero__bg {
    width: 100%;
  }
}
@media (max-width: 1220px){
  main {
    padding-top: 60px;
  }
  .header {
    height: 60px;
  }
  .header__logo {
    margin-right: auto;
    padding-right: 10px;
    width: 200px;
  }
  .header__logo__p {
    gap: 3px;
    font-size: 12px;
  }
  .header__logo__svg-2 {
    width: 120px;
  }
  .header__item__btn {
    margin-left: auto;
    font-size: 14px;
    padding: 10px 12px;
  }
}
@media(max-width: 1180px){
  main {
    padding-top: 0;
  }
   .container {
    padding: 0 15px;
  }
  h1 {
    margin-bottom: 30px;
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
    line-height: 100%;
  }
  h3,
  h4 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
    line-height: 140%;
  }
  .how-work {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .how-work-one  {
    padding-bottom: 0;
  }
  .how-work-one br {
    display: none;
  }
  .how-work--h2 {
    margin-bottom: 40px;
  }
  .how-work__box {
    flex-direction: column;
    gap: 30px;
  }
  .how-work__item {
    width: 100%;
  }
  .under-hero__box.has-image {
    flex-direction: column;
    gap: 20px;
  }
  .how-work-one .how-work__box {
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .how-work__box--svg-1,
  .how-work__box--line,
  .how-work__box--svg-2 {
    display: none;
  }
  .contacts__col-1 {
    margin-right: 0;
    width: 100%;
    margin-bottom: 40px;
  }
}
@media(max-width: 880px){
  .contacts__col-2 {
    margin-bottom: 14px;
  }
  .contacts__col-2, .contacts__col-3 {
    min-width: 0;
    width: 100%;
  }
  .contacts--item span {
    display: block;
  }
}
@media(max-width: 480px){
  main {
    padding-top: 0;
  }
  .header {
    height: 40px;
  }
  .header .container {
    padding-top: 15px;
  }
  .how-work__item  {
    min-height: 0;
    padding-left: 70px;
  }
  .how-work__item--img {
    width: 60px;
    height: auto;
  }
  .hero {
    height: auto;
    background: rgba(16, 23, 39, 1);
  }
  .hero--fone {
    display: none;
  }
  .hero-page .hero--text {
    font-size: 14px;
  }
  .who-need {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .how-work-one .how-work__item--img {
    width: 140px;
  }
  .how-work--bg {
    display: none;
  }
  .how-work--under-text {
    margin-bottom: 40px;
    text-align: center;
  }
   .cargoes {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .cargoes__box {
    gap: 20px;
  }
  .cargoes__item {
    padding: 30px 15px 40px 15px;
    display: flex;
    flex-direction: column;
  }
  .cargoes__item::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: #333;
    opacity: 0.8;
  }
  .cargoes__item--img {
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .cargoes__item--h5,
  .cargoes__item--p {
    position: relative;
    z-index: 3;
    color: #fff;
  }
}