@import url(layout.min.css);
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Amatic+SC:wght@400;700&family=Andika:ital,wght@0,400;0,700;1,400;1,700&family=Bitter:ital,wght@0,100..900;1,100..900&family=Caveat:wght@400..700&family=Cormorant:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Dancing+Script:wght@502&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Fahkwang:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Great+Vibes&family=Heebo:wght@100..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Onest:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Pacifico&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Amatic+SC:wght@400;700&family=Andika:ital,wght@0,400;0,700;1,400;1,700&family=Arimo:ital,wght@0,400..700;1,400..700&family=Bitter:ital,wght@0,100..900;1,100..900&family=Caveat:wght@400..700&family=Cormorant:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Dancing+Script:wght@502&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Fahkwang:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Great+Vibes&family=Heebo:wght@100..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Onest:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Pacifico&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Space+Grotesk:wght@300..700&display=swap');




body {
  position: relative;
  background: black;
  overflow-x: hidden;
}

:root {
  --white: #ffffff;
  --black: #000;
  --theme-color: #FF0000;
  --primary: #024922;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.title {
  font-weight: 700;
  font-size: 46px;
  color: var(--white);
}

/* Button Start */

.theme-btn {
  font-family: Arimo;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: black;
  background: white;
  padding: 16px 40px;
  border-radius: 50px;
  border: 1px solid white;
}

.theme-btn:hover {
  background: transparent;
  transition: 0.50s ease;
  color: var(--white);
  border: 1px solid var(--white);
}

/* Button End */

/* Header Start */
.nav-links .theme-btn {
  color: black;
}

.nav-links .theme-btn:hover {
  border: 1px solid red;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

span.close-btn img {
  width: 40px;
  background: white;
  border-radius: 50%;
  border: 5px solid white;
}

.logo h1 {
  font-family: Oswald;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 28.8px;
  letter-spacing: -0.48px;
  vertical-align: middle;
  color: white;
  margin: 0px;
}

.header {
  color: var(--white);
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 99999;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: Arimo;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: right;
  vertical-align: middle;
}

.nav-links a:hover {
  color: red;
}

/* Dropdown styling with header_service_dropdown class */
.header_service_dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  width: max-content;
}

.header_service_dropdown li a {
  padding: 10px 15px;
  color: var(--white);
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.header_service_dropdown li a:hover {
  background-color: white;
  color: black;
}

/* Show dropdown on hover for desktop */
.nav-links li:hover .header_service_dropdown {
  display: block;
}

.toggle-btn {
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
  transition: transform 0.3s ease;
  display: none;
}

.toggle-btn:hover {
  transform: scale(1.1);
}

.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: left 0.5s ease-in-out;
}

.sidebar.active {
  left: 0;
}

.sidebar .nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  text-align: center;
}

.sidebar .nav-links li {
  margin: 20px 0;
}

.sidebar .nav-links li a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.sidebar .nav-links li a:hover {
  color: #007bff;
}

/* Ensure dropdown is hidden in sidebar */
.sidebar .header_service_dropdown {
  display: none;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
  transition: transform 0.3s ease;
}

.close-btn:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .toggle-btn {
    display: block;
  }

  .nav {
    justify-content: space-between;
  }

  .sidebar .nav-links {
    display: flex;
    gap: 0px;
  }
}

/* Header End */
/* Banner Start */
section.main_banner {
  height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: white;
}

.banner_content h1 {
  font-family: Oswald;
  font-weight: 400;
  font-style: Regular;
  font-size: 64px;
  leading-trim: NONE;
  line-height: 67.58px;
  letter-spacing: -1.28px;
  text-align: center;
  vertical-align: middle;
  color: #FF0000;
}

.banner_content p {
  font-family: Arimo;
  font-weight: 700;
  font-style: Italic;
  font-size: 22.4px;
  leading-trim: NONE;
  line-height: 33.6px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin-top: 30px;
}

/* Banner End */
/* About Us Start */
.about_content h6 {
  font-family: Oswald;
  font-weight: 400;
  font-style: Regular;
  font-size: 25.6px;
  leading-trim: NONE;
  line-height: 29.98px;
  letter-spacing: -0.51px;
  vertical-align: middle;
  color: white;
}

.about_content h2 {
  font-family: Oswald;
  font-weight: 400;
  font-style: Regular;
  font-size: 44.8px;
  leading-trim: NONE;
  line-height: 49.89px;
  letter-spacing: -0.9px;
  vertical-align: middle;
  color: #FF0000;
}

