@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Black.woff2') format('woff2'),
    url('../fonts/Poppins-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('BebasNeue-Regular.woff2') format('woff2'),
    url('BebasNeue-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.woff2') format('woff2'),
    url('../fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
    url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
    url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
    url('../fonts/Poppins-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
    url('../fonts/Poppins-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
    url('../fonts/Poppins-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
    url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
    url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-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 {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

body {
  font-family: 'Poppins' !important;
  background-color: #F7F7F7;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

:root {
  --black-color: #000000;
  --orange-color-1: #E28D00;
  --orange-color-2: #D67C02;
  --orange-color-3: #B75609;
  --white-color: #fff;
  --text-color: #555555;
  --font-family: Poppins;
}

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

/*RESPONSIVE NAVIGATION*/
.mobile-menu {
  display: none;
}

.mobile-menu .circle {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  background: var(--orange-color-1);
  background: linear-gradient(135deg, var(--orange-color-1) 0%, var(--orange-color-2) 54%, var(--orange-color-3) 100%);
  font-size: 16px;
  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: var(--orange-color-1);
  background: linear-gradient(135deg, var(--orange-color-1) 0%, var(--orange-color-2) 54%, var(--orange-color-3) 100%);
  margin: 0 auto;
  font-size: 16px;
  position: fixed;
  right: 20px;
  top: 20px;
  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;
  overflow: auto;
}

.mobile-menu .nveMenu.is-opened {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

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

.mobile-menu .navlinks li a {
  text-transform: uppercase;
  color: var(--black-color);
  font-weight: 500;
  font-size: 14px;
  text-wrap: auto;
}

.mobile-menu .navlinks li a:hover {
  text-decoration: none;
}

/*RESPONSIVE NAVIGATION*/

/* header start */

.desktop-header {
  width: 100%;
  padding-block: 14px;
}

.desktop-header .logo img {
  width: 180px;
}

.desktop-header .menu-main li a {
  color: var(--black-color);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  transition: all ease-in-out 0.3s;
}

.desktop-header .menu-main li a:hover {
  color: var(--orange-color-1);
}
.my-drop-menu .btn-check:focus+.btn, .btn:focus {
  box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%);
}
.my-drop-menu .dropdown-menu {
  border-radius: 10px;
}
.my-drop-menu .dropdown-item:focus, .dropdown-item:hover {
  color: #1e2125;
  background-color: #d98001;
  color: #fff !important;
}
.my-drop-menu .btn {
  padding: 0px;
}

.desktop-header .menu-main li .active {
  color: var(--orange-color-1);
  font-weight: 600;
  position: relative;
}
.desktop-header .dropdown-item {
  padding: .35rem 1rem;
}

.desktop-header .menu-main li .active::before {
  content: '';
  position: absolute;
  background-color: var(--orange-color-1);
  width: 101%;
  height: 2.3px;
  bottom: -6px;
  left: 0;
}

.icon-box .icon i {
  font-size: 16px;
  border: 2px solid var(--orange-color-1);
  padding: 12px;
  border-radius: 50%;
  color: var(--orange-color-1);
}

.icon-box .icon-text-con h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--black-color);
  font-family: var(--font-family);
}

.icon-box .icon-text-con a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--font-family);
}

.icon-box .icon-text-con a:hover {
  color: var(--orange-color-1);
}
.mobile-menu .logo img{
  width: 100px;
}
/* header end */

/* BUTTON STYLE START */

.btn-padding {
  padding: 14px 22px;
  border: none;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  transition: all ease-in-out 0.3s;
}

.btn-orange {
  color: var(--white-color);
  background: var(--orange-color-1);
  background: linear-gradient(135deg, var(--orange-color-1) 0%, var(--orange-color-2) 54%, var(--orange-color-3) 100%);
}

.btn-orange span {
  color: var(--white-color) !important;
}

.btn-white {
  background-color: var(--white-color);
  border-radius: 0px 20px;
}

.btn-white span {
  color: var(--orange-color-2) !important;
}

.btn-outline-white {
  background-color: transparent;
}

.btn-outline-white span {
  color: var(--white-color) !important;
}

.btn-padding span {
  display: block;
  position: relative;
}

.btn-padding .button__bg {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  border-radius: 0px 20px;
}

.btn-padding .button__bg::before {
  width: 110%;
  height: 0;
  padding-bottom: 110%;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1);
}

.btn-padding .button__bg::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-padding:hover .button__bg {
  transform: scale3d(1.2, 1.2, 1);
}

.btn-padding:hover .button__bg::before {
  transition: transform 0.5s cubic-bezier(0.1, 0, 0.3, 1);
  transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
}

.btn-padding:hover .button__bg::after {
  opacity: 1;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
}

.btn-padding .button__bg::before,
.btn-padding .button__bg::after {
  content: '';
  position: absolute;
  border: 2px solid #fff;
  border-radius: 40px;
  border-radius: 0px 20px;
}

/* ORANGE BUTTON ANIMATED */

.btn-orange .button__bg {
  background: var(--orange-color-1);
  background: linear-gradient(135deg, var(--orange-color-1) 0%, var(--orange-color-2) 54%, var(--orange-color-3) 100%);
}

.btn-orange:hover span {
  color: var(--black-color) !important;
}

.btn-orange .button__bg::before,
.btn-orange .button__bg::after {
  background: #fff;
}

/* ORANGE BUTTON ANIMATED */

/* WHITE BUTTON ANIMATED */

.btn-white .button__bg {
  background: var(--white-color);
}

.btn-white:hover .button__bg {
  background-color: transparent;
}

.btn-white:hover span {
  color: var(--white-color) !important;
}

.btn-white:hover {
  background-color: transparent !important;
}

.btn-white .button__bg::before,
.btn-white .button__bg::after {
  background: var(--orange-color-2);
}

/* WHITE BUTTON ANIMATED */

/* WHITE OUTLINE BUTTON ANIMATED */

.btn-outline-white .button__bg {
  background: transparent;
  border: 2px solid #fff;
}

.btn-outline-white:hover .button__bg {
  background-color: transparent;
}

.btn-outline-white:hover span {
  color: var(--orange-color-2) !important;
}

.btn-outline-white:hover {
  background-color: transparent !important;
}

.btn-outline-white .button__bg::before,
.btn-outline-white .button__bg::after {
  background: var(--white-color);
}

/* WHITE OUTLINE BUTTON ANIMATED */

/* BUTTON STYLE END */

/* HOME CSS END */


.main-banner {
  background-image: url('https://hexabookmarketing.com/assets/images/banner-new.webp');
  background-size: cover;
  background-position: center;
  padding-block: 150px 300px;
  position: relative;
}

.banner-inner-content {
  padding-inline: 8%;
  text-align: center;
}

.small-heading {
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
}

.main-heading {
  font-family: var(--font-family);
  font-size: 54px;
  letter-spacing: 0.4px;
  color: var(--white-color);
  font-weight: 700;
}

.banner-inner-content form {
  margin: auto;
  text-align: center;
  margin-top: 24px;
}

.banner-inner-content form input {
  background-color: var(--white-color);
  padding: 14px 22px;
  border-radius: 40px;
  border-radius: 0px 20px;
  /*width: 280px;*/
  border: none;
  outline: none;
  font-size: 16px;
  margin-right: 10px;
  box-shadow: 0px 0px 13px #74747454;
  margin-bottom: 15px;
}

.heighlight-text {
  background: #B75609;
  background: linear-gradient(to left, #B75609 0%, #E28D00 6%, #D67C02 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.small-heading-orange {
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  background: #B75609;
  background: linear-gradient(to left, #B75609 0%, #E28D00 6%, #D67C02 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-2 {
  font-family: var(--font-family);
  font-size: 40px;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  font-weight: 700;
}

.text {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6rem;
}

/* Second section start */

.img-box img {
  width: 100%;
}

.second-section {
  padding-block: 100px;
}

/* Second section end */

/* LOGO SLIDER START */

.logo-slider {
  padding-block: 40px;
  background: white;
}

.logo-slider .item img {
  width: 150px;
  margin: auto !important;
}

.logo-slider .owl-stage {
  display: flex !important;
  align-items: center;
}

/* LOGO SLIDER END */

/* SERVICE SECTION START */
.plus-icon {
  color: inherit;
}
.content-padding {
  padding-inline: 12%;
}

.service-box {
  padding: 30px 20px;
  border: 1px solid #00000026;
  border-radius: 30px 0px;
  transition: all ease-in-out 0.3s;
  margin-top: 20px;
  box-shadow: 5px 5px 0px #d67c02;
}
.service-box:hover {
  background-color: #d67c02;
  border-radius: 0px 30px;
  color: #fff;
  box-shadow: -5px -5px 0px #000000;
}
.service-box:hover .text {
  color: #fff;
}
.service-box:hover img  {
  filter: brightness(0.1) !important;
}

.service-box img {
  width: 66px;
  margin: auto;
}

.service-box h3 {
  font-size: 26px;
  font-weight: 600;
}

.service-box p {
  font-size: 16px;
  height: 180px;
  overflow-y: scroll;
  padding-right: 8px;
}
/* width */
.service-box p::-webkit-scrollbar {
  width: 7px;
}

/* Track */
.service-box p::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0); 
  border-radius: 10px;
}
 
/* Handle */
.service-box p::-webkit-scrollbar-thumb {
  background: rgb(195, 195, 195); 
  border-radius: 10px;
}

/* Handle on hover */
.service-box p::-webkit-scrollbar-thumb:hover {
  background: black; 
}

.service-box i {
  font-size: 18px;
}

.service-con .service-down:nth-child(odd) {
  margin-bottom: -150px;
}

.service-section {
  padding-block: 100px 200px;
}

/* SERVICE SECTION END */

/* PORTFOLIO SECTION START */

.porfolio-section {
  background-image: url('../images/white-banner.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-block: 80px;
  overflow: hidden;
}
.book-slider{
  margin-top: 40px;
}
.book-slider .item img{
  width: 97%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.book-slider .owl-carousel .owl-stage-outer{
  overflow: visible;
}

/* PORTFOLIO SECTION END */

/* WHY CHOOSE US START */

.why-chose-us {
  padding-block: 100px;
}

.why-chose-us img {
  width: 97%;
  text-align: left;
}

/* WHY CHOOSE US END */

.icon-box svg path {
  fill: var(--orange-color-2);
}

.icon-box .icon-box-heading {
  font-size: 20px;
  font-weight: 500;
}

/* CTA SECTION START */

.section-cta {
  margin-top: 30px;
  padding-block: 40px 30px;
  background: var(--orange-color-1);
  background: linear-gradient(135deg, var(--orange-color-2) 18%, var(--orange-color-1) 54%, var(--orange-color-3) 100%);
}

.section-cta .img-box {
  text-align: right;
  padding-right: 30px;
}

.section-cta .img-box img {
  width: 380px;
  margin-top: -100px;
}

.section-cta .content-box {
  padding-left: 30px;
}

/* CTA SECTION END */


/* TESTIMONIAL START */

.main-testimonial {
  padding-block: 100px;
}
.unique-slider-container {
  width: 86%;
  margin: 40px auto;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  border-radius: 24px;
  padding-block: 50px;
  background-color: #fff;
}
.unique-slider-wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
}
.unique-slide {
  min-width: 100%;
}
.unique-slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--orange-color-1);
  background: linear-gradient(135deg, var(--orange-color-2) 18%, var(--orange-color-1) 54%, var(--orange-color-3) 100%);
  color: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.unique-slider-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: gray;
  background: linear-gradient(to right, gray 0%, gray 100%);
}
.unique-prev {
  left: 10px;
}
.test{
  position: relative;
}
.unique-next {
  right: 10px;
}
.testimonial-heading-con{
  padding: 20px 10px 20px 50px;
}
.testimonial-heading-con .testimonial-heading{
  font-size: 28px;
  font-family: Poppins;
  font-weight: 500;
  line-height: 1.8em;
}
.testimonial-content-con{
  padding-block: 20px;
  padding-inline: 10px 40px;
}
.user-info{
  margin-top: 20px;
}
.user-info img{
  width: 70px;
}
.user-name{
  font-size: 18px;
  font-family: Poppins;
  font-weight: 600;
  line-height: 1.3em;
  color: #000;
}
.user-designation{
  font-size: 16px;
  font-family: Poppins;
  font-weight: 500;
  line-height: 1.3em;
  color: var(--text-color);
  margin-top: 8px;
  margin-left: -6px;
}

/* TESTIMONIAL END */



/* FOOTER START */

.footer{
  background-image: url('../images/footer-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-block: 60px 20px;
}
.footer-info img{
  width: 140px;
}
.footer-heading{
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
  letter-spacing: 0.3px;
}
.footer ul li a{
  font-size: 16px;
  color: var(--white-color);
  line-height: 1.6rem;
  transition: all ease-in-out 0.3s;
}
.footer ul li{
  margin-bottom: 10px;
}
.footer ul li a:hover{
  color: var(--orange-color-2);
}
.footer .conact-info-con ul li{
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .conact-info-con i{
  background-color: var(--white-color);
  color: var(--black-color);
  border-radius: 50%;
  font-size: 14px;
  padding: 8px;
  transition: all ease-in-out 0.3s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .icon-box{
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .icon-box i:hover{
  background: var(--orange-color-1);
  background: linear-gradient(135deg, var(--orange-color-2) 18%, var(--orange-color-1) 54%, var(--orange-color-3) 100%);
  color: #fff;
}
.footer .footer-info form{
  display: flex;
}
.footer .footer-info form input{
  background-color: var(--white-color);
  color: var(--black-color);
  font-size: 15px;
  padding: 12px 6px 12px 22px;
  border-radius: 14px 0px 0px 14px;
  border: none;
  outline: none;
  width: 70%;
}
.footer .footer-info form button{
  border: none;
  padding: 12px 20px;
  border-radius: 0px 8px 8px 0px;
  color: var(--white-color);
  font-size: 14px;
  border-left: 1px solid var(--orange-color-2);
}
.footer .footer-info form button:hover .button__bg{
  transform: scale(1);
}
.footer .footer-info form button .button__bg{
  border-radius: 0px 8px 8px 0px !important;
}
.footer .footer-info form button .button__bg::before, .footer .footer-info form button .button__bg::after{
  border-radius: 0px;
}

input:focus, textarea:focus{
  outline: 2px !important;
  outline-color: var(--orange-color-2) !important;
  outline-style: solid !important;
}
.copy-right{
  border-top: 1px solid var(--white-color);
  margin-top: 60px;
  padding-block: 20px 8px;
}
.footer-left-padding{
  padding-left: 20%;
}
/* FOOTER END */


/* HOME CSS START */

.logo-slider .owl-carousel .owl-nav,
.logo-slider .owl-carousel .owl-dots,
.book-slider .owl-carousel .owl-nav,
.book-slider .owl-carousel .owl-dots
{
  display: none;
}




/* contact css start */
 
section.contact-form {
  padding-block: 80px;
}
form.contact-form input {
  border-radius: 0px 20px;
} 
form.contact-form textarea {
  border-radius: 0px 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 15px 25px;
}
form.contact-form input {
  border-radius: 0px 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 15px 25px;
}
.form-content {
  text-align: center;
}
.contact-form {
  padding-top: 30px;
  gap: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-page .submit-btn {
  width: auto;
  margin: auto;
}
.part-1 {
  width: 48.91%;
  padding: 15px 25px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
}
.part-2 {
  width: 32%;
  padding: 15px 25px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
}
.part-3 {
  width: 100%;
  padding: 15px 25px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
}
/* contact css end */
 
/* map start */
.map-iframe {
  padding: 0;
}
/* map end */
 
/* contact info start */
.contact-info {
  padding-block: 80px;
}
.more-info {
  height: 100%;
  text-align: center;
  padding: 35px 20px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 15px;
  transition: all ease-in-out 0.3s;
  box-shadow: 5px 5px 0px #d67c02;
  border-radius: 30px 0px;
}
.more-info:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  transition: all ease 0.3s;
  background-color: #d67c02;
  border-radius: 0px 30px;
  color: #fff;
  box-shadow: -5px -5px 0px #000000;
}
.more-info:hover i {
  color: #ffffff;
  border: 2px solid #ffffff;
}
.more-info:hover a {
  color: #000;
}
.more-info h3 {
  padding-top: 8px;
  padding-bottom: 6px;
  font-size: 20px;
  font-weight: 600;
}
.more-info p a {
  color: #555555;
  font-weight: 500;
}
.more-info i{
  color: var(--orange-color-2);
  border: 2px solid var(--orange-color-2);
  padding: 16px;
  border-radius: 50%;
  font-size: 18px;
  margin-bottom: 10px;
}

/* contact info end */
 
/* services page start */
.faqs-sec{
  padding-block: 80px;
}
section.faqs-sec .row {
  align-items: center;
}
.faq-img img {
  width: 85%;
  margin: auto;
  display: block;
}
.faq-container .faq-item {
  margin-top: 13px;
}
.faq-item.active {
  background-color: #dc8501;
    color: #fff;
}
.faq-item.active .faq-question {
  background: #ffffff00;
  color: #fff;
  padding-bottom: 0px;
}
.faq-item.active .faq-answer {
  background-color: #ffffff00;
  display: block;
  color: #fff;
}
.faq-container {
  border-radius: 10px;
}
.faq-item {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-bottom: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  border-radius: 20px 0px;
}
.faq-question {
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.faq-answer {
  background-color: #fff;
  display: none;
  padding: 10px;
  font-size: 14px;
  color: #333;
  transform: 0.3s;
}
.active .faq-answer {
  background-color: #fff;
  display: block;
}
/* services page End */
 

.main-bradcamp {
  background-image: url(../images/bradcamp-bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}
 
.brad-banner {
  padding: 0 100px;
}
 
.main-Transforming {
  background-image: url(../images/trans-bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0px;
}
section.main-Transforming .button-con.mt-3.d-flex.gap-3 {
  margin: 0px auto;
  display: table !important;
}
 
section.main-Transforming .button-con.mt-3.d-flex.gap-3 a {
  margin: 0 5px 0 5px;
}
section.main-choose {
  padding: 100px 0;
}
.box-cont {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  transition: all ease-in-out 0.3s;
  box-shadow: 5px 5px 0px #d67c02;
  border-radius: 30px 0px;
  border: 1px solid #00000026;
}
.box-cont:hover {
  background-color: #d67c02;
  border-radius: 0px 30px;
  color: #fff;
  box-shadow: -5px -5px 0px #000000;
  color: #fff;
}
.box-cont:hover h4, .box-cont:hover p {
  color: #fff;
}
.box-cont:hover img {
  filter: brightness(0.1) !important;
}
.box-cont img {
  width: 50px;
}
 
.box-cont h4 {
  color: #000;
  font-size: 22px;
  font-weight: 600;
  padding: 20px 0;
}
 
.inner-box {
  padding-top: 40px;
}
 
/* About-us */
 
  
/* Packages */
 
.pakage-content {
  text-align: center;
  padding: 0 170px;
}

.pakage-content i {
  font-size: 24px;
  font-weight: 400;
  background: linear-gradient(to left, #B75609 0%, #E28D00 6%, #D67C02 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.pakage-content p {
  color: #555555;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
 
.pakage-content h2 {
  font-size: 40px;
  color: #000;
  font-weight: 700;
  padding: 12px 0;
}
 
section.main-pakages {
  padding: 100px 0 150px 0;
}
 
.pakage-list {
  border: 1px solid #dbdbdb;
  background: #ffff;
}
 
.grad-head {display: flex;
  align-items: center;
  height: 95px;
  background-image: url(https://hexabookmarketing.com/assets/images/Vector\ 1.png);
  background-position: center left;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  margin-left: -42px;}
 
 
.pakage-list {
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
}
 
.pakage-list h3 {
  color: #fff;
  font-size: 20px;
  text-align: left;
}
 
.price {
  text-align: center;
}
 
.price span {
  color: #000;
  font-size: 30px;
  font-weight: 600;
}
 
.price del {
  font-size: 14px;
  color: gray;
  margin-left: 5px;
}
 
ul.list {
  padding: 20px 10px;
  text-align: left;
}
 
ul.list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}
 
 
.grad-head h3 {
  padding: 10px 42px;
  margin-top: -10px;
}
 
.btn-padding i {
  transform: rotate(-44deg);
}
 .pakage-list .list{
  height: 300px;
  margin-bottom: 16px;
  overflow-y: scroll;
  list-style: disc;
  padding-left: 20px;
 }
 .pakage-list .list li::marker {
  color: var(--orange-color-1);
 }
 .pakage-list .list::-webkit-scrollbar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}

.pakage-list .list::-webkit-scrollbar {
  width: 8px;
}
 
/* Handle */
.pakage-list .list::-webkit-scrollbar-thumb {
  background: var(--orange-color-2); 
  border-radius: 10px;
}

/* Handle on hover */
.pakage-list .list::-webkit-scrollbar-thumb:hover {
  background: var(--orange-color-3); 
}
/* packages */
 
/* top bar start */
.topbar {
  width: 100%;
  text-align: center;
}
.top-content {
  padding: 15px;
    color: #fff;
    border-radius: 2px 25px 0px 33px;
    animation: color-change 1s infinite;
    max-width: 550px;
    display: block;
 margin-left: 10px;
}

@keyframes color-change {
  0%     {background-color:#dc8301;}
  50.0%  {background-color:#b75609;}
  100.0%  {background-color:#dc8301;}
}
.top-content a {
  color: #fff;
}

.progress-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: #ccc;
}
.process-step {
  margin: 0px 5px;
}
.process {
  margin-top: 70px;
  margin-bottom: 20px;
}
.progress-bar {
  height: 8px;
  background: #D67C02 ;
  width: 0%;
}

/* scroll-sec start */

.process-head {
  position: sticky;
  top: 0px;
  right: 0px;
  left: 0px;
  z-index: 2;
  margin-bottom: 6vh;
}
.process-step:nth-child(2n) {
  background: rgba(var(--clr-2), 1);
}
.process-step {
  position: sticky;
  top: 20vh;
  z-index: 2;
  min-height: 250px;
  align-items: center;
  border-radius: 40px;
  color: #fff;
}

.number .heading {
  font-size: 100px;
  text-align: center;
  display: block;
  line-height: 1;
  color: #fff;
}

.bg-2, .process-step:nth-child(2n) {
  background: #db8302;
}
.bg-1, .process-step:nth-child(odd) {
  background: #b75609;
}
.drop-down-cont, .process-step {
  box-shadow: 0 0 20px rgb(98 98 98 / 18%);
}
.main-testimonial .slide-sec {
  border: solid #db8302 2px;
  border-radius: 15px;
  width: 70%;
  margin: 0px auto;
  transition: 0.3s;
}
.main-testimonial .slick-active .slide-sec {
  width: 80%;
}
.main-testimonial .slick-slide {
  margin: -2px 0px;
}
.main-testimonial .slick-dots li.slick-active button:before {
  color: #bf6107;
}
.main-testimonial .slick-dots li button:before {
  font-family: 'slick';
  font-size: 10px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: #cd8743;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main-testimonial .vertical-center-4 {
  margin-top: 50px;
}

/* ----- video start ----- */
.overlay-video {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
}
#myVideo {
  position: relative;
  right: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: opacity(0.6);
}
/* ----- video end ----- */

.banner-img {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
.banner-img img {
  width: 100%;
  filter: opacity(0.4);
}

/* popup start */

#popup-3 {
  box-shadow: 0 0 20px #15c0e0;
  z-index: 99999999 !important;
  border-radius: 10px;
  background-image: url('https://hexabookmarketing.com/assets/images/home-banner-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  top: 10%;
}
#popup-new {
  border-radius: 0px 30px;
}
#popup-new .modal-body {
  padding: 0px;
}
#popup-new .modal-header .btn-close {
  padding: 5px;
  margin: -0.5rem -0.5rem -0.5rem auto;
  position: absolute;
  right: 0px;
  background-color: #ce7b15;
  opacity: 1;
  z-index: 9;
  border-radius: 50px;
}
#popup-new .modal-header .btn-close:hover {
  background-color: #b55709;
}
#popup-new .btn-close {
      background: none;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      color: #fff;
}
#popup-new .banner-form {
  background-color: #d9d9d900;
  max-width: 100%;
  padding: 30px;
  background-image: url(https://hexabookmarketing.com/assets/images/home-banner-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.modal-header {
  padding: 0px;
  border-bottom: 0px solid #dee2e6;
}
.modal-footer {
  display: none;
}
#popup {
  display: none; 
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  box-shadow: 0 0 15px #c76a05;
  z-index: 99999999 !important;
  border-radius: 10px;
  background-image: url(../images/about-inner.html);
  background-image: url('https://hexabookmarketing.com/assets/images/home-banner-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0px 30px;
}

.popup-body {
  padding: 0px;
  border-radius: 0px 30px;

}

.modal-dialog {
  box-shadow: 0 0 15px #ce7b15;
  z-index: 99999999 !important;
  border-radius: 10px;
  /* background-image: url('../../images/banners/banner-video-2.mp4'); */
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.6s;
  max-width: 50%;
  top: 10vh;
  border-radius: 0px 30px;
}
.modal-dialog .banner-img img {
  border-radius: 0px 30px;
}
.popup-body .banner-img img {
  border-radius: 0px 30px;
}
#overlay-3 {
  display: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  z-index: 99999999 !important;
}
#overlay-2 {
  display: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  z-index: 99999999 !important;
}
#close-btn3 {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #15c0e0;
  color: white;
  border: none;
  padding: 5px 11px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 100px;
  font-weight: bold;
}
#close-btn3:hover {
  background-color: #13a7c1;
}
#close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--orange-color-1);
  color: white;
  border: none;
  padding: 5px 11px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 100px;
  font-weight: bold;
}
#close-btn:hover {
  background-color: var(--orange-color-2);
}
.my-popup .contact-main-form form textarea {
  width: 100%;
  background: transparent;
  padding: 8px 15px;
  margin: 10px 0;
  color: #000000;
  height: 70px;
}

