.contact-container{
 
}

.contact-top{
    display: flex;
    border-bottom: 1px solid rgba(248, 242, 232, 0.17);
    padding-bottom: 34px;
    margin-bottom: 3px;
}

.contact-header h1{
    margin-right: 44px;
    margin-bottom: 0px;
    font-family: 'Six Caps', sans-serif;
    color: #e032d1;
    line-height: 98%;
    font-weight: 400;
    text-transform: uppercase;
}

.contact-header-info{
    margin-top: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

strong {
    color: #f8f2e8;
    font-weight: 700;
    text-align: center;
}

.contact-mid{
    border-top: 1px solid rgba(248, 242, 232, 0.17);
    padding-top: 44px;
    margin-bottom: 44px;
    display: flex;
}

.contact-left{
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-top: 7px;
    padding-bottom: 7px;
}

.contact-info{
    margin-bottom: 10px;
    color: #e032d1;
    font-size: 14px;
    line-height: 120%;
    font-weight: 500;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.contact-heading{
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 120%;
    font-size: 20px;
    font-weight: 500;
    color: #f8f2e8;
}

.contact-heading a{
    text-decoration: none;
    color: #f8f2e8;
}

.contact-right{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    border-left: 1px solid rgba(248, 242, 232, 0.17);
    padding-left: 44px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.contact-map{
    width: 100%;
    height: 600px;
    border-radius: 16px;
}

.contact-map iframe{
    width: 100%;
    height: 100%;
    border-radius: 16px;
}




@media screen and (min-width : 320px) {
    .contact-top{
        flex-direction: column;
        gap: 30px;
    }

    .contact-header{
        width: 100%;
    }

    .contact-header h1{
        font-size: 20vw;
    }

    .contact-header-info{
        width: 100%;
        padding-top: 30px;
        padding-left: 0px;
        border-top: 1px solid rgba(248, 242, 232, 0.17);
        border-left-style: none;
        justify-content: flex-start;
    }

    .contact-mid{
        flex-direction: column;
        gap: 20px;
    }

    .contact-left{
        width: 100%;
    }

    .contact-right{
        width: 100%;
        border-top: 1px solid rgba(248, 242, 232, 0.17);
        border-left-style: none;
        padding-top: 30px;
        padding-left: 0px;
    }
}

@media screen and (min-width : 768px) {
    .contact-top{
        flex-direction: row;
        gap: 0;
    }

    .contact-header{
        width: 50%;
    }

    .contact-header h1{
        font-size: 15vw;
    }

    .contact-header-info{
        border-top: none;
        border-left: 1px solid rgba(248, 242, 232, 0.17);
        padding-left: 44px;
        padding-top: 0;
        width: 50%;
    }

    .contact-mid{
        flex-direction: row;
        gap: 0;
    }

    .contact-left{
        width: 50%;
    }

    .contact-right{
        border-top: none;
        border-left: 1px solid rgba(248, 242, 232, 0.17);
        padding-top: 7px;
        padding-left: 30px;
        width: 50%;
    }
}

@media screen and (min-width: 1024px) {
    .contact-header h1{
        font-size: 10vw;
    }
}

