@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai+Looped:wght@100..900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Boxicons */
@font-face {
  font-family: boxicons;
  src: url("../fonts/boxicons/boxicons.ttf");
}

@font-face {
  font-family: Flagfies;
  src: url("../fonts/flagfies/flagfies-8odlb.otf");
}

@font-face {
  font-family: perfecto-calligraphy;
  src: url("../fonts/perfecto-calligraphy-personal/PerfectoCalligraphy.ttf");
}

@font-face {
  font-family: queen_rogette;
  src: url("../fonts/queen_rogette/Queen\ Rogette.ttf");
}

/* Root Styling */
:root {
  --c1: #462a19;
  --c2: #fdc513;
  --f1: 'poppins';
  --f2: 'Flagfies';
  --f3: 'perfecto-calligraphy';
  --f4: 'queen_rogette';
  --f5: 'Noto Sans Thai Looped';
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.img__contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* General Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: 'Roboto', sans-serif;
}

body {
  background-image: url(../images/body_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

::selection {
  background-color: var(--c1);
  color: #fff;
}

a {
  display: inline-block;
  color: #000;
  transition: all 300ms ease-in-out;
}

a:hover {
  color: #000;
}

ul,
ol,
dl {
  margin-bottom: 0;
  padding: 0;
}


p,
li,
a,
span,
input,
input::placeholder,
button {
  font-family: var(--f1);
}


.imgFluid {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
  outline: 0;
}

i.bx {
  font-family: boxicons;
  vertical-align: middle;
}

/* button style */

.themebtn {
  padding: 10px 25px;
  background: var(--c1);
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 400;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  z-index: 99;
}

.themebtn:hover {
  background: var(--c1);
  color: var(--c1);
  text-shadow: 0px 0px 0px;
}

.themebtn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-animation: shine .75s;
  animation: shine 2s linear infinite;
}

.themebtn::after {
  position: absolute;
  content: '';
  width: 0;
  right: 0;
  height: 100%;
  background-color: var(--c2);
  top: 0;
  transition: 400ms ease;
  z-index: -1;
}

.themebtn:hover::after {
  width: 100%;
  left: 0;
}

.themebtn:hover span {
  animation: tada 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* button style */


/* header css start */

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0px;
}

a.header__logo img {
  width: 232px;
  height: auto;
  object-fit: contain;
}

ul.header-main__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

ul.header-main__nav li a {
  font-size: 14px;
  font-family: var(--f1);
  position: relative;
  text-transform: capitalize;
  color: #fff;
}

ul.header-main__nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--c2);
  transition: all 500ms;
}

ul.header-main__nav li a.active::after {
  width: 100%;
  left: 0;
}

ul.header-main__nav li a:hover::after {
  width: 100%;
  left: 0;
}

ul.header-main__nav li a:hover {
  color: var(--c2);
}

ul.header-main__nav li a.active {
  color: var(--c2);
}


/* header css end */

/* baner css start */

.home_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 90vh;
}

.banner_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_cont {
  position: relative;
  color: var(--c1);
}

.banner_cont h6 {
  font-size: 32px;
  text-transform: capitalize;
  font-family: var(--f3);
  font-weight: 700;
}

.banner_cont h3 {
  font-size: 68px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 0;
}

.banner_cont p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 27px;
}

/* baner css end */

/* new css start */

.yellow_bg {
  background: var(--c2);
  color: var(--c1);
  text-shadow: 0px 0px 0px;
  box-shadow: 0px 0px 0px 1px var(--c2);
}

.yellow_bg::after {
  background: var(--c1);
}

.yellow_bg:hover {
  color: var(--c2);
}

header.header {
  background: #55472f69;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 99;
}

.nav_main {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header_btn a {
  padding: 9px 24px;
  font-size: 13px;
}

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

.banner_cont h3 span {
  font-family: var(--f3);
  font-weight: 600;
  line-height: 1;
  font-size: 76px;
  position: relative;
  bottom: -17px;
}

.banner_cont h4 {
  font-size: 31px;
  font-family: var(--f3);
  text-transform: capitalize;
  padding: 8px 10px;
  color: #fff;
  position: relative;
  width: max-content;
  display: inline-block;
  margin: 16px 0px;
}

.banner_cont h4::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 105%;
  height: 105%;
  transform: translate(-50%, -50%);
  background: url(../images/banner_text_bg.png);
  z-index: -1;
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: center;
  animation: textBgGrow 2s ease-out forwards;
  animation-delay: 3s;
}

@keyframes textBgGrow {
  from {
    background-size: 0% 100%;
  }

  to {
    background-size: 100% 100%;
  }
}

.banner_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

form.chat_form {
  width: 73%;
  padding: 105px 52px 93px;
  background: url(../images/form_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 0%;
  background-position: center;
  position: relative;
  animation: bgGrow 1.2s ease-out forwards;
  animation-delay: 1s;
}

@keyframes bgGrow {
  from {
    background-size: 100% 0%;
  }

  to {
    background-size: 100% 100%;
  }
}

.form_main {
  transform: scale(0);
  transition: 500ms;
  animation: formGrow 1.2s ease-out forwards;
  animation-delay: 2s;
}

@keyframes formGrow {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.form_group input,
.form_group textarea {
  width: 100%;
  border-radius: 50px;
  border: none;
  padding: 11px 15px;
  font-size: 13px;
  background: transparent;
  border: 1px solid var(--c1);
  color: var(--c1);
  outline: 0;
  backdrop-filter: blur(21px);
  transition: 500ms;
}

.form_group textarea {
  height: 97px;
  border-radius: 21px;
}

.form_group {
  margin-bottom: 12px;
}

.form_title h3 {
  font-size: 33px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin-bottom: 20px;
  color: var(--c1);
}

.form_group input::placeholder,
.form_group textarea::placeholder {
  color: var(--c1);
}

.form_group input:focus,
.form_group textarea:focus {
  background: #ffffff14;
}

.chat_main {
  position: relative;
}

.chat_main::before {
  position: absolute;
  content: '';
  width: 370px;
  height: 680px;
  background: url(../images/woman_img.png);
  z-index: 1;
  right: -135px;
  bottom: -50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: imageGrow 1.2s ease-out forwards;
  animation-delay: 2.5s;
  transform: translateX(100%);
}

@keyframes imageGrow {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0%);
  }
}

