/* Add your desired font imports at the top of your CSS file, for example from Google Fonts */

/* General styles for the entire body */



body {
  background-color: #080E27;
}

.nav-link {
  color: #0E1F61;
}

body {
  margin: 0;
  padding: 0;
  font-family: "din-2014", sans-serif;
font-weight: 400;
font-style: normal; /* Replace this with your desired font */
  background-color: #080E27;
  color: #fff;
}

/* Navigation styles */
nav {
  background-color: #0E1F61;
  padding: 15px;
  color: #fff;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
}

/* Header styles */
header {
  background-color: #0E1F61;
  padding: 15px;
  color: #fff;
}

/* Main content styles */
main {
  padding: 15px;
}

/* Section styles */
section {
  margin-bottom: 20px;
}


/* Footer styles */
footer {
  background-color: #0E1F61;
  padding: 15px;
  color: #fff;
  text-align: center;
  font-size: 24px;
}

footer a {
  color: #fff;
  text-decoration: none;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo a {
  text-decoration: none;
  color: white;
  font-size: 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.hamburger div {
  width: 2rem;
  height: 0.25rem;
  background-color: rgb(255, 255, 255);
}

@media (max-width: 768px) {
  #navLinks {
      display: none;
  }
  .hamburger {
      display: flex;
  }
}
.carousel {
  width: 100%;
  position: relative;
}

.carousel-images {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 400px; /* Set this to whatever height you want */
}

.carousel-image {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250, 2, 2, 0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
}

.previous {
  left: 10px;
}

.next {
  right: 10px;
}







.my-media-text {
  display: flex;
  align-items: center; 
}

.my-media-img img {
  max-width: 100%; 
  object-fit: cover; 
  padding: 50px;
}

.my-media-content {
  max-width: 50%;
  padding-left: 20px;
  padding: 50px;
}

@media (max-width: 992px) {
  .my-media-text {
    flex-direction: column;
  }

  .my-media-img img {
    max-width: 100%;
    width: 950px;
    object-fit: cover; 
  }

  .my-media-content {
    max-width: 70%;
    padding-left: 0;
  }
}




.my-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #0E1F61;
  border: none;
  text-decoration: none;
  border-radius: 25px; /* This line adds rounded corners */
  transition: background-color 0.3s ease;
}

.my-button:hover {
  background-color: #FDD600;
}


body {
  font-family: Arial, sans-serif;
}

.contact-us {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.instagram img {
  width: 50px;
  height: 50px;
}




.img12 {
  max-width: 200%; 
  object-fit: cover; 
  padding: 50px;
}









