@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@100;200;300;400;500;600;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=DM+Sans:wght@100;200;300;400;500;600;700&display=swap);

* {
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
    /* font-family: 'DM Sans', sans-serif; */
}

img {
    width: 100%;
}

a {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #0e1a23 0%, #1a2c39 100%);
}

/* Анимация вращения */
@keyframes logo-rotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* Применяем анимацию к логотипу */
.rotating-logo {
    animation: logo-rotate 8s linear infinite;
    filter: drop-shadow(0 0 8px rgba(230, 226, 224, 0.555));
    transition: transform 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    /* background: red; */
}

.title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    color: #ff4200;
}

a.btn {
    width: fit-content;
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 22px;
    border-radius: 2px;
    letter-spacing: 1px;
    background: #ff4200;
    text-transform: uppercase;
    border: 1px solid #ff4200;
}

/* Header  */
header {
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-around;
    background: #0e1a23;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #ccc;
}

header .logo {
    display: block;
    width: 100px;
}

header .logo a img {
    display: block;
}

nav .nav-menu ul.menyu {
    display: flex;
    gap: 25px;
}

.nav-menu ul.menyu li a {
    display: block;
    color: whitesmoke;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 20px;
    border-bottom: 3px solid #0e1a23;
    text-transform: capitalize;
    font-family: "DM Sans", sans-serif;
}

.nav-menu ul.menyu li a:hover {
    border-bottom: 3px solid #ff4200;
    transition: 0.3s;
}

header a.btn:hover {
    background: #fff;
    color: #ff4200;
    transition: 0.3s;
}

header .menu-toggle.btn:hover {
    transition: 0.3s;
    color: #ff4200;
    background: #fff;
    border: 1px solid #ff4200;
}

header .menu-toggle {
    width: 48px;
    height: 45px;
    padding: 7px 9.7px 10px;
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 1100;
    border-radius: 10px;
    background: #ff4200;
}

header .menu-toggle .bar1,
header .menu-toggle .bar2,
header .menu-toggle .bar3 {
    width: 100%;
    height: 4px;
    background: #fff;
    margin: 5px 0;
    transition: 0.4s;
    border-radius: 3px;
}

header .menu-toggle.active .bar1 {
    transform: translateY(9px) rotate(45deg);
}

header .menu-toggle.active .bar2 {
    opacity: 0;
}

header .menu-toggle.active .bar3 {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero  */
.hero {
    position: relative;
    height: calc(100vh - 93px);
}

.hero .swiper {
    position: relative;
    z-index: 1;
    height: calc(100vh - 91px);
}

.hero .swiper .swiper-slide img {
    height: calc(100vh - 91px);
    object-fit: cover;
}

.hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero_content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #fff;
    position: relative;
    z-index: 1;
    position: absolute;
    top: 18%;
    padding: 0 20px;
}

.hero_content h1 {
    width: 65%;
    font-size: 64px;
    line-height: 70px;
    font-family: "DM Sans", sans-serif;
}

.hero_content p {
    width: 45%;
    font-size: 18px;
    font-weight: 450;
    line-height: 24px;
    margin: 0 0 40px;
}

.hero_content a.btn {
    color: #ff4200;
    background: #fff;
    border: 1px solid #fff;
}

.hero_content a.btn:hover {
    background: #ff4200;
    color: #fff;
    border: 1px solid #ff4200;
    transition: 0.3s;
}

/* About  */
.about {
    padding: 90px 0;
    background: url(../img/bg/621c68283feece3e809188f1_map-bg.png) no-repeat fixed center center/cover;
}

.about_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40x;
    flex-wrap: wrap;
    overflow: hidden;
}

.about_content .text .title p {
    font-size: 48px;
    text-align: left;
    line-height: 58px;
    text-transform: capitalize;
    color: #dde2e5;
}

.about_content .photo {
    position: relative;
    width: 550px;
}

.about_content .photo .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.about_content .photo img {
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 0 5px #ddd;
}

.about_content .photo img:first-child {
    display: block;
}

.about_content .photo img:last-child {
    display: none;
}

.about_content .text {
    width: 550px;
}

.about_content .text p.textspace {
    text-align: left;
    color: #c4c5c0fd;
}

/* Customers  */
.customers {
    background: #0e1a23;
    padding: 110px 0;
}

.customers_content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    overflow: hidden;
}

.customers_content .title {
    width: 27%;
    display: flex;
    color: #fff;
    font-size: 46px;
    font-weight: 800;
    text-align: left;
    text-transform: none;
    flex-direction: column;
}

.customers_content .title p:last-child {
    color: #ff3f39;
}

