@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: "Quicksand", sans-serif;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;

}

.nostra__head {
    position: sticky;
    top: 0;
    z-index: 100;
}

.offer {
    background-color: rgb(41, 41, 59);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: x-large;
    font-weight: 500;
    color: white;
}

.menu_icon {
    display: none;
}

.offer-content {
    padding: 5px;
    margin-right: 40px;
}

.offer_20 {
    font-weight: 900;
}

.offer__close {
    cursor: pointer;
    font-weight: 600;
}

.nav__bar {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 5px 5px 3px 3px rgba(155, 90, 155, 0.37);
}

.nav__bar h1 {
    margin-left: 10px;
    font-weight: 900;
    font-size: x-large;
    cursor: pointer;
}


.nav__title {
    display: flex;
    gap: 20px;
    padding-right: 10px;
    list-style-type: none;
    font-weight: 700;
}

.nav__title li:hover {
    text-decoration: underline;
    text-underline-offset: 10px;
    cursor: pointer;

}

.header__section {
    width: 100%;
    height: 400px;
    display: flex;
}

.header__section-img1 {
    width: 60%;
    object-fit: cover;
}

.header__section-img2 {
    width: 40%;
    object-fit: cover;
}

.header__section-main {
    position: relative;
}

.overlay {
    width: 100%;
    height: 400px;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.61);
    position: absolute;
    bottom: 0%;

}

.header__section-content {
    position: absolute;
    bottom: 35%;
    left: 27%;
    z-index: 2;
    color: white;
    text-align: center;
}

.header__section-content h1 {
    font-size: 3rem;
    font-weight: 900;
}

.header__section-content p {
    font-size: 1.5em;
    margin-top: 10px;
    margin-bottom: 10px;
}

.header__btn {
    padding: 10px;
    text-align: center;
    font-weight: 700;
    font-size: small;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.title-close {
    color: rgb(0, 0, 0);
    text-align: right;
    cursor: pointer;
    display: none;

}

.nav__titles {
    display: none;
}

@media screen and (max-width:600px) {
    .nostra__head {
        height: fit-content;
    }

    .offer {
        font-size: medium;
        font-weight: 400;
    }

    .offer-content {
        padding: 7px;
    }

    .offer_20 {
        font-weight: 700;
    }

    .offer__close {
        cursor: pointer;
        font-weight: 600;
        font-size: large;
        padding-right: 10px;
    }

    .nav__title {
        display: none;
    }

    .menu_icon {
        display: flex;
        margin-right: 10px;
        cursor: pointer;
    }


    .header__section {
        height: 200px;
    }

    .overlay {
        height: 200px;
    }

    .header__section-content {
        position: absolute;
        bottom: 18%;
        left: 4%;
    }

    .header__section-content h1 {
        font-size: 22px;
        font-weight: 600;
    }

    .header__section-content p {
        font-size: 15px;
    }

    .header__btn {
        padding: 5px;
        font-weight: 500;
        font-size: small;
        margin-top: 0;
    }

    .nav__titles {
        background-color: rgba(67, 63, 105, 0.733);
        height: fit-content;
        width: 50%;
        position: fixed;
        z-index: 101;
        right: -50%;
        top: 7%;
        padding: 10px;
        color: white;
        transition: 1000ms;
        display: block;
    }

    .title-close {
        color: rgb(0, 0, 0);
        text-align: right;
        cursor: pointer;
        display: block;

    }

    .nav__titles2 {
        display: flex;
        justify-content: right;
    }

    .nav__titles li {
        padding: 10px;
    }
}

/* --------------------------------------- */

input[type=text],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: #6261c4;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #5d6ecc;
}

.container {
    border-radius: 5px;
    background-color: #afadad;
    padding: 20px;
}
.contact-main{
    display: flex;
    flex-direction: column;
    align-items: center;

}
.contact__title{
    font-size: xx-large;
    margin: 20px;
}
/* --------------------------------------- */
.footer-container {
    background-color: rgb(41, 41, 59);
    color: white;
    text-align: center;
    height: 150px;

}

.social-icons {
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-content {
    margin-top: 20px;
    margin-bottom: 20px;
}

.social-icons a {

    color: white;
    font-size: 1.5rem;
    padding: 10px;

}

.footer-copyright {
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width:600px) {
    .footer-container {
        height: 200px;

    }
}