.about_content p {
  font-family: Arimo;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: white;
  width: 80%;
  margin: 30px 0px 50px;
}

.about_img img {
  width: 100%;
  height: auto;
}

section.main_about {
  padding-bottom: 100px;
}

/* About Us End */

/* What We Offer Start */
section.main_what_we_offer {
  /* background: url(../images/something-funky-img6.png); */
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

section.main_what_we_offer::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000008c;
}

.what_we_offer_content {
  text-align: center;
  color: white;
}

.what_we_offer_content h6 {
  font-family: Oswald;
  font-weight: 400;
  font-style: Regular;
  font-size: 44.8px;
  leading-trim: NONE;
  line-height: 49.89px;
  letter-spacing: -0.9px;
  text-align: center;
  vertical-align: middle;
}

.what_we_offer_content p {
  font-family: Arimo;
  font-weight: 700;
  font-style: Bold;
  font-size: 22.4px;
  leading-trim: NONE;
  line-height: 33.6px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #E70404;
}

.what_we_offer_content h3 {
  font-family: Oswald;
  font-weight: 400;
  font-style: Regular;
  font-size: 44.8px;
  leading-trim: NONE;
  line-height: 49.89px;
  letter-spacing: -0.9px;
  text-align: center;
  vertical-align: middle;
  line-height: 70px;
  margin-bottom: 50px;
}

/* What We Offer End */
/* Footer Start */
.footer_social_icon img {
    width: 40px;
    margin-top: 10px;
}
footer {
  padding: 100px 0px 20px;
  color: white;
}

.footer_logo h1 {
  font-family: Oswald;
  font-weight: 400;
  font-style: Regular;
  font-size: 44.8px;
  leading-trim: NONE;
  line-height: 49.89px;
  letter-spacing: -0.9px;
  vertical-align: middle;
  color: white;
}

.footer_logo p {
  font-family: Arimo;
  font-weight: 400;
  font-style: Regular;
  font-size: 14.4px;
  leading-trim: NONE;
  line-height: 21.6px;
  letter-spacing: 0%;
  vertical-align: middle;
  width: 80%;
}

.footer_links h6 {
  font-family: Arimo;
  font-weight: 700;
  font-style: Bold;
  font-size: 22.4px;
  leading-trim: NONE;
  line-height: 33.6px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 20px;
}

.footer_links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_links ul a {
  font-family: Arimo;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: white;
}

.footer_form input {
  width: 70%;
  padding: 20px !important;
  border: none;
  outline: none;
  color: black;
}

.footer_form {
  position: relative;
}

.main_footer_form p {
  font-family: Arimo;
  font-weight: 400;
  font-style: Regular;
  font-size: 14.4px;
  leading-trim: NONE;
  line-height: 21.6px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 0px;
  margin-top: 30px;
}

.footer_form_btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.footer_form_btn input[type="submit"] {
  font-family: Arimo;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 19.2px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  border: 1px solid white;
  color: black;
  height: 100%;
  padding: 0px 30px;
  border-radius: 50px;
  margin-right: -57px;
  width: 100%;
}

.footer_form_btn input[type="submit"]:hover {
  background: transparent;
  color: white;
}

.main_footer_form {
  margin-top: 50px;
}

.footer_links {
  padding-left: 100px;
}

.bottom_footer p {
  font-family: Arimo;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin: 0px;
}

footer hr {
  background: white;
  margin: 50px 0px 20px;
}

/* Footer End */
/* About Inner Page Start */
section.main_about_inner {
  padding-top: 100px;
  color: white;
}

.about_inner_content p {
  font-family: Arimo;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 30px;
}

.about_inner_img img {
  width: 100%;
  height: auto;
}

/* About Inner Page End */
/* Contact Us Inner Page Start */
section.main_contact_inner {
  padding-top: 100px;
  color: white;
}

.contact_inner_content h6 {
  font-family: Oswald;
  font-weight: 400;
  font-style: Regular;
  font-size: 44.8px;
  leading-trim: NONE;
  line-height: 49.89px;
  letter-spacing: -0.9px;
  vertical-align: middle;
  margin-bottom: 20px;
}

.contact_inner_content p {
  font-family: Oswald;
  font-weight: 400;
  font-style: Regular;
  font-size: 25.6px;
  leading-trim: NONE;
  line-height: 29.98px;
  letter-spacing: -0.51px;
  vertical-align: middle;
  margin-bottom: 20px;
}

