@import url("https://fonts.googleapis.com/css2?family=Spicy+Rice&display=swap");

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea {
  margin: 0;
  padding: 0;
}
* {
  margin: 0;
  padding: 0;
}
a:hover {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
body {
  color: #0c0c0c;
  background: #f5f5f5;
  font-family: "Poppins", serif;
}

.container {
  max-width: 1175px;
}
::selection {
  background: #0c0c0c;
  color: #f5f5f5;
}
/* ************************************ */
/*RESPONSIVE NAVIGATION*/
.mobile-menu {
  display: none;
}
.mobile-menu .circle {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  background: #005879;
  margin: 0 auto;
  font-size: 16px;
  position: fixed;
  right: 40px;
  top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.mobile-menu .mobile-cross {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  background: #005879;
  margin: 0 auto;
  font-size: 16px;
  position: fixed;
  right: 0px;
  top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.mobile-menu .nveMenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transform: translateX(-320px);
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  padding: 40px 20px;
}
.mobile-menu .nveMenu.is-opened {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
/*.mobile-menu .nveMenu h1 {
  color: #000;
  font-weight: 700;
  }*/
.mobile-menu .overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 280px);
  height: 100%;
  background: rgba(0, 0, 0, 0.71);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
.mobile-menu .overlay.is-on {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.mobile-menu .navlinks li {
  display: block;
  padding: 12px 0;
}
.mobile-menu .navlinks li a {
  text-transform: uppercase;
  color: #666;
  font-weight: 700;
}
.mobile-menu .navlinks li a:hover {
  text-decoration: none;
}
.navbar-brand {
  width: 300px;
}
.navbar-brand img{
  width: 80%;
}
/*RESPONSIVE NAVIGATION*/

.active-class {
  border: 2px solid #000;
}
/* ************************************ */

/* Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #000000;
}
/* Scrollbar */

/* Content */
.content h1 {
  font-size: 50px;
  font-weight: 800;
}
.content h2 {
  font-size: 45px;
  font-weight: 800;
}
/* Content */

/* Button */
.button-1 {
  background: #0c0c0c;
  padding: 0.8em 1em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  color: #f5f5f5;
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.button-1:hover {
  color: #0c0c0c;
  transform: scale(1.1);
  outline: 2px solid #0c0c0c;
  box-shadow: 4px 5px 17px -4px #0c0c0c;
}

.button-1::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #f5f5f5;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}

.button-1:hover::before {
  width: 250%;
  color: #0c0c0c;
}
.slider_section .button-1 {
  background: #f5f5f5;
  color: #0c0c0c;
}
.slider_section .button-1:hover {
  color: #f5f5f5;
  outline: 2px solid #0c0c0c;
  box-shadow: 4px 5px 17px -4px #0c0c0c;
}
.slider_section .button-1::before {
  background-color: #0c0c0c;
}
.slider_section .button-1:hover::before {
  color: #f5f5f5;
}
.banner .button-1 {
  background: #f5f5f5;
  color: #0c0c0c;
}
.banner .button-1:hover {
  color: #f5f5f5;
  outline: 2px solid #0c0c0c;
  box-shadow: 4px 5px 17px -4px #0c0c0c;
}
.banner .button-1::before {
  background-color: #0c0c0c;
}
.banner .button-1:hover::before {
  color: #f5f5f5;
}
/* Button */

/* Content-Section-2 */
.content-2 {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .content-2 {
    padding: 50px 0 30px;
  }
}

.content-2-heading {
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  color: #0c0c0c;
}

@media (min-width: 768px) {
  .content-2-heading {
    font-size: 36px;
    margin-top: 20px;
  }
}

.content-2-sub-heading {
  font-size: 18px;
  line-height: 30px;
  color: #0c0c0c;
  margin-bottom: 10px;
}

.buttons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
.content-2 .buttons {
  justify-content: flex-start;
}
/* Content-Section-2 */

/* Content-Section-3 */
.content-3 {
  background: url(../images/texture.webp) no-repeat;
  background-position: top;
  background-size: cover;
  padding: 30px 0;
}

@media (min-width: 768px) {
  .content-3 {
    padding: 20px 0;
  }
}

.content-3-heading {
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
}

@media (min-width: 768px) {
  .content-3-heading {
    font-size: 36px;
  }
}

.content-3-sub-heading {
  font-size: 17px;
  line-height: 25px;
  color: #ffffff;
  margin-bottom: 20px;
}
.content-3 .buttons {
  justify-content: flex-start;
}
.content-3 .button-1 {
  background: #f5f5f5;
  color: #0c0c0c;
}
/* Content-Section-3 */

/* FAQ */
.faq {
  padding: 50px 0px;
}
.faq .faq-accordion {
  margin-top: 30px;
}
.faq input:invalid {
  border: solid 1px red;
}

.faq input:invalid + span {
  opacity: 1;
  transform: translateX(0px);
  color: red;
}

.faq input:valid {
  border: solid 1px #36ca80;
}

.faq p {
  max-height: 0;
  overflow: hidden;
  padding-top: 20px;
}

.faq .open p {
  max-height: 1000px;
}
.faq .fas {
  float: right;
}
.faq .open .fas {
  transform: rotateZ(-180deg);
}

.faq .title {
  color: #2b2732;
}

.faq .item {
  max-height: 93px;
  overflow: hidden;
  background: #d5d5d5;
  color: #000000;
  background-size: 100%;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq .item.open {
  max-height: 1000px;
  /* background-size: 200%; */
}
.faq .text-xl {
  font-size: 20px;
  font-weight: 600;
  color: #0c0c0c;
}
/* FAQ */

/* Contact */
.contact {
  padding: 50px 0px 50px;
  background: linear-gradient(90deg, #000000c7 0%, #000000c7 100%),    url(../images/contact-sec-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}
.contact h2 {
  font-size: 50px;
  font-weight: 800;
  text-transform: capitalize;
  color: #f5f5f5;
}
.contact h4 {
  color: #fff;
  padding-left: 20px;
  font-size: 40px;
  font-weight: 200;
}
.contact p {
  color: #f5f5f5;
  margin-top: 20px;
}
.gap-5 {
  gap: 5px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.contact form .title {
  font-family: "Spicy Rice", serif;
  color: #212529;
  font-size: 2.5rem;
}
.contact form .form-control {
  background-color: transparent;
  border-bottom: 1px solid #f5f5f5;
  border-top: none;
  border-right: none;
  border-left: none;
  border-radius: 0px;
}
.contact form .form-control.thick {
  height: 3.3rem;
  padding: 0.5rem;
  width: 30%;
}
.contact form .form-control:focus {
  background-color: #f2f6f8;
  border: none;
  color: #0c0c0c;
  box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
}
.contact form .message .form-control {
  padding: 0.7rem 1.8rem 0.5rem 3.5rem;
}
.contact form ::placeholder {
  font-weight: 600;
  font-size: 1.1rem;
  color: #d3d3d3;
  position: relative;
  left: 0;
}
.contact form input,
.contact form textarea {
  color: #f5f5f5;
  font-size: 1.1rem;
}

.contact .btn.btn-primary {
  font-weight: bold;
  line-height: 2.5rem;
  padding: 0 3rem 0 3rem;
  border: 0;
  border-radius: 5px;
  background: #f5f5f5;
  color: #0c0c0c;
  /* border-bottom: 1px solid #f5f5f5; */
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
}

.contact .btn.btn-primary:hover:enabled {
  background-size: 100% 100%;
  transform: translateY(-0.15em);
  color: #0c0c0c;
}

/* Contact */

/* Footer */
footer {
  background: #0c0c0c;
  color: #fff;
}
footer h4 {
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}
footer a {
  color: #f5f5f5;
}
footer a:hover {
  color: #f5f5f5;
}
.social {
  margin: 0px 0px;
}
.social ul {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  outline: 8px #fff;
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
}
.social .twitter:hover {
  background: #000;
}
.social .instagram:hover {
  background: #0077b5;
}
.social .facebook:hover {
  background: #316ff6;
}
.social a:hover svg {
  color: #fff;
}
.list-star li {
  position: relative;
  /* padding-left: 1.5em; */
}
.list-star li::before {
  display: none;
  content: "\f3bf";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 100px;
  color: #e29eff;
  transform: rotate(90deg);
}
.list-unstyled li i {
  color: #f5f5f5;
  margin-right: 5px;
}
footer .small {
  padding: 10px 0 0;
}
/* Footer */

/* Navbar */
.navbar-light .navbar-nav .nav-link {
  color: #0c0c0c;
}
.btn-outline-success {
  color: #f5f5f5;
  background: #0c0c0c;
  font-size: 17px;
  font-weight: 600;
  border-color: #0c0c0c;
}
.btn-outline-success:hover {
  color: #f5f5f5;
  background-color: #0c0c0c;
  border-color: #0c0c0c;
}
.btn-outline-success:not(:disabled):not(.disabled):active {
  color: #f5f5f5;
  background-color: #0c0c0c;
  border-color: #0c0c0c;
}
.btn-outline-success.focus,
.btn-outline-success:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgb(40 167 69 / 0%);
}
.gap-10 {
  gap: 10px;
}
.bg-purple {
  background-color: #f5f5f5 !important;
}
.contact-show {
  display: none;
}
.contact-i {
  color: #fff !important;
  font-size: 16px !important;
}
.contact-i i {
  color: #fff;
  margin-right: 5px;
}
/* Navbar */

/* Modal */
.modal {
  background: rgb(0 0 0 / 62%);
  padding-right: 0px !important;
}
.modal-content {
  background: linear-gradient(120deg, #0c0c0cbd 0% 25%, #0c0c0c 80%);
  /* background-position: center;
  background-size: cover;
  background-repeat: no-repeat; */
  height: 500px;
  width: 100%;
  border: none;
  border-radius: 40px;
}
.modal-dialog {
  max-width: 800px;
}
.pop-form {
  position: absolute;
  content: "";
  width: 300px;
  left: 15px;
  bottom: 10px;
  padding: 30px 20px;
  border-radius: 15px;
  background: #ffffff;
  text-align: center;
  color: #ffe403;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.modal-body h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  font-style: oblique;
  width: 300px;
  text-align: center;
  color: #fff;
}
.modal-body h4 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #f5f5f5;
  margin-top: 40px;
  width: 300px;
  text-align: center;
}
.modal-body h4 span {
  color: #ffffff;
  font-weight: 600;
}
.pop-form .form-control {
  line-height: 1;
  border-radius: 20px;
  border: 1px solid;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.pop-form textarea {
  height: 80px;
}
.pop-form .pop-button {
  background: #0c0c0c;
  color: #f5f5f5;
  width: 100%;
  text-align: center;
  border-radius: 25px;
  padding: 7px 0px;
}
.pop-btn {
  content: "";
  position: absolute;
  right: 8px;
  top: 10px;
  z-index: 999;
  background: transparent;
  border: none;
}
.pop-btn:hover {
  transform: scale(1.1);
}
/* .side-img {
  display: none;
} */
.modal-form {
  position: relative;
}

@media (max-width: 450px) {
  /* .side-img img {
    top: -95px;
  } */
}
.side-img img {
  position: relative;
  bottom: 29px;
}
/* Modal */

/* Top Bar */
.top-bar {
  position: relative;
  padding: 10px 0;
  width: 100%;
}
.top-bar:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  top: 0;
  right: 0;
  margin: 0 auto;
}

.hsocial {
  display: flex;
  align-items: center;
}

ul.hsocialtp {
  display: flex;
}

ul.hinfo {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
}

.hsocial h4 {
  color: #fff;
  font-size: 15px;
  margin-right: 10px;
  margin-bottom: 0;
}

ul.hsocialtp li {
  margin-right: 10px;
}

ul.hsocialtp li a {
  color: #cbd3e5;
  font-size: 19px;
}

ul.hinfo li {
  margin-left: 10px;
  display: inline-flex;
}
ul.hinfo li img {
  filter: brightness(0);
}
ul.hinfo li a {
  color: #565656;
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
}
/* Top Bar */

/* Process */
.process {
  background: #f5f5f5;
  padding: 4rem 0 2rem;
  position: relative;
}
.process .heading {
  font-size: 40px;
  line-height: 1.3;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}
.proBox {
  text-align: center;
  margin-bottom: 20px;
  position: relative; /* Ensure .servbackline stays inside the container */
}
.proBox h6 {
  color: #f4a63a;
  text-align: center;
  margin: 0px auto 10px;
  border-radius: 50%;
  width: 115px;
  height: 115px;
  background: #fff;
  position: relative;
  z-index: 9;
}
.proBox h4 {
  color: #000;
  font-size: 22px;
  margin-bottom: 15px;
}
.proBox h4 span {
  color: #0c0c0c;
}
.proBox p {
  color: #000;
  font-size: 16px;
}
.pb-container {
  position: relative;
}
/* Process */

/* Client Logo */
.logo-box img {
  filter: brightness(0);
  max-width: 58%;
}
.content-2 h6 {
  color: #0c0c0c;
}
.logo-box {
  border: 0px solid #0c0c0c;
  text-align: center;
  margin-bottom: 20px;
}
.lb-1 {
  border-top: none;
  border-left: none;
}
.lb-2 {
  border-top: none;
}
.lb-3 {
  border-top: none;
  border-right: none;
}
.lb-4 {
  border-right: none;
  border-bottom: none;
}
.lb-5 {
  border-top: none;
  border-bottom: none;
}
.lb-6 {
  border-left: none;
  border-bottom: none;
}
/* Client Logo */

/* Content Section */
.content-sec {
  padding: 40px 0;
}
.content-sec h3 {
  font-size: 32px;
  margin-bottom: 20px;
}
.content-sec p {
  font-size: 18px;
  margin-bottom: 15px;
}
.radial-progress-bar {
  position: relative;
  text-align: center;
}
.radial-progress-bar .item {
  height: auto;
  margin-bottom: -40px;
}
.radial-progress-bar .title {
  margin: 0 0 1rem;
  color: #000;
}
.counter {
  position: relative;
  line-height: 1.2;
}
.radial-progress-bar .progressbar-text {
  position: relative;
  top: -40px;
  width: 70px;
  height: 40px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  background-color: #000;
  color: #fff;
}
.counter svg path:first-child {
  stroke-dasharray: 1.5 1;
}
.radial-progress-bar svg path:first-child {
  stroke-dasharray: 3.5 1.75;
}
.circular-text {
  position: relative;
}
.circular-text .emblem.to-top-left {
  position: absolute;
  top: -5rem;
  right: initial;
  bottom: 0;
  left: -5rem;
  width: 10rem;
  height: 10rem;
}
.circular-text .emblem {
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1;
  color: #b7b7b7;
  animation: spin-animation 20s linear infinite;
  text-align: center;
}
.mix-blend-lighter {
  mix-blend-mode: difference;
}
.circular-text .emblem span {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.5s cubic-bezier(0, 0, 0, 1);
}
@keyframes spin-animation {
  0% {
    transform: rotateZ(360deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}
/* Content Section */

/* Feedback */
.feedback {
  padding: 50px 0;
  /* background: linear-gradient(90deg, #000000d9 20%, #ffffff7a 100%),
    url(../images/banner-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
  position: relative;
}
.feedback h4 {
  color: #0c0c0c;
  margin-bottom: 20px;
}
.feedback h3 {
  font-size: 45px;
  color: #0c0c0c;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.feedback .item {
  padding: 30px 20px;
  /* background: #ffffff;
  border: 2px solid #62b483; */
}
.test-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  width: 70%;
  margin: 0px auto;
}
.test-head {
  display: inline-block;
  vertical-align: middle;
  padding-right: 40px;
  width: 400px;
}
.test-head img {
  width: 100% !important;
}
.test-bot h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  color: #0c0c0c;
}
.test-bot h5 {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 500;
  color: #0c0c0c;
}
.test-bot p {
  font-size: 20px;
  margin-bottom: 15px;
}
.test-bot .buttons {
  justify-content: flex-start;
}
.test-bot h5.avail-h5 {
  color: #478661;
  font-size: 24px;
  text-transform: uppercase;
}
.test-bot .form-control-plaintext {
  padding: 0.7rem 1rem;
  line-height: 1.5;
  color: #000000;
  background-color: #62b48347;
  margin-right: 30px;
  margin-top: 9px;
  width: 20vw;
}
.feedback .owl-carousel .owl-nav button.owl-next,
.feedback .owl-carousel .owl-nav button.owl-prev,
.feedback .owl-carousel button.owl-dot {
  font-size: 50px;
  background: transparent;
  height: 50px;
  width: 50px;
  position: relative;
  border-radius: 50%;
  border: 2px solid #0c0c0c;
}
.feedback .owl-carousel .owl-nav button.owl-next span,
.feedback .owl-carousel .owl-nav button.owl-prev span {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 47%;
  left: 53%;
}

.testimonial-carousel {
  position: relative;
}
.feedback .owl-carousel .owl-nav button.owl-next {
  right: 0px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.feedback .owl-carousel .owl-nav button.owl-prev {
  left: 0px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
/* Feedback */

/* Slider Banner */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_section {
    margin-bottom: 45px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_section {
    margin-bottom: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .slider_section {
    margin-bottom: 35px;
  }
}

.single_slider {
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  position: relative;
  min-height: 700px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .single_slider {
    min-height: 700px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_slider {
    min-height: 750px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_slider {
    min-height: 620px;
  }
}

@media only screen and (max-width: 767px) {
  .single_slider {
    min-height: 520px;
    background-position: left;
  }
}
.single_slider::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000000;
  top: 0;
  left: 0;
  opacity: 0.45;
}

.slider_text {
  text-align: center;
  padding: 186px 0 140px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_text {
    padding: 120px 0 110px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_text {
    padding: 80px 0 80px;
  }
}

@media only screen and (max-width: 767px) {
  .slider_text {
    padding: 30px 0 0;
  }
}
.slider_text h1 {
  color: #ffffff;
  font-size: 68px;
  font-weight: 400;
  line-height: 85px;
  text-align: center;
  letter-spacing: -2px;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_text h1 {
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_text h1 {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0;
  }
}

@media only screen and (max-width: 767px) {
  .slider_text h1 {
    font-size: 35px;
    line-height: 33px;
    letter-spacing: 0;
  }
}
.slider_text p {
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_text p {
    font-size: 22px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .slider_text p {
    font-size: 18px;
    line-height: 26px;
  }
}

.slider_area .slick-dots {
  position: absolute;
  bottom: 62px;
  left: 50%;
  transform: translatex(-50%);
}

@media only screen and (max-width: 767px) {
  .slider_area .slick-dots {
    bottom: 30px;
  }
}
.slider_area .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slider_area .slick-dots li.slick-active button {
  color: #ffffff;
  opacity: 1;
}
.slider_area .slick-dots li.slick-active button::before {
  background: #ffffff;
}
.slider_area .slick-dots li button {
  color: #d8d8d8;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  border: 0;
  padding: 0;
  padding-bottom: 14px;
  background: inherit;
  width: 50px;
  text-align: center;
  position: relative;
  opacity: 0.3;
}
.slider_area .slick-dots li button::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background: #d8d8d8;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .slider_area .slick-dots li button::before {
    height: 3px;
  }
}

@media only screen and (max-width: 767px) {
  .slider_area .slick-dots li button {
    font-size: 20px;
    line-height: 26px;
    padding-bottom: 10px;
    width: 40px;
  }
}

.slick-current .slider_text h1,
.slick-current .slider_text a,
.slick-current .slider_text p {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.slick-current .slider_text p {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.slick-current .slider_text a {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
/* Slider Banner */

/* Bestseller */
.bestseller {
  padding: 50px 0;
}
.bestseller .content h2 {
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.bestseller .content {
  text-align: center;
  margin-bottom: 20px;
}
.bestseller .content h5 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}
.best-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: center;
}
.best-box h4 {
  font-size: 20px;
  color: #0c0c0c;
  text-transform: capitalize;
}
.best-box h5 {
  font-size: 16px;
  text-transform: capitalize;
}
.best-box img {
  position: relative;
  right: 0;
  bottom: 2px;
  max-height: 130px;
  max-width: 130px;
  width: auto;
  border-left: 1px solid #ded4c7;
  border-top: 1px solid #ded4c7;
  box-shadow: 2px 2px 0 #ded4c7;
}
.best-content {
  margin-left: 20px;
}
/* Bestseller */

/* Banner */
.banner {
  background: linear-gradient(360deg, #00000000 0%, #000000e0 100%),
    url(../images/banner-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0 30px;
  /* height: 690px; */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.contact-banner {
  height: 500px;
}
.pub-banner {
  background: linear-gradient(360deg, #00000000 0%, #000000e0 100%),
    url(../images/publishing/banner-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.d-banner {
  background: linear-gradient(360deg, #00000000 0%, #000000e0 100%),
    url(../images/distribution/banner-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mk-banner {
  background: linear-gradient(360deg, #00000000 0%, #000000e0 100%),
    url(../images/marketing/banner-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #f5f5f5;
  text-transform: capitalize;
}
.banner h1 {
  font-size: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #f5f5f5;
}
.contact-banner.banner h1 {
  color: #f5f5f5;
}
.banner p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #f5f5f5;
}
.banner .buttons {
  justify-content: center;
}
/* Form Section */
.form-sec {
  padding: 1rem 0px;
}
.form-main-heading {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 20px;
  text-align: center;
}
.form-container {
  /* background: #fff; */
  background: #ffffff40;
  padding: 20px 40px;
  border-radius: 20px;
  margin-top: 30px;
  backdrop-filter: blur(10px);
  border: 0.1px solid #fff;
}
.form-sec .form-control {
  padding: 0.775rem 0.75rem;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 10px;
}
.form-control:focus {
  border-color: transparent;
  box-shadow: none;
}
.form-container button {
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  width: 100%;
  background: #f5f5f5;
  color: #0c0c0c;
}
.form-sec .form-control::placeholder {
  color: #000000;
}
.b2 {
  display: none;
}
.form-container .bg-light {
  background-color: #ffffff67 !important;
}
/* Banner */

/* Testimonails */
.testimonial {
  padding: 50px 0;
}
.testimonial-content {
  text-align: center;
  margin-bottom: 40px;
}
.testimonial-content h2 {
  font-size: 60px;
  color: #0c0c0c;
  font-weight: 600;
  margin-bottom: 15px;
}
.tm-box {
  padding: 20px;
  margin-bottom: 20px;
}
.tm-box h3 {
  margin-bottom: 14px;
}
.tm-box p {
  margin-bottom: 14px;
}

/* Testimonails */

/* Widget */
.side-widget {
  position: fixed;
  z-index: 11;
  top: 0;
  width: auto;
  height: 100%;
  padding: 1rem 0;
  left: 1rem;
  transition: transform 1s cubic-bezier(0.2, 1, 0.2, 1);
}
.side-widget .item {
  width: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.side-widget .widget {
  position: relative;
  top: initial;
  right: initial;
  bottom: initial;
  left: initial;
}
.label-icons {
  position: absolute;
  z-index: 3;
  bottom: calc(100% + 15px);
  right: 10%;
  width: fit-content;
  height: fit-content;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  transform: rotate(0);
  font-size: 1rem;
  color: #808080;
}
.side-widget .widget.label-icons .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #0c0c0c;
  color: #f5f5f5;
  border-radius: 50%;
  opacity: 0.9;
}
.label-icons .link {
  margin: 0;
  padding: 5px;
}
.link {
  position: relative;
  z-index: 5;
  text-decoration: none;
  color: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.side-widget .widget.label-icons .icon {
  margin: 0;
}
.label-icons .icon {
  font-size: 1rem;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* Widget */

/* Privacy */
.policy_content {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.policy_content h4{
  font-size: 30px;
  margin-bottom: 15px;
}
.policy_content h6{
  font-size: 25px;
  margin-bottom: 10px;
}
.policy_content p{
  margin-bottom: 8px;
}
.policy_content ul {
  padding-left: 20px;
}
.policy_content ul li {
  list-style-type: disc;
  margin-bottom: 5px;
}
.policy_content a{
  color: #0c0c0c;
  text-decoration: none;
}
/* Privacy */


#cookie-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);

  opacity: 1;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

#cookie-footer.hide {
  opacity: 0;
  transform: translateY(100%);
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookie-buttons label {
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cookie-buttons button {
  background: #00d9d2;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: bold;
}

.custom-cookie-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e1e1e;
  color: #fff;
  width: 90%;
  max-width: 900px;
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-content a {
  color: #c40511;
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-close {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.cookie-close:hover {
  background: #c40511;
  border-color: #c40511;
  color: #000;
}
#cookieBar {
  display: none;
}
#cookie-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);

  opacity: 1;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

#cookie-footer.hide {
  opacity: 0;
  transform: translateY(100%);
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookie-buttons label {
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cookie-buttons button {
  background: #00d9d2;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: bold;
}

.custom-cookie-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #443f3f;
  color: #fff;
  width: 90%;
  max-width: 900px;
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-content a {
  color: #000000;
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-close {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.cookie-close:hover {
  background: #3a3132;
  border-color: #000000;
  color: #000;
}
#cookieBar {
  display: none;
}