.my-popup p {
  font-size: 14px;
  color: #fff;
}
.my-popup a {
  color: #51dfcf;
}
.my-popup a:hover {
  color: #ffffff;
}
/* .my-popup form {
  padding: 20px;
  border-radius: 10px;
} */

.my-popup .banner-form {
  padding: 30px;
  background-color: #d9d9d900;
  border-radius: 7px;
  max-width: 95%;
  margin: auto;
  position: relative;
}
.banner-form h3 {
  font-family: var(--font-family);
  font-size: 30px;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  font-weight: 700;
  text-align: center;
}
/* .my-popup form {
  padding: 0px;
} */
.modal-dialog #myVideo {
  border-radius: 0px 30px;
}
.popup-body #myVideo {
  border-radius: 0px 30px;
}
button.submit-btn {
  border-radius: 0px 15px;
  padding: 10px 25px;
  width: 100%;
  background-color: #ce7b15;
  border: none;
  color: #fff;
}
button.submit-btn:hover {
  background-color: #b55709;
}
.contact-form .form-control:focus {
  background-color: #fff;
  border-color: #86b6fe00;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(13, 109, 253, 0);
}
.contact-form .modal-content {
  border: 1px solid rgb(0 0 0 / 0%);
}
/* popup end */

.terms-n-condition ul {
  list-style: disc;
  padding-left: 20px;
}
.terms-n-condition h5 {
  margin-top: 20px;
  margin-bottom: 5px;
}
.terms-n-condition a {
  color: var(--orange-color-1);
}
.article{
 background-image: url(../images/article-publications.png);
 position:relative;
}
.article:before {
    content: '';
    background: #000000bf;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.audio{
  background-image: url(../images/audiobook-services.png);
  position:relative;
}
.audio:before {
    content: '';
    background: #000000bf;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.author{
    background-image: url(../images/authors-book-platform.png);
  position:relative;
}
.author:before {
    content: '';
    background: #000000bf;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.book-pub{
    background-image: url(../images/book-publishing-services.png);
  position:relative;
}
.book-pub:before {
    content: '';
    background: #000000bf;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.video-tr{
    background-image: url(../../../www.hexabookmarketing.com/assets/images/banner-building.webp);
  position:relative;
}
.video-tr:before {
    content: '';
    background: #000000bf;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.ghost{
    background-image: url(../images/ghost-writing.png);
  position:relative;
}
.ghost:before {
    content: '';
    background: #000000bf;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.about1{
    background-image: url(../images/hexa-about-us.png);
  position:relative;
}
.about1:before {
    content: '';
    background: #000000bf;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.launch{
    background-image: url(https://hexabookmarketing.com/assets/images/markeeting.webp);
  position:relative;
}
.launch:before {
    content: '';
    background: #000000bf;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.manuscripth{
    background-image: url(../images/menuscript-editing.png);
  position:relative;
}
.manuscripth:before {
    content: '';
    background: #000000bf;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.packages{
    background-image: url(../images/packages.png);
  position:relative;
}
.packages:before {
    content: '';
    background: #000000bf;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.social{
    background-image: url(../images/social-media-markeeting.png);
  position:relative;
}
.social:before {
    content: '';
    background: #000000bf;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}


.main-pakages .row.pack{
  --bs-gutter-y: 1.5rem;
}


.gif-section {
  padding-block: 100px;
  background-color: #efefef;
}
.gif-section .gif-con img {
  width: 100%;
}


.home-subheading{
        font-weight: 600;
    font-style: normal;
}


.service-section .row{
        --bs-gutter-y: 1.5rem !important;
}


.my-drop-menu .dropdown-menu {
    height: 340px;
    overflow-y: scroll;
}

/* width */
.dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.dropdown-menu::-webkit-scrollbar-track {
     box-shadow: inset 0 0 5px grey;

  border-radius: 10px;
}

/* Handle */
.dropdown-menu::-webkit-scrollbar-thumb {
  background: orange;
  border-radius: 10px;
}

.clss{
    display: flex;
    flex-direction: row;
    justify-content: center;
}