.ubuntu-light {
  font-family: "Ubuntu", serif;
  font-weight: 300;
  font-style: normal;
}

.ubuntu-regular {
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: normal;
}

.ubuntu-medium {
  font-family: "Ubuntu", serif;
  font-weight: 500;
  font-style: normal;
}

.ubuntu-bold {
  font-family: "Ubuntu", serif;
  font-weight: 700;
  font-style: normal;
}

.ubuntu-light-italic {
  font-family: "Ubuntu", serif;
  font-weight: 300;
  font-style: italic;
}

.ubuntu-regular-italic {
  font-family: "Ubuntu", serif;
  font-weight: 400;
  font-style: italic;
}

.ubuntu-medium-italic {
  font-family: "Ubuntu", serif;
  font-weight: 500;
  font-style: italic;
}

.ubuntu-bold-italic {
  font-family: "Ubuntu", serif;
  font-weight: 700;
  font-style: italic;
}


body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
  background-color: white;
  color: black;
}

.dark-mode {
  background-color: black;
  color: white;
}

.topnav {
  overflow: hidden;
}

.topnav a {
  float: right;
  font-size: 1.2rem;
  color: white;
  text-align: center;
  padding: 29px 16px;
  text-decoration: none;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: right;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 1.2rem;
  border: none;
  outline: none;
  color: white;
  padding: 29px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  font-weight: bold;
}

.logobtn{
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.dropbtn {
  font-size: 1.2rem;
  border: none;
  outline: none;
  color: white;
  padding: 29px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  font-weight: bold;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #0B1A1F;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.dropdown-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #076241;
}

.topnav a:hover, .dropdown:hover .dropbtn:hover {
  background-color: #076241;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.navbar_container {
  justify-content: space-between;
  z-index: 999;
  font-weight: bold;
  background-color: #0B1A1F;
}

.header {
  position: relative;
  text-align: center;
  color: white;
  height: 413px;
  z-index: 0;
}

.header_text {
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  transform: translate(-50%, -50%);
}

.header_text h1 {
  font-size: 5rem;
  color: white;
  padding-bottom: 0;
  margin-bottom: 0;
}

.header_text h2 {
  font-size: 3rem;
  padding-top: 0;
  color: white;
  margin-top: 0;
  font-weight: 500;
}

.line {
  height: 5px;
  background-color: #00AC62;
  padding-bottom: 0;
}

.testimonial-text {
  padding-top: 20px;
  text-align: center;
  background-color: rgba(117, 117, 117, 0.11);
}

.testimonial-text h1 {
  margin-top: 0;
  font-size: 2.5rem;
}

.testimonial-text h2 {
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 0;
}

.container {
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(117, 117, 117, 0.11);
}

.testimonial {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
}

.testimonial .image {
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  height: 25%;
  width: 25%;
}

.slide p {
  text-align: center;
  padding: 0 160px;
  font-size: 14px;
  font-weight: 400;
  color: inherit;
}

.slide .quote-icon {
  font-size: 30px;
  color: #00AC62;
}

.slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.details .name {
  font-size: 14px;
  font-weight: 600;
}

.details .job {
  font-size: 12px;
  font-weight: 400;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  margin-left: 20%;
  margin-right: 20%;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 50%;
  max-width: 50%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

* {
  box-sizing: border-box;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1000px) {
  
  .responsive-iframe {
    height: 100%;
    width: 100%;
  }
}

iframe {
  aspect-ratio: 16/9;
  height: 50%;
  width: 50%;
  display: block;
  margin: 0 auto;
}

/* swiper button css */
.nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.nav-btn::after,
.nav-btn::before {
  font-size: 20px;
  color: #00AC62;
}

.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
  background-color: #00AC62;
}

.navbar .icon {
  display: none;
}

@media screen and (max-width: 1404px) {
  .slide p {
    padding: 0 20px;
  }

  .header{
    background-image: url(images/header_home.png);
  }

  .bodyimg {
    display: none;
  }

  .bodytext h1 {
    font-size: 2.5rem;
    margin-top: 0;
    padding-top: 1vw;
    margin-bottom: 1vw;
  }
  
  .bodytext p {
    font-size: 2vh;
  }
  
  .bodytext {
    text-align: center;
    padding-left: 25px;
    padding-right: 25px;
  }

  .body2text h1 {
    font-size: 2.5rem;
    margin-top: 0;
    padding-top: 1vw;
    margin-bottom: 1vw;
  }
  
  .body2text p {
    font-size: 2vh;
  }
  
  .body2text {
    text-align: center;
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (max-width: 900px) {
  .topnav a, .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav {
  background-color: #0B1A1F;
}
}

@media screen and (max-width: 900px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

@media screen and (min-width: 1405px) {
  .navbar_container {
    background-image: linear-gradient(rgba(255, 0, 0, 0), #0b1a1f79 100%), linear-gradient(125deg, #076241 283px, #00AC62 283px 288px, #0B1A1F 285px);
  }
  .header{
    background-image: linear-gradient(125deg, #076241 235px, #00AC62 235px 240px, #0b1a1f00 240px), linear-gradient(305deg, #076241 200px, #00AC62 200px 205px, #ffffff00 205px), url(images/header_home.png);
  }

  .body1 {
    height: 400px;
    background-image: linear-gradient(305deg, #076241 430px, #00AC62 430px 435px, #ffffff00 435px);
    overflow: hidden;
  }
  
  .body2 {
    height: 400px;
    background-image: linear-gradient(235deg, #076241 430px, #00AC62 430px 435px, #ffffff00 435px);
    overflow: hidden;
  }
  
  .body3 {
    height: 400px;
    background-image: linear-gradient(235deg, #076241 200px, #00AC62 200px 205px, #ffffff00 205px);
    overflow: hidden;
  }

  .bodyimg {
    display: flex;
    float: right;
    align-items: center;
    height: 400px;
    left: 50%;
  }
  
  .bodyimg img {
    padding-right: 25px;
  }

  .bodytext h1 {
    font-size: 2.5rem;
    margin-top: 0;
    padding-top: 1vw;
    margin-bottom: 1vw;
  }
  
  .bodytext p {
    font-size: 1.6vh;
  }
  
  .bodytext {
    position: relative;
    padding-left: 25px;
    padding-right: 550px;
  }

  .body2text h1 {
    font-size: 2.5rem;
    margin-top: 0;
    padding-top: 1vw;
    margin-bottom: 1vw;
    text-align: center;
  }
  
  .body2text p {
    font-size: 1.6vh;
    text-align: center;
  }
  
  .body2text {
    position: relative;
    padding-left: 25px;
    padding-right: 25px;
  }
}

footer {
  margin-top: 10px;
  padding: 1%;
  text-align: center;
  background-image: linear-gradient(#00AC62 5px, #0B1A1F 5px);
  font-size: 100%;
  color: white;
}