.customers_content .cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 600px;
    overflow: hidden;
}

.customers_content .item {
    width: 180px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.customers_content .cards .item .text p {
    width: 78%;
    margin: 0 auto;
}

.customers_content .item .img img {
    width: 100px;
}

/* Work  */
.work {
    text-align: center;
    color: whitesmoke;
    background: url(../img/bg/621c68283feece3e809188f1_map-bg.png) no-repeat fixed center center/cover;
}

.work .work_content .title {
    margin: 0 auto 60px;
    font-size: 42px;
    width: 70%;
    color: #dde2e5;
    font-family: "DM Sans", sans-serif;
}

.work .work_content {
    padding: 100px 0 150px;
    overflow: hidden;
}

.work_content .cards {
    display: flex;
    gap: 40px;
    justify-content: space-evenly;
    flex-wrap: wrap;
    overflow: hidden;
}

.work_content .cards iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 5px #ccc;
}

.work_content .cards .video {
    width: 400px;
    height: 300px;
}

/* Services  */
.services {
    padding: 100px 0;
    background: #0e1a23;
}

.services_content {
    overflow: hidden;
}

.services_content .title {
    color: #fff;
    text-align: center;
    font-size: 42px;
    margin: 0 0 10px;
    font-family: "DM Sans", sans-serif;
}

.services_content .photos {
    display: flex;
    gap: 22px;
    justify-content: space-between;
    padding: 50px 0;
    flex-wrap: wrap;
}

.services_content .photos img {
    width: 375px;
    border-radius: 10px;
    object-fit: cover;
}

 .ad-container {
     gap: 15px;
     padding: 20px;
     background: #f5f5f5;
     margin: 20px 0;
 }

  .ad-slot {
      background: white;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      min-height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
  }

  .ad-slot .ad-content {
      color: #666;
      font-style: italic;
  }

/* Reviews Section */
.reviews-section {
    max-width: 1200px;
    width: 100%;
    padding: 40px;
    background: rgba(14, 26, 35, 0.8);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.reviews-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 66, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ff4200;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(255, 66, 0, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #a0b1c0;
    line-height: 1.6;
}

.reviews-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 10px 40px;
    scrollbar-width: thin;
    scrollbar-color: #ff4200 #0e1a23;
}

