html,
body {
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

a {
  text-decoration: none !important;
}

/* font weights */
.font-300 {
  font-weight: 300 !important;
}

.font-400 {
  font-weight: 400 !important;
}

.font-500 {
  font-weight: 500 !important;
}

.font-600 {
  font-weight: 600 !important;
}

.font-700 {
  font-weight: 700 !important;
}

.font-800 {
  font-weight: 800 !important;
}

/* font-sizes */

.font-10 {
  font-size: 10px !important;
}

.font-12 {
  font-size: 12px !important;
}

.font-14 {
  font-size: 14px !important;
}

.font-16 {
  font-size: 16px !important;
}

.font-18 {
  font-size: 18px !important;
}

.font-20 {
  font-size: 20px !important;
}

.font-22 {
  font-size: 22px !important;
}

.font-24 {
  font-size: 24px !important;
}

.font-28 {
  font-size: 28px !important;
}

.font-30 {
  font-size: 30px !important;
}

.font-32 {
  font-size: 32px !important;
}

.font-36 {
  font-size: 36px !important;
}

.font-40 {
  font-size: 40px !important;
}

.font-48 {
  font-size: 48px !important;
}

.font-50 {
  font-size: 50px !important;
}

.font-52 {
  font-size: 52px !important;
}

.font-56 {
  font-size: 56px !important;
}

.font-60 {
  font-size: 60px !important;
}

/* Background colors */
.bg-yellow {
  background: #d7a116;
}

.bg-black {
  background: #000000 !important;
}

.bg-ash {
  background: #f1f1f1;
}

/* Text colors */
.text-ash {
  color: #d9d9d9;
}

.text-yellow {
  color: #d7a116;
}

.text-black2 {
  color: #2b2a29;
}

.pointer {
  cursor: pointer;
}

.text-center {
  text-align: center !important;
}

.text-underline {
  text-decoration: underline !important;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

p {
  margin: 0 !important;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

button {
  outline: none !important;
}

.mobile-navbar {
  display: none;
}

.contact_input {
  width: 100%;
  border: none;
  outline: none;
  background: #f1f1f1;
  padding: 8px;
  margin-top: 10px;
}

.contact_box {
  height: 180px;
  transition: 0.5s;
}

.contact_box:hover {
  transform: scale(1.02);
  background-color: #000000;
}

.contact_box:hover a {
  color: #fff !important;
}

.contact_box:hover i {
  color: #fff !important;
}

.mobile-navbar a {
  transition: 0.5s;
}

.mobile-navbar a:hover {
  color: #d7a116 !important;
}

.mobile-navbar a.active {
  color: #d7a116 !important;
}
.background_container {
  position: relative;
}

.background_text_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.subscribe-input {
  border: none !important;
  outline: none !important;
  background: #ebebeb !important;
  font-size: 14px;
  font-weight: 400;
  color: #010922;
  width: 400px;
}

.subscribe-input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #010922;
}
.gallery_button {
  padding: 8px 16px;
  color: #d4d4d4;
  background: #efefef;
  transition: 0.5s;
}

.gallery_button.active {
  padding: 8px 16px;
  color: #fff;
  background: #000;
}

.gallery_button:hover {
  padding: 8px 16px;
  color: #fff;
  background: #000;
}

.videos_button {
  padding: 8px 16px;
  color: #d4d4d4;
  background: #efefef;
  transition: 0.5s;
}

.videos_button.active {
  padding: 8px 16px;
  color: #fff;
  background: #000;
}

.videos_button:hover {
  padding: 8px 16px;
  color: #fff;
  background: #000;
}
.background_slider {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(225, 225, 225, 0.3), rgba(0, 0, 0, 0.5));
}

.background_slider .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.background_slider img {
  display: inline-block;
  height: 200px;
  width: 300px;
  margin-right: -4px;
  /* margin-right should be negative and equal to the width of the gap between images */
  animation: slide 10s linear infinite;
}

.about_background .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about_background img {
  width: 100%;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
    /* -900px should be equal to the total width of the images */
  }
}

.background_slider::-webkit-scrollbar {
  display: none;
}

/* Optionally, you can style the scrollbar */
.background_slider::-webkit-scrollbar {
  width: 10px;
}

.background_slider::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.background_slider::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 5px;
}

.background_slider::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.like_container {
  position: absolute;
  top: 5%;
  right: 10%;
}

#pagination {
  margin-top: 20px;
}

#pagination ul {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
}

#pagination li {
  display: inline;
  margin-right: 5px;
}

#pagination a {
  display: inline-block;
  padding: 9px 18px;
  background-color: none;
  font-size: 24px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

#pagination a.active {
  background-color: #d7a116;
  color: #000000;
}

#pagination a:hover {
  background-color: #ccc;
}

@media (max-width: 450px) {
  .subscribe-input {
    border: none !important;
    outline: none !important;
    background: #ebebeb !important;
    font-size: 14px;
    font-weight: 400;
    color: #010922;
    width: 300px;
  }
}

@media (max-width: 768px) {
  .mobile-navbar {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    min-height: 100vh;
    width: 70%;
    padding: 20px;
    left: -768px;
    -moz-transition: all 500ms ease-in;
    -webkit-transition: all 500ms ease-in;
    -o-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
    z-index: 1000;
    background: #fff;
  }
  .mobile-navbar.open {
    left: 0;
  }
  .mobile-navbar a {
    margin: 10px 0;
    text-align: center;
  }
  .font-10 {
    font-size: 8px !important;
  }

  .font-12 {
    font-size: 10px !important;
  }

  .font-14 {
    font-size: 12px !important;
  }

  .font-16 {
    font-size: 12px !important;
  }

  .font-18 {
    font-size: 16px !important;
  }

  .font-20 {
    font-size: 16px !important;
  }

  .font-22 {
    font-size: 22px !important;
  }

  .font-24 {
    font-size: 20px !important;
  }

  .font-28 {
    font-size: 24px !important;
  }

  .font-30 {
    font-size: 24px !important;
  }

  .font-32 {
    font-size: 28px !important;
  }

  .font-36 {
    font-size: 32px !important;
  }

  .font-40 {
    font-size: 32px !important;
  }

  .font-48 {
    font-size: 20px !important;
  }

  .font-50 {
    font-size: 50px !important;
  }

  .font-52 {
    font-size: 52px !important;
  }

  .font-56 {
    font-size: 48px !important;
  }

  .font-60 {
    font-size: 56px !important;
  }
  .logo_img {
    width: 50px;
    height: 48px;
  }
}

/* Style the dropdown button */
.dropbtn {
  background-color: #4caf50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  z-index: 1;
}

/* Style links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

button {
  transition: 0.5s;
  border: 1px solid transparent !important;
}

button.bg-yellow:hover {
  color: #d7a116 !important;
  background: #fff;
  border: 1px solid #d7a116 !important;
}
