@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&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: RoundkeyMedium;
  src: url("../fonts/Roundkey\ Medium.otf");
}

@font-face {
  font-family: RoundkeyLight;
  src: url("../fonts/Roundkey\ Light.otf");
}

@font-face {
  font-family: rebellion_knight;
  src: url("../fonts/rebellion_knight/Rebellion\ Knight\ Personal\ Use\ Only.otf");
}

/* Root Styling */
:root {
  --c1: #E3B27D;
  --c2: #FF992C;
  --f1: 'Mulish';
  --f2: 'poppins';
  --f3: 'Plus Jakarta Sans';
  --f4: 'RoundkeyMedium';
  --f5: 'rebellion_knight';
}

body {
  background: #181818;
}

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

::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 {
  position: relative;
  display: inline-block;
  padding: 9px 31px;
  background: var(--c1);
  border-radius: 50px;
  font-family: var(--f1);
  font-weight: 600;
  border: none;
  font-size: 16px;
  padding-right: 70px;
}

.themebtn .btn-border {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 106%;
  height: 129%;
  fill: none;
  stroke: var(--c1);
  stroke-width: 3;
  stroke-dasharray: 15 20;
  /* dash + gap */
  stroke-linecap: round;
  pointer-events: none;
  border-radius: 50px;
  animation: borderRotate 5s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes borderRotate {
  to {
    stroke-dashoffset: -200;
  }
}


/* button style */


/* header css start */

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

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

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

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

ul.header-main__nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--c1);
  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(--c1);
}

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


/* header css end */

/* baner css start */

.home_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  min-height: 100vh;
  padding-top: 8rem;
}

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

.banner_cont h6 {
  font-size: 18px;
  text-transform: uppercase;
  font-family: var(--f2);
  color: #ffffffb3;
}

.banner_cont h3 {
  font-size: 77px;
  font-family: var(--f4);
  text-transform: capitalize;
  margin: 10px 0px;
  line-height: 0.8;
}

.banner_cont p {
  font-size: 15px;
  color: #ffffffb8;
}

ul.top_social {
  display: flex;
  align-items: center;
  gap: 11px;
}

ul.top_contact {
  display: flex;
  align-items: center;
  gap: 33px;
}

ul.top_contact li a {
  font-size: 14px;
}

ul.top_contact li a img {
  width: 17px;
}

ul.top_contact li a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffffffbd;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_top {
  padding: 10px 0px;
  background: #000;
}

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

ul.top_social li a:hover {
  animation: 800ms tada;
}

ul.top_contact li a:hover {
  color: #fff;
}

.header {
  background: #00000024;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

nav {
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 540px;
  transform: scale(1.3) translatey(73px);
}

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

.reating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0px;
  font-size: 18px;
  color: var(--c2);
}

.banner_cont h3 small {
  font-family: var(--f4);
  font-size: 54px;
  text-transform: uppercase;
}

.banner_cont h3 span {
  font-family: var(--f5);
  color: var(--c1);
  font-size: 51px;
  line-height: 1;
}

.banner_cont h5 {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero_img::before {
  position: absolute;
  content: '';
  width: 72px;
  height: 57px;
  background: url(../images/image_before.png);
  top: 60px;
  left: 7%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: rubberband 1800ms linear infinite;
}

.hero_img::after {
  position: absolute;
  content: '';
  width: 60px;
  height: 70px;
  background: url(../images/image_after.png);
  bottom: 100px;
  right: 17%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: rubberband 1500ms linear infinite;
}

.about_img {
  width: 100%;
  height: 486px;
  transform: translateX(-120px) scale(1.2);
  margin-top: 30px;
  position: relative;
}

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

.about_section {
  padding: 70px 0px 130px;
}

.section_title h6 {
  font-size: 19px;
  text-transform: uppercase;
  color: #ffffffa6;
  margin-bottom: 5px;
}

.section_title h3 {
  font-size: 59px;
  font-family: var(--f4);
  line-height: 0.9;
}

.section_title h3 span {
  font-family: var(--f5);
  font-size: 50px;
  color: var(--c1);
}

.about_cont {
  color: #ffffff9e;
  padding: 0px 40px;
}

.about_cont p {
  font-size: 20px;
  line-height: 1.3;
}

.about_btn {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 70px;
}

a.call_us {
  display: flex;
  align-items: center;
  gap: 11px;
}

a.call_us i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #fff;
  font-size: 23px;
  position: relative;
}

