/******** Google Fonts ********/
@import url('https://fonts.googleapis.com/css2?family=Arsenal:ital,wght@0,400;0,700;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/** ****** Color Scheme ****** **/
:root {
  --clr-primary: #F6F6F6;
  --clr-secondary: #565e41;
  --clr-accent: #f4f9e7;

  --clr-white: #ffffff;
  --clr-white-200: #E6E6E6;
  --clr-black: #000000;
  --clr-black-100: #131313;
  --clr-black-200: #242424;
  --clr-black-300: #3c3c3c;

  --ff-primary: "Arsenal", sans-serif;
  --ff-body: 'DM Sans', sans-serif;
}

/** ****** CSS Resets ****** **/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  font: inherit;
}


ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:focus,
a:hover {
  outline: none;
}

a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

body {
  font-family: var(--ff-body);
  text-rendering: optimizeSpeed;
  font-size: 16px;
  line-height: 1.5;
}

p {
  font-weight: 400;
  margin-bottom: 0;
  color: var(--clr-black-300);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
  margin-bottom: 0;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/** ****** Utility Classes ******* */

.fixed-top {
  background-color: var(--clr-black-200) !important;
  position: fixed !important;
}

.text-white p {
  color: var(--clr-white);
  padding: 9px 0px
}

.text-white .custom-button {
  margin: 8px 0px;
}


@media only screen and (max-width: 991px) {
  .container {
    --bs-gutter-x: 1rem;
  }
}

.overlay::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(27, 27, 27, 0.72);
  z-index: 0;
  backdrop-filter: blur(190px);
  top: 0;
  left: 0;
  opacity: 0.72;
}

.bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1
}

.bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease-in-out;
}

[class^=section__] {
  position: relative;
  z-index: 3
}

/* Theme Classes */
/* .bg-gradient {
  background-image: linear-gradient(238deg, #0a1e22 0%, #3C3C3C 100%) !important;
} */
.bg-primary {
  background-color: var(--clr-primary);
}

.clr-text {
  color: var(--clr-black-200);
}

/** ****** Custom Properties ******* */
.custom-pad {
  padding: 70px 0;
}

.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-secondary);
  color: var(--clr-white);
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 0px 36px;
  height: 45px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 0.4px;
  font-family: var(--ff-body);
  border-radius: 5px;
}

.custom-button.color {
  background-color: var(--clr-accent);
  color: var(--clr-black);
  margin-left: 24px;
  font-size: 14px;
}

.custom-button.color:hover {
  background-color: var(--clr-secondary);
}

/* .custom-button span
{
  padding-left: 10px;
  font-weight: 200;
  font-size: 20px;
} */

/* .header .custom-button {
  border: 2px solid var(--clr-black-200);

.header .custom-button:hover {
  border: 2px solid var(--clr-secondary);
} */

/* Basic Button Hover */
.custom-button:hover {
  color: var(--clr-white) !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: var(--clr-black);
}

.cb-white:hover {
  background-color: var(--clr-accent);
  color: var(--clr-white);
}

.custom-button_form {
  background-color: transparent;
  padding: 0;
  font: inherit;
  /* add custom-button fonts */
  color: inherit;
  /* add custom-button color */
  text-transform: inherit;
  /* add custom-button text-transform */
  border: none;
}

.custom-heading {
  margin-bottom: 32px !important;
}

.text-white {
  color: var(--clr-white);
}

.custom-heading h3 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 500;
  position: relative;
  text-transform: capitalize;
  padding-bottom: 10px;
  color: var(--clr-black-200);
  text-align: center;
}

.bttom-location h3 {
  margin-bottom: 29px;
}

/* .custom-heading h3::before {
  position: absolute;
  content: '';
  width: 100px;
  height: 1px;
  background-color: var(--clr-black-300);
  bottom: 0;
  border-radius: 8px;
} */

.custom-heading.text-center h3::before {
  margin: 0 auto;
  left: 0;
  right: 0;
}

.custom-heading span {
  border-radius: 20px;
  padding: 7px 22px;
  color: var(--clr-blck);
  font-size: 20px;
  line-height: 24px;
  font-family: var(--ff-body);
  margin-bottom: 0px;
  display: inline-flex;
  height: 40px;
}

.custom-heading h6 {
  font-size: 20px;
  color: var(--clr-accent);
  text-transform: uppercase;
  line-height: 26px;
  font-weight: 300;

}



.owl-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.owl-dot span {
  display: inline-flex;
  width: 20px;
  height: 4px;
  background-color: var(--clr-white-200);
}

.owl-dot.active span {
  width: 55px;
  background-color: var(--clr-accent);
}

.owl-nav {
  display: flex !important;
  justify-content: space-between;
}

.owl-nav>* {
  display: inline-flex;
  position: absolute;
  width: 35px;
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: all .5s ease-in-out;
  box-shadow: 4px 4px 35px 6px rgba(0, 0, 0, .18);
}

.carousel-control-prev-icon {
  width: 32px;
  aspect-ratio: 1;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all .5s ease-in-out;
  box-shadow: 4px 4px 35px 6px rgba(0, 0, 0, .18);
  color: #000 !important;
  box-shadow: -2px 0px 12px #b7b7b7;
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(333deg) brightness(97%) contrast(103%);
}

.carousel-control-next-icon {
  width: 32px;
  aspect-ratio: 1;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all .5s ease-in-out;
  box-shadow: 4px 4px 35px 6px rgba(0, 0, 0, .18);
  color: #000 !important;
  box-shadow: -2px 0px 12px #b7b7b7;
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(333deg) brightness(97%) contrast(103%);
}


.slick-prev::before,
.slick-next::before {
  display: inline-flex;
  position: absolute;
  width: 35px;
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: all .5s ease-in-out;
  box-shadow: 4px 4px 35px 6px rgba(0, 0, 0, .18);
  color: #000000;
  content: '\f053' !important;
  font-family: fontawesome !important;
}

.slick-next::before {
  display: inline-flex;
  position: absolute;
  width: 35px;
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: all .5s ease-in-out;
  box-shadow: 4px 4px 35px 6px rgba(0, 0, 0, .18);
  color: #000000;
  content: '\f054' !important;
  font-family: fontawesome !important;
}


.swiper-button-prev>:hover {
  background-color: var(--clr-accent) !important;
  transition: all .5s ease-in-out;
  color: var(--clr-black-300) !important;
}

.swiper-button-next>:hover {
  background-color: var(--clr-accent) !important;
  transition: all .5s ease-in-out;
  color: var(--clr-black-300) !important;
}


.swiper-button-prev {
  left: 0px;
  box-shadow: -2px 0px 12px #b7b7b7;
  display: inline-flex;
  position: absolute;
  width: 43px;
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: 50%;
  backdrop-filter: blur(10px);
  transition: all .5s ease-in-out;
  box-shadow: 4px 4px 35px 6px rgba(0, 0, 0, .18);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 22px !important;
  color: #000 !important;
}

.swiper-button-next {
  right: 0px !important;
  box-shadow: 4px 0px 12px #b7b7b7 !important;
  display: inline-flex !important;
  position: absolute !important;
  width: 43px !important;
  aspect-ratio: 1 !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 50% !important;
  top: 50% !important;
  backdrop-filter: blur(10px) !important;
  transition: all .5s ease-in-out !important;
  box-shadow: 4px 4px 35px 6px rgba(0, 0, 0, .18) !important;
}

.slick-prev {
  left: 60px;
/*   z-index: 999; */
}

.carousel-control-prev {
  width: fit-content !important;
}

.swiper-button-prev i ,
.swiper-button-next i {display: none;}
