
#mainContent {
    background-image: url("Sliced Images/Header/header-bg-desktop.svg");
	background-attachment: scroll;
	background-repeat:repeat-x;
	background-position: center top;
    overflow: hidden;
    padding-bottom: 4em;
    margin-bottom: 4em;
    border-bottom: 3px solid var(--global-text-light_green);
}

#contact--head {
    text-align: center;
    margin-top: 3em;
    max-width: 1000px;
    margin: auto;
    padding: 25px;
}

#contact--grid {
    display: grid;
    grid-template-columns: 55% 45%;
    max-width: min(1111px, 50vw);
    margin: auto;
    grid-gap: 2em;
    margin-top: 10em;
}

#contact--grid > div > a {
    display: block;
    width: max-content;
    margin: 1em 0;
}

#contact--grid > div > p {
    margin: 2px 0;
}

#contact--grid > div > h3 {
    margin-top: 30px;
}

#contact--grid > div:nth-child(1) {
    border-right: 3px solid var(--global-text-light_green);
    
}

.footer--accordion_content {
    border-bottom: none;
}

@media only screen and (max-width: 1367px)
{
    #contact--grid {
        max-width: 70vw;
    }
}

@media only screen and (max-width: 768px) {
    #contact--head {
        text-align: left;
        margin-left: 1em;
        margin-top: 7%;
        padding: 0px;
    }
    
    #contact--grid {
        max-width: 90vw;
    }
}

@media only screen and (max-width: 700px) {
    #contact--grid {
      grid-template-columns: auto;
      width: 70vw;
      
    }
    
    #contact--grid > div:nth-child(1) {
        border-bottom: 3px solid var(--global-text-light_green);
        border-right: none;
    }

    
    .footer--accordion_header {
      display: none;
    }
    
    .footer--header, .footer--accordion_content {
      display: block;
    }
    
    .footer--accordion_content.active {
      display: grid;
    }
}


@media only screen and (max-width: 398px) {
    #mainContent {
        background-image: url("Sliced Images/Header/header-bg-mobile.svg");
        
    }
}