.home_banner::before {
  position: absolute;
  content: '';
  width: 230px;
  height: 130px;
  background: url(../images/splatter.png);
  top: -100%;
  left: -80px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: splatterGrow 3s ease-out forwards;
  animation-delay: 2.5s;
}

@keyframes splatterGrow {
  from {
    top: -100%;
  }

  to {
    top: -10px;
  }
}

.our_portfolio {
  padding: 20px 0px 110px;
}

.port_item {
  height: 162px;
  position: relative;
  padding: 20px 20px;
  margin: 17px 5px;
}

.port_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.port_item::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 101%;
  background: url(../images/port_back_cover.png);
  top: 50.60%;
  left: 50.90%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  transform: translate(-50%, -50%);
  transition: 500ms;
}

.port_item:hover::before {
  transform: translate(-50%, -50%) scale(1.05);
}

.port_item:hover::before {
  transform: translate(-50%, -50%) scale(1.05);
}

.slick-arrow {
  background: transparent;
  bottom: -90px;
  top: auto;
  left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}

.slick-arrow::before {
  color: #000;
  font-size: 60px;
}

.slick-next {
  left: 48px;
}

.portfolio_slider::before {
  position: absolute;
  content: '';
  width: 95%;
  height: 58%;
  background: transparent;
  border: 4px solid var(--c1);
  bottom: -23px;
  left: -40px;
}

.testimonial {
  padding: 70px 0px;
  background: #1E1E1E;
}

.section_title h6 {
  width: max-content;
  margin: 0 auto 8px;
  padding: 5px 31px;
  position: relative;
  font-size: 24px;
  font-family: var(--f3);
  color: #fff;
  text-transform: capitalize;
}

.section_title h6::before {
  position: absolute;
  content: '';
  width: 110%;
  height: 110%;
  background: url(../images/section_title_bg.png);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  background-position: center;
}

.section_title h3 {
  font-size: 54px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 0;
}

.section_title h3 span {
  font-family: var(--f3);
  line-height: 1;
}

.text_yellow {
  color: var(--c2) !important;
}

.section_title {
  position: relative;
  z-index: 1;
}

.testo_item {
  width: 33%;
  padding: 55px 44px;
  background: url(../images/testo_bg.png);
  text-align: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  margin: 0px 10px;
}

.testo_item h4 {
  font-size: 22px;
  font-family: var(--f2);
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-bottom: 13px;
}

.testo_item p {
  margin: 0;
  height: 193px;
  overflow-y: auto;
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
}

.testo_item p::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(255, 255, 255);
  background-color: #F5F5F5;
}

.testo_item p::-webkit-scrollbar {
  width: 3px;
  background-color: #F5F5F5;
}

.testo_item p::-webkit-scrollbar-thumb {
  background-color: var(--c1);
}

.testo_item ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
  font-size: 17px;
  gap: 5px;
  color: #f19100;
}

.teso_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.faqs_section {
  padding: 70px 0px;
  background: #1e1e1e;
}

.faqs_cont h6 {
  width: max-content;
  margin-bottom: 8px;
  padding: 5px 17px;
  position: relative;
  font-size: 24px;
  font-family: var(--f3);
  color: #fff;
  text-transform: capitalize;
}

.faqs_cont {
  color: #fff;
  position: relative;
  z-index: 1;
}

.faqs_cont h6::before {
  position: absolute;
  content: '';
  width: 110%;
  height: 110%;
  background: url(../images/section_title_bg.png);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  z-index: -1;
}

.faqs_cont h3 {
  font-size: 49px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 12px 0px 0;
}

.faqs_cont h3 span {
  font-family: var(--f3);
  line-height: 1;
}

.faqs_cont p {
  font-size: 14px;
  line-height: 1.8;
}

.faqs_img {
  width: 93%;
  height: 330px;
  position: relative;
  padding: 15px 52px;
  margin-top: 33px;
}

