/* Global Start */
* {
  font-family: "Brinnan";
}
ul li {
  list-style: none;
}
.btn {
  font-size: calc(14px + (16 - 14) * ((100vw - 360px) / (1920 - 360)));
  font-weight: 700;
  border: 1px solid #fff0;
  border-radius: 6px !important;
  padding: 10px 40px;
  transition: 0.5s ease-in-out;
}
.btn-primary {
  background-color: #f49720;
  color: #212529;
}
.btn-primary:hover {
  background-color: #fff0;
  border-color: #f49720;
  color: #f49720;
}
.btn-secondary {
  background-color: #413362;
}
.btn-secondary:hover {
  background-color: #fff0;
  border-color: #413362;
  color: #413362;
}
.btn-group {
  gap: 15px;
}
.form-control {
  background-color: #fff0;
  border: 1.5px solid #fff;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  padding: 10px 12px;
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
}
.form-control::placeholder {
  color: #fff;
}
.form-control:focus {
  color: #fff;
  background-color: #fff0;
  border-color: #fff;
  box-shadow: none;
}
select.form-control option {
  color: #000;
}
/* Global End */

/* Header Start */
.header {
  background: linear-gradient(80deg, #4b3b72 0%, #362c4f 50%, #29223a 100%);
  padding: 10px 0;
}
.header .logo {
  width: 150px;
  height: 100%;
  object-fit: contain;
}
/* Header End */

/* Home Page Start */
/* Banner Start */
.hero-banner {
  background-image: url(../images/hero-banner.webp);
  background-size: cover;
}
.hero-banner ul {
  gap: 15px;
}
.hero-banner ul li {
  width: 48.8%;
  gap: 10px;
}
.hero-banner ul li .list-icon {
  width: 20px;
  height: 20px;
}
.hero-banner ul li i {
  font-size: 10px;
  color: #fff;
}
.hero-banner .btn-group {
  padding-top: 40px;
}
.banner-form {
  padding: 24px 38px;
}
/* Banner End */

/* Make Your Manuscript Start */
.make-your-manuscript,
.cta,
.editing-process,
.why-choose-us,
.printing-benefits,
.faq,
.get-in-touch {
  padding: 100px 0;
}
/* Make Your Manuscript End */

/* CTA Start */
.cta {
  background-image: url(../images/cta-bg.webp);
  background-size: cover;
}
.cta .btn-secondary:hover {
  border-color: #fff;
  color: #fff;
}
/* CTA End */

/* Editing Process Start */
.editing-process,
.printing-benefits {
  background-image: url(../images/editing-process-bg.webp);
  background-size: cover;
}
.process-box {
  background-color: #f79c3d;
  border: 1px solid #000;
  border-radius: 30px;
  padding: 30px 25px;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}
.process-box:hover {
  background-color: #413362;
  color: #fff;
}
.process-box img {
  width: 50px !important;
  height: 50px;
  object-fit: contain;
  transition: 0.5s ease-in-out;
}
.process-box:hover img {
  filter: invert(1);
}
.editing-process-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.editing-process-carousel .owl-prev,
.editing-process-carousel .owl-next {
  margin: 0 !important;
}
.editing-process-carousel .owl-prev:hover,
.editing-process-carousel .owl-next:hover {
  background-color: #fff0 !important;
  color: #212529 !important;
}
/* Editing Process End */

/* Why Choose Us Start */
.why-choose-us ul,
.printing-benefits ul {
  gap: 15px;
}
.why-choose-us ul li,
.printing-benefits ul li {
  gap: 10px;
}
.why-choose-us ul li .list-icon,
.printing-benefits ul li .list-icon {
  width: 20px;
  height: 20px;
}
.why-choose-us ul li i,
.printing-benefits ul li i {
  font-size: 10px;
  color: #fff;
}
/* Why Choose Us End */

/* FAQ's Start */
.faq {
  background-color: #f4f4f4;
}
.faq .accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq .accordion .accordion-item {
  background-color: #fff0;
  border: none;
}
.faq .accordion .accordion-item .accordion-header {
  margin-bottom: 15px;
}
.faq .accordion .accordion-item .accordion-header .accordion-button {
  background-color: #ee9237;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 15px;
}
.faq .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion .accordion-item .accordion-header .accordion-button:after {
  background-image: none;
  content: "+";
  font-size: 19px;
  font-weight: 500;
  background-color: #574b80;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
  transition: 0.5s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
  content: "-" !important;
  background-image: unset;
}
.faq .accordion .accordion-item .accordion-body {
  font-size: 18px;
  font-weight: 500;
  color: #939393;
  background-color: #fff;
  border: 1px solid #ffa32d;
  border-radius: 10px;
}
/* FAQ's End */

/* Get In Touch Start */
.contact-form {
  background: linear-gradient(80deg, #534180 23%, #272136 77%);
  border-radius: 15px;
  padding: 48px 80px;
}
.contact-form .form-control {
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
}
/* Get In Touch End */
/* Home Page End */

/* Modal Start */
.modal .modal-content {
  background-image: url(../images/popup-bg.webp);
  background-size: cover;
  background-position: center;
  border-radius: 0;
}
.modal .modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #392657;
  opacity: 0.5;
  width: 100%;
}
.modal .modal-content .btn-close {
  background-image: unset;
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  border: 2px solid #fff;
  opacity: 1;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  line-height: 1;
  padding: 0;
  margin: 0;
  z-index: 1;
  transition: 0.5s ease-in-out;
}
.modal .modal-content .btn-close:hover {
  color: #f49720;
  border-color: #f49720;
}
.modal .modal-content .modal-body {
  padding: 30px 20px;
}
/* Modal End */

/* Mobile Footer Start */
.mobile-content {
  width: 50px;
  height: 50px;
  background-color: rgb(255, 255, 255, 0.5);
}
.mobile-content .inner-content {
  width: 40px;
  height: 40px;
}
/* Mobile Footer End */

/* Footer Start */
.footer ul {
  gap: 20px;
}
.footer ul li a {
  transition: 0.5s ease-in-out;
}
.footer ul li a:hover {
  color: #413362 !important;
}
/* Footer End */
