:root {
  --primary-color: #004743;
  --secondary-color: #ffffff;
  --white-color: #ffffff;
  --black-color: #000000;
  --primary-text-color: #111111;
  --gradient-color: linear-gradient(0deg, #004743 0%, #026e68 100%);
  --secondary-gradient-color: linear-gradient(
    89.07deg,
    #241673 0%,
    #5543ba 100%
  );
  --site-bg: url("../images/site-bg.png") no-repeat;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--primary-text-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}
h1 {
  font-size: 60px;
  line-height: 1.15;
}
h2 {
  font-size: 50px;
}
h3 {
  font-size: 40px;
}

h4 {
  font-size: 34px;
}

h5 {
  font-size: 28px;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fw-regular {
  font-weight: 400 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.site-btn {
  padding: 12px 25px;
  border-radius: 6px;
  background: var(--gradient-color);
  color: var(--white-color);
  min-width: 160px;
  cursor: pointer;
  border: 0;
  transition: all 0.3s ease;
  font-size: 16px;
}

.site-btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.secondary-btn {
  background: var(--white-color);
  border: 1px solid var(--white-color);
  color: var(--primary-color);
}

.secondary-btn:hover {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--secondary-color);
}

.border-white-btn {
  background: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.border-white-btn:hover {
  background: var(--white-color);
  border: 1px solid var(--white-color);
  color: var(--primary-color);
}

.border-btn {
  background: var(--white-color);
  border: 1px solid var(--primary-color) !important;
  color: var(--primary-color);
}

.border-btn:hover {
  background: var(--primary-color);
  border: 1px solid var(--primary-color) !important;
  color: var(--white-color);
}

.site-input {
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid #dddddd;
  background: var(--white-color);
  width: 100%;
  font-size: 14px;
  color: var(--black-color);
  resize: none;
}

.site-input::placeholder {
  color: #333333;
}

:focus {
  outline: none;
}

.site-input:focus {
  border-color: var(--primary-color);
}

.primary-color {
  color: var(--primary-color);
}

.secondary-color {
  color: var(--secondary-color);
}

.white-color {
  color: var(--white-color);
}

.black-color {
  color: var(--black-color);
}

.primary-text-color {
  color: var(--primary-text-color);
}

a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

/* header css starts here */
header {
  padding: 20px 0;
  width: 100%;
  background: var(--gradient-color);
}
.header-top {
  padding: 6px 0 10px 0;
  color: var(--white-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 20px;
}
.site-logo {
  width: 200px;
}

/* banner css starts here  */
.banner {
  background:
    url("../images/banner-bg.png") no-repeat 100% 100%,
    url("../images/banner.png") no-repeat 0% calc(100% - 75px) / 15%;
  min-height: calc(100vh - 116px);
  padding: 100px 0 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-text {
  position: relative;
}
.banner-text span {
  position: relative;
  z-index: 1;
}
.banner-text-span {
  position: relative;
}
.banner-text-span::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 100%;
  height: 100%;
  background: url("../images/banner-star.png") no-repeat 100% 100% / contain;
}
.banner-text::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: url("../images/star.png") no-repeat 0% 0% / contain;
}
.phone-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: var(--white-color);
  border-radius: 100%;
  color: var(--primary-color);
}
.chat-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  border-radius: 64px;
  color: var(--white-color);
}
header a.white-color:hover {
  color: var(--white-color);
  text-decoration: underline;
}
.phone-cta-btn {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  background: var(--gradient-color);
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
}

.phone-cta-btn:hover {
  transform: translateY(-2px);
  color: var(--white-color);
}
.site-tag {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 50px;
  padding: 5px 10px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.banner-list {
  list-style: none;
  padding-left: 0;
}

.banner-right-card {
  background: var(--white-color);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.16);
  border-radius: 24px;
  color: var(--black-color);
  padding: 40px 30px;
}
.how-it-works {
  background:
    url("../images/how-it-works-bg.png") no-repeat 100% calc(100% - 20px) / 45%,
    url("../images/how-it-works.png") no-repeat 0 0 / cover;
  padding: 100px 0 130px 0;
  border-radius: 50px 50px 0 0;
  margin-top: -80px;
}
.brands-carousel .owl-stage {
  transition-timing-function: linear !important;
  will-change: transform;
}
.brands-carousel .owl-stage-outer {
  overflow: hidden;
}
.brands-carousel .owl-item {
  transition: none;
}
.brands-carousel.owl-carousel .owl-stage {
  transition: transform 1s linear !important;
}
.brands-carousel .item {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo {
  max-height: 100px;
  margin: 0 auto;
}
.features-carousel .owl-dots {
  margin-top: 30px !important;
}
.features-carousel .owl-dots .owl-dot span {
  background: #eeeeee !important;
}
.features-carousel .owl-dots .owl-dot.active span {
  background: var(--gradient-color) !important;
}

.section-padding {
  padding: 70px 0;
}

.gradient-text {
  display: inline-block;
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.site-pills {
  flex-wrap: wrap;
  gap: 10px;
}

.site-pills .nav-link {
  color: var(--primary-color);
  font-weight: 500;
  background: var(--gradient-color);
  padding: 1px !important;
  border-radius: 50px;
  border: 0 !important;
  transition: all 0.3s ease;
}
.site-pills .nav-link span {
  background: var(--white-color);
  padding: 10px 20px;
  display: inline-block;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.site-pills .nav-link:hover span,
.site-pills .nav-link.active span {
  background: var(--gradient-color);
  color: var(--white-color);
}
.bestseller-img {
  width: 100%;
  aspect-ratio: 1/1.15;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}
.processes-section {
  background: url("../images/processes-bg.png") no-repeat 100% 100% / cover;
  padding: 70px 0 100px 0;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
}
.formatting-and-publishing-card {
  background: var(--gradient-color);
  border-radius: 40px;
  color: var(--white-color);
  padding: 40px 25px;
}
.mnw-0 {
  min-width: 0 !important;
}
.strategic-marketing-inner {
  background: var(--gradient-color);
  color: white;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 50px;
}
.form-check-input:focus {
  box-shadow: none;
}
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.faq-accordion .accordion-body,
.faq-accordion .accordion-button {
  background: transparent;
  box-shadow: none !important;
  padding: 0;
  border-radius: 0;
  border: 0;
}

.faq-accordion .accordion-button {
  color: var(--black-color);
}

.faq-accordion .accordion-item {
  background: #e1e1e1;
  border: 1px solid #bebebe;
  padding: 20px 15px;
  margin-top: 10px;
  border-radius: 10px;
}
.bestseller-writer-carousel .owl-dots button.owl-dot span {
  background: rgb(17, 17, 17, 0.5) !important;
}
.bestseller-writer-carousel .owl-dots button.owl-dot.active span {
  width: 15px !important;
  background: var(--primary-color) !important;
}
.faq-accordion .accordion-body {
  padding-top: 10px;
}

.faq-accordion .accordion-body p {
  font-size: 14px;
}

footer {
  background: url("../images/footer-bg.png") no-repeat 100% 100% / cover;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  color: var(--white-color);
}

footer a {
  color: var(--white-color);
}

footer a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid var(--white-color);
  padding: 10px 0;
}

.mobile-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  color: var(--white-color);
}

.mobile-footer-left {
  background: var(--primary-color);
}

.mobile-footer-right {
  background: url("../images/our-services-bg.png") no-repeat center center;
}

.footer-or {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgb(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-or span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-color);
  color: var(--black-color);
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms-of-use {
  background: rgb(233 244 238 / 1);
  color: var(--primary-text-color);
}

.content-header {
  padding: 130px 0 30px 0;
  background: var(--site-bg);
  color: var(--white-color);
}

#getInTouchModal .site-input {
  border-color: #d5d5d5;
  color: black;
  font-weight: 500;
}

#getInTouchModal .site-input::placeholder {
  color: #333333;
}

#getInTouchModal h3 {
  color: var(--white-color);
  background: var(--primary-color);
  padding: 10px 20px;
  font-size: 30px;
}

