
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: "Archivo", sans-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 img {
  width: 100%;
}

/*RESPONSIVE NAVIGATION*/

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

/* ************************************ */

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

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #000;
}

::-webkit-scrollbar-thumb {
  background: #fff;
}

::-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: 30px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  color: #f5f5f5;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.button-1:hover {
  color: #0c0c0c;
  transform: scale(1);
  outline: 1px solid #000;
  box-shadow: 4px 4px 6px -1px #0c0c0c30;
}

.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 800ms;
}

.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: 16px;
  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: 16px;
  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;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.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;
  margin-top: 20px;
}

.faq .fas {
  float: right;
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.faq .open .fas {
  transform: translateY(-50%) rotateZ(-180deg);
}

.faq .title {
  /* padding-top: 20px; */
  color: #2b2732;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.faq .item {
  border-radius: 50px;
  max-height: 93px;
  overflow: hidden;
  background: #d5d5d5;
  color: #000000;
  background-size: 100%;
  padding: 20px 50px 20px 30px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
}

.faq .item.open {
  max-height: 1000px;
}

.faq .text-xl {
  font-size: 18px;
  font-weight: 600;
  color: #0c0c0c;
}

/* FAQ */

/* Contact */
.contact {
  padding: 50px 0px 50px;
  background: linear-gradient(90deg, #000000e0 0%, #000000b0 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: "Archivo", sans-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: 0;
  color: #fff;
}

.contact form .form-control.thick {
  height: 3.3rem;
  padding: 0.5rem;
  width: 25%;
}

.contact form .form-control:focus {
  border-bottom: 2px solid #fff;
}

.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 {
  line-height: 2.5rem;
  padding: 0 3rem 0 3rem;
  border: 0;
  font-size: 17px;
  font-weight: 500;
  border-radius: 30px;
  background: #f5f5f5;
  color: #0c0c0c;
  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;
  text-transform: uppercase;
  border-bottom: 2px #f4f4f4;
  border-bottom-style: solid;
  max-width: max-content;
  margin: 0 auto 20px;
  padding-bottom: 2px;
}

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: 50%;
  outline: 8px #fff;
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
}

.social a:hover {
  color: #000;
  background-color: #d5d5d5;
}

.list-star li {
  position: relative;
  padding-bottom: 8px;
}

.list-star li a:hover {
  text-decoration: underline !important;
}

.list-star li::before {
  display: none;
  content: "\f192";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 100px;
  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-weight: 400;
  padding: 8px 20px;
  border-color: #0c0c0c;
  border-radius: 30px;
  transition: all 0.3s;
}

.btn-outline-success:hover {
  color: #0c0c0c;
  background-color: #f5f5f5;
  border-color: #0c0c0c;
  transform: scale(0.9);
}

.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: #000;
  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;
  color: #fff;
}

ul.hinfo li img {
  filter: brightness(0);
}

ul.hinfo li a {
  color: #f5f5f5;
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
}

.navbar .nav-item .dropdown-menu {
  color: #000;
  padding: 20px 10px;
  border-radius: 6px;
  top: 35px;
  background-color: #fff;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
  color: #000;
  border-radius: 6px;
  padding: 0.25rem 1rem;
}
.navbar .nav-item .nav-link {
  position: relative;
}

.navbar .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  transform: scale(0);
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
}

.navbar .nav-item .nav-link:hover::before {
  transform: scale(1);
}

.navbar .nav-item .dropdown-menu .dropdown-item:hover {
  color: #fff;
  background-color: #000;
}

/* 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;
  background: #fff;
  height: 500px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}

.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: #000000b5;
  font-size: 16px;
}

.pb-container {
  position: relative;
}

/* Process */

/* Client Logo */
.logo-box img {
  border-radius: 25px;
}

.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: 80px 0 40px;
}

.content-sec h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.content-sec p {
  font-size: 16px;
  margin-bottom: 15px;
}
.content-sec .owl-carousel .owl-item img {
  border-radius: 25px;
}
.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;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.feedback .item {
  padding: 30px 0;
}

.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;
}

.test-head img {
  width: 100% !important;
}

.test-bot h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #0c0c0c;
}

