.contactSection
{
    width: 100%;
    height: auto;

    margin-top: 50px;
    padding-bottom: 100px;

    background-color: var(--brand);
}

.contactGradient
{
    position: relative;
    width: 100%;
    height: 30px;

    background: linear-gradient(0deg, 
    #DBDBC100 0%, 
    #DBDBC166 50%, 
    #DBDBC1cc 75%, 
    #DBDBC1 100%);

    z-index: 1;
}

.contactHeader
{
    width: 100%;

    color: #FFFFFF;

    text-align: center;
    font-size: 50px;

    margin-top: 20px;
    margin-bottom: 50px;

    font-family: 'Salsa', 'Noto Sans', 'sans-serif';
}

.contactOptions
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.contactOption
{
    width: 30%;
    padding: 20px;

    text-align: center;

    color: #FFFFFF;
}

.leftOption
{
    border-right: 2px solid #FFFFFF;
}

.contactTitle
{
    font-size: 40px;
}

.contactSubtitle
{
    margin-bottom: 40px;
}

.contactDetail
{
    display: block;
    width: max-content;
    margin: auto;
    padding: 6px 15px;

    border: 2px solid #FFFFFF;
    border-radius: 20px;

    color: #FFFFFF;
    background-color: #FFFFFF22;
    font-size: 20px;

    text-decoration: none;

    transition-duration: 0.2s;
}

.contactOption a:hover
{
    border: 2px solid var(--highlight);
    color: var(--highlight);
    background-color: #FFFFFF00;
    scale: 1.05;
}

.contactPhone
{
    display: none;
}

@media only screen and (max-width: 1350px) 
{
    .contactOptions
    {
        display: none;
    }
    .contactPhone
    {
        width: 100%;
        height: 100px;
        display: flex;
        flex-direction: column;
    }
}