 @import url('https://fonts.cdnfonts.com/css/ubuntu');
/* ============ BASE ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main_header {
  width: 100%;
  padding: 15px 0;
  background-color: #FCF8F4;
  border-bottom: 1px solid #eee;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 55px;
}

/* NAVIGATION LINKS */
.nav_links {
  display: flex;
  align-items: center;
  gap: 65px;
}

.nav_links a {
  color: #053237;
  font-family: Ubuntu;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

/* BUTTON SET */
.action_btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  font-family: Ubuntu;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.start {
  background: #11D35F;
  color: #053237;
}

.find {
  border: 1.5px solid #053237;
  color: #053237;
}

/* ============ MOBILE ============ */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #053237;
}

/* MOBILE SLIDE MENU */
.mobile_menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: white;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: 0.4s ease;
  z-index: 999;
}

.mobile_menu a {
  color: #053237;
  font-family: Ubuntu;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.close_btn {
  font-size: 26px;
  cursor: pointer;
  margin-left: auto;
}

/* SHOW MENU */
.mobile_menu.active {
  right: 0;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .nav_links,
  .action_btns {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo img {
    height: 50px;
  }
}