a.call_us span {
  color: #ffffffbd;
  font-size: 13px;
  line-height: 1.4;
}

a.call_us i::after {
  position: absolute;
  content: '';
  width: 114%;
  height: 114%;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border-radius: 100%;
  border: 2px dashed var(--c1);
}

@keyframes rotate {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.btn-line {
  width: 43px;
  display: inline-block;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 19px;
}

.btn-line::before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50pc;
  top: 50%;
  transform: translateY(-50%);
  animation: 4s move linear infinite;
}

@keyframes move {
  50% {
    transform: translateY(-50%) translateX(37px);
  }

  100% {
    transform: translateY(-50%) translateX(0px);
  }
}

.header_btn .themebtn {
  border-radius: 0;
  padding: 17px 20px;
  color: #53006d;
}

.header_btn .themebtn .btn-border {
  border-radius: 0;
  stroke: var(--c2);
}

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

.themebtn:hover .btn-line {
  background: var(--c1);
}

.themebtn:hover .btn-line::before {
  background: var(--c2);
}

.call_us:hover.call_us i::after {
  animation: 10s rotate linear infinite;
}

.counter_main {
  padding: 62px 10px;
  background: #333333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 119%;
  margin-top: 5rem;
  transform: translateX(-310px);
}

.counter_item h3 {
  font-size: 60px;
  font-family: var(--f1);
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
}

.counter_item {
  width: 49%;
  text-align: center;
}

.counter_item p {
  margin: 0;
  text-transform: capitalize;
}

.themebtn::before {
  position: absolute;
  content: '';
  width: 80%;
  height: 20px;
  background: var(--c2);
  left: 50%;
  bottom: -10px;
  filter: blur(27px);
  transform: translateX(-50%);
}

.header_btn .themebtn::before {
  display: none;
}

.about_img::before {
  position: absolute;
  content: '';
  background: url(../images/image_before.png);
  top: -50px;
  right: -70px;
  width: 160px;
  height: 130px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: rubberband 2s linear infinite;
  z-index: -1;
}

.section_title.text-white h6 {
  color: #ffffffa6;
}

.our_process {
  padding: 31px 0px 70px;
  position: relative;
  background: url(../images/process_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #252525;
}

.process_item {
  padding: 20px 20px;
  border-radius: 10px;
  background: #fff;
  position: relative;
  transition: 500ms;
  margin-bottom: 20px;
  padding-right: 80px;
  height: 199px;
}

.process_item p {
  margin: 13px 0px;
  font-size: 14px;
  width: 83%;
  font-family: var(--f2);
  font-weight: 400;
  color: #6f6f6f;
}

.process_item h5 {
  font-size: 18px;
  font-family: var(--f2);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  text-transform: capitalize;
}

.process_item a {
  font-size: 15px;
  text-transform: capitalize;
  font-family: var(--f2);
  font-weight: 500;
}

.process_item a i {
  font-size: 23px;
}

.process_item span {
  position: absolute;
  font-size: 100px;
  font-family: var(--f2);
  bottom: 20px;
  right: 50px;
  line-height: 1;
  font-weight: 500;
  color: #d9d9d99c;
}

svg.line-border {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 105%;
  height: 122%;
  fill: none;
  stroke: var(--c2);
  stroke-width: 1px;
  stroke-dasharray: 10 10;
  /* dash + gap */
  stroke-linecap: round;
  pointer-events: none;
  border-radius: 64px;
  animation: borderRotate 5s linear infinite;
  transform: translate(-50%, -50%);
}

.process_item svg.line-border {
  opacity: 0;
}

.process_item:hover svg.line-border {
  opacity: 1;
}

.process_item:hover {
  background: #000;
}

.process_item:hover h5 {
  color: #fff;
}

.process_item:hover p {
  color: #fff;
}

.process_item:hover a {
  color: #fff;
}

.process_item:hover span {
  color: var(--c1);
}


.text-bold h3 {
  font-size: 92px;
  color: #000;
  line-height: 0.8;
}

.text-bold h3 span {
  font-size: 80px;
  color: #000;
}

.our_process::before {
  position: absolute;
  content: '';
  width: 60%;
  height: 710px;
  left: 50%;
  transform: translateX(-50%);
  top: -22px;
  background: url(../images/process_after.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.process_item a:hover {
  letter-spacing: 1px;
  color: var(--c2);
}

.section_title {
  position: relative;
}

.how-it-work {
  padding: 80px 0px;
}

.section_title p {
  font-size: 14px;
  margin: 0;
}

.section_title.text-white p {
  color: #d5d5d5;
}

.step_img {
  width: 190px;
  height: 213px;
  border-radius: 12px;
  overflow: hidden;
  position: absolute;
  right: 120px;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%);
  transition: 500ms;
  animation: swing 3s ease-in-out infinite;
}

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

a.step_item {
  position: relative;
}

a.step_item {
  display: block;
  width: 100%;
  padding: 49px 0px;
  border-bottom: 1px solid #a1a1a1;
  font-size: 36px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  padding-left: 40px;
}

a.step_item span {
  font-size: 17px;
  position: absolute;
  top: 28%;
  color: #bbbbbb;
  left: 9px;
}


.step_item:hover .step_img {
  opacity: 1;
}

@keyframes swing {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }

  25% {
    transform: translateY(-50%) rotate(6deg);
  }

  50% {
    transform: translateY(-50%) rotate(-3deg);
  }

  75% {
    transform: translateY(-50%) rotate(6deg);
  }

  100% {
    transform: translateY(-50%) rotate(0deg);
  }
}

a.step_item i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  font-size: 45px;
  transition: 500ms;
}

