* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5;
}

.container {
  width: 1000px;
  margin: 0 auto;
}

body {
  font-family: "Urbanist", sans-serif;
  background-image: url(/Images/bg_green-01.jpg);
}

p {
  font-size: 18px;
}

h2 {
  font-size: bold;
  text-transform: uppercase;
}

/*Navigation Bar_Desktop*/

nav {
  position: fixed;
  width: 984px;
  top: 0;
  background-color: #7ac943;
  box-shadow: 3px 3px 5px #000000;
  z-index: 9999;
}

.nav_content {
  width: 100%;
  display: flex;
  align-items: center;
}

.logo {
  margin: 10px 20px;
}

nav .nav_content .nav_links {
  display: flex;
  gap: 50px;
  margin-top: 80px;
  padding-left: 10px;
}

nav .nav_links li {
  list-style: none;
}

nav .nav_links a,
.gi {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #0b4100;
}

nav .nav_links a:hover {
  color: white;
}

nav .nav_links li ul li a {
  color: white;
}

/*Dropdown Info Links*/

.open_icon {
  display: none;
  padding: 2px;
  color: #7ac943;
}

header .close_drop_menu {
  padding: 10px;
}

.download_button {
  display: inline-flex;
  height: 30px;
  padding: 0;
  background-color: #7ac943;
  border: none;
  outline: none;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.button_text,
.button_icon {
  display: inline-flex;
  align-items: center;
  color: white;
  text-transform: uppercase;
  padding: 5px 20px;
  height: 100%;
}

.button_icon {
  height: 100%;
  font-size: 1.2em;
}

.download_button:hover {
  background-color: #0b4100;
}

.download_button:active {
  background-color: #041800;
}

ul li ul.dropdown_info_links {
  width: 40%;
  height: 300px;
  position: absolute;
  z-index: 999;
  display: none;
  background: rgba(14, 34, 0, 0.7);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

ul li ul.dropdown_info_links li {
  display: block;
  line-height: 2;
  padding-top: 10px;
}

ul li ul.dropdown_info_links:last-child {
  line-height: 3;
}

ul li:hover ul.dropdown_info_links {
  display: block;
}

nav .nav_links li ul li a:hover {
  color: #7ac943;
}

/* Open Nav Menu*/

header .open_nav_menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: auto;
  margin-top: 80px;
}

header .open_nav_menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #0b4100;
  position: relative;
}

header .open_nav_menu span:before,
header .open_nav_menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0b4100;
  box-sizing: border-box;
}

header .open_nav_menu span::before {
  top: -7px;
}

header .open_nav_menu span::after {
  top: 7px;
}

/*Close Nav Menu*/
header .close_nav_menu {
  height: 40px;
  width: 40px;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-self: center;
}
header .close_nav_menu img {
  width: 40px;
}

/*End of Navbar*/

/*Start Gallery*/

.gallery_container {
  width: 100%;
  height: 2500px;
  background-image: url(/Images/bg_yellow-01.jpg);
  background-repeat: repeat-y;
  background-position: center;
  margin-top: 20px;
}

.gallery_title h1 {
  padding-top: 180px;
  color: #000;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.gallery img {
  max-width: 250px;
  border: 5px solid #fff;
  border-radius: 5px;
  margin: 20px;
}
/*Gallery Ends*/

/*Social Media*/

.footer {
  width: 1024;
  margin: 0 auto;
  display: block;
}

footer .social_media {
  background-color: #0b4100;
  width: 100%;
  text-align: center;
}
.social_media_title {
  text-align: center;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 600;
  color: white;
  padding-top: 20px;
}

.social_media a {
  font-size: 50px;
  color: #7ac943;
}

.social_media p {
  color: white;
  font-size: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #7ac943;
}

/*Responsive Styling*/
/*Navbar starts*/

