* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

.header {
    width: 100%;
    padding: 0px 0px;

    align-items: center;
    border-bottom: 5px solid #27ae60;
    position: relative;
}

.header__top {
    width: 100%;
    padding: 10px 0;
    background-color: #7ED957;
}

.header__top .container {
    display: flex;

    gap: 10px;
    justify-content: space-between;
}

.header__top a {
    color: #000;
    font-size: 13px;
    text-decoration: none;
}

.header__center {
    display: flex;
    padding: 10px 0;
    width: 100%;
    justify-content: space-between;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.header__social {
    display: flex;
    gap: 10px;
}

.header__contact {
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

nav.header__nav {
    display: flex;
    gap: 50px;
    align-content: center;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #27ae60;
    font-size: 16px;
    font-weight: 700;
}

.dropdown-content {
    display: none;
    position: absolute;
    width: max-content;
    list-style: none;
    top: 20px;
    z-index: 99999999999999;
    padding: 10px 30px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    /* z-index: 1; */
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li {
    padding: 10px;
}

.dropdown-content li a {
    color: #27ae60;
    font-weight: 500;
}

.btn-quote {
    background: #7ED957;
    color: #fff;
    font-weight: 700;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #27ae60;
    margin: 2px 0;
}

.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.hero-content ul {
    list-style: none;
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
}

.hero-content ul li {
    margin: 10px 0;
    display: flex;
}

.services,
.why__choose-us,
.testimonials,
.recent-projects,
.contact {
    padding: 50px 20px;
    text-align: center;
}

.services h2,
.why__choose-us h2,
.testimonials h2,
.recent-projects h2,
.contact h2 {
    font-size: 28px;
    color: #27ae60;
    margin-bottom: 20px;
}

.services-grid,
.why__grid,
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
}

.service__item,
.why__item {
    background: #fff;
    padding: 0px;

}

.service__item img,
.why__item img {
    width: 100%;
    object-fit: cover;
    height: 400px;
}

.service__item h3,
.why__item h3 {
    font-size: 20px;
    margin: 10px 0;
}

.btn-more {
    background: #27ae60;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.why__choose-us .certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}


.testimonial__slider {
    max-width: 100%;
    margin: 20px auto;
}

.testimonial__item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.testimonial__item p {
    font-style: italic;
    margin-bottom: 10px;
}

.projects-grid img {
    width: 100%;
    height: auto;
}


.contact__form form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.contact__form input,
.contact__form textarea {
    margin-bottom: 10px;
    padding: 15px;
    border: 1px solid #4e4e4e;
    border-radius: 0px;
}

.btn-submit {
    background: #5ce028;
    color: #fff;
    padding: 15px;
    font-weight: 700;
    border: none;
    border-radius: 0px;
    cursor: pointer;
}

footer {
    background: #2c3e50;
    color: #fff;
    padding: 20px 0 0 0;
    text-align: center;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;

}

.footer__section {
    flex: 1;
}

.footer__section h3 {
    margin-bottom: 10px;
    width: fit-content;
    line-height: 2;
    font-size: 18px;
    border-bottom: 1px solid #5ce028;
    text-align: start;
}

.footer__section p {
    margin-bottom: 10px;
    text-align: start;
}

.footer__section ul {
    list-style: none;
}

.footer__section ul li {
    margin: 5px 0;
    text-align: start;
}

.footer__section a {
    color: #fff;
    text-decoration: none;
}

.footer__projects img {
    width: 100px;
    margin: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 144px;
        left: 0;
        padding: 20px;
        z-index: 9999;
        background: #fff;
        flex-direction: column;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .burger {
        display: flex;
    }

    .services-grid,
    .why__grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

   
}

.about {
    padding: 50px 0;
}

.about__items {
    display: flex;
    gap: 80px;
}

.about__img {
    position: relative;
}

.about__img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.about__img img.about__i {
    width: 270px;
    height: 270px;
    position: absolute;
    object-fit: cover;
    bottom: -50px;
    right: -50px;
    border-radius: 100%;
    border: 10px solid #333;
}

.about__item {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.sub {
    color: #7ED957;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 38px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about__item-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about__item-li {
    display: flex;
    gap: 10px;
}

.about__item-content h3 {
    font-size: 20px;
    color: #242424;
}

.about__item-span {
    width: 26px;
    min-width: 26px;
    min-height: 26px;
    height: 26px;
    background-color: #7ED957;
    border-radius: 100%;
}

.about__wrapper {
    display: flex;
    margin: 50px 0;
    border-radius: 30px;
    overflow: hidden;
}

.about__wrap {
    flex: 1;
    display: flex;
    background-blend-mode: overlay;
    flex-direction: column;
    gap: 20px;
    color: #fff;
    background-color: #333;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
}

.service__item-content {
    display: flex;
    gap: 40px;
    padding: 15px;
    align-items: center;
    justify-content: space-between;
}

.service__item-content .btn-more {
    border-radius: 100%;
}

.services {
    background-color: #0b0314;
}

.services p {
    color: #fff;
}

.why__grid {
    margin: 50px auto;
}

.why__item {
    background: #fff;
    padding: 20px;
    border: 1px solid #333;
}

.why__item i {
    font-size: 50px;
}

.certifications {
    display: flex;
    gap: 50px;
    align-items: center;
}

.certifications img {
    max-width: 400px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.certifications__items p {
    margin-bottom: 20px;
    text-align: start;
}

.certifications__items h4 {
    margin-bottom: 10px;
    text-align: start;
}

.testimonials {
    background-color: #efefef;
}

.projects-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
}

.projects-grid img {
    width: 100%;
    height: 261px;
    object-fit: cover;

    display: block;
    border-radius: px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.projects-grid img:hover {
    transform: scale(1.05);
}

.contact {
    background-color: #dbd8d8;
}

.contact__content {
    display: flex;
    gap: 50px;
}

.values h2 {
    text-align: start;
    color: #0b0314;
}

.values p {
    margin-bottom: 10px;
    text-align: start;
}

.values,
.contact__form {
    flex: 1;
}

.contact__form p {
    color: #666565;

    font-size: 14px;
    margin-bottom: 20px;
}

.contact__form form {
    margin: 0 auto;
}

.contact__form {
    padding: 30px;
    background-color: #fff;
}

.footer__section .projects-grid img {
    width: 100%;
    height: 55px;
    object-fit: cover;
    display: block;
    border-radius: px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.copy {
    text-align: center;
    color: #fff;
    font-size: 14px;
    background-color: #7ED957;
}

.hero.about {
    height: auto;
    background-position: center;
    background-blend-mode: darken;
    background-color: #5ce028;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.hero.about h1 {
    text-align: center;
    color: #efefef;
}

.hero.about .about__item p {
    margin-bottom: 20px;
}

.about__grids {
    margin-top: 50px;
    background-position: center;
    background-blend-mode: screen;
    background-color: #e7e7e7;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px;
}

.about__grids .container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.about__grid {

    display: flex;
    gap: 20px;
}

.about__grid i {
    font-size: 30px;
    margin-top: 10px;
    color: #5ce028;
}

.about__grid h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.about__grid p {}

.service__contact {
    margin-top: 50px;
    background-position: center;

    background-color: #e7e7e7;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0 0;
}

.service__cont__items {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.service__cont__item {}

.ser-btn {
    background-color: #287FF9;
    color: #fff !important;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    text-decoration: none;
    width: fit-content;
    padding: 20px;
    margin-top: 30px;
}

.ser-btn:hover {
    background-color: #000000;
}

.service__cont__item h2 {
    color: #000000;
    font-size: 34px;
    text-align: start;
}

.service__cont__item img {
    height: 473px;
    width: auto;
    object-fit: cover;
}

.service__cont__item {
    position: relative;
    display: inline-block;
}

.service__cont__item img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.icon-anim {
    position: absolute;
    font-size: 54px;
    color: #5ea947;
    animation: floatIcon 3s ease-in-out infinite;
    opacity: 0.9;
}

/* Позиции */
.icon-top-left {
    top: -10px;
    left: -10px;
}

.icon-top-right {
    top: -10px;
    right: -10px;
}

.icon-bottom-left {
    bottom: -10px;
    left: -10px;
}

.icon-bottom-right {
    bottom: -10px;
    right: -10px;
}

/* Анимация "смещение и возврат" */
@keyframes floatIcon {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-5px, -5px);
    }
}

.booking-form {
    background: #0e1d20;
    padding: 25px;
    border-radius: 10px;
    width: 320px;
    color: #8fd944;
    font-family: Arial, sans-serif;
}

.booking-form h2 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #8fd944;
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-row input,
.form-row select {
    flex: 1;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

textarea {
    min-height: 80px;
    margin-bottom: 15px;
    resize: vertical;
}

button {
    background: #8fd944;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

button span {
    margin-left: 8px;
    font-size: 18px;
    transform: translateY(1px);
}

.sectio-item {
    padding: 50px 0;
}

.sectio-item .container {
    display: flex;
    gap: 30px;
}

.sectio-item__wrap {
    width: 66%;
    padding: 15px;
    border: 1px solid #d3d0d0;
    border-radius: 10px;

}

.sectio-item__wrap img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 30px;
}

.sectio-item__wrap h2 {
    font-size: 26px;
    color: #000;
    margin-bottom: 20px;
}

.sectio-item__wrap h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 20px;
}

.sectio-item__wrap p {
    font-size: 15px;
    color: #303030;
    margin-bottom: 20px;
}

.sectio-item__forma {
    width: 44%;
}

.sectio-item__wrap ol,
.sectio-item__wrap ul {
    padding-left: 20px;
}

.blog {
    padding: 50px 0;
}

.blog__items {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 850px;
    margin: 0 auto;
}

.blog__item img {
    width: 100%;
    height: 445px;
    display: block;
    object-fit: cover;
}

.blog__item:hover img {
    transform: scale(1.1);
}

.blog__item {
    overflow: hidden;
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-out;
}

.blog__item h2 {
    font-size: 28px;
}

.blog__item h2:hover {
    color: #5ce028;
}

.blog__item p {
    color: #646464;
    font-size: 16px;
    margin-bottom: 20px;
}

.blog__item a {
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: #646464;
}

.blog__item a span {
    color: #5ce028;
    display: inline-block;
    font-size: 24px;
    font-weight: 900;
}

.blog__item-content {
    padding: 32px;
    background-color: #fff;

}

.blog__item:hover a {
    font-weight: 700;
    color: #5ce028;
}

.cont__section {
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.cont__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.cont__form,
.cont__map {
    flex: 1 1 450px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cont__form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #111;
}

.cont__form form input,
.cont__form form select,
.cont__form form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.cont__form button {
    width: 100%;
    padding: 12px;
    background: #8fd944;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.cont__map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
}

.cont__info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.info__box {
    flex: 1 1 250px;
    background: #f8f8f8;
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.info__box i {
    font-size: 28px;
    color: #8fd944;
    margin-bottom: 10px;
}

.info__box h4 {
    font-size: 18px;
    margin: 0 0 8px;
}

.info__box p {
    margin: 0;
    color: #333;
    font-size: 15px;
}

.cont__map img {
    width: 100%;
}

.sectio-item.terms ul,
.sectio-item.terms ol {
    padding-left: 20px;
}

@media screen and (max-width:768px) {
    .about__items {
        display: flex;
        gap: 80px;
        flex-direction: column;
    }

    .about__wrapper {
        display: flex;
        margin: 50px 0;
        border-radius: 30px;
        overflow: hidden;
        flex-direction: column;
    }

    .why__choose-us .certifications {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        flex-direction: column;
    }

    .contact__content {
        display: flex;
        gap: 50px;
        flex-direction: column;
    }

    .footer__content {
        display: flex;
        justify-content: space-between;
        max-width: 1200px;
        padding: 10px;
        margin: 0 auto;
        gap: 20px;
        flex-wrap: wrap;
    }

    .about__img img.about__i {
        width: 270px;
        height: 270px;
        position: absolute;
        object-fit: cover;
        bottom: -50px;
        right: 50px;
        border-radius: 100%;
        border: 10px solid #333;
    }

    .hero-content {
        position: absolute;
        top: 0;
        width: 100%;
        left: 0;
        transform: translate(-0% , -0%);
        text-align: center;
        color: #fff;
        background: rgba(0, 0, 0, 0.5);
        padding: 20px;
        z-index: 1;
    }

    .hero {
        height: 100%;
    }
    .hero img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .swiper-slide {
        flex-shrink: 0;
        width: 100%;
        object-fit: cover;
        height: 100vh;
        position: relative;
        transition-property: transform;
        display: block;
    }
    .header__contact
    
     {
        display: flex
    ;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
    }
    .about__grids .container {
        display: grid
    ;
        gap: 30px;
        grid-template-columns: repeat(1, 1fr);
    }
    .service__cont__items {
        display: flex
    ;
        gap: 50px;
        row-gap: 50px;
        column-gap: 50px;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }
    .sectio-item .container {
        display: flex
    ;
        gap: 30px;
        flex-direction: column;
    }
    .sectio-item__wrap {
        width: 100%
    
    ;
        padding: 15px;
        border: 1px solid #d3d0d0;
        border-radius: 10px;
    }
    .sectio-item__forma {
        width: 100%;
    }
    .dropdown-content
    
     {
        display: block;
        position: relative;
        width: max-content;
        list-style: none;
        top: 0;
        z-index: 99999999999999;
        padding: 0px 0px;
        background: #fff;
        box-shadow: none;
        min-width: 160px;
        /* z-index: 1; */
    }
    .dropdown-content li {
        padding: 5px;
    }
    .cookie__banner {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background-color: #0e1d20;
        color: #fff;
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 9999;
        flex-wrap: wrap;
        gap: 10px;
      }
      
      .cookie__banner p {
        margin: 0;
        flex: 1;
        font-size: 14px;
      }
      
      .cookie__banner button {
        background-color: #8fd944;
        color: #000;
        border: none;
        padding: 10px 16px;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
      }
      .testimonial__item {
        background: #f9f9f9;
        padding: 20px ;
        border-radius: 5px;
        text-align: center;
    }
    .testimonials{
        padding: 50px 0px;
    }
    .projects-grid {
        display: grid
    ;
        gap: 0;
        grid-template-columns: repeat(3, 1fr);
    }
    .recent-projects {
        padding: 50px 0px;
        text-align: center;
    }
    .services, .why__choose-us, .testimonials, .recent-projects, .contact {
        padding: 50px 0px;
        text-align: center;
    }
}