a.step_item:hover i {
  transform: translateY(-50%) rotate(135deg);
  color: var(--c2);
}

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




.included {
  background: #000000e0;
  padding: 70px 0px;
  position: relative;
}

.section_title p {
  color: #ffffffbd;
  font-family: var(--f1);
  font-weight: 400;
  font-size: 14px;
}

.include_card {
  background: #fff;
  padding: 30px 20px 15px;
  width: 95%;
  height: 200px;
  border-radius: 15px;
  margin: 0 auto;
  transition: 500ms;
  position: relative;
}


.include_cont h3 {
  font-family: var(--f1);
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 12px;
}

.include_cont p {
  font-family: var(--f1);
  font-size: 13px;
}

.include_img {
  width: 38px;
  height: 38px;
  margin: 0px 0px 20px;
  position: relative;
  z-index: 1;
}

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

.include_img::before {
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #e3b27dbd, #00000000);
  border-radius: 100%;
  top: 15px;
  left: 15px;
  z-index: -1;
}

.row.inc_before::before {
  position: absolute;
  content: '';
  width: 90px;
  height: 90px;
  border: 9px solid var(--c1);
  border-radius: 100%;
  top: -40px;
  right: -18px;
}

.row.inc_before {
  position: relative;
  z-index: 1;
}

.include_card:hover svg {
  opacity: 1;
}

.include_card .line-border {
  opacity: 0;
  stroke: var(--c2);
}

@keyframes borderRotate {
  to {
    stroke-dashoffset: -200;
  }
}

.recent_project {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  min-height: 70vh;
  padding: 80px 0px 100px;
}

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

.recent_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.13) blur(5px);
}

.physical_row {
  position: relative;
}

.recent_book_img {
  width: 100%;
  height: 440px;
  overflow: hidden;
  transition: 500ms;
}

.recent_book_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 500ms;
}

.recent_book_img.alt {
  height: 325px;
}

.recent_book_img:hover img {
  transform: scale(1.1) rotate(6deg);
}

.footer {
  background: #111111;
  padding: 70px 0px 0;
  position: relative;
}