.reviews-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-container::-webkit-scrollbar-track {
    background: #0e1a23;
    border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb {
    background: #ff4200;
    border-radius: 10px;
}

.review-card {
    min-width: 350px;
    background: linear-gradient(145deg, #15232e, #0f1c26);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 66, 0, 0.2);
    border-color: rgba(255, 66, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4200, #ff6a00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-right: 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.client-info {
    flex: 1;
}

.client-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #fff;
}

.client-info p {
    color: #a0b1c0;
    font-size: 0.9rem;
}

.rating {
    color: #ffd700;
    font-size: 1.1rem;
    margin-top: 5px;
}

.review-content {
    position: relative;
}

.review-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 5rem;
    color: rgba(255, 66, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d1e0ed;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    color: #7d92a3;
    font-size: 0.9rem;
}

.review-date {
    display: flex;
    align-items: center;
}

.review-date i {
    margin-right: 8px;
    color: #ff4200;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 66, 0, 0.2);
    border: 1px solid rgba(255, 66, 0, 0.3);
    color: #ff4200;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #ff4200;
    color: white;
    transform: scale(1.1);
}

.logo-watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.05;
    font-size: 10rem;
    font-weight: 800;
    color: #ff4200;
    z-index: 0;
    pointer-events: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .reviews-section {
        padding: 30px 20px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .review-card {
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .review-card {
        min-width: 280px;
        padding: 20px;
    }

    .client-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animation  */
.animation {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.path {
    width: 100%;
    height: 80px;
    padding: 5px 0;
    position: absolute;
    bottom: 0;
    background: #000;
}

.path .cars {
    width: 100%;
}

.path .cars img {
    width: 120px;
    position: absolute;
    z-index: 2;
}

.path .border {
    border: 2px dashed #ddd;
    width: 100%;
    position: absolute;
    top: 45%;
    vertical-align: middle;
}

.path .cars img:first-child {
    width: 150px;
    top: -35px;
    right: 0px;
    animation-name: truck1;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

.path .cars img:last-child {
    bottom: 0;
    left: 0;
    animation-name: truck;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

@keyframes truck1 {
    0% {
        top: -35px;
        right: -75px;
    }

    100% {
        top: -35px;
        right: 100%;
    }
}

@keyframes truck {
    0% {
        bottom: 5px;
        left: -50px;
    }

    100% {
        bottom: 5px;
        left: 100%;
    }
}

/* Footer  */
.footer {
    background: #0e1a23;
    color: #fff;
}

.footer_content {
    display: flex;
    align-items: end;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 70px 0;
    overflow: hidden;
}

.footer_content .item {
    display: flex;
    width: 570px;
    flex-direction: column;
    gap: 10px;
    align-items: start;
}

.footer_content .item:first-child {
    gap: 0;
}

.footer_content .item:first-child .logo {
    width: 170px;
}

.footer_content .item:first-child .text p {
    font-size: 22px;
    line-height: 1.5;
    width: 90%;
}

.footer_content .item .title p {
    font-size: 30px;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    margin: 0 0 10px;
    font-weight: 600;
}

.footer_content .item .call {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: self-start;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.footer_content .item lord-icon {
    width: 50px;
    height: 50px;
}

.footer_content .item .call p {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1.5;
}

.footer_content .item .call p span {
    display: block;
}

.footer_content .item .call p a {
    color: #178ec9;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    display: block;
}

.footer_content .item .call p a:hover {
    color: #ff4200;
    transition: 0.4s;
}

/* Responsive  */

@media screen and (max-width: 1405px) {
    .nav-menu ul.menyu {
        gap: 10px;
    }

    .nav-menu ul.menyu li a {
        font-size: 16px;
    }

    header a.btn {
        font-size: 12px;
        padding: 12px 15px;
    }

    .hero_content h1 {
        font-size: 58px;
    }

    .hero_content p {
        width: 53%;
    }
}

@media screen and (max-width: 1288px) {
    .nav-menu ul.menyu {
        gap: 7px;
    }

    header a.btn {
        font-size: 10px;
        padding: 10px 12px;
    }

    header .logo img {
        width: 90px;
    }
}

@media screen and (max-width: 1300px) {
    header a.btn {
        font-size: 10px;
        padding: 10px 12px;
    }

    .nav-menu ul.menyu li a {
        font-size: 14px;
    }

    .hero_content {
        padding: 0 40px;
    }

    .hero_content p {
        width: 55%;
    }
}

@media screen and (max-width: 1200px) {
    .services {
        padding: 90px 0 70px;
    }

    .services_content .photos img {
        margin: 0 auto 20px;
    }

    .comments {
        padding: 50px 0;
    }

    .comments_content {
        gap: 15px;
    }

    .comments_content .title {
        width: 100%;
        text-align: center;
        margin: 0 0 35px;
    }

    .comments_content .cards {
        width: 100%;
    }

    .footer_content .item {
        width: 70%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1204px) {
    header a.btn {
        display: none;
    }
}

@media screen and (max-width: 1185px) {

    .about_content .photo {
        width: 90%;
        height: 80vh;
        margin: 0 auto 30px;
    }

    .about_content .photo img:first-child {
        display: none;
    }

    .about_content .photo img:last-child {
        display: block;
    }

    .about_content .text {
        width: 75%;
        margin: 0 auto;
    }

    .customers {
        padding: 90px 0;
    }

    .customers_content .title {
        width: 100%;
        text-align: center;
        margin: 0 0 50px;
        font-size: 42px;
    }

    .customers_content .cards {
        width: 95%;
    }

    .customers_content .item {
        margin: 0 0 20px;
    }
}

@media screen and (max-width: 1128px) {
    .title p {
        font-size: 36px;
    }

    .hero_content h1 {
        width: 80%;
        font-size: 48px;
    }

    .hero_content p {
        margin: 0 0 20px;
    }

    .hero_content a.btn {
        padding: 12px 15px;
        font-size: 12px;
    }

    .about .about_content .text .title p {
        font-size: 38px;
    }
}

@media screen and (max-width: 1044px) {
    header .menu-toggle {
        display: block;
    }

    header .nav-menu {
        position: absolute;
        top: 91px;
        left: 0;
        right: 0;
        background-color: #0e1a23;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    header .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    header .nav-menu ul.menyu {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    header .nav-menu ul.menyu li {
        margin: 0px auto;
        width: 100%;
        border-bottom: 2px solid #023d85;
    }

    header .nav-menu ul.menyu li:last-child {
        border-bottom: 2px hidden #023d85;
    }

    header .nav-menu ul.menyu li a {
        display: block;
        padding: 14px 0;
        text-align: center;
        font-size: 14px;
    }

    header .nav-menu ul.menyu li a:hover {
        background: #ff4200;
        transition: 0.4s;
    }

    .hero_content {
        top: 23%;
    }

    .hero_content p {
        width: 70%;
    }

    .customers {
        padding: 50px 0;
    }

    .work .work_content {
        padding: 80px 0;
    }

    .work .work_content .title {
        margin: 0 auto 40px;
    }
}

@media screen and (max-width: 887px) {
    .title p {
        font-size: 40px;
    }

    .hero_content p {
        font-size: 16px;
    }

    .work_content .cards .video {
        width: 80%;
        height: 450px;
    }

    .services_content .photos img {
        width: 60%;
        height: 100vh;
    }

    .customers_content .title p {
        font-size: 36px;
    }
}

@media screen and (max-width: 854px) {
    .title p {
        font-size: 36px;
    }

    .hero_content {
        top: 25%;
    }

    .hero_content h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero_content p {
        font-size: 14px;
    }

    .hero_content a.btn {
        font-size: 12px;
        padding: 10px 12px;
    }

    .about_content .text .title p {
        font-size: 40px;
    }

    .work_content .cards .video {
        width: 85%;
        height: 420px;
    }

    .services .services_content .photos img {
        width: 85%;
        height: 750px;
    }

    .comments {
        padding: 50px 0;
    }

    .comments_content .cards .item {
        width: 90%;
        margin: 0 0 20px;
    }

    .animation {
        height: 100px;
    }

    .animation .path {
        height: 70px;
    }

    .animation .path .cars img:first-child {
        width: 160px;
        top: -25px;
    }

    @keyframes truck1 {
        0% {
            top: -27px;
            right: -75px;
        }

        100% {
            top: -27px;
            right: 100%;
        }
    }

    .animation .path .cars img:last-child {
        width: 90px;
    }

    .footer_content {
        padding: 40px 0;
    }

    .footer_content .item {
        width: 100%;
    }

    .footer_content .item:first-child .logo img {
        width: 130px;
    }

    .footer_content .item:first-child .text p {
        font-size: 18px;
    }

    .footer_content .item .title p {
        font-size: 24px;
    }

    .footer_content .item .call p {
        font-size: 18px;
    }
}

@media screen and (max-width: 700px) {
    .hero_content h1 {
        width: 96%;
    }

    .hero_content p {
        width: 80%;
    }

    .about_content .photo {
        height: 70vh;
    }

    .about_content .photo {
        width: 98%;
    }

    .about_content .text {
        width: 90%;
    }

    .customers .title p {
        font-size: 32px;
    }

    .customers_content .item .text p {
        font-size: 16px;
    }

    .work .work_content {
        padding: 80px 0 70px;
    }

    .work_content .cards {
        gap: 50px;
    }

    .work_content .title {
        margin: 0 auto 40px;
    }

    .work_content .cards .video {
        width: 90%;
        height: 360px;
    }

    .services {
        padding: 70px 0 10px;
    }

    .services_content .photos {
        padding: 20px 0 50px;
    }

    .services_content .photos img {
        height: 650px;
    }
}

@media screen and (max-width: 625px) {
    .title p {
        font-size: 30px;
    }

    .hero_content {
        top: 30%;
        left: 55px;
        padding: 0;
    }

    .hero_content h1 {
        width: 90%;
        font-size: 32px;
    }

    .hero_content p {
        width: 90%;
        font-size: 12px;
        line-height: 1.7;
    }

    .hero_content a.btn {
        font-size: 10px;
        padding: 8px;
    }

    .about {
        padding: 50px 0 90px;
    }

    .about_content .text {
        width: 95%;
    }

    .about .about_content .text .title p {
        font-size: 36px;
    }

    .customers .customers_content .title p {
        font-size: 26px;
    }

    .customers_content .cards .item .text p {
        font-size: 14px;
    }

    .work .work_content .title {
        width: 100%;
        margin: 0 auto 30px;
    }

    .work .work_content .title p {
        width: 100%;
    }

    .work_content .cards .video {
        height: 300px;
    }

    .services .services_content .photos img {
        width: 90%;
        height: 520px;
    }

    .comments_content .cards .item {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .title p {
        font-size: 24px;
    }

    .hero_content h1 {
        width: 95%;
    }

    .hero_content p {
        width: 90%;
    }

    .about .about_content .photo img:first-child {
        display: block;
    }

    .about .about_content .photo img:last-child {
        display: none;
    }

    .about .about_content .text .title p {
        font-size: 26px;
        line-height: 35px;
    }

    .about_content .text {
        width: 100%;
    }

    .about .about_content .text .textspace {
        text-align: justify;
    }

    .about .about_content .text p.textspace {
        font-size: 14px;
    }

    .customers_content .cards {
        justify-content: space-around;
    }

    .customers_content .item .img img {
        width: 80px;
    }

    .customers_content .cards .item .text p {
        font-size: 12px;
        width: 60%;
    }

    .work .work_content {
        padding: 50px 0;
    }

    .work .work_content .video {
        width: 100%;
        height: 300px;
    }

    .services {
        padding: 50px 0 0;
    }

    .comments_content {
        gap: 0;
    }

    .comments_content .cards .item {
        padding: 20px 26px 28px;
    }

    .comments_content .cards .item .text p {
        font-size: 14px;
    }

    .comments_content .cards .item .name h2,
    p {
        font-size: 18px;
    }

    .footer_content .item:first-child .logo img {
        width: 110px;
    }

    .footer_content .item:first-child .text p {
        font-size: 14px;
    }

    .footer_content .item .title p {
        font-size: 18px;
    }

    .footer_content .item .call p {
        font-size: 14px;
    }

    .footer_content .item .call lord-icon {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 449px) {
    .hero_content {
        top: 23%;
    }

    .about_content .photo {
        height: 425px;
    }
}

@media screen and (max-width: 380px) {
    .title p {
        font-size: 20px;
    }

    .hero_content {
        padding: 0;
        top: 22%;
    }

    .hero_content p {
        margin: 0 0 5px;
    }

    .hero_content a.btn {
        font-size: 8px;
        padding: 8px 5px;
    }

    .customers {
        padding: 40px 0;
    }

    .customers .customers_content .title p {
        font-size: 20px;
    }

    .work .work_content {
        padding: 50px 0 50px;
    }

    .work .work_content .title {
        margin: 0 auto 25px;
    }

    .work .work_content .title p {
        width: 100%;
    }

    .work .work_content .cards {
        gap: 25px;
    }

    .work .work_content .cards .video {
        height: 225px;
    }

    .services .services_content .photos img {
        width: 100%;
        height: 450px;
    }

    .comments {
        padding: 20px 0;
    }

    .comments_content .cards .item {
        padding: 15px;
        gap: 7px;
    }

    .comments_content .cards .item .img img {
        width: 42px;
        top: -25px;
    }

    .comments_content .cards .item .text p {
        font-size: 12px;
        margin: 0 0 5px;
    }

    .comments_content .cards .item .stars img {
        width: 12px;
    }

    .comments_content .cards .item .user {
        gap: 15px;
    }

    .comments_content .cards .item .user .logo img {
        width: 40px;
        height: 40px;
    }

    .comments_content .cards .item .user .name h2 {
        font-size: 14px;
    }

    .comments_content .cards .item .user .name p {
        font-size: 14px;
    }

    .animation {
        height: 70px;
    }

    .animation .path {
        height: 50px;
    }

    .animation .path .cars img:first-child {
        width: 120px;
    }

    @keyframes truck1 {
        0% {
            top: -21px;
            right: -75px;
        }

        100% {
            top: -21px;
            right: 100%;
        }
    }

    .animation .path .cars img:last-child {
        width: 70px;
    }

    .footer_content {
        padding: 30px 0;
    }

    .footer_content .item:first-child .logo img {
        width: 90px;
        display: block;
    }

    .footer_content .item:first-child .text p {
        font-size: 12px;
    }

    .footer_content .item .title p {
        font-size: 16px;
        margin: 0 0 3px;
    }

    .footer_content .item .call {
        gap: 3px;
    }

    .footer_content .item .call p {
        font-size: 14px;
    }
}

@media screen and (max-width: 325px) {
    .title p {
        font-size: 18px;
    }

    .hero .swiper,
    .hero .swiper .swiper-slide img {
        height: 77vh;
    }

    .hero_content h1 {
        font-size: 26px;
    }

    .hero_content p {
        font-size: 10px;
    }

    .about {
        padding: 35px 0;
    }

    .about .about_content .text .title p {
        font-size: 20px;
        line-height: 1.2;
    }

    .about .about_content .photo {
        height: 300px;
    }

    .about .about_content .text p.textspace {
        font-size: 12px;
    }

    .customers .customers_content .title p {
        font-size: 18px;
    }

    .work .work_content {
        padding: 35px 0;
    }

    .work .work_content .cards .video {
        height: 170px;
    }

    .work .work_content .title {
        margin: 0 0 15px;
    }

    .services {
        padding: 40px 0 20px;
    }

    .footer_content .item,
    .footer_content .item:first-child .text p {
        width: 100%;
    }

}

 @media (min-width: 1024px) {
     .ad-container {
         grid-template-columns: repeat(4, 1fr);
     }
 }

 @media (max-width: 1023px) {
     .ad-container {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media (max-width: 480px) {
     .ad-container {
         grid-template-columns: repeat(2, 1fr);
         gap: 10px;
         padding: 10px;
     }
 }