.faqs_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.faqs_img::before {
  position: absolute;
  content: '';
  width: 110%;
  height: 120%;
  background: url(../images/faqsimg_back_cover.png);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faqs_section.anim_active .faqs_img::before {
  animation: faqsBgGrow 2s ease-out forwards;
  animation-delay: 1s;
}


@keyframes faqsBgGrow {
  from {
    background-size: 0% 100%;
  }

  to {
    background-size: 100% 100%;
  }
}


.faqs_img::after {
  position: absolute;
  content: '';
  width: 188px;
  height: 75%;
  background: url(../images/faqs_dots.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  bottom: 0;
  right: 40px;
  z-index: -1;
}

.faqs_section.anim_active .faqs_img::after {
  animation: faqsdots 2s ease-out forwards;
  animation-delay: 2.5s;
}

@keyframes faqsdots {
  from {
    right: 0;
  }

  to {
    right: -200px;
  }
}

.accordion-item {
  margin-bottom: 12px;
  border-radius: 5px !important;
  border: none !important;
  background: url(../images/body_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.accordion-button {
  padding: 22px 10px;
  border-radius: 5px;
  overflow: hidden;
  font-size: 16px;
  font-family: var(--f5);
  font-weight: 800;
  background: transparent;
  text-transform: capitalize;
}

.faqs_main {
  width: 93%;
}

.accordion-button:not(.collapsed) {
  background: var(--c1);
  color: #fff;
  box-shadow: none;
}

.accordion-button::after {
  position: absolute;
  top: 22px;
  right: 24px;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-body p {
  font-size: 13px;
  margin: 0;
  line-height: 1.7;
}

.get_in_tuch {
  padding: 70px 0px;
  position: relative;
  overflow: hidden;
}

.getin-tuch_cont h6 {
  width: max-content;
  margin: 0px auto;
  padding: 5px 36px;
  position: relative;
  font-size: 24px;
  font-family: var(--f3);
  color: #fff;
  text-transform: capitalize;
}

.getin-tuch_cont h6::before {
  position: absolute;
  content: '';
  width: 110%;
  height: 110%;
  background: url(../images/section_title_bg.png);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  z-index: -1;
}

.getin-tuch_cont h3 {
  font-size: 46px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 12px 0px 0;
  color: var(--c1);
}

.getin-tuch_cont h3 span {
  font-family: var(--f3);
  line-height: 1;
  font-weight: 600;
}

.getin-tuch_cont p {
  font-size: 13px;
  color: var(--c1);
  font-weight: 500;
  margin: 7px auto 20px;
}

.get_in_btn {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}

.get_in_tuch::before {
  position: absolute;
  content: '';
  width: 700px;
  height: 500px;
  background: url(../images/get-in-touch-img1.png);
  top: 50%;
  left: -170px;
  transform: translateY(-50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.get_in_tuch::after {
  position: absolute;
  content: '';
  width: 554px;
  height: 576px;
  background: url(../images/get-in-touch-img2.png);
  top: 42%;
  right: -80px;
  transform: translateY(-50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}


section.empowering {
  padding: 70px 0 30px;
  background: #1E1E1E;
}

.empowering_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.empowering_img {
  width: 90%;
  height: 313px;
}

.empowering_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.empowering_image {
  width: 90%;
  height: 317px;
  border: 7px solid #ffff;
  position: relative;
  right: -70px;
  top: -54px;
}

.empowering_main {
  position: relative;
}

.empowering_image::before {
  content: '';
  position: absolute;
  height: 79%;
  width: 178px;
  background: url('../images/empower_before.png');
  right: 101%;
  object-fit: contain;
  bottom: 0px;
  background-repeat: no-repeat;
  background-size: contain;
}

.empowering_heading h6 {
  color: #fff;
  font-family: var(--f3);
  font-size: 22px;
  position: relative;
  width: max-content;
  padding: 4px 25px;
  left: -10px;
}

.empowering_heading h6::before {
  content: '';
  position: absolute;
  background: url(../images/empower_heading.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 110%;
  z-index: -1;
  height: 110%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.empowering_heading {
  position: relative;
  z-index: 1;
  padding-left: 22px;
}

.empowering_heading h3 {
  font-family: var(--f2);
  color: #fff;
  margin-top: 20px;
  font-size: 50px;
}

.empowering_heading h3 span {
  font-family: var(--f3);
  color: var(--c2);
  font-size: 55px;
  line-height: 1;
}

.empowering_heading p {
  font-size: 14px;
  color: #fff;
  line-height: 2.1;
  margin: 0;
}

.empowering_heading ul {
  display: flex;
  flex-wrap: wrap;
  margin: 14px 0px;
}

.empowering_heading ul li {
  width: 32%;
  color: #fff;
  font-size: 18px;
  font-family: var(--f2);
  letter-spacing: 2px;
  text-transform: capitalize;
  font-weight: 400;
  position: relative;
  margin-bottom: 10px;
  padding-left: 33px;
}

.empowering_heading ul li::before {
  content: '';
  position: absolute;
  height: 25px;
  width: 25px;
  background: url(../images/empower_tick.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 1px;
}

.empoering_ancher {
  display: flex;
  align-items: center;
  gap: 13px;
}

.empoering_ancher {
  display: flex;
  align-items: center;
  gap: 13px;
}

.turn {
  background: #554631;
  z-index: 1;
  position: relative;
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.turn_cnt h6 {
  color: #fff;
  font-family: var(--f3);
  font-size: 22px;
  position: relative;
  width: max-content;
  padding: 4px 25px;
  /* left: -10px; */
  z-index: 1;
}

.turn_cnt h6::before {
  content: '';
  position: absolute;
  background: url(../images/empower_heading.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 110%;
  z-index: -1;
  height: 110%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.turn_cnt h3 {
  font-family: var(--f2);
  color: #fff;
  margin-top: 20px;
  font-size: 50px;
  text-transform: capitalize;
}

.turn_cnt h3 span {
  font-family: var(--f3);
  color: var(--c2);
  font-size: 55px;
  line-height: 1;
}

.turn_cnt p {
  font-size: 13px;
  color: #fff;
  margin: 0;
  margin-bottom: 20px;
  width: 87%;
}

.turn_cnt .themebtn {
  padding: 11px 15px;
  font-size: 14px;
}

.turn_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.turn_img {
  position: absolute;
  right: 0%;
  width: 46%;
  height: 53vh;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.turn::before {
  content: '';
  position: absolute;
  background-image: url(../images/bestseller1.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 53%;
  z-index: 1;
  height: 105%;
  right: 0;
  top: -10px;
  overflow: hidden;
}

.turn_images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.turn_images {
  width: 125px;
  height: 150px;
  bottom: 0;
  position: absolute;
  left: 0;
}

section.author {
  padding: 70px 0;
  position: relative;
}

.author_cnt h6 {
  color: #fff;
  font-family: var(--f3);
  font-size: 22px;
  position: relative;
  width: max-content;
  padding: 4px 25px;
  left: -10px;
}

.author_cnt h6::before {
  content: '';
  position: absolute;
  background: url(../images/empower_heading.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 110%;
  z-index: -1;
  height: 110%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.author_cnt h3 {
  font-family: var(--f2);
  color: var(--c1);
  margin-top: 20px;
  font-size: 50px;
  line-height: 1;
}

.author_cnt h3 span {
  font-family: var(--f3);
  color: var(--c1);
  font-size: 55px;
  line-height: 1;
  font-weight: 600;
}

.author_cnt p {
  font-size: 14px;
  color: #000;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
  margin-bottom: 14px;
}

.author_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.author_img {
  width: 100%;
  height: 610px;
}

.splitter_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splitter_img {
  width: 120px;
  height: 110px;
  position: absolute;
  right: 0;
  top: 0;
}

.splitter_img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splitter_img1 {
  width: 140px;
  height: 120px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.tories_cnt h6 {
  color: #fff;
  font-family: var(--f3);
  font-size: 22px;
  position: relative;
  width: max-content;
  padding: 4px 25px;
  left: -10px;
  text-transform: capitalize;
}

.tories_cnt h6::before {
  content: '';
  position: absolute;
  background: url(../images/empower_heading.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 110%;
  z-index: -1;
  height: 110%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.tories_cnt h3 {
  font-family: var(--f2);
  color: var(--c1);
  margin-top: 20px;
  font-size: 50px;
  line-height: 1;
  text-transform: capitalize;
} 

.tories_cnt h3 span {
  font-family: var(--f3);
  color: var(--c1);
  font-size: 55px;
  line-height: 1;
  font-weight: 600;
}

.tories_cnt p {
  font-size: 14px;
  color: #000;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
  margin-bottom: 14px;
}

.tories_ancher {
  margin-top: 30px;
}

.authore_ancher {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

section.tories {
  padding: 40px 0;
}

.tories_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tories_img {
  width: 60%;
  height: 339px;
  margin-left: auto;
  margin-right: 50px;
}

.tories_img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tories_img1 {
  width: 51%;
  height: 296px;
  position: absolute;
  top: 21%;
  left: 25%;
  z-index: -1;
}

.tories_images {
  position: relative;
}

.tories_img1::before {
  border: 4px solid var(--c1);
  position: absolute;
  content: '';
  width: 114%;
  height: 347px;
  top: -27px;
  left: -23px;
}

.tories_img::before {
  content: '';
  position: absolute;
  border: 4px solid var(--c1);
  width: 56%;
  height: 333px;
  top: -24px;
  right: 25px;
  z-index: -1;
}

.prroffesinal_cnt {
  text-align: center !important;
}

section.professional_support {
  padding: 70px 0;
  background: #1E1E1E;
  position: relative;
}

.support-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support-img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  color: #fff;
  filter: invert(1);
}

.prroffesinal_cnt h3 {
  font-family: var(--f2);
  color: #fff;
  font-size: 30px;
  margin-top: 10px;
  position: relative;
}

.prroffesinal_cnt p {
  color: #fff;
  font-size: 13px;
  text-align: -webkit-center;
  position: relative;
}

.prroffesinal_cnt {
  background-image: url(../images/support_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 25px 35px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.prroffesinal_cnt::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #211c1c94;
  top: 0;
  left: 0;
  transition: all 350ms;
}

.prroffesinal_cnt:hover::before {
  opacity: 0;
}

.prroffesinal_cnt:hover h3,
.prroffesinal_cnt:hover p {
  color: #000;
}

.prroffesinal_cnt:hover .support_img {
  filter: unset;
}

.prroffesinal_cnt:hover .support-img {
  filter: none;
  color: #000;
}

.support_ancher {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.support_images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support_images {
  width: 120px;
  height: 120px;
  position: absolute;
  right: 0px;
  top: 30px;
}

.support_images1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support_images1 {
  width: 110px;
  height: 110px;
  position: absolute;
  left: 0;
  bottom: 31px;
}

section.helping {
  padding: 33px 0;
  position: relative;
}

.helping_cnt {
  background-image: url(../images/randon.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 46px 55px;
}

.helping_cnt h6 {
  color: #fff;
  font-family: var(--f3);
  font-size: 22px;
  position: relative;
  width: max-content;
  padding: 4px 25px;
  position: relative;
  z-index: 1;
}

.helping_cnt h6::before {
  content: '';
  position: absolute;
  background: url(../images/helping_h.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 110%;
  z-index: -1;
  height: 110%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.helping_cnt h3 {
  font-family: var(--f2);
  color: var(--c2);
  margin-top: 20px;
  font-size: 50px;
  line-height: 1;
}

.helping_cnt p {
  font-size: 13px;
  color: #fff;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
  margin-bottom: 14px;
}

.helping_cnt h3 span {
  font-family: var(--f3);
  color: var(--c2);
  font-size: 54px;
  line-height: 1;
}

.helping_img img {
  width: 76%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.1);
}

.helping_img {
  width: 100%;
  height: 407px;
  text-align: end;
}

.heping_sideimg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.heping_sideimg {
  width: 140px;
  height: 140px;
  position: absolute;
  right: -1%;
  top: 4%;
}

.heping_sideimg1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.heping_sideimg1 {
  width: 160px;
  height: 140px;
  position: absolute;
  left: -2%;
  bottom: 18%;
}

footer.footer {
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.footer_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer_logo {
  width: 270px;
  height: auto;
  margin-bottom: 15px;
}

.footer_cnt p {
  font-size: 14px;
  color: #000;
  line-height: 1.8;
  margin: 0;
  width: 65%;
  text-transform: capitalize;
}

.footer_card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer_card {
  width: 260px;
  height: auto;
  margin-top: 10px;
}

.quick_link h4 {
  font-family: var(--f2);
  font-size: 25px;
  margin-bottom: 33px;
  position: relative;
  text-transform: capitalize;
}

.quick_link li a {
  width: 100%;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  text-transform: capitalize;
  transition: all 350ms;
}

.quick_link li a::before {
  position: absolute;
  content: "\ea55";
  font-size: 20px;
  left: -5px;
  top: 3px;
  font-family: boxicons;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quick_link h4::before {
  content: '';
  position: absolute;
  width: 30%;
  height: 5px;
  background: #000;
  bottom: -10px;
}

.quick_link li a:hover {
  color: var(--c1);
}

a.footer_address {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  margin-left: -9px;
}

a.footer_address i {
  font-size: 35px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
}

a.footer_address p {
  margin: 0;
  font-size: 13px;
}

a.footer_address p span {
  display: block;
  font-size: 18px;
}

.copyright p {
  text-align: center;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.copyright {
  border-top: 1px solid #00000069;
  padding: 18px 0;
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer.footer::before {
  position: absolute;
  content: '';
  width: 194px;
  height: 190px;
  background: url(../images/footer_before.png);
  bottom: 0px;
  right: -30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

footer.footer::after {
  position: absolute;
  content: '';
  width: 374px;
  height: 370px;
  background: url(../images/footer_after.png);
  top: -15%;
  left: -13%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}






/* dropdown css start */

ul.dropdown_menu {
  background: var(--c2);
  position: absolute;
  z-index: 99999;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 500ms all;
}

ul.dropdown_menu li a {
  padding: 12px 10px;
  color: #000000;
  font-size: 13px;
  align-items: center;
}

.dropdown-submenu>.dropdown_menu,
li.dropdown-submenu ul.dropdown_menu ul.dropdown_menu {
  top: 0;
  left: 100%;
  margin-top: 0;
}

.dropdown_menu {
  padding: 0;
  margin: 0;
}

.dropdown_menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  min-width: 10rem;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
}

.dropdown_menu {
  position: static;
  float: none;
}

li:hover>ul.dropdown_menu {
  box-shadow: 0 0 10px 1px rgb(0 0 0 / 9%);
  min-width: 14rem;
  visibility: visible;
  opacity: 1;
}

.header-main__nav li {
  position: relative;
}

ul.dropdown_menu li a::after {
  display: none;
}

.dropdown-toggle {
  font-size: 17px;
  transition: 500ms;
}

ul.header_nav li a i {
  font-size: 15px;
  transition: 300ms;
}

ul.header_nav li:hover i {
  transform: rotate(180deg);
}

.dropdown-submenu:hover .dropdown-toggle {
  transform: rotate(-90deg);
}

.top-radious {
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
}

.bottom-radious {
  border-bottom-left-radius: 19px;
  border-bottom-right-radius: 19px;
}

ul.dropdown_menu li a:hover {
  background: var(--c2);
  color: #000;
}

ul.header_nav li {
  position: relative;
}

/* dropdown css end */

a.main__logo {
  width: 120px;
  height: auto;
  overflow: hidden;
}

a.main__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portfolio .port_main {
  padding: 0;
  margin: 0;
}

section.portfolio {
  padding: 35px 0px;
}

.port_items {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.port_items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.port_slider.alt {
  transform: rotate(180deg);
}

.port_items.alt {
  transform: rotate(180deg);
}

ul.dropdown_menu {
  background-image: url(../images/section_bg.webp);
  position: absolute;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  transition: 500ms all;
}

ul.dropdown_menu li a {
  border-bottom: 1px solid #00000029 !important;
  padding: 12px 12px;
  color: #000000;
  display: flex;
  font-size: 13px;
  align-items: center;
  gap: 7px;
  background-repeat: no-repeat;
  background-size: 130% 140%;
  background-position: center;
}

.dropdown-submenu>.dropdown_menu,
li.dropdown-submenu ul.dropdown_menu ul.dropdown_menu {
  top: 0;
  left: 100%;
  margin-top: 0;
}

.dropdown_menu {
  padding: 0;
  margin: 0;
}

.dropdown_menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  min-width: 10rem;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
}

.dropdown_menu {
  position: static;
  float: none;
}

li:hover>ul.dropdown_menu {
  box-shadow: 0 0 10px 1px rgb(0 0 0 / 9%);
  min-width: 14rem;
  visibility: visible;
  opacity: 1;
}

.header-main__nav li {
  position: relative;
}

ul.dropdown_menu li a::after {
  display: none;
}

.dropdown-toggle {
  font-size: 17px;
  transition: 500ms;
}

ul.header-main__nav li a i {
  font-size: 10px;
  transition: 500ms;
}

ul.header-main__nav li:hover i {
  transform: rotate(180deg);
}

.dropdown-submenu:hover .dropdown-toggle {
  transform: rotate(-90deg);
}

/* dropdown css end */

/* inner banner css */

.inner_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  min-height: 59vh;
}

.inner_banner_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  filter: grayscale(0.3);
}

.inner_banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner_cont {
  position: relative;
  z-index: 9;
}

.inner_cont h6 {
  font-size: 21px;
  text-transform: uppercase;
  font-family: var(--f1);
  word-spacing: -4px;
  color: #212529;
}

.inner_cont h3 {
  font-size: 38px;
  font-family: var(--f2);
  text-transform: uppercase;
  margin: 10px 0px;
  line-height: 54px;
}

.inner_cont p {
  font-size: 15px;
  font-weight: 500;
}

.inner_sub_img {
  width: 80%;
  height: 580px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.inner_sub_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner_sub_banners {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 107vh;
  backdrop-filter: blur(5px);
  padding: 52px 0px;
  background: #ffffff69;
}

.inner_sub_cont h3 {
  font-size: 38px;
  font-family: var(--f2);
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}

.inner_sub_cont p {
  font-size: 16px;
  font-weight: 500;
}

.inner_sub_banners_overly {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner_sub_banners_overly img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner_sub_cont {
  position: relative;
  z-index: 9;
}

.inner_cont.text-center h3 {
  font-size: 80px;
  letter-spacing: 2px;
}

.inner_cont h3 span {
  font-family: var(--f3);
  text-transform: capitalize;
  font-weight: 700;
}

.inner_sub_cont ul li {
  font-size: 15px;
  position: relative;
  margin-bottom: 14px;
  font-weight: 500;
}

.inner_sub_cont ul {
  padding-left: 18px;
}

.inner_sub_cont ul li::before {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background: var(--c2);
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
}

/* inner banner css end */

.banner_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

a.live_chat {
  font-family: var(--3);
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
}

/* popup form css start */

.form_close {
  position: absolute;
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  color: #000;
  top: 23px;
  right: 20px;
  z-index: 999;
  transition: 1s;
  /* background: var(--c1);  */
  border-radius: 100%;
}

.popup_form {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: #59362982;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.popup_form .banner_form {
  width: 30%;
  background: url(../images/banner-image.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 73px 40px;
}

.popup_form .form_arrow {
  display: none;
}

.popup_form.active {
  display: flex;
}

.popup_form .form_close {
  display: flex;
}

.popup_form .banner_form .form_fields input,
.popup_form .banner_form .form_fields textarea {
  background: #ffffff7a;
  filter: blur(0px);
  box-shadow: 0px 0px 10px 0px inset #a180608c;
}

.popup_form .banner_form::before {
  position: absolute;
  content: '';
  width: 100px;
  height: 100px;
  background: url(../images/splatter.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  top: -7px;
  right: -28px;
  transform: rotate(75deg);
}

.form_close:hover {
  color: #fff;
  transform: rotate(360deg);
}

/* popup form css end */

/* responsive  css start */

.menu_logo {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 10px;
  background: url(../images/top_bar_bg.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 500ms all;
}

.side_menu {
  width: 66%;
  background: url(../images/section_bg.webp);
  background-position: top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 111dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  transform: translateX(-100%);
  transition: 500ms all;
}

.responsive_menu {
  display: none;
}

.show {
  transform: translateX(0%);
}

.responsive_logo img {
  width: 100px;
} 

.close_menu {
  text-align: end;
  padding: 8px 12px !important;
}

.menu_sticky {
  position: fixed;
}

.responsive_overly {
  width: 100%;
  height: 111dvh;
  position: fixed;
  background: #000000a3;
  transition: 1s;
  left: -100%;
  top: 0;
  z-index: 9999;
}

.responsive_overly.show {
  left: 0;
}

.side_menu li.accordion-button {
  background: transparent;
  padding: 0;
}

.side_menu .accordion-item {
  background: transparent;
  margin: 0;
}

.side_menu .accordion-button::after {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: boxicons !important;
  background-image: none;
  content: "\ea4a";
  color: var(--c4);
  font-size: 23px;
}

.side_menu .accordion-body {
  padding: 0;
  height: 120px;
  overflow-x: auto;
  background: #cdcdcd5e;
  backdrop-filter: blur(2px);
}

.side_menu .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
  background-image: none;
  content: "\ea4a";
}

.side_menu .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  outline: 0;
  border-color: transparent;
}

.side_menu .accordion-button:not(.collapsed) a {
  background: var(--c4);
  color: #fff;
}

.close_menu i {
  font-size: 23px;
} 

.popup_form .form_title {
  margin-bottom: 20px;
}

.banner_form {
  position: relative;
  width: 70%;
  padding: 50px 40px;
  background: #ffffff59;
  border-radius: 0px;
  margin: 0 auto;
  backdrop-filter: blur(3px);
}

.form_title {
  font-size: 29px;
  font-family: var(--f3);
  text-transform: uppercase;
  margin: 10px 0px;
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
}

.form_fields input,
.form_fields textarea {
  width: 100%;
  height: 47px;
  padding: 10px;
  margin-bottom: 14px;
  border: none;
  box-shadow: 0px 0px 0px 1px #d4d4d4;
  border-radius: 1px;
  background: #f4f4f4;
  outline: 0;
}

.form_fields input::placeholder,
.form_fields textarea::placeholder {
  text-transform: capitalize;
  font-size: 15px;
  font-family: var(--f1);
}

.form_fields textarea {
  height: 104px;
}

.banner_form .fire {
  height: 40px;
  top: -21px;
}

.bottom_fire {
  bottom: -14px;
  top: auto !important;
}

.smoke3 {
  left: -120px;
}

.form_btn .white_btn {
  width: 34%;
}

.form_btn .white_btn::before {
  height: 100%;
}

.form_btn .white_btn .themebtn {
  width: 100%;
}

/* responsive  css end */


.contact_img {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  transform: scale(1.1);
  margin-left: -30px;
}

.contact_img img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: contain;
}

.contact_us {
  padding: 70px 0px 100px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  background: #ffffff36;
}

.contact_img::before {
  position: absolute;
  content: '';
  border: 50px solid;
  border-radius: 100%;
  background: transparent;
  height: 395px;
  width: 395px;
  right: 110px;
  top: 30px;
}

.contact_form input,
textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 12px 15px;
  outline: 0;
  background: #EDEDED;
  border: 2px solid #2f2f2d54;
}

.contact_form textarea {
  height: 103px;
}

.contact_us_cont h5 {
  font-family: var(--f1);
  font-size: 22px;
  text-transform: uppercase;
  color: #333;
  word-spacing: -4px;
}

.contact_us_cont h3 {
  font-family: var(--f2);
  text-transform: uppercase;
  font-size: 44px;
  line-height: 1.1;
  color: #000;
}

.contact_us_cont h3 span {
  font-family: var(--f3);
  text-transform: capitalize;
  font-weight: 600;
}

.contact_form {
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.contact_form input::placeholder {
  font-size: 14px;
  color: #333;
  font-weight: 400;
  text-transform: capitalize;
}

.contact_form textarea::placeholder {
  font-size: 14px;
  color: #333;
  text-transform: capitalize;
  font-weight: 400;
}

.per-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0px 0 15px;
}

.per-check input {
  width: fit-content;
}

.per-check label {
  font-size: 12px;
}

.per-check label a {
  color: #000;
  font-weight: 800;
  text-decoration: underline !important;
  font-size: 11px;
}

.contBox a {
  width: 100%;
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.contBox a i {
  font-size: 20px;
}

.contBox a span {
  font-weight: 600;
}

.testi_process.testimonials.testimonials::before {
  display: none;
}

.testi_process.testimonials .testimonials::before {
  display: none;
}

.testi_process.testimonials .testimonials::after {
  display: none;
}


.testi_process.testimonials .testimonials {
  padding: 70px 0px;
}

/* responsive  css start */

.menu_logo {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 10px;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 500ms all;
  background: #ffffff4d;
  backdrop-filter: blur(10px);
}


.side_menu {
  width: 82%;
  height: 111dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  transform: translateX(-100%);
  transition: 500ms all;
  background: #fff;
}




.responsive_menu {
  display: none;
}

.show {
  transform: translateX(0%);
}

.responsive_logo img {
  width: 100px;
}

.open_menu {
  font-size: 30px;
  color: #000;
}

.side_menu li a {
  padding: 12px 12px;
  width: 100%;
  border-bottom: 1px solid #00000040;
  text-transform: capitalize;
  font-size: 14px;
  position: relative;
  font-family: var(--f1);
  letter-spacing: 1px;
  font-weight: 400;
}

.close_menu {
  text-align: end;
  padding: 8px 12px !important;
}

.menu_sticky {
  position: fixed;
}

.responsive_overly {
  width: 100%;
  height: 111dvh;
  position: fixed;
  background: #000000a3;
  transition: 1s;
  left: -100%;
  top: 0;
  z-index: 9999;
}

.responsive_overly.show {
  left: 0;
}

.side_menu li.accordion-button {
  background: transparent;
  padding: 0;
}

.side_menu .accordion-item {
  background: transparent;
  margin: 0;
}

.side_menu .accordion-button::after {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: boxicons !important;
  background-image: none;
  content: "\ea4a";
  color: var(--c4);
  font-size: 23px;
}

.side_menu .accordion-body {
  padding: 0;
  height: 120px;
  overflow-x: auto;
  background: #cdcdcd5e;
  backdrop-filter: blur(2px);
}

.side_menu .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
  background-image: none;
  content: "\ea4a";
}

.side_menu .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  outline: 0;
  border-color: transparent;
}

.side_menu .accordion-button:not(.collapsed) a {
  background: var(--c4);
  color: #fff;
}

.close_menu i {
  font-size: 23px;
}

/* responsive  css end */

.spotlight_cont h5 {
  font-size: 21px;
  font-weight: 700;
  font-family: var(--f3);
}

.step_process .section_title p {
  color: #fff;
  margin: 0;
}

.popup_form form.chat_form {
  width: 45%;
  animation-delay: 300ms;
}

.popup_form .chat_main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup_form .chat_main::before {
  width: 390px;
  height: 710px;
  bottom: -10%;
  right: 0;
  transform: translateX(180%);
  animation-delay: 1s;
}


.popup_form .form_main {
  animation-delay: 600ms;
}

.port_books {
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.port_innerSlider {
  margin: 60px 0 0;
}

.port_innerSlider .slick-arrow {
  top: 50%;
  transform: translatey(-50%);
  width: 50px;
  height: 50px;
  background: var(--c3);
}

.port_innerSlider .slick-next {
  right: -60px;
}

.port_innerSlider .slick-prev {
  left: -60px;
}

.port_innerItem {
  /* margin: 10px 10px; */
  width: 10%;
}

.port_innerSlider .slick-next:before {
  content: "\ea50";
  font-family: 'boxicons';
  font-size: 30px;
}

.port_innerSlider .slick-prev:before {
  content: "\ea4d";
  font-family: 'boxicons';
  font-size: 30px;
}

.port_innerSlider .slick-arrow:hover {
  background: var(--c1);
}

.port_innerSlider .slick-arrow:hover:before {
  color: var(--c2);
}

.port_innerImg {
  width: 100%;
  height: 364px;
  cursor: pointer;
}

.port_innerImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.port_popMain {
  position: fixed;
  z-index: 99999999;
  width: 100%;
  height: 100vh;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: 500ms all;
}

.port_mainCrd {
  display: flex;
  width: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  height: 600px;
  overflow: hidden;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000c7;
  backdrop-filter: blur(4px);
}

.port_imgSec {
  height: 100%;
  width: 50%;
  background: var(--c1);
  padding: 30px 0 0;
}

.port_popMainSec {
  width: 50%;
}

.port_img {
  width: 40%;
  height: 240px;
  text-align: center;
}

.port_img img {
  width: auto;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

h3.portHead {
  font-size: 40px;
  color: #fff;
  padding-left: 40px;
  padding-top: 20px;
  font-family: 'Montserrat';
  font-weight: 600;
}

.port_abbout {
  padding-left: 40px;
  height: 220px;
  overflow-y: scroll;
  margin-right: 30px;
}

.port_abbout p {
  font-size: 16px;
  line-height: 25px;
  margin: 10px 0;
  color: #fff;
  font-family: 'Montserrat';
}

/* width */
.port_abbout::-webkit-scrollbar {
  width: 2px;
}

/* Track */
.port_abbout::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.port_abbout::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

/* Handle on hover */
.port_abbout::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

.port_popMainSec {
  padding: 40px;
}

.port_popMainSec h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  font-family: 'Montserrat';
  font-weight: 700;
}

.port_popMainSec>p {
  font-size: 14px;
  font-family: 'Montserrat';
  font-weight: 500;
}

.port_popMainSec>p span {
  display: block;
  font-size: 24px;
  text-decoration: underline !important;
  color: #000;
  font-family: 'Montserrat';
  font-weight: 600;
}

a.retailBtn {
  padding: 10px 20px;
  border: 1px solid #4444;
  border-radius: 10px;
  width: 32%;
  height: 60px;
}

a.retailBtn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.retailers_btn {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin: 20px 0 0;
}

.price span {
  display: block;
  font-size: 12px;
  color: #000;
  font-family: 'Montserrat';
}

.price {
  font-size: 21px;
  font-weight: 600;
  color: #000;
  margin: 0 0 10px;
}

.crs_btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  background: var(--c1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 300ms all;
}

.crs_btn:hover {
  color: var(--c1);
  background: transparent;
  border-color: var(--c1);
}

.port_popMainSec h6 {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  font-family: 'Montserrat';
  font-weight: 700;
}

.port_popMain.active {
  opacity: 1;
  visibility: visible;
}

.book {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
}

.book-cover {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform-origin: 0 50%;
  -webkit-transform-origin: 0 50%;
  background: #111;
  background-size: cover;
  border-radius: 3px;
  box-shadow:
    inset 4px 1px 3px #ffffff60,
    inset 0 -1px 2px #00000080;
  transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
  background-position: center !important;
  background-size: cover !important;
}

.cover1 {
  background: url('http://fuel-design.com/media/uploads/publications/Soviet_Space_Dogs_cover.jpg');
}

.cover2 {
  background: url('http://fuel-design.com/media/uploads/publications/Tattoo_Vol_I_cover.jpg');
}

.cover3 {
  background: url('http://fuel-design.com/media/uploads/publications/CRIME_cover.jpg');
}

.book .book-cover {
  background-size: 100% 100%;
}


.effect {
  width: 20px;
  height: 100%;
  margin-left: 10px;
  border-left: 2px solid #00000010;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  transition: all .5s ease;
}

.light {
  width: 90%;
  height: 100%;
  position: absolute;
  border-radius: 3px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  top: 0;
  right: 0;
  opacity: .1;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

.book:hover {
  cursor: pointer;
}

.book:hover .book-cover {
  transform: perspective(2000px) rotateY(-30deg);
  -webkit-transform: perspective(2000px) rotateY(-30deg);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  box-shadow:
    inset 4px 1px 3px #ffffff60,
    inset 0 -1px 2px #00000080,
    10px 0px 10px -5px #00000030
}

.book:hover .effect {
  width: 40px;
  /** margin-left:13px;
  opacity: 0.5; **/
}

.book:hover .light {
  opacity: 1;
  width: 70%;
}

.book-inside {
  width: calc(100% - 2px);
  height: 96%;
  position: relative;
  top: 2%;
  border: 1px solid grey;
  border-radius: 3px;
  background: white;
  box-shadow:
    10px 40px 40px -10px #00000030,
    inset -2px 0 0 grey,
    inset -3px 0 0 #dbdbdb,
    inset -4px 0 0 white,
    inset -5px 0 0 #dbdbdb,
    inset -6px 0 0 white,
    inset -7px 0 0 #dbdbdb,
    inset -8px 0 0 white,
    inset -9px 0 0 #dbdbdb;
}

.title {
  font-size: 22px;
  width: 100%;
  color: #333;
  text-align: center;
  position: absolute;
  top: -30px;
  height: 1px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}

.title p {
  width: 100%;
  margin: 0;
  line-height: 1.3;
}


.btn {
  position: relative;
  background: #aaa;
  color: #fff;
  font-weight: bold;
  padding: 15px 30px;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 50px;
  bottom: -50px;
  display: inline-block;
  opacity: 0;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}

.book:hover .btn,
.book:hover .title {
  opacity: 1;
}

.portInnerMain {
  display: flex;
  align-items: center;
  justify-content: center;
}

.port_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}

.port_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer_cont.contact a {
  text-transform: lowercase;
}

.copyright ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.copyright ul li a:hover {
  color: var(--c1);
}

.copyright ul li a {
  font-weight: 500;
}

/* privacy page css start */

.privacy {
  padding: 80px 0;
  background: #f9fafc;
}

.policy_content {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.policy_content h4 {
  font-size: 26px;
  font-family: var(--f1);
  margin: 13px 0;
  color: #111827;
  position: relative;
  padding-left: 18px;
  text-transform: capitalize;
  font-weight: 600;
}

.policy_content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 70%;
  width: 4px;
  background: var(--c2);
  border-radius: 4px;
}

.policy_content p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #374151;
  text-align: justify;
  margin-bottom: 14px;
}

.policy_content p b {
  color: var(--c1);
  font-weight: 600;
  font-family: var(--f1);
}

.policy_content a {
  color: var(--c1);
  text-decoration: none;
  font-weight: 500;
}

.policy_content a:hover {
  color: var(--c1);
}

.policy_content h1 {
  font-size: 50px;
  font-family: var(--f1);
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  text-decoration: underline !important;
  text-decoration-color: var(--c2) !important;
}

.policy_content ul,
.terms_content ul {
  padding-left: 22px;
  margin: 15px 0;
}

.policy_content ul li,
.terms_content ul li {
  font-size: 15px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

/* Custom bullet */
.policy_content ul li::before,
.terms_content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--c2);
  font-size: 21px;
  line-height: 1.9;
  width: 7px;
  height: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c2);
  border-radius: 50px;
}

.policy_content h5 {
  font-size: 22px;
  font-family: var(--f1);
  font-weight: 500;
}

/* privacy page css end */ 

.section_title p {
    font-size: 15px;
    margin-bottom: 0;
    margin-top: 10px;
}

.contact_map {
    width: 100%;
    height: 600px;
}

.contact_map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}