* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 80%;
    margin: 0 auto;
}

ul li {
    list-style: none;
}

.header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #000;
}

.header__logo {
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.header>h2 {
    color: #fff;
}

.header__list ul {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.header__list ul li a {
    font-size: 20px;
    color: white;
    text-decoration: none;
}

.header__list ul li a:hover {
    padding-bottom: 10px;
    border-bottom: 2px solid white;
}


.menu-position {
    position: relative;
}

.sandwich {
    border: 2px solid var(--blue);
    font-size: 30px;
    color: var(--blue);
    border: 1px solid;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: none;
}

.open-form-btn {
    padding: 15px;
    border-radius: 20px;
    font-size: 17px;
}

.aboutUs {
    text-align: center;
    margin: 50px;
}

.aboutUs__content h1 {
    font-size: 50px;
    text-shadow: 5px 5px 6px gray;
    padding-bottom: 20px;
}

.aboutUs__content .aboutUs__p {
    font-size: 30px;
    color: rgb(36, 31, 36);
}

.aboutUs__content .aboutUs__p:nth-child(3) {
    padding: 20px 0;
}


.ourServices {
    display: flex;
    column-gap: 20px;
    margin: 50px auto;
}

.ourServices__content {
    color: #fff;
    padding: 15px;
    width: 50%;
    background-color: #000000;
    border-radius: 25px;
    padding: 35px;

}

.heading {
    text-align: center;
    font-size: 25px;
    text-shadow: 5px 5px 6px black;
    padding-bottom: 20px;

}

.paragraph {
    font-size: 20px;
    line-height: 30px;
}

.ourServices__secondContent {
    padding: 35px;
    width: 50%;
    color: #fff;
    background-color: #000000;
    border-radius: 35px;
}

.ourServices__secondContent__h2 {
    text-align: center;
}

.list {
    display: flex;
    column-gap: 25px;
    align-items: center;
}

.list__content {
    color: #fff;
    padding: 16px 25px;
    border-radius: 25px;
    background-color: #000;
    padding: 16px 25px;
}

.list .list__content ul li {
    font-size: 13px;
    line-height: 30px;
    list-style: square;
}

.slider {
    position: relative;
    width: 80%;
    max-width: 600px;
    overflow: hidden;
    border-radius: 25px;
    margin: 50px auto;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
}

.slides img {
    width: 100%;
    height: auto;
}

.btn {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    transform: translateY(-50%);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.ourJobs {
    margin-top: 50px;
}

.ourLicenzia {
    margin: 50px 0;
    text-align: center;
}

.ourLicenzia>img {
    width: 100%;
}

.ourJobs .list {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    color: gray;
    list-style: square;
}

.ourJobs__img {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.ourJobs__img img {
    width: 250px;
    transition: transform 0.3s ease;
    border-radius: 15px;
    box-shadow: -5px -5px 6px black;
}

.ourJobs__img img:hover {
    transform: scale(1.1) translateY(-10px);
}

.popup-form {
    display: none;
}

.popUp_heading {
    color: white;
}


.close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    cursor: pointer;
}

.close-btn:hover {
    color: wheat;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 10px;
    font-size: 18px;
    color: #fff;
}

form input {
    margin-bottom: 10px;
    padding: 8px;
    border: 2px solid #ccc;
    border-radius: 8px;
}

form button {
    font-size: 20px;
    margin-top: 25px;
    padding: 10px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

form button:hover {
    background-color: #586d85;
    color: rgb(75, 61, 61);
}



.popup-form {
    display: flex;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.popup-content {
    background-color: rgba(57, 61, 61, 0.8);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    position: relative;
}


.map {
    text-align: center;
    margin: 50px 0;
}

.footer {
    background-color: #312e2e;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 25px;
    color: #fff;
}

.fopter__p {
    font-size: 18px;
    margin: auto;
}

.footer ul {
    list-style: none;
}

.footer__p {
    font-size: 18px;
}

.footer__p:nth-child(1) {
    margin-bottom: 15px;
}

.footer ul li a {
    font-size: 18px;
    text-decoration: none;
    color: white;
}

.footer ul li a:hover {
    border-bottom: 2px solid rgb(241, 222, 222);
}


@media only screen and (max-width: 1300px) {
    .header h2 {
        font-size: 25px;
    }

    .header__list ul li a {
        font-size: 16px;
    }

    .header .open-form-btn {
        font-size: 15px;
    }


    .ourServices {
        flex-wrap: wrap;
        row-gap: 25px;
        margin: 25px auto;

    }

    .ourServices__content {
        width: 100%;
    }

    .ourServices__secondContent {
        width: 100%;
    }

    .list {
        width: 100%;
        flex-wrap: wrap;
    }

    .list__content {
        margin: auto;
        width: 100%;
    }

    .ourJobs .list {
        font-size: 14px;
        text-align: center;
    }

    .ourJobs__img {
        flex-wrap: wrap;
    }

    .ourLicenzia img {
        width: 800px;
    }


}

@media only screen and (max-width: 1070px) {
    .sandwich {
        display: block;
        color: #fff;
    }

    header .header__list ul {
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        border: 1px solid;
        transform: scale(0);
        background-color: rgba(0, 0, 0, .7);
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }


    header .header__list.active ul {
        transform: scale(1);
        width: max-content;
    }


    .aboutUs {
        flex-direction: column;
        align-items: center;
    }

    .slider {
        border-radius: 0;
    }

    .slider img {
        margin-top: 15px;
    }

    .heading {
        font-size: 25px;
    }

    .paragraph {
        font-size: 15px;
        line-height: 20px;
    }

    .show-more-btn {
        margin-top: 20px;
    }

    .ourJobs .list {
        font-size: 12px;
        line-height: 15px;
        text-align: center;
    }

    .ourLicenzia img {
        width: 800px;
    }
}


@media only screen and (max-width: 970px) {


    .heading {
        font-size: 20px;
    }

    .aboutUs__content .aboutUs__p {
        font-size: 20px;
    }

    .paragraph {
        font-size: 16px;
    }

    .ourLicenzia img {
        width: 500px;
    }

    .footer__h2 {
        font-size: 16px;
    }

    .footer__p {
        font-size: 13px;

    }

    .footer__p:nth-child(1) {
        margin-bottom: 0;
    }

    .footer ul li a {
        font-size: 13px;
    }
}

@media only screen and (max-width: 600px) {
    .header__logo {
        display: none;
    }

    .header h2 {
        font-size: 18px;
    }

    .open-form-btn {
        padding: 10px;
    }

    .header .open-form-btn {
        font-size: 13px;
    }

    .header__logo {
        width: 50px;
        height: 50px;
    }

    .heading {
        font-size: 20px;
    }

    .aboutUs__content h1 {
        font-size: 35px;
    }

    .aboutUs__content .aboutUs__p {
        font-size: 13px;
    }

    .paragraph {
        font-size: 10px;
    }

    .ourLicenzia img {
        width: 350px;
    }

    .list .list__content ul li {
        font-size: 10px;
        line-height: 20px;
    }

    .footer__h2 {
        font-size: 10px;
    }

    .footer__p {
        font-size: 10px;
    }

    .footer ul li a {
        font-size: 10px;
    }
}