.footer_about h3 {
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffffe3;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer_about p {
  color: #ffffffcc;
  font-weight: 400;
  font-family: var(--f1);
  font-size: 13px;
  margin: 20px 0px 32px;
  line-height: 1.7;
}

.footer_form h3 {
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffffe3;
  font-weight: 600;
  margin-bottom: 20px;
}

.foot_form p {
  color: #ffffffc9;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}

.foot_form input {
  background: #fff;
  border: 1px solid gray;
  border-radius: 50px;
  padding: 10px 8px 10px 15px;
  margin-bottom: 20px;
  outline: none;
}

.footer_icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.footer_icons li a {
  color: var(--c1);
  background: #ffffffe8;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 24px;
}

.footer_icons li a:hover {
  box-shadow: 2px 0px 12px 1px var(--c2);
  transform: scale(1.2);
  color: var(--c2);
}

.foot_form input::placeholder {
  font-size: 13px;
  font-family: var(--f3);
  font-weight: 500;
  text-transform: capitalize;
}

.footer_contact h3 {
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffffe3;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer_contact h5 {
  font-size: 16px;
  font-family: var(--f3);
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffffcf;
  margin-bottom: 12px;
}

.footer_contact li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  color: #ffffffc9;
  width: fit-content;
  line-height: 1.7;
  gap: 10px;
  transition: 500ms;
  margin: 12px 0px;
}

.footer_contact li a span {
  color: var(--c1);
  font-size: 22px;
}

.footer_links h3 {
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffffe3;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer_links li a {
  font-size: 14px;
  color: #ffffffc9;
  font-family: var(--f3);
  font-weight: 400;
  text-transform: capitalize;
  line-height: 2.2;
  transition: 500ms;
}

.footer_contact li a:hover {
  color: var(--c1);
  transform: translateX(10px);
}


.footer_links li a:hover {
  color: var(--c1);
  transform: translateX(10px);
}

.end_footer {
  position: relative;
  bottom: 0;
}

.end_foot_cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #2b2929;
  padding: 12px 0px;
  margin-top: 60px;
}

.end_foot_cont p {
  font-size: 13px;
  color: #fff;
  margin: 0;
  font-family: var(--f3);
}

.term_policy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.term_policy li a {
  color: #ffffff8a;
  font-family: var(--f3);
  font-weight: 400;
  font-size: 12px;
}

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

.footer::before {
  position: absolute;
  content: '';
  width: 270px;
  height: 230px;
  background: url(../images/footer-book.png);
  right: 0px;
  bottom: -5px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.footer_links.alt {
  padding-left: 30px;
}

.together_sect {
  padding: 360px 0px;
  position: relative;
}

.gather_cont {
  position: absolute;
  background: #222222;
  width: 90%;
  left: 0;
  bottom: 30%;
  transform: translateY(50%);
  padding: 60px 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42%;
}

.contact_div {
  background: var(--c1);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  text-align: center;
}

.contact_div h5 {
  font-size: 14px;
}

.gather_cont h3 {
  color: #fff;
  font-family: var(--f3);
  font-weight: 600;
  font-size: 74px;
  width: 68%;
  line-height: 1.3;
}

.gather_cont h3 span {
  color: var(--c1);
  font-weight: 700;
  font-size: 67px;
}

.gather_img {
  position: absolute;
  height: 82%;
  width: 90%;
  right: 0;
  top: 0;
  overflow: hidden;
}

.gather_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.gather_img::before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  background: #e1af7e;
  width: 200px;
  height: 200px;
  filter: opacity(0.5);
  border-radius: 0px 0px 0px 150px;
}

.contact_btn {
  background: var(--c1);
  height: 250px;
  width: 250px;
  text-align: center;
  display: grid;
  align-items: center;
  align-content: center;
  color: #fff;
  position: relative;
  border-radius: 100%;
  text-transform: uppercase;
  font-family: var(--f3);
  font-weight: 600;
  font-size: 19px;
  line-height: 2.8;
  z-index: 1;
}

.contact_btn i {
  display: block;
  transform: rotate(125deg);
  font-size: 30px;
}

.include_card svg.line-border {
  border-radius: 0px;
  width: 106%;
  height: 122%;
}

.themebtn.color-white {
  padding: 9px 40px;
  color: #fff;
}

.contact_btn::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  background: var(--c2);
  z-index: -2;
  transform: translate(-50%, -50%) scale(0);
  transition: 500ms;
}

.contact_btn:hover::before {
  transform: translate(-50%, -50%);
}

.include_card::before {
  position: absolute;
  content: '';
  width: 110%;
  height: 70px;
  background: var(--c2);
  bottom: 0;
  filter: blur(62px);
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  transition: 500ms;
  opacity: 0;
}

.include_card:hover::before {
  opacity: 1;
}

.faqs {
  padding: 90px 0px;
}

.faqs_accordion .accordion-item {
  margin-bottom: 20px;
}

.faqs_accordion .accordion-button {
  background: #fff;
  font-size: 23px;
  font-family: var(--f1);
  font-weight: 600;
  color: var(--c1);
  border-radius: 50px !important;
}

.faqs_accordion .accordion-item {
  background: transparent;
}

.faqs_accordion .accordion-body {
  padding: 30px 18px;
  border: 1px solid #ffffff99;
  border-radius: 10px;
  padding-top: 4rem;
  margin-top: -42px;
  transition: 500ms;
}

.faqs_accordion .accordion-body p {
  color: #ffffffc9;
  font-size: 15px;
  margin: 0;
}

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

.faqs_accordion .accordion-button::after {
  background-image: none;
  content: "\ebc0";
  color: #000;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  font-family: boxicons !important;
}

.faqs_accordion .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\eb8b";
}

