.intro{
    display: flex;
    position: relative;
}

.intro img{
    width: calc(50% + 1px);
    height: auto;
    object-fit: cover;
    filter: brightness(.85)
}

.intro div{
    background: black;
    position: relative;
    color: white;
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 3.5% 5%;
    align-items: start;
    justify-content: center;
}

.intro div:before{
    content: "";
    position: absolute;
    border-style: solid;
    clip-path: polygon(0 100%,100% 0,100% 100%);
    bottom: 0;
    left: calc(-5rem + 1px);
    width: 5rem;
    height: 100%;
    background: black;
    border: black;
}

.intro div h1{
    color: white;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: "United Sans";
    margin-bottom: 20px;
}

.intro div p{
    color: white;
    font-family: acumin-pro;
    font-size: 18px;
    margin-top: 1em;
    width: 100%;
}

.intro .title a{
    background: #cfb991;
    color: #222;
    font-weight: 400;
    font-family: "acumin-pro-semi-condensed";
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    text-decoration: none;
    padding: 15px;
    margin-top: 15px;
    border: 2px solid #cfb991;
    transition: .2s ease;
}

.intro .title a:hover{
    background: black;
    border: 2px solid white;
    color: white;
}

.contact, .resources{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
}

.resources-wrapper{
    display: flex;
}
	

.resources .title{
    display: flex;
    flex-direction: column;
    width: 50%;
    border-right: 1px solid #cfb991;
    padding: 50px 5% 50px 0;
    justify-content: center;
}

.resources .links{
    width: 46%;
    margin: 1.5%;
    background: #cfb991;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: .2s ease;
    text-align: center;
    height: 80px;
    border: 2px solid black;
    color: black;
    font-size: 17px;
    font-weight: 500;
}

.resources .links a{
    width: 46%;
    margin: 1.5%;
    background: #cfb991;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    transition: .2s ease;
    text-align: center;
    height: 80px;
    border: 1px solid;
}

.resources .links a:hover{
    background: white;
}

.quickLinks{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
        background: #555960;
}

.quickLinks div{
    width: 17.5%;
    height: 100px;
    position: relative;
    transition: .2s ease;
    margin: 15px 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}

.quickLinks div a{
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75%;
    width: 100%;
    padding: 0em .5em;
    font-family: 'United Sans';
    font-size: 20px;
    font-weight: 400;
    background: white;
    border: 1px solid black;
    text-decoration: none;
}

.quickLinks a:hover{
    color: white;
    background-color: black;
}

.contact-wrapper{
    background-color: #ddd;
    display: flex;
    border-bottom: 1px solid white;
}

.contact-wrapper .contact h3, .contact-wrapper .contact p{
    color: black;
}

.contact-wrapper.first .contact{
    flex-direction: row-reverse;
}

.contact img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact div{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4em 0;
}

.contact div:first-of-type{
    padding-right: 5%;
    border-right: 1px solid #cfb991;
}

.contact div:last-of-type{
    padding-left: 5%;
}

.contact h3, .resources h3, .events h3{
    font-family: "United Sans";
    text-transform: inherit;
    margin-bottom: 1em;
    margin-top: 0;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.1;
}

.underscore{
    width: 30px !important;
    height: 4px;
    background-color: #8e6f3e;
    margin-bottom: 1em;
    padding: 0 !important;
}

.resources .underscore{
    background-color: #2e2e2e;
}

.maincontent p{
    font-weight: 500 !important;
    font-family: 'acumin-pro-semi-condensed' !important;
    font-size: 1rem !important;
}

.sidenav, .sidecontent, .breadcrumb{
    display: none;
}

.content .container, .maincontent, .container .row{
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow: hidden;
    float: none;
}



/* Styling for large sreens */	

@media screen and (min-width: 1300px){
    .intro img{
        max-height: 30em;
    }
    .intro div:before{
        border-width: 25em 6em 0em 0em;
    }
    .intro div h1{
        font-size: 3.5em;
    }
    .contact, .resources{
        max-width: 1200px;
    }
    .quickLinks div{
        width: 15%;
    }
}


/* Styling for tablets and small screens */
@media screen and (max-width: 991px){

    .contact img{
        height: auto;
    }
    .contact h3{
        margin-top: 0;
    }

}
	
	
/* Styling for mobile devices*/
@media screen and (max-width: 767px){

    .index-content{
        padding: 5% 10%;
    }
    .intro{
        flex-direction: column;
    }
    .intro img{
        height: 10em;
        width: 100%;
    }
    .intro div{
        padding: 1em 2em;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: left;
    }
    
    .intro .title a{
        margin-bottom: 20px;
        width: 100%;
    }
    
    .intro div p{
        text-align: left;
    }
    
    .intro div:before{
        content: "";
        position: absolute;
        top: -4.9em;
        clip-path: polygon(0 0, 0% 100%, 100% 100%);
        width: 100%;
        height: 5.75rem;
        left: 0;
        background: black;
        border: none;
    }
    .intro h1{
        font-size: 2em;
    }
    .intro p{
        text-align: center;
        margin-top: 1em;
    }
    
    .quickLinks{
        justify-content: center;
        align-items: center;
    }
    .quickLinks div{
        width: 90%;
        margin-bottom: 1em;
    }
    .contact{
        flex-direction: column-reverse !important;
        width: 80%;
    }
    .contact img{
        width: 100%;
        margin: 1em 0em;
    }
    .quickLinks{
        flex-direction: column;
    }
    
    .resources{
        flex-direction: column;
    }
    
    .resources .title{
        width: 80%;
        margin: auto;
        border-right: none;
        border: none;
        padding-bottom: 30px;
    }
    
    .resources .links{
        margin-left: 0;
        width: 80%;
        margin: auto;
        border: none;
        padding-top: 0;
    }
    
    .resources .links a{
        width: 100%;
    }
    
    .contact div{
        width: 100%;
        padding: 1em !important;
        border: none !important;
    }
    
    .contact:last-of-type{
        margin-top: 30px;
    }
    
    .contact img{
        margin-top: 0;
    }
    
    
}