@media only screen and (max-width: 1300px) {
    .logo-title {
        flex-direction: column;
        margin-top: 60px;
    }

    .normal-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .about-top-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 910px) {
    .about-grid {
        display: flex;
        flex-direction: column;
    }

    .about-content-item {
        margin-left: 0;
    }

    .about-image-item {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    footer {
        height: 130px;
    }

    .footer-name {
        left: 50%;
    }

    .footer-social {
        display: grid;
        left: 75%;
        height: 80%;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media only screen and (max-width: 800px) {
    .footer-name {
        left: 25%;
    }
    
    .footer-social {
        display: grid;
        left: 65%;
        height: 70%;
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-icon {
        font-size: 15px;
    }
}

@media only screen and (max-width: 660px) {
    .text-input {
        width: 300px;
    }

    .logo-container {
        display: flex;
        width: 150px;
        height: 150px;
        overflow: hidden;
    }

    .logo-text {
        font-size: 30px;
        margin-top: 20px;
    }

    .logo-title .title-description {
        font-size: 20px;
        width: 320px;
    }

    .contact-text {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 20px;
    }

    .contact-us {
        padding-bottom: 60px;
    }

    .about-us-grid-info {
        grid-template-columns: repeat(1, 1fr);
    }

    .normal-section {
        padding: 0 0px;
    }

    .showcase-title {
        font-size: 30px;
        padding: 30px;
    }

    .showcase-description {
        padding: 13px;
    }

    .showcase-glass-window {
        padding: 20px 20px 10px 20px;
    }

    .showcase-glass-window img {
        width: 60vw;
    }

    .about-title {
        padding: 0 15px;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-description {
        padding: 0 15px;
    }

    .about-content-item {
        width: unset;
        padding: 0 20px;
    }

    .contact-us {
        padding-bottom: 40px;
    }

    .our-services-image-container {
        padding: 20px 20px 0px 20px;
    }

    .options {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 80vw;
        height: 100vh;
        background-color: rgb(10, 14, 18);
        padding-bottom: 300px;
        padding-top: 20px;
        gap: 0;
        border-radius: 40px 0 0 0;
        z-index: 1000000;
        margin-left: 100vw;
        transition: 0.3s all;
    }

    .option {
        height: 50px;
        padding: 30px;
        margin: 5px 20px;
        background-color: rgba(25, 36, 46, 0.1);
        border-radius: 10px;
    }

    .close-menu {
        display: unset;
        margin-left: auto;
        z-index: 100;
        color: white;
        font-size: 30px;
        padding: 10px 30px;
    }

    .options-open {
        margin-left: 20vw;
        cursor: pointer;
    }

    .open-menu {
        display: unset;
        margin-left: auto;
        cursor: pointer;
    }
}