@media (max-width: 430px) {
  .container {
    width: 430px;
    margin: 0 auto;
  }

  header .close_nav_menu,
  header .open_nav_menu {
    display: flex;
  }

  .open_icon {
    display: inline;
    padding: 10px;
    color: #7ac943;
  }

  nav {
    width: 430px;
  }

  nav .nav_content .nav_links {
    display: block;
    padding: 20px;
  }

  .navbar {
    position: fixed;
    padding-bottom: 500px;
    right: -430px;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    top: 0;
    overflow-y: auto;
    background: rgba(11, 65, 0, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    z-index: 1000;
    transition: all 0.5s ease;
  }

  .navbar.open {
    visibility: visible;
    right: 0px;
  }

  .nav_links li {
    padding: 20px 0;
  }

  header .nav_links a {
    color: #7ac943;
  }

  header .nav_links {
    padding: 20px;
  }

  nav .nav_links a,
  .gi {
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #7ac943;
  }

  ul li ul.dropdown_info_links {
    width: 280px;
    height: 450px;
    position: absolute;
    z-index: 1000;
    display: none;
    background: rgba(14, 34, 0, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease;
    text-align: right;
    margin-left: 50px;
  }

  ul li ul.dropdown_info_links li {
    display: block;
    line-height: 2;
    padding-top: 10px;
  }

  ul li ul.dropdown_info_links:last-child {
    line-height: 3;
  }

  ul li:hover ul.dropdown_info_links {
    display: block;
  }

  nav .nav_links li ul li a:hover {
    color: #7ac943;
  }

  .download_btn {
    background-color: #0b4100;
    margin: 10px;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
  }

  /*Navbar ends*/

  /*Gallery Begins*/

  .gallery_container {
    width: 100%;
    height: 7000px;
    background-image: url(/Images/bg_yellow-01.jpg);
    background-repeat: repeat-y;
    background-position: center;
    margin-top: 20px;
  }

  .gallery_title {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 28px;
    font-weight: 600;
  }

  /*Gallery Ends*/

  .seperation_wave_bottom {
    background-image: url(/Images/seperator_bottom.png);
    height: 58px;
    margin-top: -50px;
  }

  /*Social Media*/

  .footer {
    width: 1024;
    margin: 0 auto;
    display: block;
  }

  footer .social_media {
    background-color: #0b4100;
    width: 100%;
    text-align: center;
  }
  .social_media_title {
    text-align: center;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 600;
    color: white;
    padding-top: 20px;
  }

  .social_media a {
    font-size: 50px;
    color: #7ac943;
  }

  .social_media p {
    color: white;
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #7ac943;
  }
}

@media (max-width: 393px) {
  .container {
    width: 393px;
    margin: 0 auto;
  }

  header .close_nav_menu,
  header .open_nav_menu {
    display: flex;
  }

  .open_icon {
    display: inline;
    padding: 10px;
    color: #7ac943;
  }

  nav {
    width: 393px;
  }

  nav .nav_content .nav_links {
    display: block;
    padding: 20px;
  }

  .navbar {
    position: fixed;
    padding-bottom: 500px;
    right: -393px;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    top: 0;
    overflow-y: auto;
    background: rgba(11, 65, 0, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    z-index: 1000;
    transition: all 0.5s ease;
  }

  .navbar.open {
    visibility: visible;
    right: 0px;
  }

  .nav_links li {
    padding: 20px 0;
  }

  header .nav_links a {
    color: #7ac943;
  }

  header .nav_links {
    padding: 20px;
  }

  nav .nav_links a,
  .gi {
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #7ac943;
  }

  ul li ul.dropdown_info_links {
    width: 280px;
    height: 450px;
    position: absolute;
    z-index: 1000;
    display: none;
    background: rgba(14, 34, 0, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease;
    text-align: right;
    margin-left: 50px;
  }

  ul li ul.dropdown_info_links li {
    display: block;
    line-height: 2;
    padding-top: 10px;
  }

  ul li ul.dropdown_info_links:last-child {
    line-height: 3;
  }

  ul li:hover ul.dropdown_info_links {
    display: block;
  }

  nav .nav_links li ul li a:hover {
    color: #7ac943;
  }

  .download_btn {
    background-color: #0b4100;
    margin: 10px;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
  }

  /*Navbar ends*/

  /*Gallery Begins*/

  .gallery_container {
    width: 100%;
    height: 7000px;
    background-image: url(/Images/bg_yellow-01.jpg);
    background-repeat: repeat-y;
    background-position: center;
    margin-top: 20px;
  }

  .gallery_title {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 28px;
    font-weight: 600;
  }

  /*Gallery Ends*/

  .seperation_wave_bottom {
    background-image: url(/Images/seperator_bottom.png);
    height: 58px;
    margin-top: -50px;
  }

  /*Social Media*/

  .footer {
    width: 1024;
    margin: 0 auto;
    display: block;
  }

  footer .social_media {
    background-color: #0b4100;
    width: 100%;
    text-align: center;
  }
  .social_media_title {
    text-align: center;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 600;
    color: white;
    padding-top: 20px;
  }

  .social_media a {
    font-size: 50px;
    color: #7ac943;
  }

  .social_media p {
    color: white;
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #7ac943;
  }
}

@media (max-width: 360px) {
  .container {
    width: 360px;
    margin: 0 auto;
  }

  header .close_nav_menu,
  header .open_nav_menu {
    display: flex;
  }

  .open_icon {
    display: inline;
    padding: 10px;
    color: #7ac943;
  }

  nav {
    width: 360px;
  }

  nav .nav_content .nav_links {
    display: block;
    padding: 20px;
  }

  .navbar {
    position: fixed;
    padding-bottom: 500px;
    right: -360px;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    top: 0;
    overflow-y: auto;
    background: rgba(11, 65, 0, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    z-index: 1000;
    transition: all 0.5s ease;
  }

  .navbar.open {
    visibility: visible;
    right: 0px;
  }

  .nav_links li {
    padding: 20px 0;
  }

  header .nav_links a {
    color: #7ac943;
  }

  header .nav_links {
    padding: 20px;
  }

  nav .nav_links a,
  .gi {
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #7ac943;
  }

  ul li ul.dropdown_info_links {
    width: 280px;
    height: 450px;
    position: absolute;
    z-index: 1000;
    display: none;
    background: rgba(14, 34, 0, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease;
    text-align: right;
    margin-left: 50px;
  }

  ul li ul.dropdown_info_links li {
    display: block;
    line-height: 2;
    padding-top: 10px;
  }

  ul li ul.dropdown_info_links:last-child {
    line-height: 3;
  }

  ul li:hover ul.dropdown_info_links {
    display: block;
  }

  nav .nav_links li ul li a:hover {
    color: #7ac943;
  }

  .download_btn {
    background-color: #0b4100;
    margin: 10px;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
  }

  /*Navbar ends*/

  /*Gallery Begins*/

  .gallery_container {
    width: 100%;
    height: 7000px;
    background-image: url(/Images/bg_yellow-01.jpg);
    background-repeat: repeat-y;
    background-position: center;
    margin-top: 20px;
  }

  .gallery_title {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 28px;
    font-weight: 600;
  }

  /*Gallery Ends*/

  .seperation_wave_bottom {
    background-image: url(/Images/seperator_bottom.png);
    height: 58px;
    margin-top: -50px;
  }

  /*Social Media*/

  .footer {
    width: 1024;
    margin: 0 auto;
    display: block;
  }

  footer .social_media {
    background-color: #0b4100;
    width: 100%;
    text-align: center;
  }
  .social_media_title {
    text-align: center;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 600;
    color: white;
    padding-top: 20px;
  }

  .social_media a {
    font-size: 50px;
    color: #7ac943;
  }

  .social_media p {
    color: white;
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #7ac943;
  }
}
