body {
    margin: 0;
    padding: 0;
}

.otherBody{
    background-color: black;
    color: white;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-areas: 'header header header'
        'main main aside'
        'footer footer footer';
    grid-template-rows: 80px 1fr 80px;
    grid-template-columns: 1fr 1fr 1fr;
}

.container h1 {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.container h3 {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.backImg {
    margin: 0;
    background-image: url("Images/sunset.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    background-blend-mode: lighten;
}

.aboutText {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.servicefooter{
    margin-top:72px;
}

.contactFooter{
    margin-top: 176px;
}

header {
    grid-area: header;
    background-color: #b57f50;
    display: grid;
}

aside {
    margin-left: 0px;
    grid-area: aside;
    display: grid;
}

main {
    grid-area: main;
    width: 100%;
    margin: 0px;
    display: grid;
}


footer {
    grid-area: footer;
    background-color: #b57f50;
    display: grid;
}

nav {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

nav img {
    height: 70px;
}

nav>a {
    font-size: 20px;
    color: Black;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
}


nav>a:hover {
    text-decoration: underline;
}

.parralax {
    background-image: url('Images/parralxImg.jpg');

    /* Full height */
    min-height: 500px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parralax2 {
    background-image: url('Images/parral2.jpg');

    /* Full height */
    min-height: 500px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parralax3 {
    background-image: url('Images/parral3.jpg');

    /* Full height */
    min-height: 500px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parralax4 {
    background-image: url('Images/parral4.jpg');

    /* Full height */
    min-height: 500px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (max-device-width: 1366px) {
    .parallax {
        background-attachment: scroll;
    }
}

.parallEnable {
    height: 200px;
    background-color: black;
    font-size: 36px;
    font-family: 'Open Sans', sans-serif;
    color: white;
    text-align: center;
}


@media screen and (max-width: 860px) {
    .container {

        display: grid;
        grid-template-areas: 'header header header'
            'aside aside aside'
            'main main main'
            'footer footer footer';
        grid-template-rows: 80px 1fr 4fr 80px;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 8px;
    }

    aside {
        margin: 0;
        grid-area: aside;
        display: grid;
    }
}

.hover {
    display: inline-block;
    position: relative;

}

.hover-:after {
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 1s ease-out;
}

.hover:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


.bgImage img{
    background-image: url("Images/finding_us.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.serivecTitle{
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.containerC{
    font-family: 'Open Sans', sans-serif;
    color: #b57f50;
    border-radius: 5px;
    background-color: antiquewhite;
    padding-left: 20px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 20px;
    max-width: 40%;
    float:right;
    margin-right: 50px;
}

h3{
    text-align: center;
    padding: 20px;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
}

.map{
    margin-top: 80px;
    margin-left: 80px;
}

input[type=text], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=email], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=password], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
  
  input[type=submit] {
    background-color: #b57f50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
  
  input[type=submit]:hover {
    background-color: #ce803b;
}

/*  */

.row>.column {
    margin-left: 60px;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;

}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
    float: left;
    max-width: 20%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
}

/* The Close Button */
.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Caption text */
.caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

img.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.galleryTitle {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.loginBG{
    margin: 0;
    background-image: url('Images/loginImg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;

}

.adminnav {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

.adminnav img {
    height: 70px;
}

.adminnav>a {
    font-size: 20px;
    color: Black;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
}

.adminnav h1{
    font-family: 'Open Sans', sans-serif;
}


.adminnav>a:hover {
    text-decoration: underline;
}

.containerL{
    font-family: 'Open Sans', sans-serif;
    color: #b57f50;
    border-radius: 5px;
    background-color: antiquewhite;
    padding-left: 20px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 20px;
    max-width: 40%;
    text-align: center;
    margin-left: 28%;
    margin-top: 10%;
}

h1{
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.containAHome{
    margin-top: 10%;
    display:grid;
    height: 20vh;
    grid-template-areas: 'mainArea1 mainArea2'
                        'mainArea1 mainArea2';
}

.mainArea1{
    grid-area: mainArea1;
    background-color:rgb(204, 184, 96);
    text-align: center;
    border-radius: 10px;
    max-width: 15%;
    max-height: 60%;
    font-size: 30px;
    margin-left: 40%;
    padding:10px;
    text-decoration: none;
}


.mainArea2{
    grid-area: mainArea2;
    background-color:rgb(192, 170, 212);
    text-align: center;
    border-radius: 10px;
    max-width: 15%;
    max-height: 60%;
    padding:10px;
    font-size: 30px;
    margin-left: 40%;
    text-decoration: none;
}

#myTable {
    border: 1px solid black;
    width: 80%;
}

th {
    text-align: left;
}

.adminSearchTitle{
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    margin-top:5%;
    margin-bottom: 5%;
}

.tableWidth{
    max-width: 90%;
}

.adminTitle{
    margin-top: 5%;
    margin-bottom: 5%;
}

.moreInfo p{
    font-family: 'Open Sans', sans-serif;
    max-width: 50%;
    margin-left: 25%;
}


.footerP{
    font-family: 'Open Sans', sans-serif;
    margin-left: 2%;
    margin-top: 1.5%;
    font-size: 20px;
    
}
.footerImg img{
    width: 2%;
    float: right;
    margin-left:5px;
}

.footerImg{
    margin-top:-3%;
    margin-left:-3%;
}

.button{
    text-decoration: none;
}