@font-face {
    font-family: 'Anglecia';
    src: url(/fonts/Anglecia-Pro-Display.woff2);
    font-display: swap;
}
*{
  font-family: 'Anglecia', sans-serif;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 19px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Анимация для активного состояния */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Стили для мобильного меню */
.mobile-menu {
  display: block;
  position: fixed;
  right: -200%;
  top: 0;
  width: 250px;
  height: 100%;
  background-color: white;
  box-shadow: 2px 0 5px rgba(0,0,0,0.5);
  z-index: 1000;
  transform: translateX(-100%);
  transition: 1s;
  padding: 0 15px;
}

.mobile-menu.active {
  transform: translateX(0);
  transition: all 0.5s easy;
  right: 0;
}

.close-btn {
  font-size: 35px;
  cursor: pointer;
  text-align: left;
  padding: 15px 5px 0 15px;
}

.header{
  padding: 20px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.7);
}

.header-nav,
.nav-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img{
    width: 150px;
    height: 100px;
}

.nav-item a{
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: #000000;
    margin-left: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.nav-item a:hover{
    color: #E30016;
}

.banner-content{
    position: relative;
    max-width: 1300px;
    margin: 200px 0 0 0;
    padding: 80px 100px 80px 60px;
    max-width: 1155px;
}

.banner-content::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    opacity: 0.7;
}

.banner-content .title{
    font-weight: 400;
    font-size: 48px;
    text-transform: uppercase;
    color: #E30016;
    z-index: 1;
    position: relative;
}

.banner-content .title span{
    font-weight: 400;
    font-size: 48px;
    text-transform: uppercase;
    color: #000000;
}

.banner-content p{
    font-weight: 300;
    font-size: 28px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}

.banner-content div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    position: relative;
}

.button{
    padding: 15px 30px;
    color: #fff;
    text-transform: uppercase;
    background-color: #E30016;
    text-decoration: none;
    border: none;
    text-align: center;
    transition: all 0.3s ease;
}

.button:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background-color: #000000;
}

.section{
    padding: 50px 0;
    background: #FFF3F3;
}
  
.title {
    font-weight: 400;
    font-size: 36px;
    text-transform: uppercase;
    color: #000000;  
    margin: 0 0 30px 0;  
}

.title span {
    font-weight: 400;
    font-size: 36px;
    text-transform: uppercase;
    color: #e30016;
}

.delivery-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.delivery-types .title{
    margin-top: 30px;
}

.delivery-types ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

.delivery-block li{
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    color: #0E0E0E;
}

.delivery-types li::before {
    content: '•';
    margin-right: 8px;
    color: #000;
}
  
.services-wrapper {
    padding: 50px 0;
  }
  
  .services-left,
  .services-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 250px;
  }
  
  .service-box {
    padding: 15px 20px;
    border: 2px solid #ccc;
    font-weight: 500;
    background-color: white;
    position: relative;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
  }
  
  .service-box-wrapper{
    position: relative;
    transition: all 0.3s ease;
  }
  .service-box-wrapper::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    height: 1px;
    width: 60%;
    background: inherit;
  }
   .service-box-wrapper::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    height: 100%;
    width: 1px;
    background: inherit;
  }

  .service-box-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-box-wrapper.orange-bg{
  top: 10%;
  left: 40%;
}
.service-box-wrapper.purple-bg{
  top: 81%;
  left: 41%;
}
  
  .green {
    border-color: #068762;
  }
  
  .green-bg {
    background-color: #068762;
  }
  .green-light {
    border-color: #84AC2D; 
  }
  
  .green-light-bg {
    background-color: #84AC2D;
  }
  
  .blue {
    border-color: #3E7DB5;
  }
  
  .blue-bg {
    background-color: #3E7DB5;
  }
  .blue-light {
    border-color: #20A7C8;
  }
  
  .blue-light-bg {
    background-color: #20A7C8;
  }
  
  .orange {
    border-color: #EAB70E; 
  }
  
  .orange-bg {
    background-color: #EAB70E;
  }
  .orange-light {
    border-color: #FF8400;
  }
  
  .orange-light-bg {
    background-color: #FF8400;
  }
  
  .teal {
    border-color: #4EDCDC;
  }
  
  .teal-bg {
    background-color: #4EDCDC;
  }
  
  .red {
    border-color: #FE5F5E;
  }
  
  .red-bg {
    background-color: #FE5F5E;
  }
  .purple {
    border-color: #876897;
  }
  
  .purple-bg {
    background-color: #876897;
  }
  
  .chart-placeholder img {
    height: auto;
    margin: 0 auto;
  }
  
  .direct-work p {
    font-weight: 400;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    color: #000000;    
  }
  
  .direct-work span {
    color: #E30016;
    font-weight: 400;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
  }

  .section-map p{
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 15px;
  }

  .section-map .maps-wrapper{
    position: absolute;
    bottom: 10px;
    right: 10px;
    border: 2px solid #000000;
    background: #FFF3F3;
    padding: 15px 15px;
    max-width: 300px;
    width: 100%;
  }

  .maps-wrapper .maps-title{
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    color: #000000;
  } 

  .maps-wrapper .maps-title span{
    color: #E30016;
  }

  .maps-wrapper .descr{
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    color: #000000;
  }

  .routes-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px !important;
    flex-wrap: wrap;
}

.route-item {
    position: relative;
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    padding-left: 20px;
    margin-bottom: 10px;
}

.route-item::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 50px;
    top: -27px;
}
.route-item.one::before {
    color: #F1FF27;
}
.route-item.two::before {
    color: #6670FF;
}
.route-item.three::before {
    color: #004EFF;
}
.route-item.four::before {
    color: #FF9B2F;
}

