* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

.site-header {
  width: 100%;
  height: 100vh;
  background: #0f8a9d;
  /*background: linear-gradient(57deg, #77c950 , #4ab324);  */
  background: linear-gradient(57deg, #8ac926, #77c950);
  clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

nav {
  width: 100%;
  height: 100px;
  /*background-color:  red;*/
  display: flex;
  color: white;
  font-size: 25px;
}

.logo {
  width: 50%;
  height: 100px;
}

.logo h1 {
  line-height: 100px;
  padding-left: 50px;
}

.menu {
  width: 50%;
  height: 100px;
}

.menu ul {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.menu ul li {
  list-style: none;
  font-size: 17px;
  font-weight: bold;

}

section {
  display: flex;
}

.leftside {
  width: 45%;
  height: auto;
  overflow: hidden;
  margin-top: 20px;
}

.leftside img {
  width: 600px;
  height: 500px;
}

.rightside {
  width: 55%;
  height: 300px;
  color: white;
  text-align: center;
  margin-top: 80px;
  padding: 40px;
}

.rightside h1 {
  text-align: center;
  color: #ffffff;
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
}

.rightside p {
  font-size: 1.1rem;
  padding: 30px 0;
}

/* new */
* {
  box-sizing: border-box;
}

.row {
  display: flex;
}

/* Create two equal columns that sits next to each other */
.column {
  flex: 50%;
  padding: 10px;
  height: 300px;
  /* Should be removed. Only for demonstration */
}

h2 {
  font-size: 30px;
  position: absolute;
  left: 118px;
  color: white;
  top: 150px;
}

p {
  font-size: 23px;
  position: leftside;
  left: 18px;
  style="font-family:Dubai;

  top: 150px;
}

/* the button  */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.buttons {
  margin: 0%;
  text-align: left;
}

.btn-hover {
  width: 200px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  margin: 20px;
  height: 55px;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 50px;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.btn-hover:hover {
  background-position: 100% 0;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.btn-hover:focus {
  outline: none;
}

.btn-hover.color-5 {
  background-image: linear-gradient(to right, #0ba360, #3cba92, #30dd8a, #2bb673);
  box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}

/* the button  */
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: black;
  text-align: center;
}
