/* Global Start */
* {
  font-family: "Poppins", sans-serif;
  font-size: calc(16px + (18 - 16) * ((100vw - 360px) / (1920 - 360)));
  /* outline: 1px solid red; */
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: "Lora", serif;
}
ul li {
  list-style: none;
}
.btn {
  background-color: #fff0;
  border: 1px double #fff0;
  padding: 12px 30px;
  font-size: calc(14px + (16 - 14) * ((100vw - 360px) / (1920 - 360)));
  font-weight: 600;
  border-radius: 0;
  transition: 0.5s ease-in-out;
}
.btn-primary {
  background-color: #800020;
  border-color: #800020;
  color: #fff;
}
.btn-primary:hover {
  background-color: #f5f5dc;
  border-color: #f5f5dc;
  color: #000;
}
.btn-light {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}
.btn-light:hover {
  background-color: #800020;
  border-color: #800020;
  color: #fff;
}
.form-control,
.form-select {
  padding: 10px 15px;
  border-color: #d5d5d5;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
}
.form-control::placeholder {
  color: #000;
}
.form-control:focus,
.form-select:focus {
  color: #000;
  background-color: #fff;
  border-color: #d5d5d5;
  box-shadow: none;
}
.grecaptcha-badge {
  display: none !important;
}
.button-group {
  gap: 20px;
}
.button-group a i {
  margin-right: 5px;
}
.background-overlay {
  background-color: rgb(0 0 0 / 40%);
}
/* Global End */

/* Animations Start */
@keyframes Blinks {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}
.blink-animation {
  animation: Blinks 2s linear infinite;
}
/* Animations End */

/* Header Start */
.secondary-header {
  background-color: #800020;
}
.header .logo img {
  width: 180px;
}
/* Header End */

/* Banner Start */
.banner {
  background-image: url(../images/banner.png);
  background-size: cover;
  background-position: center;
}
.banner-form {
  width: 70%;
  background-color: rgb(255 255 255 / 89%);
}
/* Banner End */

/* Category Start */
.category .category-icon,
.our-services .category-icon {
  width: 130px;
  height: 130px;
  background-color: #800020;
  transition: 0.5s ease-in-out;
}
.category .category-box:hover .category-icon,
.our-services .category-box:hover .category-icon {
  background-color: #f5f5dc;
}
.category .category-icon img,
.our-services .category-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: invert(1);
  transition: 0.5s ease-in-out;
}
.category .category-box:hover .category-icon img,
.our-services .category-box:hover .category-icon img {
  filter: invert(0);
}
/* Category End */

/* About Us Start */
.about-us {
  background-image: url(../images/about-us-bg.png);
  background-size: cover;
  background-position: center;
}
/* About Us End */

/* Our Services Start */
.our-services .category-icon {
  width: 90px;
  height: 90px;
}
.our-services .category-icon img {
  width: 50px;
  height: 50px;
}
/* Our Services End */

/* Packages Start */
.package-discount {
  background-color: #800020;
}
.package-box ul {
  overflow-y: scroll;
  height: 300px;
}
.package-box ul::-webkit-scrollbar {
  width: 8px;
}
.package-box ul::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.package-box ul::-webkit-scrollbar-thumb {
  background: #800020;
  border-radius: 4px;
}
.package-box ul::-webkit-scrollbar-thumb:hover {
  background: #f5f5dc;
}
.package-box ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  color: #800020;
  position: absolute;
  left: 0;
}
/* Packages End */

/* Contact CTA Start */
.contact-cta {
  background-image: url(../images/contact-bg-1.png);
  background-size: cover;
  background-position: center;
}
/* Contact CTA End */

/* Our Portfolio Start */
/* Our Portfolio End */

/* CTA Start */
.cta {
  background-color: #e4e4e4;
}
/* CTA End */

/* Main Services Start */
.main-services .col-box:nth-child(odd) .service-box,
.main-services .owl-item:nth-child(odd) .service-box {
  background-color: #800020;
}
.main-services .col-box:nth-child(even) .service-box,
.main-services .owl-item:nth-child(even) .service-box {
  background-color: #f5f5dc;
}
.main-services .service-box p {
  font-size: calc(14px + (16 - 14) * ((100vw - 360px) / (1920 - 360)));
  line-height: 1.4;
}
.main-services img {
  height: 350px;
  object-fit: contain;
}
/* Main Services End */

/* Why Choose Us Start */
.choose-box {
  min-height: 260px;
  width: 99%;
}
.choose-carousel .choose-box img {
  width: 75px !important;
  height: 75px;
  object-fit: contain;
}
/* Why Choose Us End */

/* Contact Start */
.contact {
  background-image: url(../images/contact-bg-2.png);
  background-size: cover;
  background-position: center;
}
.contact-box label span {
  color: red;
}
.contact-box .intrested-check {
  column-gap: 20px;
  row-gap: 10px;
}
/* Contact End */

/* FAQs Start */
.faq .accordion .accordion-item {
  border: none;
  margin-bottom: 40px;
}
.faq .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq .accordion .accordion-item .accordion-button {
  background-color: #800020;
  padding: 15px 10px;
  color: #fff;
  border: none;
  border-radius: 0 !important;
  font-size: calc(
    16px + (20 - 16) * ((100vw - 360px) / (1920 - 360))
  ) !important;
  line-height: 1.2 !important;
  font-weight: 700;
}
.faq .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion .accordion-item .accordion-button.collapsed {
  background-color: #fff0;
  color: #151515;
  border-bottom: 1px solid #151515;
  padding: 0 0 15px 0;
}
.faq .accordion .accordion-item .accordion-body {
  padding: 20px 0 0 0;
}
/* FAQs End */

/* Footer Start */
.footer {
  background-color: #800020;
}
.footer .logo {
  width: 230px;
}
/* Footer End */

/* Float Offer Start */
.float-phone {
  background-color: #800020;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
/* Float Offer End */

/* Modal Start */
.modal .modal-content .btn-close {
  background-image: unset;
  background-color: #800020;
  border: 1px solid #fff;
  color: #fff;
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  position: absolute;
  top: -10px;
  right: -10px;
  opacity: 1;
  z-index: 1;
  transition: 0.5s ease-in-out;
}
.modal .modal-content .btn-close:hover {
  background-color: #000;
}
.modal .modal-content .btn-close:focus {
  box-shadow: none;
}
.modal .modal-body h2 {
  background-color: #800020;
}
.modal .modal-body .form-control,
.modal .modal-body .form-select {
  padding: 7px 15px;
}
/* Modal End */

/* Thank You Page Start */
.inner-banner {
  background-image: url(../images/banner.png);
  background-size: cover;
  background-position: center;
  height: 250px;
}
.thankyou-page svg {
  width: 30% !important;
}
.error-page svg {
  width: 40% !important;
}
/* Thank You Page End */