.test-bot h5 {
  margin: 20px 0 10px;
  font-size: 26px;
  font-weight: 500;
  color: #0c0c0c;
}

.test-bot p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #000000b5;
}

.test-bot .buttons {
  margin-top: 20px;
  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: #fff;
  height: 50px;
  width: 50px;
  position: relative;
  border-radius: 50%;
  border: 1px solid #0c0c0c;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.feedback .owl-carousel .owl-nav button.owl-next:hover,
.feedback .owl-carousel .owl-nav button.owl-prev:hover {
  background-color: #000;
  color: #fff;
}

.testimonial-carousel {
  position: relative;
}

.feedback .owl-carousel .owl-nav button.owl-next {
  right: 100px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.feedback .owl-carousel .owl-nav button.owl-prev {
  left: 100px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

/* Feedback */

/* service */

.service {
  padding: 50px 0;
  background-color: #000;
}

.service-card {
  padding: 80px 40px;
  border: 1px solid #fff;
  border-radius: 180px 180px 0 0;
  margin-bottom: 12px;
  height: auto;
  position: relative;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 60px;
  height: 40px;
  background-color: #000;
  border-top: 1px solid #ffff;
  border-left: 1px solid #ffff;
}
.service-card.no-border.service-center::after,
.service-card.no-border.service-center::before {
  border: 0;
  background-color: transparent;
}

.service-center {
  border-radius: 0 0 180px 180px;
  position: relative;
}
.service-card.service-right::after {
  bottom: -1px;
  left: -1px;
  right: inherit;
  border-bottom: none;
  border-left: none;
  border-top: 1px solid #ffff;
  border-right: 1px solid #ffff;
}

.service-card.service-center::after {
  top: -1px;
  right: -1px;
  left: inherit;
  border-bottom: 1px solid #ffff;
  border-left: 1px solid #ffff;
  border-top: none;
  border-right: none;
}
.service-card.service-center::before {
  content: "";
  top: -1px;
  left: -1px;
  position: absolute;
  right: inherit;
  border-bottom: 1px solid #ffff;
  border-right: 1px solid #ffff;
  border-top: none;
  border-left: none;
  background-color: #000;
  width: 60px;
  height: 40px;
}

.service-card h1 {
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 5px;
  font-size: 1.7rem;
}

.service-card p {
  margin-top: 10px;
  font-size: 16px;
  color: #ffffffd8;
  text-align: center;
  font-weight: 300;
  line-height: 1.7;
}

@media only screen and (max-width: 991px) {
  .service-card {
    padding: 50px 5px;
  }
}
@media (max-width: 768px) and (min-width: 576px) {
  .service-card {
    padding: 50px 35px;
  }
}
@media only screen and (max-width: 576px) {
  .service-card {
    padding: 50px 40px;
  }
}

@media only screen and (max-width: 360px) {
  .service-card {
    padding: 50px 25px;
  }
}
/* service */

/* 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.7;
}

.slider_text {
  text-align: center;
  padding: 186px 0 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@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: 60px;
  font-weight: 600;
  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: #fffff0d3;
  font-size: 20px;
  font-weight: 300;
  line-height: 36px;
  margin-bottom: 0;
  max-width: 500px;
}

@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: 0;
  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:focus,
.feedback .owl-carousel .owl-nav button.owl-next, 
.feedback .owl-carousel .owl-nav button.owl-prev {
  outline: none;
}

.slider_area .slick-dots li button::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background: #d8d8d8;
  bottom: 0;
  left: 0;
  border-radius: 25px;
}

@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: 0;
    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;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.best-box h5 {
  font-size: 16px;
  text-transform: capitalize;
}

.best-box img {
  position: relative;
  right: 0;
  bottom: 2px;
  max-height: 160px;
  max-width: 160px;
  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;
}
.print-banner {
  background: linear-gradient(360deg, #00000000 0%, #000000e0 100%),
    url(../images/printing/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;
}
.tm-box img{
  border-radius: 25px;
}
/* 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;
  transition: all 0.3s;
}

.side-widget .widget.label-icons .link:hover {
  color: #000;
  background-color: #fff;
}

.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 */
