@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto.woff2') format('woff2'), url('../fonts/roboto.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'RobotoBold';
  src: url('../fonts/robotoBold.woff2') format('woff2'), url('../fonts/robotoBold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'RobotoMedium';
  src: url('../fonts/robotoMedium.woff2') format('woff2'), url('../fonts/robotoMedium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-mineShaft: #333;
  --color-white: #fff;
  --color-dark: #2F343A;
  --color-dark39: #393f47;
  --color-gold: #C8A35F;
  --transition-duration: .3s;
}

html {
  box-sizing: border-box;
}

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

html,
body {
  /*Для swiperjs*/
  position: relative;
  /*Для .wrapper Это будет нужно для footer*/
  height: 100%;
}

body {
  min-width: 320px;
  font-family: 'Roboto', sans-serif;
  /*Общий шрифт 400*/
  font-weight: 400;
  font-size: clamp(12px, 3vw, 14px);
  line-height: 1;
  color: var(--color-white);
}

img {
  vertical-align: top;
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p,
a {
  /* перенос слов */
  word-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: #84aaad; /* Цвет посещенных ссылок */
}

button {
  background-color: transparent;  
  border: 1px solid transparent;
  cursor: pointer;
}

.wrapper {    
  min-height: 100%;
  overflow: hidden; /* не любить sticky */
}

/* Для семантики если нет заголовка h1 в вёрстке. Ставим скрытый заголовок. */
.visually-hidden {
  position: absolute;
  margin: -1px;
  padding: 0;
  border: 0;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

[class*="__container"] {
  margin: 0 auto;
  padding: 0 50px;
  /*1208px = 1108px + 50px + 50px не менять*/
  max-width: 1208px;
}

.h2 {
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1;
}

.h3 {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1;
}

.desc {
  font-size: clamp(13px, 3vw, 18px);
  line-height: 30px;
}

.display-flex {
  display: flex;
}

.display-grid {
  display: grid;
}

section h2 {
  text-transform: uppercase;
}

/***Слайдер***/
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: clamp(13px, 3vw, 18px);
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*** // Слайдер***/

.lineHorizontally {
  border-top: 6px solid var(--color-gold);
  width: 90px;
}

/*** burger ***/
.burger {
  position: relative;
  margin: 5px;
  width: 60px;
  height: 50px;
}

.burger span {
  position: relative;
  top: 12px;
  margin: 0 auto;
}

.burger span:before, .burger span:after {
  position: absolute;
  content: '';
}

.burger span, .burger span:before, .burger span:after {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--color-white);
}
.burger span:before {
  margin-top: -12px;
}
.burger span:after {
  margin-top: 12px;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  padding:0.5%;
  width: 100%; 
  height: 50%;
  background-color: var(--color-dark);
  overflow: auto;
  z-index: 20;
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 100%;
  height: 100%;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

.close {
  margin: 10px 18px 0 0;
  font-size: 4em;
  color: var(--color-white);
  float: right;
}

.close:hover,
.close:focus {
  color: #B64926;
  text-decoration: none;
  cursor: pointer;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.animated {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}


/*Navigation*/

.nav ul li:not(:last-child) { /*кроме последнего*/
  margin-bottom: 20px;
}

.nav ul li a{
  text-transform: uppercase;
  font-size: 4vw;
  letter-spacing: 0.2em;
}

.nav ul li a:hover{
  text-decoration: none;
  color: #B64926;
}

.nav ul{
  clear: both;
  width: 100%;
  text-align: center;
}
/*** // burger ***/


/***Шапка header-1920px***/
.header {
  position: relative;
}

.header__container {
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.header__container:not(:last-child) { /*кроме последнего*/
  margin-right: 10px;
}

.header__top {
  padding: 16px 0 0px;
  background-color: var(--color-gold);
}

.header__language {
  justify-content: space-between;
  flex-wrap: wrap;
}

.header__language li:not(:last-child) { /*кроме последнего*/
  margin-right: 5px;
}

.header__phone {
  width: 55px;
  font-size: clamp(10px, 3vw, 12px);
  line-height: 1.2;
  text-align: center;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  outline: none;
}

.header__phone:focus {
  outline: 1px solid var(--color-white);
}

.header__phone:hover {
  opacity: .7;
}

.header__phone:active {
  opacity: .5;
}

.header__mail {
  font-size: clamp(10px, 3vw, 12px);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  outline: none;
}

.header__mail:focus {
  outline: 1px solid var(--color-white);
}

.header__mail:hover {
  opacity: .7;
}

.header__mail:active {
  opacity: .5;
}

.header__bottom {
  padding: 27px 0;
  background-color: var(--color-dark);
}

.header__block {
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.header__logo, .header__icon {
  margin-right: 15px;
}

.header__logo {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  outline: none;
}

.header__logo:focus {
outline: 1px solid var(--color-white);
}

.header__logo:hover {
opacity: .7;
}

.header__logo:active {
opacity: .5;
}

.header__line {
  margin: 0 21px;
  border: 1px solid var(--color-white);
  height: 46px;
}

.header__icon {
  display: flex;
  align-items: center;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  outline: none;
}

.header__icon:focus {
  color: var(--color-gold);
}

.header__icon:hover {
  opacity: .7;
}

.header__icon:active {
  opacity: .5;
}

.header__icon svg {
  margin-right: 12px;
}

.header__navNone1920 {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -20px;
}

.header__list {
  justify-content: space-between;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.header__list li:not(:last-child) {
  margin-right: 38px;
}

.header__link {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  outline: none;
}

.header__link:focus {
  outline: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.header__link:hover {
  opacity: .7;
}

.header__link:active {
  opacity: .5;
}
/*** // Шапка header-1920px***/

main {
  margin: -1px; /*Цвет оставляет линию*/
  background-color: var(--color-dark);
}

/***hero-1920px***/
.hero {
  padding: 155px 0 220px;  
  background: url("../img/banner.jpg") center / cover no-repeat;
}

.hero__block {
  margin: 0 95px;
  padding: 0 0 40px;
  border: 1px solid var(--color-gold);
  text-align: center;
}

.hero__h2 {
  margin-bottom: 25px;
  font-family: 'RobotoBold', sans-serif;
  font-size: clamp(37px, 4vw, 65px);
}

.hero__desc {
  margin: 0 auto;
  max-width: 79%;
}
/*** // hero-1920px***/

/***details-1920px***/
.details {
  position: relative;
  padding: 120px 0 128px;
}

.details::before, .details::after {  
  content: "";
  position: absolute;
  width: 39.5%;
  height: 100%;
  background-color: var(--color-dark39);
  top: 0;
}

.details::before {
  left: 0;
}

.details::after {
  right: 0;
}

.details__container {
  position: relative; /*Для видимости .lineHorizontally*/
}

.details__swiper .swiper-slide {
  display: flex;
  justify-content: start;
  align-items: start;
  text-align: start;
  background: transparent;
}

.details__swiper .swiper-block {
  margin-right: 86px;
  width: 35%;
}

.details__swiper .swiper-h3 {
  margin: 35px 0 0;
  font-family: 'RobotoBold', sans-serif;
  font-size: clamp(27px, 4vw, 49px);
}

.details__swiper .swiper-desc {
  margin-bottom: 60px;
  line-height: 1.6;
}

.details__swiper .swiper-btn {
  padding: 17px 56px;
  text-transform: uppercase;
  background-color: var(--color-gold);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  outline: none;
}

.details__swiper .swiper-btn:focus {
  color: var(--color-gold);
  background-color: var(--color-white);
}

.details__swiper .swiper-btn:hover {
  opacity: .7;
}

.details__swiper .swiper-btn:active {
  opacity: .5;
}

.details__swiper .swiper-btn:visited {
  color: var(--color-dark);
}

.details__swiper .swiper__png {
  padding: 40px 0 0;
  width: 445px;
  height: 266px;
}

.details__swiper .swiper-button {
  position: absolute;
  right: -8px;
  top: 0;
  width: 167px;
  height: 100%;
  font-family: 'RobotoMedium', sans-serif;
  font-size: 20px;
}

.details__swiper .swiper-button-next, .details__swiper .swiper-button-prev {
  position: absolute;
  right: 0;
  width: 100%;
  color: var(--color-gold);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  outline: none;
}

.details__swiper .swiper-button-next:focus, .details__swiper .swiper-button-prev:focus {
  color: var(--color-white);
}

.details__swiper .swiper-button-next:hover, .details__swiper .swiper-button-prev:hover {
  opacity: .7;
}

.details__swiper .swiper-button-next:active, .details__swiper .swiper-button-prev:active {
  opacity: .5;
}

.details__swiper .swiper-button-next { 
  top: 40px;
}

.details__swiper .swiper-button-prev {
  top: initial;
  bottom: -13px;
  left: 0;
  text-transform: uppercase;
}

.details__swiper .swiper-button-prev:after, .details__swiper .swiper-button-next:after {
  display: none;
}

.details__swiper .swiper-button-prev svg, .details__swiper .swiper-button-next svg {
  width: 75px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  outline: none;
}

.details__swiper .swiper-button-next:focus svg path, .details__swiper .swiper-button-prev:focus svg path {
  fill: var(--color-white);
}

.details__swiper .swiper-button-next:hover svg path, .details__swiper .swiper-button-prev:hover svg path {
  opacity: .7;
}

.details__swiper .swiper-button-next:active svg path, .details__swiper .swiper-button-prev:active svg path {
  opacity: .5;
}


.details__swiper .swiper-button-next svg {
  margin-left: 40px;
}

.details__swiper .swiper-button-prev svg {
  margin-right: 25px;
  transform: rotate(-180deg);
}
/*** // details-1920px***/

/***services-1920px***/
.services {
  padding: 121px 0 115px;
}

.services__line {
  margin-bottom: 43px;
}

.services__h2 {
  margin: 35px 0 53px;
  font-family: 'RobotoBold', sans-serif;
}

.services__list {
  grid-template: repeat(2, 1fr) / repeat(4, 1fr);
  background-color: var(--color-dark39);
}

.services__item {
  padding: 34px 34px 30px;
  border: 1px solid var(--color-dark);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  outline: none;
}

.services__item:hover {
  border: 1px solid transparent;
  background-color: var(--color-gold);
}

.services__img {
  margin: auto;
  width: 70px;
  height: 70px;
  background: url("../img/plane-white.svg") center / cover no-repeat;
}

.services__item:focus .services__img {
  opacity: .7;
}

.services__item:hover .services__img {
  background: url("../img/plane-circle.svg") center / cover no-repeat;
}

.services__item:active .services__img {
  opacity: .7;
}

.services__desc {
  margin: 16px 0 0;
  font-family: 'RobotoBold', sans-serif;
  font-size: clamp(13px, 3vw, 23px);
  text-align: center;
}
/*** // services-1920px***/


/***about-1920px***/
.about {
  padding: 0 0 124px;
}

.about__container {
  position: relative;
  display: flex;
  z-index: 0;
}

.about__container::before {
  content: "";
  position: absolute;
  margin-left: 348px;
  width: 34%;
  height: 100%;
  background-color: var(--color-dark39);
  z-index: -1;
}  

.about__block {
  padding: 81px 0 0;
  width: 40%;
  margin: 0 67px 0 0;
}

.about__line {
  margin: 0 0 44px;
}

.about__h2 {
  margin: 0 0 21px;
}

.about__desc {
  font-size: clamp(13px, 3vw, 16px);
  line-height: 23px;
}

.about__list {
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  padding: 82px 0;
  width: 54%;
}

.about__item {
  width: 198px;
  height: 158px;
  color: var(--color-dark);
  background-color: var(--color-white);
  text-align: center;
}

.about__h3 {
  margin: 29px 0 0;
  font-family: 'RobotoBold', sans-serif;
  font-size: clamp(37px, 4vw, 64px);
}

.about__p {
  margin: 0 0 10px;
  font-size: clamp(14px, 3vw, 20px);
}

.about__span {
  font-size: clamp(10px, 3vw, 12px);
}

.about__img {/*Чтобы растягивала при любой резине*/
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*** // about-1920px***/

/***vacancies-1920px***/
/*** // vacancies-1920px***/


/*---Яндекс карта map contacts-1920px---*/
#map {
  margin: 0;
  padding: 0;
  opacity: .5;
}

/*[class*="ground-pane"] {
  filter: grayscale(1)черно-белое
}*/

.ymaps-2-1-79-map ymaps {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 3vw, 14px);
  line-height: 1;
  text-align: center;
  color: var(--color-dark);
}

/* Скрыла рекламу такси и всякий мусор */
.ymaps-2-1-79-copyrights-pane {
  display: none;
}

.contacts__map {
  width: 100%;
  height: 450px;
  background: url("../img/maps.jpg") center / cover no-repeat;
}
/*--- // Яндекс карта map contacts - 1920px---*/

/***footer-1920px***/
.footer {
  padding: 60px 0 35px;
  background-color: var(--color-gold);
}

.footer__container {
  position: relative;
  display: flex;
  gap: 29px;
  font-size: clamp(12px, 3vw, 14px);
  line-height: 1.8;
}

.footer__logo {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  outline: none;
}

.footer__logo:focus {
  outline: 1px solid var(--color-white);
}

.footer__logo:hover {
  opacity: .7;
}

.footer__logo:active {
  opacity: .5;
}

.footer__block-1 {
  margin: 0 60px 0 0;
}

.footer__mail {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  outline: none;
}

.footer__mail:focus {
  color: var(--color-dark);
}

.footer__mail:hover {
  opacity: .7;
}

.footer__mail:active {
  opacity: .5;
}

.footer__phone {
  display: block;
  width: max-content;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  outline: none;
}

.footer__phone:focus {
  color: var(--color-dark);
}

.footer__phone:hover {
  opacity: .7;
}

.footer__phone:active {
  opacity: .5;
}

.footer__block-3 {
  position: absolute;
  right: 73px;
  bottom: -15px;
}

.footer__desc {
  font-size: clamp(12px, 3vw, 14px);
}
/*** // footer-1920px***/


@media (max-width: 1750px) {
  .header__top {
    padding: 12px 0;
  }
}

@media (max-width: 1222px) {
  .hero {
    padding: 100px 0;
  }

  .services__list {
    grid-template: repeat(3, 1fr) / repeat(3, 1fr);
  }

  .about {
    padding: 0 0 70px;
  }

  .about__container {
    display: block;
  }

  .about__container::before {
    right: 0;
    width: 50%;
  }

  .about__block {
    margin: 0 0 45px;
    padding: 70px 0 0;
    width: 100%;
  }

  .about__list {
    padding: 0 0 82px;
    width: 100%;
    gap: 25px;
  }

  .details, .services {
    padding: 70px 0;
  }

  .details::before, .details::after {
    width: 30%;
  }  

  .details__swiper .swiper-slide {
    display: block;
  } 
  
  .details__swiper .swiper-desc {
    margin-bottom: 40px;
  }
  
  .details__swiper .swiper-block {
    display: grid;
    justify-content: center;
    margin: 0 0 86px;
    width: 100%;
  } 

  .details__swiper .swiper-btn {
    margin: 0 auto;
    max-width: 110px;
  }

  .details__swiper .swiper__png {
    margin: 0 auto 40px;
    padding: 0;
  }

  .details__swiper .swiper-button-next {
    top: 10px;
  }

  .details__swiper .swiper-button-prev {
    bottom: 0;
  }

  .footer {
    padding: 35px 0;
  }

  .footer__block-1 {
    margin: 0 40px 0 0;
  }

  .footer__block-3 {
    right: 48px;
  }
}

@media (max-width: 900px) {
  [class*="__container"] {
    padding: 0 25px;
  }

  .header__block {
    margin-bottom: 25px;
    width: 100%;
  }

  .header__line {
    margin: 0 10px;
    height: 20px;
  }

  .header__nav {
    width: 100%;
  }

  .header__list li:not(:last-child) {
    margin-right: 10px;
  }

  .hero__block {
    margin: 0 40px;
    padding: 20px 15px 40px;
  }

  .hero__desc {
    max-width: 100%;
    line-height: 1.5;
  }

  .services__list {
    grid-template: repeat(4, 1fr) / repeat(2, 1fr);
  }

  .about__item {
    width: 47%;
  }

  .details__swiper .swiper-block {
    margin: 0 0 40px;
  }

  .footer__container {
    display: grid; 
    grid-template: repeat(2, 1fr) / repeat(2, 1fr);   
  }

  .footer__block-1 {
    margin: 0;
  }

  .footer__block-3 {
    position: relative;
    right: 0;
    text-align: end;
  }
}

@media (max-width: 676px) {
  .header__container {
    position: relative;
  }

  .header__block {
    margin-right: 65px;
  }

  .header__line {
    display: none;
  }

  .header__navNone676 {
    display: none;
  }

  .header__navNone1920 {
    display: flex;
    width: max-content;/*Для бургера*/
  }

  .about__item {
    width: 100%;
  }

  .details, .services {
    padding: 50px 0;
  }

  .details__swiper .swiper__png {
    margin: 0 auto 50px;
    width: 196px;
    height: 180px;
  }

  .footer__container {
    display: flex    ;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
}

@media (max-width: 444px) {
  .header__block {
    display: grid;
    margin: 0;
  }
  
  .header__block a:not(:last-child), .header__list li:not(:last-child) { /*кроме последнего*/ 
    margin-bottom: 20px;
  }

  .header__logo, .header__icon {
    margin-right: 5px;
  }

  .header__icon svg {
    margin-right: 5px;
  }
  
  .hero__block {
    margin: 0;
  }

  .services__list {
    grid-template: repeat(8, 1fr) / repeat(1, 1fr);
  }

  .footer__block-2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer__block-3 {
    top: 0;
  }
}