button.close-btn {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  background: var(--primary-color);
  color: white;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 2;
}
/* stats banner css starts here */
.stats-banner {
  background: var(--white-color);
  border-radius: 20px;
  padding: 0px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-item {
  position: relative;
  padding: 20px;
  text-align: center;
}

.stats-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--primary-color);
  opacity: 0.3;
}

.stats-content {
  padding: 0 20px;
}
.stats-description {
  font-size: 13px;
  color: var(--black-color);
  font-weight: 400;
}
.our-services {
  padding: 70px 0 100px 0;
  background: url("../images/our-services-bg.png") no-repeat 100% 100% / cover;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
}
.tailored-booking {
  background: url("../images/tailored-booking.png") no-repeat 100% 100% / cover;
  color: var(--white-color);
}
.services-carousel .owl-dots {
  text-align: start !important;
  margin-top: 20px !important;
}
.services-carousel .owl-dots button.owl-dot span {
  background: var(--white-color) !important;
}
.services-carousel .owl-dots button.owl-dot.active span {
  width: 25px !important;
}
.other-services {
  background: url("../images/other-services.png") no-repeat 100% 100% / cover;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  padding: 70px 0 130px 0;
}
.site-tabs {
  border: 1px solid #d0d0d0;
  padding: 1px;
  border-radius: 10px;
}
.site-tabs .nav-item {
  flex-grow: 1;
}
.site-tabs .nav-link {
  background: transparent !important;
  border: 0 !important;
  border-radius: 10px !important;
  font-size: 25px;
  font-weight: 500;
  font-family: "Playfair Display", serif;
  width: 100%;
  color: var(--black-color) !important;
  text-align: center;
}
.site-tabs .nav-link.active {
  background: var(--gradient-color) !important;
  color: var(--white-color) !important;
}
.feature-card {
  border-radius: 20px;
  transition: ease-in-out 0.2s;
  background: var(--white-color);
}
.feature-card-inner {
  background: var(--white-color);
  border-radius: 20px;
  transition: ease-in-out 0.2s;
  padding: 30px;
}
.feature-card:hover .feature-card-inner {
  background: var(--gradient-color);
  color: var(--white-color);
}
.feature-card-icon {
  width: auto !important;
}
.feature-card:hover .feature-card-inner a {
  color: var(--white-color);
}
.feature-card:hover .feature-card-icon {
  filter: brightness(0) invert(1);
}
.features-carousel .owl-dots .owl-dot span {
  background: #eeeeee !important;
}
.features-carousel .owl-dots .owl-dot.active span {
  background: var(--gradient-color) !important;
}
.our-portfolio {
  padding: 70px 0 100px 0;
  margin-top: -50px;
  border-radius: 50px 50px 0 0;
  background: url("../images/our-portfolio.png") no-repeat 100% 100% / cover;
}

