* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: all 300ms ease;
  scroll-behavior: smooth;
}
.content {
  background: url(images/bodybackground.png);
  min-height: 100vh;
  background-size: cover;
  background-attachment: fixed;
}
.menu {
  width: 100%;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px 3px;
  position: fixed;
  z-index: 2;
}
.menu-content {
  max-width: 940px;
  margin: auto;
  padding: 20px 0;
  display: flex;
}
.menu-content .logo {
  max-width: 100%;
}
.menu-content ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-content ul li {
  list-style: none;
  text-transform: uppercase;
  color: #4a6170;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 900;
  padding: 0 25px;
}

.menu-content ul li a {
  color: #4a6170;
  text-decoration: none;
}
.menu-content ul li a:hover {
  color: #2da94b;
  cursor: pointer;
}
.banner {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-image: url(./images/banner.png);
  background-size: cover;
  position: relative;
  padding: 0 20px;
}
.banner img {
  width: calc(100% - 40px);
  position: absolute;
  bottom: 20px;
}
.secondArea {
  background-color: #2c3e50;
  padding: 100px 0;

  color: white;
  font-size: 15px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.title {
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
  color: #ffffff;
}
.line {
  width: 20%;
  height: 2px;
  background-color: #1abc9c;
  margin: auto;
}
.secondArea .information {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.secondArea .leftInfo,
.secondArea .rightInfo {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 10px;
}
.secondArea .leftInfo {
  display: flex;
  align-items: flex-end;
}
.secondArea .leftInfo .LIone,
.secondArea .rightInfo .RIone {
  background: url(images/tickicon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 30px;
  background-position: 0px 0px;
  padding-left: 40px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.secondArea .leftInfo .LIone {
  background-position: 100% 0px;
  padding-right: 40px;
}
.thirtyArea {
  width: 100%;
  background-color: #ffffff;
}
.thirtyArea .thirtyContent {
  display: flex;
  justify-content: center;
  align-items: center;
}
.thirtyArea .thirtyContent .images {
  max-width: 40%;
  padding: 20px 10px;
}
.thirtyArea .thirtyContent .images img {
  max-width: 100%;
}
.thirtyArea .thirtyContent .text {
  max-width: 40%;
  height: auto;
  padding: 10px 20px;
  color: #8d969f;
}
.contact {
  width: 100%;
  background-color: #2c3e50;
  padding: 50px 0;
}
.contact .contact-content ul {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.contact .contact-content ul li {
  list-style: none;
  padding: 10px 30px;
  font-size: 15px;
  color: #ffffff;
  display: flex;
  align-items: center;
}
.contact .contact-content ul li i {
  margin-right: 15px;
  font-size: 28px;
  float: left;
}
.contact .contact-content ul li p {
  float: right;
}
@media (max-width: 767px) {
  .menu ul {
    display: none;
  }
  .menu .menu-content {
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
  }
  .banner {
    min-height: 250px;
    padding: 0;
  }
  .banner img {
    width: 100%;
    position: absolute;
    bottom: 10px;
  }
  .secondArea .information {
    flex-direction: column;
  }
  .secondArea .information .leftInfo {
    align-items: flex-start;
  }
  .secondArea .information .leftInfo,
  .secondArea .information .rightInfo {
    width: 100%;
  }
  .secondArea .information .leftInfo .LIone {
    background-position: 0px 0px;
    padding-left: 40px;
  }
  .thirtyArea .thirtyContent {
    flex-direction: column;
    padding: 20px 0;
  }
  .thirtyArea .thirtyContent .images,
  .thirtyArea .thirtyContent .text {
    max-width: 100%;
  }
  .contact .contact-content ul {
    flex-direction: column;
    align-items: flex-start;
  }
}
