
.html{
    box-sizing: border-box;
}

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


body{
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f3f2f1;
}

button {
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
    color: black;
  }
input {
  -webkit-appearance: none;
  border-radius: 0;
}

/*==========NAVBAR==========*/
.header{
    position: absolute;
    z-index: 100;
    left: 0;
    right: 0;
}
.header-burger{
    display: none;
}
.header-menu{
    display: none;
}
.row-numb{
    display: none;
}
.logo-bg{
    background-color: #202023;
    padding-left: 20px;
    padding-top: 10px;
}

.logo{
    height: 105px;
    width: auto;
}

.row{
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.up-menu{display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(227, 104, 10);
    padding-bottom: 13px;
}

.up-center{
    padding: 0px 30px;
}

.center{
    background-color: #202023;
    padding-right: 20px;
    width:80%;
    height: auto;
}
.menu-btn{
    display: none;
}
.numbers{display: flex;
    float: right;
color:#CCCCCC;
align-items: center;
margin-top: 10px;
margin-right: 20px;
}

.name{
    color: #CCCCCC;
}

strong {
    font-size: large;
}

.r1{    
    text-decoration: none;
    color: #CCCCCC;
}

.center-menu{margin-top: 15px;}

.right-number{
    padding-left: 20px;
}

.down-center{
    margin-top: 18px;
    padding-bottom: 18px;
}

.top {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-left: 0px;
    transition: all 0.2s ease-in;
}

.top a{text-decoration: none;
}
.nav-line ul{
    list-style: none;
}

.text{
    padding: 20px;
    color: #CCCCCC;
    transition: color 0.2s linear;
    font-weight: 400;
    text-align: center;
}

.text:hover{
    color: rgb(227, 104, 10);
}

.menu {
    position: absolute;
    background-color:  #e4e0e0;
    padding: 0;
    margin-top: 10px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s;
}

.menu li::after{
    content: "";
    display: block;
    width: 30px;
    height: 0.2px;
    background-color: #8686866f;
    border-radius: 20px;
}

.services-container ul li a{
    display: block;
    transition: background-color 0.3s ease-in-out;
    line-height: 40px;
    color: #000000;
    padding: 0px 20px;
    padding-right: 70px;
    text-align: left;
}

.services-container ul li a:hover{
    background-color:  rgba(227, 104, 10, 0.848);
}

.name-style{
    font-size: 16px;
    font-family:font-family: 'Roboto', sans-serif;
}

/*==========SERVICES==========*/

 .servbtn:hover path {
    animation: move 0.3s linear infinite alternate;
  }
  
  @keyframes move {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(5px); 
    }
  }

@keyframes move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(5px); 
  }
}
.servtitle{
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    padding-top: 50px;
}
.servtitle h2{
    font-size: 40px;
    font-weight: 400;
}
.servtitle p{
    font-size: 20px;
    font-weight: 500;
    color: #333333d1;
    padding-bottom: 50px;
}


.servtitle p::after{
content: "";
display: block;
width: 100px;
height: 0.5px;
background-color: #dfc521;
margin: 30px auto 0;
}


.containers{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}




