* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

/* navigation bar */
.nav {
    width: 100%;
   height: 20vh;
    background: transparent;
}

.navrap {
    width: 100%;
    margin: auto;
    height: auto;
}

.logo {
    margin-top: 1%;
    position: static;
    margin-left: 40%;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    color: black;
    font-size: 38px;
}

.menu {
    margin-top: 3%;
    float: left;
}

.menu ul {
    padding-left: 70px;
}

.menu ul li {
    display: inline;
}

.menu ul li a {
    color: black;
    text-decoration: none;
    padding: 15px;
    font-size: 14px;
    font-weight:bold;
    font-family: sans-serif;
}

.menu ul li a:hover {
    background-color: white;
    color: black;
    border-bottom: 2px solid black;
}


.first{
    margin-top: 0%;
    background-color: transparent;
    height: 48vh;
    position: relative;
    background-color: white;
}

.first img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.first-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.first-text {
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.first-text h1 {
    color: white;
    font-size: 28px;
    font-family: sans-serif;
    font-weight: bolder;
    margin-bottom: 20px;
}


.row {
    text-align: center;
    margin-top: 3%;
    display: flex;
  }
  
  .column {
    flex: 50%;
    font-size: 18px;
    font-weight: lighter;
  }

  .row1{
    text-align: center;
    margin-top: 3%;
    display: flex;
  }
  
  .column1{
    flex: 50%;
    font-size: 18px;
    font-weight: lighter;
  }

  .row2{
    text-align: center;
    margin-top: 3%;
    display: flex;
  }
  
  .column2{
    flex: 50%;
    font-size: 18px;
    font-weight: lighter;
  }




/* footer */
.foot{
    margin-top: 3%;
    width: 100%;
    height: 70vh;
    background: rgb(33, 33, 33);
    border-top: 5px solid rgb(33, 33, 33);
}
.footrap{
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    grid-column-gap: 15px;
    padding-top: 50px;
}
.final ul{
    margin-top: 15px;
}
.final ul p{
    font-weight: bold;
    color: rgb(111, 111, 111);
    font-size: 16px;
}
.final ul a{
    display: block;
    font-size: 16px;
    margin-top: 10px;
    color: white;
}