body  {
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: url("Images/plant.jpg");
}

h1,h2,h3,h4,h5,h6,p {
    font-family:'Arial';
    color:  #ffffff;;
}

h1 {
    text-align: center;
    font-size: 50px;
    margin: 0;
}

h2 {
    font-size: 20px;
    text-align: center;
    margin: 0;
}

h3 {
    text-align: center;
}

.container {
    margin: auto;
    max-width: 1024px;
}

header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background-color: #FFFFFF;
}

.logo {
    width: 500px;
}

nav {
    width: 100%;
    padding: 10px;
    text-align: center;
}

nav ul {
    height: 100%;
    padding: 0;
    margin: 5px;
    display: flex;
    list-style: none;
    justify-content: center;
}

nav ul li{
    display: block;
    padding: 0 10px;
    position: relative; 
}

nav ul li:not(:first-child)::after {
    left: 0; 
    bottom: 0; 
    content:""; 
    width: 1.5px;
    height: 90%; 
    display: block;
    position: absolute; 
    background-color: #604e82;
}

nav ul li a {
    height: 100%;
    color: #604e82;
    font-weight: 800;
    text-decoration: none;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

main {
    padding: 20px;
    background-color:  #4b2e819c;
}

.first-container {
    padding: 20px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.664);
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.856)
}

.break-image {
    width: 100%;
    margin-top: 100px;
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.678);

}

.breakimg {
    width: 100%;
    height: 700px;
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(Images/pib2.jpeg);
}

.about-container {
    margin-top: 100px;
    display: grid;
    grid-row-gap: 50px;
    grid-column-gap: 30px;
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    grid-template-columns: repeat(3,1fr);
}

.info1,
.info2,
.info3 {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.76);
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.678);
}

.info1 img,
.info2 img,
.info3 img {
    width: 100%;
    display: block;
}

.info-inner {
    padding: 10px;
    text-align: left;
}


h4 {
    font-size: 30px;
    color: #ffffff;
    margin-top: 20px;
    font-family: arial;
}

.about-container li {
    color: #ffffff;
    margin-top: 15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 30px;
}

.about-container h4 {
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;

}

footer {
    width: 100%;
    background-color: white;    
    height: auto
}

footer p {
    color: black;
    padding: 2%;
    padding-top: -20px;
    text-align: center;
}

*{
    box-sizing: border-box;
}

.footimg {
    box-sizing: border-box;
    float: left;
    width: 25%;
    padding: 5%;
    height: 100%;
}

.footinfo::after {
    content: "";
    display: table;
    clear: both;
}


#map {
    height: 400px;
    /* The height is 400 pixels */
    width: 400px;
    /* The width is the width of the web page */
  }

@media only screen and (max-width: 1200px) {
    .about-container {
        grid-template-columns: repeat(2,1fr);
    }
}

/* Mobile */
@media only screen and (max-width: 800px) {
    header {
        flex-direction: column;
    }

    .logo {
        width: 100%;
    }

    .about-container {
        grid-template-columns: repeat(1,1fr);
    }
}