.servlist{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.servitem {
    display: inline-block;
    padding-right: 20px;
    position: relative;
    padding-bottom: 20px;
}
.servitem img{
    width: 370px;
    height: 220px;
    object-fit: cover;
}
.servtext{
    position: absolute;
    top: 70px;
    left: 30px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    max-width: 300px;
    font-weight: 600;
}
.servbtn{
    position: absolute;
    top: 150px;
    left: 30px;
    color: #dfb021;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
}

.servbtn:hover{
    color: #ffffff;
}

.ico{
    position: absolute;
    top: 20px;
    left: 30px;
}
.servback{
    background-color: #e7e7e7ef;
    height: 400px;
    width: 370px;
}
.desckserv{
    font-family: 'Montserrat', sans-serif;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 600;
}
.lilserv{
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
        padding: 0px 30px 30px 30px;
}


@keyframes zoomIn {
    from {
      opacity: 0;
      transform: scale(0.5);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .servitem {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s, transform 0.5s;
  }
  
  .servitem.show {
    opacity: 1;
    transform: scale(1);
    animation: zoomIn 0.5s ease-in-out;
  }

  .itemname{
    background-color: #c9ccd1;
  }


/*==========RIDE==========*/
.marquee img{
    height: 200px;
    padding-left: 200px;
}
.marquee{
    margin: 50px 0;
}



/*==========PROJECT==========*/

.prtitle{
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    padding-top: 30px;
}
.prt{
    font-size: 20px;
    color: #c9ccd1;
}
.prt::after{
    content: "";
    display: block;
    width: 180px;
    height: 1px;
    background-color: #dfc521;
    margin-top: 8px;
    margin-bottom: 10px;
}
.prtt{
    font-size: 25px;
    color: #f3f2f1;
    padding-top: 30px;
}
.prttt{
    color: #a2a2a2;
    padding-top: 15px;
}
.prbg{
    background-image: linear-gradient(to left, #dfb021 20%, #2b2929 20%);
}
.prback{
    text-align: center;
    padding-bottom: 40px;
    padding-top: 50px;
}
.prback.show {
    opacity: 1;
    transform: translateX(0);
}
.card{
    display: inline-block;
    margin-left: 10px;
}

.card img{
    height: 300px;
    width: 280px;
}
.card {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .card.show {
    opacity: 1;
    transform: translateX(0);
  }





  
  
  .cardimg {
    transition: transform 1s ease;
  }
  
  .card:hover .cardimg {
    transform: scale(1.1);
  }
  
  .card::before,
  .card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .card::before {
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  .card::after {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  }
  
  .card:hover::before,
  .card:hover::after {
    opacity: 1;
  }

  .cardtext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 15;
    width: 300px;
    height: 300px;
  }

  .prbtn{
    border: #dfb021 3px solid;
    padding: 8px 15px;
    text-decoration: none;
    color: #dfb021;
    transition: linear 0.3s;
    font-family: 'Montserrat', sans-serif;
    margin-top: 20px;
    position: absolute;
    bottom: 20px;
    left: 87px;
  }
  .prbtn:hover{
    background-color: #dfc521;
    color: #000000;
  }
  .prp{
    position: absolute;
    top: 70px;
    left: 30px;
    font-family: 'Montserrat', sans-serif;
    max-width: 250px;
    font-weight: 400;
    font-size: 20px;
    text-align: left;
  }
  .prap{
    position: absolute;
    top: 50px;
    left: 30px;
    font-family: 'Montserrat', sans-serif;
    max-width: 250px;
    font-weight: 400;
    font-size: 14px;
    text-align: left;
  }

/*========MAIN-COMPANY=======*/
.title-text{
    text-align: center;
    margin-top: 10px;
    font-size: 30px;
    font-weight: 500;
    justify-content: center;
    margin-bottom: 30px ;
}

.title-subtext{
    text-align: center;
    margin-top: 15px;
    font-size: 20px;
}

.border{
    margin-top: 20px;
    font-size: 32px;
    font-weight: 500;
    padding-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}
    .border::after{
    content: "";
    display: block;
    width: 40%;
    height: 1px;
    background-color: #dfc521;
    margin: 30px auto 0;
    }

.company-img{
    width: 70%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}
.company-img:hover{
    filter: none;
}

.company-wrapper{
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    padding: 20px 0px;
}

.company-bg{
    background-image: url(../images/dotss.jpg);
    background-size:contain;
    padding-top: 50px;
    padding-bottom: 50px;
}
.company{
    position: relative;
    display: inline-block;
}

/*==========FORM==========*/
.mailer-wrap{
    background-color: #272727 ;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
}
.inpwrap{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form__input{
    background-color: #e7e7e7;
    border: none;
    height: 40px;
    width: 240px;
    padding: 0 20px;
    outline:none;
}


.form__button{
    background-color: #dfb021;
    border: none;
    min-height: 40px;
    width: 280px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 0.5px 5px #412302;
    letter-spacing: 1px;
}
.form__button:hover{
    background-color:#c3991b;
    transition: .3s;
}
.form__body{
    padding-top: 40px;
}
.txtwrap{
    width: 100%;
}
.ftxt{
    color: aliceblue;
    font-size: 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    width: 1000px;
}
.inp{
    background-color: #e7e7e7;
border: none;
height: 40px;
width: 200px;
padding: 0 20px;
outline: none;
margin-right: 30px;
}



/*=========ussus======*/
.wrap{
    margin-top: 70px;
}

.containerss{
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
}
.us-w-cover{
    color: #ffffffcf;
    font-family: 'Montserrat', sans-serif;
    width: 550px;
    font-weight: 400;
    margin-top: 50px;
}
.mid-txt-desc-up{
    display: flex;
    justify-content: space-around;
}
.upper-txt{
    display: flex;
    align-items:last baseline;
    font-size: 17px;
    margin-bottom: 40px;
}
.mid-txt{
    font-size: 15px;
    list-style-image: url(../images/ico/chevron_big_right.svg);
    margin-left: 70px;
}
.mid-txt li{
    margin-bottom: 20px;
}
.dow-txt-desc{
    margin-left: 48px;
    font-size: 14px;
}
.us-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url(../images/Engine/Group\ 16_auto_x2.jpg) ;
    background-size: cover;
    background-position: bottom;
    padding: 70px 0px;
}
.us-cover{
    background-color: #ffffffea;
    max-width: 400px;
    padding: 30px 30px;
}
.ustxt{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 21px;
}
.us-cont{
    text-decoration: none;
    color: #000000;
}
.usbutton{
    background-color: #dfc521;
    padding: 14px 0;
    width: 230px;
    text-align: center;
}
.usbutton:hover{
    background-color: #dfb921;
}
h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
}
/*==========PRIO==========*/

.main-img {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, filter 0.3s;
}

.main-img img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s, filter 0.3s;
}

.main-img:hover img {
    transform: scale(0.8);
}
.title-line{
    margin-top: 70px;
    text-transform: uppercase;
}
.topline{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #575757;
}
.topline::after {
    content: "";
    display: block;
    width: 180px;
    height: 2px;
    background-color: #dfc521;
    margin-top: 8px;
    margin-bottom: 10px;
}
.bottom-line{
    font-size: 25px;
    font-weight: 300;
}
.main-img img{
    width: 80px;
}

.main-line{
    display: flex;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: 70px;
    flex-wrap: wrap;
}
.main-item{
    width: 250px;
    margin-top: 50px;
}
.main-txt{
    margin-top: 30px;
}
.top-main-txt{
    color: #a2a2a2;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}
.bottom-main-txt{
    font-size: 16px;
    font-weight: 600;
}
@media(max-width: 546px){
    .main-line{
        justify-content: center;
    }
}


/*==========FOOTER==========*/

.footer {
    color:#CCCCCC;
}
.footer-top {
    background-color: #333333;
    padding: 50px 0px  0px;
}
.container {
    max-width: 1400px;
    padding: 0 15px;
    margin: 0 auto;
}
.header-container{
    max-width: 1400px;
    padding: 0 15px;
    margin: 0 auto;
}
.footer-top-inner {
    display: grid;
    grid-template-columns:repeat( 4, auto );
}
.footer-top-col:first-child {
    margin-left: 60px;
    max-width: 250px;
}

.footer-top-col{
    z-index: 10;
}

.footer-top-col:last-child {
    max-width: 500px;
}

.footer-title {
    margin-bottom: 25px;
    font-weight: 500;
    color: #CCCCCC;
}
.footer-top-text {
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 15px;
    color: #CCCCCC;
}

.footer-icons {
    display: flex;
    list-style: none;
    padding-left: 0px;
}
.footer-icon{
    margin-right: 40px;
}

.footer-icon svg{
    width: 40px;
    height: 40px;
}

.footer-icon:last-child{
    margin-right: 0px;
}

.footer-link path{
    transition: all .3s;
}

.footer-link:hover path{
    fill:rgb(227, 104, 10);
}

.info-title {
    font-weight: 500;
    margin-bottom: 25px;
    color: #CCCCCC;
}
.info-menu {
    list-style: none;
    padding-left: 0px;
}
.text-info {
    color: #CCCCCC;
    text-decoration: none;
    line-height: 30px;
    font-size: 14px;
    font-weight: 300;
    transition: text-decoration 1s;
}

.text-info svg{
    width: 12px;
    height: 12px;
}

.text-info:hover{
    text-decoration: underline;
}

.footer-contact-title {
    margin-bottom: 25px;
    font-weight: 500;
    color: #CCCCCC;
}
.footer-contacts {
    list-style: none;
    padding-left: 0px;
}

.footer-contact a{
    text-decoration: none;
    color: #CCCCCC;
    line-height: 40px;
    font-weight: 300;
    font-size: 15px;
}

.footer-contact a:hover{
    text-decoration: underline;
}

.footer-contact svg{
    vertical-align: middle;
    padding-right: 15px;
}

.footer-title-map {
    font-weight: 500;
    margin-bottom: 25px;
    color: #CCCCCC;
}
.footer-text-map {
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 15px;
    color: #CCCCCC;
}

.footer-text-map svg{
    width: 22px;
    height: 22px;
    vertical-align: middle;
}

.footer-text-map path{
    fill: #CCCCCC;
}

.footer-down {
    background-color: #222222;
}
.footer-down-inner {
    padding: 30px 0 20px;
    display: flex;
    justify-content: space-between;
}
.footer-copy {
    font-size: 13px;
    padding-left: 140px;
}
.footer-go-top {
    padding-right: 140px;
    font-size: 18px;
    text-decoration: none;
    color: #CCCCCC;
    transition: 0.3s;
}

.footer-go-top:hover{
    color: rgb(227, 104, 10);
}

.map{
    margin-bottom: 0px;
}

.footer-logo-img{
    justify-content: center;
}
.imgimg{
    width: 250px;
}

.wrapper-bottom {
    display: flex;
    justify-content: center;
    position: relative;
    padding-bottom: 15px;
}

html,
body{
    height: 100%;
}

.wrapper{
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.main{
    flex-grow: 1;
}






/*==========SLIDER==========*/


.swiper-wrapper{
    background: rgba(21, 21, 21 0.9);

}


.swiper-slide{
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .swiper-pagination-bullet {
    width: 120px;
    height: 1px;
    background-color: #000000;
    border-radius: 10px 100px / 120px;
    opacity: 1;
  }
  .swiper-pagination-bullet-active{
    height: 1px;
    background-color: #ffffff;
  }

 .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 10px;
  }

.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 30px;
  }

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after, .swiper-button-prev:after {
    padding: 20% 40%;
    background-color: rgba(21, 21, 21, .3);
    color: #CCCCCC};
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    color: #CCCCCC;
}






/*-----text-slider---*/
.swiper-slide {
    position: relative;
  }
  
  .slide-box {
    position: absolute;
    top: 35%;
    left: 17%;
  }
.slide-textup{
    color: #dfb021;
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}
.slide-textcent{
    font-size: 40px;
    color: #f3f2f1;
    font-weight: 400;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.slide-textdw{
    font-size: 20px;
    color: #f3f2f1;
    font-weight: 400;
    padding-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
}

.slide-text-btn{
    background-color: #dfb021;
    text-decoration: none;
    color: #000000;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 400;
}
.slide-text-btn:hover{
    background-color: #222222;
    transition: linear .3s;
    color: #fff;
}


.animatetextup {
    opacity: 0;
    animation: slideFromTop 1s ease-out forwards;
  }
  
  .animatetextcent {
    opacity: 0;
    animation: slideFromRight 1s ease-out forwards;
  }
  
  .animatetextdw {
    opacity: 0;
    animation: slideFromBottom 1s ease-out forwards;
    animation-delay: 0.3s;
  }

  @keyframes flyIn {
    0% {
      transform: translateY(500%);
      opacity: 0;
    }
    50% {
      transform: translateY(-50%);
      opacity: 0.5;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .animatetextbtn {
    animation: flyIn 2s ease-out forwards;
  }

  @keyframes slideFromTop {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes slideFromRight {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideFromBottom {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .scroll{
    position: absolute;
    top: 50%;
    right: 10%;
    transform: rotate(90deg);
    color: #f3f2f1;
    font-family: 'Montserrat', sans-serif;
  }

  .scroll::after{
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color:#f3f2f1;
    margin-left: 150px;
    position: absolute;
    top: 10px;
  }

  .animatescroll {
    opacity: 0;
    animation: fadeAnimation 2s linear forwards;
  }
  @keyframes fadeAnimation {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }









  /*---adaptive---*/

  @media(max-width: 1170px){
    .text{
        padding: 7px;
    }
  }
  @media(max-width: 1100px){
    .footer-top-inner{
        flex-wrap: wrap;
        display: flex;
        justify-content: center;
        padding-left: 25px;
    }
    .logo-img{
        padding-right: 0;
    }
    .footer-top-col{
        padding-bottom: 20px;
    }
        .inpwrap:first-child{
        margin-bottom: 20px;
    }
}




@media(max-width: 1000px){
    .row{
        display: block;
    }
    .logo{
        height: 80px;
    }
    .logo-bg{
        display: block;
         display: flex;  
         padding: 0;
         justify-content: center;
    }
    .center{
        width: 100%;
        padding: 0;
    }
    .header-container{
        padding: 0;
    }
    .center-menu{
        margin-top: 0px;
    }
    .scroll{
        top:60%;
    }
    .letter{
        margin-bottom: 30px;
    }
}
@media(max-width: 826px){
    .servitem {
        display: inline-block;
        padding-right: 20px;
        position: relative;
        padding-bottom: 20px;
        width: 100%; 
    }

    .servitem img {
        width: 100%; 
        object-fit: cover;
    }
    .servback {
        background-color: #e7e7e7ef;
        width: 100% !important; 
        height: auto !important; 
    }
    
}






@media(max-width: 775px){
        .servitem{
        padding-right: 0;
        padding-bottom: 40px;
    }
    .footer-top-col:first-child{
        max-width: 500px;
    }
    .title-text{
        padding-bottom: 70px;
    }
    .prtitle{
        margin-left: 32px;
        padding-bottom: 30px;
    }

    .footer-top-inner{
    flex-direction: column;
    }


.footer-top-inner{
    justify-content: left;
}

.footer-top-col:first-child{
    margin-left: 0;
}

.footer-copy{
    padding-left: 0;
}
.footer-go-top{
    padding-right: 0;
}
iframe{
    width: 90%;
    height: 200px;
}
.logo-bg{
    padding: 0;
}

.center{
    display: none;
}


.top li{
    padding-bottom: 20px;
    padding-left: 20px;
}

.brm{
    width: 30%;
    height: 15px;
}
@keyframes showAnimation {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }


    .border {
        font-size: 22px;
        font-weight: 700;
    }

    .logo {
        height: 80px;
        width: auto;
      }
      .name{
        padding-bottom: 10px;
      }
}

@media(max-width: 730px){
    .company-wrapper {
        flex-wrap: wrap;
    }
    .company-img {
        width: 60%;
    }
    .company{
        text-align: center;
        padding-bottom: 20px;
    }
    .inp{
        background-color: #e7e7e7;
    border: none;
    height: 40px;
    width: 240px;
    padding: 0 20px;
    outline: none;
    margin-bottom: 20px;
    }
}

@media(max-width: 761px){
    .mailer-wrap{
        height: 280px;
    }
}
@media(max-width: 680px){
        .ftxt{
        padding-left: 30px;
    }
    .mailer-wrap{
        height: 320px;
    }
    .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
        display: none;
      }
    
    .swiper-pagination-bullets.swiper-pagination-horizontal {
        display: none;
      }
    
    .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after, .swiper-button-prev:after {
        display: none;};
    .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
        display: none;
    }
    .scroll{
        display: none;
    }
}
    @media(max-width: 440px){
        .slide-box{
            left: 7%;
        }
    }
  @media(max-width: 410px){

    .footer-copy{
        max-width: 200px;
    }
    .logo-bg {
        display: flex;
        justify-content: center; /* Выравнивание по горизонтали */
        margin: 0;
      }
      
      .logo {
        height: 70px;
        width: auto;
      }
      .servitem img{
        max-width: 100%;
      }

}
@media(max-width: 390px){
    .slide-box{
        max-width: 300px;
    }
    .servtext{
        max-width: 280px;
    }
    .servbtn{
        top:160px;
    }
}






@media(max-width: 775px){
    
    .row-flex{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
    .row-flex::before{
       content: '';
        top: -5px;
        left: 0;
        width: 100%;
        position: absolute;
        height: 107%;
        background-color: #202023;
        z-index: 70;
    }
    .row{
        position: relative;
        display: flex;
        height: 60px;
        justify-content: space-between;
    }
    .header-burger{
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        z-index: 90;
        top: 19px;
        left:20px;
    }
    .header-burger::before{
        content: '';
        background-color: #CCCCCC;
        position: absolute;
        width: 100%;
        height: 3px;
        left: 0;
        top: 0;
        border-radius: 5px;
        transition: all 0.3s ease 0s;
    }
    .header-burger.active::before{
        transform: rotate(45deg);
        top:9px;
    }
    .header-burger.active::after{
        transform: rotate(-45deg);
        bottom: 9px;
    }
    .header-burger.active span{
        transform: scale(0);
    }

    .header-burger::after{
        content: '';
        background-color: #CCCCCC;
        position: absolute;
        width: 100%;
        height: 3px;
        left: 0;
        bottom: 0;
        border-radius: 5px;
        transition: all 0.3s ease 0s;
    }
    .header-burger span{
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #CCCCCC;
        top: 8px;
        border-radius: 5px;
        transition: all 0.3s ease 0s;
    }
    .logo{
        height: 50px;
    }
    .logo-bg{
        position: relative;
        z-index: 90;
        right: 20px;
        top: 5px;
        background-color: transparent;
    }
    .header-menu{
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 260px;
        background-color: #191919ed;
        display: block;
        padding: 95px 0px 0px 0px;
        transition: all 1s ease-out 0s;
        font-family: 'Cuprum', sans-serif;
        letter-spacing: 1px
    }
    .header-menu.active{
        top:0;
    }

    .header-menu li {
        margin: 20px 20px;
        list-style: none;
        display: flex;
        color: #dfb021;
    }
    .header-item{
        color: #CCCCCC;
        text-decoration: none;
        padding-left: 10px;
    }

    .header-item::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, #333333, #dfb021, #333333);
    margin-top: 5px;
    }
    .row-numb{
        position: relative;
        z-index: 100;
        padding-top:10px ;
        display: flex;
        justify-content: space-around;
        border-bottom: 2px solid transparent; /* Устанавливаем прозрачную нижнюю границу */
        border-image: linear-gradient(to right, #333333, #dfb021, #333333) 1;
        padding-bottom: 10px;
    }
    .rnumb a,
    .lnumb a{
        display: flex;
        color: #fff;
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
    }
    .rnumb a svg,
    .lnumb a svg{
        padding-right: 10px;
    }
}

@media(max-width: 370px){
    .header-menu{
        padding: 110px 0 0 0;
    }
}

@media(max-width: 320px){
    .us-cover{
        padding: 20px 20px;
    }
    .ustxt{
        font-size: 13px;
    }
    .lilserv{
        font-size: 10px;
    }
}



.stock-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Блок цены внизу карточки */


.price-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #222;
}

.phone-icon-yellow {
    transition: transform 0.2s ease;
}

.phone-icon-yellow:hover {
    transform: scale(1.2);
}

/* Корректировка высоты текста, чтобы цена не перекрывала его */
.lilserv {
    height: 120px; /* Фиксированная высота для выравнивания */
    overflow: hidden;
}

.price-block {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    box-sizing: border-box;
    z-index: 10;
}

.price-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #000;
}

/* Кнопка "Замовити" с рамкой */
.order-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #dfb021; /* Желтый ободок */
    padding: 6px 12px;
    text-decoration: none;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.order-btn svg {
    stroke: #dfb021; /* Цвет иконки телефона */
    transition: stroke 0.3s ease;
}

/* Эффект при наведении на всю кнопку */
.order-btn:hover {
    background-color: #dfb021; /* Заливка при наведении */
    color: #fff;
}

.order-btn:hover svg {
    stroke: #fff; /* Иконка становится белой на желтом фоне */
}
.servback.extra-height {
    height: 460px;
}

/* Горизонтальный баннер запчастей */
.parts-horizontal-banner {
    width: 98%;
    margin-top: 40px;
    background: linear-gradient(90deg, #202023 0%, #2b2b2f 100%);
    position: relative;
    overflow: hidden;
    border-left: 5px solid #dfb021;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    min-height: 180px;
}

.parts-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 50px;
    z-index: 2;
    gap: 30px;
}

.parts-banner-info {
    flex: 1;
}

.parts-banner-label {
    color: #dfb021;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.parts-banner-info h3 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.parts-banner-info p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
}

.parts-banner-info strong {
    color: #dfb021;
    font-size: inherit;
}

/* Кнопка на баннере */
.banner-order-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #dfb021;
    color: #000;
    text-decoration: none;
    padding: 18px 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.banner-order-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

/* Адаптивность для мобильных */
@media (max-width: 992px) {
    .parts-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .parts-banner-info p {
        margin: 0 auto 25px;
    }
    
    .parts-banner-label {
        justify-content: center;
    }
}