/* CONTACTS */
	#contacts-section {
        min-height: 100vh;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap;
        background-color: white;
        border-top: 1px solid var(--color-border);
    }
    #contacts-section .info {
        flex: 0 0 50%;
        width: 50%;
        height: 100vh;
        padding: var(--size-header-height);
        /* padding-bottom: 0; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: nowrap;
        position: relative;
    }
    #contacts-section .animation {
        flex: 0 0 50%;
        width: 50%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: nowrap;
        padding: var(--size-header-height);
        padding-top: calc(var(--size-header-height) * 2);
    }
    #contacts-section .animation > div {
        width: 80%;
        height: 80%;
    }

/* HIGHLIGHTS */
    #contacts-section .highlights {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: nowrap;
        font-size: 3.3vw;
        letter-spacing: 0;
        z-index: 10;
        line-height: 1.3;
        width: 100%;
    }
    #contacts-section .highlights .line {
        width: 100%;
        position: relative;
        text-align: left;
    }
    #contacts-section .highlights .subtitle {
        font-weight: 300;
        font-size: 0.65em;
    }
    #contacts-section .highlights span {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
        transition: all 0.25s ease-in-out 0s
    }
    #contacts-section .highlights p {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
        font-size: 0.3em;
        padding-top: 0.5em;
        transition: all 0.25s ease-in-out 0s
    }

    #contacts-section .highlights a {
        display: block;

    }
    .highlights a {
        font-size: 0.4em;
        color: var(--color-blue);
        font-weight: 600;
        margin-top: 1em;
    }
    .highlights a:hover{

        color: var(--color-gray);
    }


/* MOBILE LAYOUT */

    @media (max-width: 767px) and (hover: none) and (pointer: coarse),
    (max-width: 767px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 0) {
        #contacts-section {
            width: 100vw;
            max-width: 100vw;
            height: 100vh;
            overflow: hidden;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 0;
        }
        #contacts-section .info {
            flex: 0 0 60%;
            width: 100vw;
            height: 60%;
            padding: var(--size-header-height) 2rem calc(var(--size-header-height) + 2rem) 2rem;
            justify-content: flex-start;
            align-items: center;
            order: 2;
        }
        #contacts-section .animation {
            flex: 0 0 40%;
            width: 100vw;
            height: 40%;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            padding-top: calc(var(--size-header-height) + 2rem);
            order: 1;
        }
        #contacts-section .animation #contactus {
            width: 90%;
            height: 90%;
            margin-top: 2rem;
        }
        #contacts-section .texts {
            margin-bottom: auto;
            font-size: 7vw;
        }
        #contacts-section .highlights {
            justify-content: center;
            align-items: center;
            font-size: 8vw;
            letter-spacing: 0;
            z-index: 10;
            line-height: 1.5;
        }
        #contacts-section .highlights span,
        #contacts-section .highlights p{
            text-align: center;
            justify-content: center;
        }
        #contacts-section .highlights p{
            font-size: 1.4rem;
        } 
        #contacts-section .highlights a{
            font-size: 2rem;
        }        
    }