/*
Theme Name: Custom Theme
Author: Pain
Description: My Bootstrap 5 custom theme
Version: 1.0
*/



@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'Imprint MT Shadow';
  src: url('fonts/imprint-mt-shadow.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}



:root {
  --fw-4: 400;
  --fw-5: 500;
  --fw-6: 600;
  --fw-7: 700;
  --ff: Inter;
  --ffM: Montserrat;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background: black;
  color: white;
  padding: 20px;
}


/* navbar  */
.container-input {
  position: relative;
}

.container-input .input {
  width: 150px;
  padding: 10px 0px 10px 40px;
  border-radius: 9999px;
  border: solid 1px #333;
  transition: all .2s ease-in-out;
  outline: none;
  /* opacity: 0.8; */
  width: 250px;
}

.container-input svg {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
}

.container-input .input:focus {
  opacity: 1;
  width: 250px;
}

/* Home page  */
.home-video-container {
  position: relative;
}

.home-overlay {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}


.home-data {
  max-width: 607px;
}

.home-data h1 {

  font-family: var(--ff);
  font-weight: var(--fw-4);
  font-size: 42px;
  line-height: 100%;

}

.home-data p {
  font-family: var(--ff);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;

}


.myHomeSwiper {
  width: 100%;
  height: 100vh;
}

.myHomeSwiper .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.myHomeSwiper .swiper-slide img.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.myHomeSwiper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.myHomeSwiper .content-box {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 20px;
  text-align: left;
}

.myHomeSwiper .content-box h1 {

  font-family: Imprint MT Shadow;
font-weight: 400;
font-size: 42px;
line-height: 100%;

}

.myHomeSwiper .content-box p {
  /* font-size: 1rem; */
  margin-top: 1rem;
  font-family: Inter;
font-weight: 400;
font-size: 14px;
line-height: 150%;


}

.myHomeSwiper .btn {
  margin-top: 1rem;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50px;
  padding: 10px 30px;
  transition: 0.3s;
}

.myHomeSwiper .btn:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .myHomeSwiper .content-box h1 {
    font-size: 1.8rem;
  }

  .myHomeSwiper .content-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .myHomeSwiper .content-box h1 {
    font-size: 1.4rem;
  }
}



/* home 1st slider  */
/* 
.container-fluid{
  max-width: 1280px;
  margin: auto;
} */

@media (min-width: 992px) {
  .hide-swiper-nav .swiper-btns,
  .hide-swiper-nav .view-more-btn {
    display: none !important;
  }
}


.home-slider-wrapper-one {
  margin-block: 5rem;
}

.section-header h2 {
  font-family: Inter;
  font-weight: 700;
  font-size: 42px;
  line-height: 100%;
}

.slider-top p {
  margin-bottom: 1rem;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
}

.view-more-btn {
  border: 1px solid #000;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  /* border-radius: 20px; */
}


.home-slider-wrapper-one img, .custom-card img {
  /* border: 2px solid red; */
  /* width: 298px; */
  height: 366px;
  object-fit: cover;
  object-position: center center;
  border-radius: 15px;

}

.card-blog-title {

  font-family: var(--ff);
  font-weight: var(--fw-7);
  font-size: 14px;
  line-height: 19.71px;
  color: black;

}

.card-blog-para {
  font-family: var(--ff) !important;
  font-weight: var(--fw-4) !important;
  font-size: 12px !important;
  line-height: 16.37px !important;

}

.swiper-slide .card-title {

  font-family: var(--ff);
  font-weight: var(--fw-7);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
 
}

.swiper-slide .card-text {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 16.37px;
  display: -webkit-box;
  -webkit-line-clamp: 2;     
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: #474444;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  position: relative;
  display: inline-block;
  top: auto;
  transform: none;
  margin: 0 4px;
  position: relative;
}


.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}

.swiper-btns {
  display: inline-flex;
  align-items: center;
  margin-left: 1rem;
}


@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.5rem;
  }
}


/* Category Page  */


/* single page  */



/* single page end */








/* footer  */
.custom-footer {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url('https://traveltrackersblog.com/wp-content/uploads/2025/06/john-lord-vicente-UYsjaiST4is-unsplash.png') no-repeat center center;
  background-size: cover;
  background-position: top center;
  color: #fff;
  padding: 60px 0 30px;
}

.custom-footer .footer-title {
  font-weight: bold;
  font-size: 1.2rem;
}

.custom-footer a {
  color: #CACACA;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--ffM);
  font-weight: var(--fw-5);
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: right;
  vertical-align: middle;

}

footer li {
  list-style: none;
  margin-bottom: 1.5rem;
}

footer li a {
  font-family: var(--ffM);
  font-weight: var(--fw-6);
  font-size: 14px;
  line-height: 24px;
}

.custom-footer a:hover {
  color: white;
}

.footer-para {
  font-family: var(--ffM);
  font-weight: var(-fw6);
  font-size: 14px;
  line-height: 24px;
}

.icon-box a {
  color: white;
  margin-right: 15px;
  font-size: 1.2rem;
}

.icon-box p {
  font-family: var(--ffM);
  font-weight: var(--fw-6);
  font-size: 14px;
  line-height: 24px;
  color: #CACACA;
  margin-left: 3.5rem
}

@media (max-width: 767.98px) {
  .custom-footer .row>div {
    text-align: center;
    margin-bottom: 30px;
  }

  .icon-box p {

    margin-left: 0rem
  }

}

/* md  */
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .icon-box p {
    margin-left: 0rem;
  }
}


/* lg */
@media screen and (min-width: 992px) and (max-width: 1199.98px) {}

/* xl */
@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .icon-box p {
    margin-left: 1.5rem;
  }

}

@media screen and ((min-width: 1400px)) {}


























.custom-card {
  border: none;
  text-align: left;
  background-color: transparent;
}

/* .custom-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
} */

.card-body h6 {
  font-weight: 700;
  margin-bottom: 5px;

  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-body p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .custom-col {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .custom-col {
    flex: 0 0 auto;
    width: 33.3333%;
  }
}

@media (max-width: 767.98px) {
  .custom-col {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (max-width: 576px) {
  .custom-col {
    flex: 0 0 auto;
    width: 100%;
  }
}




/* comment  */
