/*

Table of Contents
---------------------------------------------------------------
1. Intro
2. Cols Section
3. Responsive 
---------------------------------------------------------------

*/

body{
    background-color: #e2dbd1;
}

header .main-logo{
    display: none;
}

/*------------------------------- 1. Intro --------------------------------*/
.contact-intro-section{
    padding-bottom: 68px;
    padding-top: 256px;
}

/*------------------------------- 2. Cols Section --------------------------------*/
.contact-cols-section {
    clear: both;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
    max-width: 1090px;
    padding: 0 0 186px;
}
.contact-person {
    margin: 0 50px;
    max-width: 305px;
}
.contact-person-image{
    border-radius: 15px;
    overflow: hidden;
}
.contact-person-name {
    font-size: 40px;
    letter-spacing: -0.05em;
    padding: 35px 0 58px;
}
.contact-person-name {
    font-size: 40px;
    letter-spacing: -0.05em;
    padding: 35px 0 58px;
}
.contact-person-description {
    border-bottom: 1px solid #A2AAAF;
    font-size: 15px;
    letter-spacing: -0.03em;
    line-height: 1.08;
    padding-bottom: 24px;
}
.contact-person-phone-wrapper, 
.contact-person-email-wrapper {
    border-bottom: 1px solid #A2AAAF;
    font-size: 15px;
    letter-spacing: -0.05em;
    overflow: hidden;
    padding: 14px 0px;
}
.contact-data-title{
    float: left;
    font-weight: 500;
}
.contact-data-value{
    float: right;
}

/*------------------------------- 3. Responsive --------------------------------*/

@media all and (max-width: 1280px){
    .contact-intro-section{
        padding-bottom: 30rem;
        padding-top: 250rem;
    }

    .contact-cols-section {
        padding: 0 50rem 150rem;
    }
    .contact-person {
        margin: 0 40rem;
        max-width: 300rem;
    }
    .contact-person-name {
        font-size: 34rem;
        padding: 35rem 0 50rem;
    }
    .contact-person-description {
        font-size: 15rem;
        padding-bottom: 24rem;
    }
    .contact-person-phone-wrapper, .contact-person-email-wrapper {
        font-size: 15rem;
        padding: 14rem 0;
    }
    .contact-person-image{
        border-radius: 15rem;
    }

}
@media all and (max-width: 640px) and (orientation: portrait){
    .mobile-menu-toggle{
        background-image: url(../img/mobile-menu-toggler-dark.svg);
    }
    .contact-cols-section{
        display: block;
    }
    .contact-person {
        margin: 0;
        max-width: none;
        padding-bottom: 106rem;
    }
    .contact-intro-section{
        padding-top: 150rem;
    }
    .contact-intro-text-wrap{
        padding-bottom: 65rem;
    }
    .contact-cols-section {
        padding: 0 63rem 86rem;
    }
    .contact-person-name {
        font-size: 40rem;
        padding: 35rem 0 57rem;
    }
    .contact-person-description {
        font-size: 14rem;
        letter-spacing: 0;
        line-height: 1.2;
        max-width: 94%;
    }
}