.contact_inner_content h5 {
  font-family: Arimo;
  font-weight: 700;
  font-style: Bold;
  font-size: 22.4px;
  leading-trim: NONE;
  line-height: 33.6px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #FF0000;
  margin-bottom: 20px;
}

.contact_inner_content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.contact_inner_content ul a {
  font-family: Arimo;
  font-weight: 400;
  font-style: Regular;
  font-size: 22.4px;
  leading-trim: NONE;
  line-height: 33.6px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: white;
}

.main_contact_form input {
  width: 100%;
  background: transparent;
  color: white;
  border: 1px solid #FFFFFF8C;
  padding: 10px;
  margin-bottom: 40px;
  margin-top: 10px;
}

.main_contact_form label {
  font-family: Arimo;
  font-weight: 400;
  font-style: Regular;
  font-size: 14.4px;
  leading-trim: NONE;
  line-height: 21.6px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin: 0px;
}

.main_contact_form span {
  color: #E70404;
  padding-left: 10px;
  font-family: Arimo;
  font-weight: 400;
  font-style: Regular;
  font-size: 14.4px;
  leading-trim: NONE;
  line-height: 14.4px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.main_contact_form textarea {
  width: 100%;
  background: transparent;
  color: white;
  border: 1px solid #FFFFFF8C;
  padding: 10px;
  margin-bottom: 40px;
  margin-top: 10px;
}

.main_contact_form select {
  width: 100%;
  background: transparent;
  color: white;
  border: 1px solid #FFFFFF8C;
  padding: 10px;
  margin-bottom: 40px;
  margin-top: 10px;
}

/* Contact Us Inner Page End */
/* Something Funky Inner Page Start */
section.something_banner {
  background: url(../images/something-funky-img6.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px 0px 50px;
  color: white;
  position: relative;
}

section.something_banner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000008c;
}

.something_banner_content h1 {
  font-family: Oswald;
  font-weight: 400;
  font-style: Regular;
  font-size: 44.8px;
  leading-trim: NONE;
  line-height: 49.89px;
  letter-spacing: -0.9px;
  vertical-align: middle;
  margin-bottom: 20px;
}

.something_banner_content p {
  font-family: Arimo;
  font-weight: 400;
  font-size: 14.4px;
  line-height: 21.6px;
  vertical-align: middle;
  margin-bottom: 30px;
}

.something_banner_content_one h1 {
  font-family: Oswald;
  font-weight: 400;
  font-style: Regular;
  font-size: 35.2px;
  leading-trim: NONE;
  line-height: 40.21px;
  letter-spacing: -0.7px;
  vertical-align: middle;
  width: 80%;
}

.something_banner_content_one h1 span {
  color: #E70404;
}

.something_banner_content_one h2 {
  font-family: Oswald;
  font-weight: 400;
  font-style: Regular;
  font-size: 35.2px;
  leading-trim: NONE;
  line-height: 40.21px;
  letter-spacing: -0.7px;
  vertical-align: middle;
  margin: 30px 0px 20px;
}

.something_banner_content_one ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.something_banner_content_one ul a {
  font-family: Arimo;
  font-weight: 400;
  font-style: Regular;
  font-size: 22.4px;
  leading-trim: NONE;
  line-height: 33.6px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: white;
}

/* Something Funky Inner Page End */
/* Omar And Friend Start*/
section.main_omar_and_friends {
  padding: 150px 0px 0px;
}

section.main_omar_and_friends img {
  width: 100%;
  height: auto;
}

/* Omar And Friend End*/
/* National Anthem Start */

section.main_national_anthem {
  padding: 100px 0px 0px;
}

.national_anthem_content {
  text-align: center;
  color: white;
  margin-bottom: 50px;
}

.national_anthem_content h2 {
  font-family: Oswald;
  font-weight: 400;
  font-style: Regular;
  font-size: 44.8px;
  leading-trim: NONE;
  line-height: 49.89px;
  letter-spacing: -0.9px;
  text-align: center;
  vertical-align: middle;
}

.national_anthem_content p {
  font-family: Arimo;
  font-weight: 400;
  font-style: Regular;
  font-size: 22.4px;
  leading-trim: NONE;
  line-height: 33.6px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.national_anthem_img img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

/* National Anthem End */
/* Responsive Start */

@media (min-width: 1401px) and (max-width: 1600px) {}

@media (min-width : 992px) and (max-width : 1400px) {
  .main_contact_form input {
    margin: 5px 0px 15px;
  }

  .main_contact_form select {
    margin: 5px 0px 15px;
  }

  .main_contact_form textarea {
    margin: 5px 0px 15px;
  }

  .contact_inner_content h5 {
    margin-bottom: 10px;
  }

  .contact_inner_content ul a {
    font-size: 18px;
  }

  .contact_inner_content p {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .nav-links .theme-btn:hover {
    border: none;
  }

  section.something_banner {
    padding: 100px 0px 50px;
  }

  .something_banner_content_one h1 {
    line-height: unset;
  }

  .something_banner_content p {
    text-align: justify;
  }

  section.main_something_funky_gallary img {
    width: 100%;
    height: auto;
  }

  .about_inner_content p {
    font-size: 15px;
    line-height: unset;
    margin-bottom: 10px;
  }

  .banner_content h1 {
    font-size: 50px;
  }

  section.main_what_we_offer {
    height: unset;
    padding: 100px 0px;
  }

  .what_we_offer_content h3 {
    font-size: 34px;
    line-height: unset;
  }

  .footer_form input {
    width: 100%;
  }

  .footer_form_btn button {
    background: black;
    color: white;
    border-radius: 0px;
  }

  .footer_logo p {
    width: unset;
  }

  .about_content p {
    width: unset;
  }

  .nav-links .theme-btn {
    padding: 0px;
    border: none;
    color: white;
    background: transparent;
  }

  .nav-links .theme-btn:hover {
    color: red;
  }
}

@media (min-width : 768px) and (max-width : 991px) {}

@media (max-width : 992px) {}

@media (max-width : 767px) {
  .theme-btn {
    font-size: 14px;
    padding: 14px 30px;
    border-radius: 15px;
  }

  .national_anthem_content p {
    font-size: 16px;
    line-height: unset;
  }

  .national_anthem_content {
    margin-bottom: 20px;
  }

  .national_anthem_img img {
    margin-bottom: 10px;
  }

  section.something_banner {
    padding: 100px 0px 50px;
    text-align: center;
  }

  .something_banner_content h1 {
    font-size: 30px;
  }

  .something_banner_content_one h1 {
    width: unset;
    font-size: 30px;
  }

  .something_banner_content_one h2 {
    font-size: 24px;
    margin: 10px 0px 10px;
  }

  .something_banner_content_one ul a {
    font-size: 16px;
  }

  .something_banner_content_one ul {
    gap: 0px;
  }

  section.main_something_funky_gallary img {
    width: 100%;
  }

  section.main_about_inner .row {
    flex-direction: column-reverse;
  }

  .about_inner_img img {
    margin-bottom: 20px;
  }

  .about_inner_content {
    text-align: center;
  }

  .about_inner_content p {
    margin-bottom: 10px;
  }

  .logo h1 {
    position: relative;
    z-index: 99999999999999999999;
  }

  section.main_banner {
    height: unset;
    padding: 100px 0px;
  }

  .banner_content h1 {
    font-size: 40px;
    line-height: unset;
  }

  .banner_content p {
    font-size: 18px;
    line-height: unset;
    margin: 10px;
    font-weight: 300;
  }

  .about_content {
    text-align: center;
    margin-bottom: 50px;
  }

  .about_content h2 {
    font-size: 30px;
    line-height: unset;
  }

  .about_content p {
    width: unset;
    margin: 20px 0px 40px;
  }

  section.main_about {
    padding-bottom: 50px;
  }

  section.main_what_we_offer {
    height: unset;
    padding: 50px 0px;
  }

  .what_we_offer_content h3 {
    font-size: 27px;
    line-height: unset;
  }

  .what_we_offer_content p {
    font-size: 18px;
    line-height: unset;
  }

  footer {
    padding: 50px 0px 10px;
    text-align: center;
  }

  .footer_logo p {
    width: unset;
  }

  .footer_links {
    padding: unset;
    margin-top: 20px;
  }

  .footer_form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer_form_btn {
    position: unset;
  }

  .footer_form input {
    width: 100%;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
  }

  .footer_form_btn button {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
  }

  .header {
    position: fixed;
    top: 0;
    padding: 20px 0px;
    background: black;
    z-index: 9999;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width : 400px) {}

@media (max-width : 320px) {}

/* Responsive End */