* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

header {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url('../images/homeImage.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.logo {
    margin-left: 30px;
}

nav {
    width: 100%;
    height: 15vh;
    color: white;
    background: rgba(0, 0, 0, 0.4456);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    position: fixed;
    margin: 0;
}

nav .menu {
    width: 40%;
    display: flex;
    justify-content: space-around;
}

nav .menu a {
    width: 25%;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.containerTwo {
    padding: 70px 70px 70px 70px;
}

.picture-card {
    box-shadow: 0 4px 12px 0 grey;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: white;
}

.picture-card:hover {
    -ms-transform: scale(1.05);
    /* IE 9 */
    -webkit-transform: scale(1.05);
    /* Safari 3-8 */
    transform: scale(1.05);
}

.text-box {
    padding: 10px;
}

.parent {
    margin-top: 180px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.div1 {
    grid-area: 1 / 1 / 2 / 2;
}

.div2 {
    grid-area: 1 / 2 / 2 / 3;
}

.div3 {
    grid-area: 1 / 3 / 2 / 4;
}

.div4 {
    grid-area: 2 / 3 / 3 / 4;
}

.div5 {
    grid-area: 2 / 2 / 3 / 3;
}

.div6 {
    grid-area: 2 / 1 / 3 / 2;
}

.div7 {
    grid-area: 3 / 1 / 4 / 2;
}

.div8 {
    grid-area: 3 / 2 / 4 / 3;
}

.div9 {
    grid-area: 3 / 3 / 4 / 4;
}

.div10 {
    grid-area: 4 / 1 / 5 / 2;
}

.div11 {
    grid-area: 4 / 2 / 5 / 3;
}

.div12 {
    grid-area: 4 / 3 / 5 / 4;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}


/* Modal Content */

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}


/* The Close Button */

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modalGridParent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.modalGridParentDiv1 {
    grid-area: 1 / 1 / 2 / 2;
}

.modalGridParentDiv2 {
    grid-area: 1 / 2 / 2 / 3;
}

.social {
    padding: 30px;
    display: flex;
    width: 24%;
    align-items: center;
    margin: auto;
    justify-content: space-around;
}

.social a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: 0 8px;
    color: inherit;
    opacity: 0.75;
}

.list-inline {
    padding: 30px;
    display: flex;
    width: 50%;
    margin: auto;
    justify-content: space-around;
}

.list-inline a {
    width: 10%;
    text-decoration: none;
    font-weight: bold;
    color: #4b4c4d;
}

.copyright {
    margin: auto;
    width: 40%;
    padding-bottom: 30px;
    text-align: center;
    font-weight: bold;
    color: #4b4c4d;
}

.contact {
    margin: auto;
    width: 40%;
    padding-bottom: 30px;
    text-align: center;
    font-weight: bold;
    color: #4b4c4d;
}

.address {
    margin: auto;
    width: 100%;
    padding-bottom: 30px;
    text-align: center;
    font-weight: bold;
    color: #4b4c4d;
}

.footer a:hover {
    -ms-transform: scale(1.5);
    /* IE 9 */
    -webkit-transform: scale(1.5);
    /* Safari 3-8 */
    transform: scale(1.5);
}

.menu a:hover {
    -ms-transform: scale(1.65);
    /* IE 9 */
    -webkit-transform: scale(1.65);
    /* Safari 3-8 */
    transform: scale(1.65);
}