#glassbalcony{
    margin-top: 4rem;
}
.section-selector:hover {
    box-shadow: 3px 3px 4px 2px #9d8dd936;
}

.selector-container {
    padding: 4rem;
    background-image: url("../images/camoda-bg.png");
    background-size: cover;
}

.popup-selector {
    cursor: pointer;
}

.slogan-container {
    color: #dfdfdf;
    text-align: center;
}

.page-header-gb {
    color: #dfdfdf;
    border-bottom: 1px solid transparent;
    font-size: 23px;
}

.page-header-gb:hover {
    border-bottom: 1px solid #FE5001;
}

.glass-balcony-header {
    color: #070155;
    border-bottom: 7px solid #FE5001;
    border-width: 50%;
    width: 50%;
    margin: auto;
}

.popup-header-text {
    text-align: center;
    color: #070155;
    border-bottom: 5px solid #FE5001;
}

.popup-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    margin-top: 20rem;
    margin-bottom: 2rem;
    border-radius: 10px;
}

.popup-technical-image {
    margin: auto;
    display: block;
    width: 600px;
}

.popup-modal {
    display: none;
    z-index: 99;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    animation-name: modal;
    animation-duration: 0.6s;
    -webkit-animation-name: modal;
    -webkit-animation-duration: 0.6s;
}

@keyframes modal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes modal {
    from {
        -webkit-opacity: 0;
    }

    to {
        -webkit-opacity: 1;
    }
}

.close-popup {
    transition: 0.3s ease;
    cursor: pointer;
    font-size: 45px;
    color: #bbbbbb;
    line-height: 30px;
    bottom: 30px;
}

.close-popup:hover {
    color: rgb(248, 105, 10);
}

@media screen and (max-width: 1056px) {
    .popup-technical-image {
        width: 400px;
    }
}

@media screen and (max-width: 576px) {
    .popup-technical-image {
        width: 300px;
    }

    .close-popup {
        font-size: 35px;
    }

    .popup-content {
        margin-top: 10rem;
    }
}