/* .thankyouBanner {
  background: linear-gradient(0deg, #69140d 0%, #f3951c 100%);
  height: 93px;
} */
.thankyouPage svg {
  width: 35% !important;
}
.errorPage svg {
  width: 50% !important;
}

@media screen and (min-width: 992px) {
  .mobile-footer {
    display: none;
  }
}

@media screen and (max-width: 1399.5px) {
  h1 {
    font-size: 43px;
  }
  .banner-text-span::before {
    top: -30px;
    right: -10px;
    width: 40px;
    height: 58px;
  }
  .process-arrow {
    width: 910px;
  }
}

@media screen and (max-width: 1199.5px) {
  h1 {
    font-size: 38px;
  }

  h5 {
    font-size: 24px;
  }
  .process-arrow {
    width: 770px;
  }
}

@media screen and (max-width: 991.5px) {
  br {
    display: none;
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 42px;
  }

  h2,
  h3 {
    font-size: 35px;
  }

  .fs-18 {
    font-size: 16px;
  }

  .fs-20 {
    font-size: 18px;
  }

  .fs-22 {
    font-size: 20px;
  }

  .fs-24 {
    font-size: 22px;
  }

  footer {
    margin-bottom: 50px;
  }

  .banner-left {
    text-align: center;
  }

  .banner-right-card {
    text-align: start;
  }

  .banner-list li .flex-shrink-0 {
    display: none;
  }
  .site-tabs .nav-link {
    font-size: 20px;
  }
}
@media screen and (max-width: 767.5px) {
  .stats-item:not(:last-child)::after {
    display: none;
  }
  .site-tabs .nav-link {
    font-size: 16px;
  }

  .stats-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 71, 67, 0.3);
    padding-bottom: 30px;
    margin-bottom: 20px;
  }

  .stats-banner {
    padding: 30px 20px;
  }

  .stats-description {
    font-size: 14px;
  }
}
@media screen and (max-width: 575.5px) {
  h1 {
    font-size: 32px;
  }

  h2,
  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  .fs-18 {
    font-size: 15px;
  }

  .fs-20 {
    font-size: 16px;
  }

  .fs-22 {
    font-size: 18px;
  }

  .fs-24 {
    font-size: 19px;
  }

  .section-padding {
    padding: 40px 0;
  }
  .strategic-marketing-inner {
    border-radius: 25px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .banner-right-card {
    padding: 30px 20px;
    border-radius: 15px;
  }
  .stats-description {
    font-size: 13px;
  }

  .stats-banner {
    padding: 25px 15px;
  }

  .stats-content {
    padding: 0 10px;
  }
}