@keyframes rubberband {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.25, 0.75);
  }

  40% {
    transform: scale(0.75, 1.25);
  }

  50% {
    transform: scale(1.15, 0.85);
  }

  65% {
    transform: scale(0.95, 1.05);
  }

  75% {
    transform: scale(1.05, 0.95);
  }

  100% {
    transform: scale(1);
  }
}

.project_btn {
  display: flex;
  justify-content: center;
}



.chat_form {
  padding: 60px 40px;
  width: 73%;
  float: inline-end;
  background: #36293a;
  border-radius: 17px;
  box-shadow: 0px 0px 0px 1px var(--c1);
  position: relative;
}

.form_fields input,
.form_fields textarea {
  width: 100%;
  height: 47px;
  background: transparent;
  outline: 0;
  border: none;
  color: #fff;
  border-bottom: 1px solid #ffffffa8;
  padding: 6px;
}

.form_fields {
  margin-bottom: 19px;
}

.form_fields input::placeholder,
.form_fields textarea::placeholder {
  color: #ffffffe0;
  text-transform: capitalize;
  font-size: 14px;
}

.form_fields textarea {
  height: 100px
}


.chat_form h3 {
  font-size: 34px;
  color: #fff;
  font-family: var(--f2);
  margin-bottom: 30px;
  text-transform: capitalize;
}

.chat_form h3 span {
  color: var(--c1);
  font-family: var(--f2);
  line-height: 1;
}

.chat_form::after {
  position: absolute;
  content: '';
  width: 130px;
  height: 130px;
  background: red;
  top: -40px;
  right: -40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.chat_form::before {
  position: absolute;
  content: '';
  width: 150px;
  height: 150px;
  background: url(../images/form_aviator1.png);
  top: -40px;
  right: -40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

.chat_form::after {
  position: absolute;
  content: '';
  width: 150px;
  height: 150px;
  background: url(../images/form_aviator1.png);
  bottom: -40px;
  left: -40px;
  top: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}




.form_close {
  position: absolute;
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 27px;
  color: #fff;
  top: 4px;
  right: 4px;
  z-index: 999;
  background: var(--c1);
  border-radius: 100%;
}

.popup_form {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: #19272be6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
}

.popup_form .form_close {
  display: flex;
}

.popup_form.active {
  display: flex;
}

.popup_form .chat_form {
  width: 30%;
}

.chat_form button {
    padding: 9px 41px;
    text-transform: capitalize;
}

a.header__logo {
    margin-top: -6px;
}


.thankyou_section {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 70vh;
    padding-top: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success_img h3 {
}

.success_box h3 {
    font-size: 50px;
    text-transform: capitalize;
    color: #fff;
    font-family: var(--f1);
    font-weight: 700;
}

.success_box {
    text-align: center;
}

.success_box p {
    color: #fff;
    margin: 22px 0px 36px;
}