.content-text p,
.content-text-table div{
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
}

.content-text-table{
    border: 1px solid #292929;
    border-radius: 8px;
    display: flex;
}

.content-text-table div{
    border-right: 1px solid #292929;
    text-align: center;
    padding: 40px 15px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.content-text-table div:last-child{
    border-right: none;
}

.section-table .subtitle{
    font-weight: 400;
    font-size: 24px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 22px;
}

.price-table {
    width: 100%;
    margin-bottom: 10px;
}

.price-table td,
.price-table th {
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #292929;
}

.price-table td,
.price-table th {
    font-weight: 400;
    font-size: 20px;
}

.avtoperevozki-table {
    width: 100%;
    margin-bottom: 10px;
}

.avtoperevozki-table td, 
.avtoperevozki-table th{
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #292929;
}

.avtoperevozki-table td,
.avtoperevozki-table th {
    font-weight: 400;
    font-size: 20px;
}

.description{
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    margin-bottom: 20px;
}
.description-wrapper p{
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    margin-bottom: 20px;
}

.section-advantages .step,
.advantages-block {
    display: flex;
    align-items: center;
    justify-content: start;
}

.section-advantages .circle {
    width: 85px;
    height: 65px;
    background-color: transparent;
    border: 5px solid #db4a42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #db4a42;
    font-size: 26px;
}

.section-advantages .line {
    width: 100%; 
    height: 8px; 
    background: linear-gradient(90deg, #db4a42, rgba(219, 74, 66, 0));
}

.section-advantages .advantages-block span{
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    color: #292929;
    margin-right: 20px;
}

.section-advantages .advantages-block img{
    width: 50px;
    height: 40px;
}

.section-advantages .description{
    font-size: 16px;
}

.ellipse-two,
.ellipse-one{
    position: absolute;
}
.ellipse-one{
    bottom: 0;
    left: 0;
}
.ellipse-two{
    right: 0;
    top: 0;
}

.subtitle-form{
    font-weight: 400;
    font-size: 24px;
    text-transform: uppercase;
    color: #010101;
}

.z-index-2{
    z-index: 2;
}

.form-wrapper{
    border: 1px solid #000000;
    padding: 50px 30px;
}

input,
textarea{
    border: 2px solid #292929;
    border-radius: 8px;
    padding: 10px 20px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    width: 100%;
}

input:focus,
textarea:focus{
    outline: none;
}

.position-at-work{
    display: flex;
    align-items: center;
}

.position-at-work img{
    width: 50px;
    margin-right: 20px;
}

.managing-director{
    width: 100%;
    object-fit: cover;
    height: 469px;
}

.footer-right{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.footer-right-item li,
.footer-right-item{
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
}

.list-style li{
  list-style: inside;
}

.pt-100{
  padding-top: 100px;
}

.case-wrapper img{
  width: 100%;
  object-fit: cover;
  height: 215px;
}

.case-title-block{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.case-title{
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  color: #000000;
  width: 60%;
}

.case-descr{
  font-weight: 300;
  font-size: 22px;
  text-transform: uppercase;
  color: #000000;
}

.border-left,
.border-bottom,
.border-right,
.border-top{
  position: absolute;
  background-color: #E30016;
}

.border-left{
  bottom: -10px;
  left: -20px;
  width: 1px;
  height: 120px;
}
.border-bottom{
  bottom: -10px;
  left: -20px;
  width: 150px;
  height: 2px;
}
.border-right{
  top: -10px;
  right: -20px;
  width: 1px;
  height: 120px;
}
.border-top{
  top: -10px;
  right: -20px;
  width: 150px;
  height: 2px;
}

.carusel-wrapper{
  margin: 0 0 30px 0;
}

#myCarousel {
  --f-carousel-slide-width: calc(100% / 3);
  --f-carousel-spacing: 0;

  --f-button-next-pos: 30px;
  --f-button-prev-pos: 30px;

  --f-button-width: 44px;
  --f-button-height: 44px;
  --f-button-border-radius: 50%;

  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-active-color: #fff;

  --f-button-bg: rgba(0, 0, 0, 0.5);
  --f-button-hover-bg: rgba(0, 0, 0, 0.8);
  --f-button-active-bg: rgba(0, 0, 0, 0.8);

  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  --f-button-svg-stroke-width: 3;
}

#myCarousel .f-carousel__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

#myCarousel img {
  border-radius: 0%;
  transform: scale(var(--f-scale, 1)) translateX(var(--f-translateX, 0));
  background: #fff;
  width: 100%;
  height: 300px;
  object-fit: contain;
}

.title-error{
    font-size: 180px;
}

.nav-wrapper-mobile .nav-item a{
    margin: 0;
}

.nav-wrapper-mobile li{
    margin: 10px 0 0 17px;
}

.hover{
  text-decoration: none;
}

.hover:hover{
    color: #E30016;
}

.btn-close:focus{
    box-shadow: none !important;
}

.language-item a{
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  transition: 0.3s;
}

.language-item a:hover{
  color: #E30016;
}

.right-menu{
  display: flex;
  align-items: center;
}

.language-wrapper{
  position: relative;
}

.language-wrapper .language-dropdown{
  position: absolute;
  padding: 7px 10px;
  background-color: rgba(255, 255, 255, 0.7);
}

.language-item a.active{
  position: relative;
}

.language-item a.active:before{
  content: '\25BC';
  position: absolute;
  font-size: 14px;
  left: 42px;
  top: -1px;
}


    

  

  
  

  
