@import url('https://fonts.googleapis.com/css2?family=Baloo+Thambi+2:wght@400..800&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Boxicons */
@font-face {
  font-family: boxicons;
  src: url("../fonts/boxicons/boxicons.ttf");
}

/* Root Styling */
:root {
  --c1: #F7941D;
  --c2: #58595B;
  --c3: linear-gradient(90deg, #F7941D, #F8DBBE, #D48F3B);
  --f1: 'poppins';
  --f2: "Josefin Sans", sans-serif;
  --f3: "Baloo Thambi 2", system-ui;
}

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 {
  padding: 11px 30px;
  background: var(--c3);
  color: #000;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  z-index: 99;
}

.themebtn:hover {
  color: #fff;
}

.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: end;
  align-items: center;
  padding: 16px 0px;
  position: relative;
}

a.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 500ms cubic-bezier(0.77, 1.07, 0, 1.12);
}

ul.header-main__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

ul.header-main__nav li a {
  font-size: 14px;
  font-family: var(--f1);
  position: relative;
  text-transform: uppercase;
}

ul.header-main__nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--c1);
  transition: all 500ms;
  transform: translateX(-50%);
}

ul.header-main__nav li a.active::after {
  width: 100%;
}

ul.header-main__nav li a:hover::after {
  width: 100%;
}

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: transparent;
  min-height: 94vh;
}

.banner_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -99;
}

.banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_cont {
  position: relative;
  color: #fff;
}

.banner_cont h6 {
  font-size: 25px;
  text-transform: capitalize;
  font-family: var(--f3);
  font-weight: 200;
  margin-bottom: 20px;
}

.banner_cont h3 {
  font-size: 62px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 5px 0px;
  font-weight: 400;
  line-height: 1.1;
}

.banner_cont p {
  font-size: 13px;
  width: 80%;
  line-height: 1.8;
}

/* baner css end */

a.header__logo {
  width: 283px;
  height: 156px;
  border-radius: 0px 0 25px 25px;
  background: #fff;
  padding: 21px;
  box-shadow: 0px 0px 5px 0px #c1c1c1;
  position: absolute;
  top: 0;
  z-index: 1;
  left: 0;
}

.top_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar {
  padding: 5px 0px;
  background: var(--c2);
}

.top_info a {
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.top_info a i {
  font-size: 17px;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: #ffffff3d;
  padding: 5px;
  transition: 500ms;
}

.top_info a:hover i {
  background: var(--c1);
}

.nav_bar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top_info a b {
  font-family: var(--f1);
  font-weight: 600;
}

.bg-transparent {
  background: transparent;
  border-color: #fff;
  color: #fff;
  font-weight: 400;
}

.bg-transparent::after {
  background: var(--c1);
}

.web_btns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.bg-transparent:hover {
  border-color: var(--c1);
  color: #000;
  text-shadow: 0px 0px 0px #000;
}

.banner_cont h3 span {
  font-size: 46px;
  font-family: var(--f2);
  display: block;
}

.banner_cont h4 {
  font-family: var(--f2);
  font-size: 32px;
  text-transform: capitalize;
}

.chat_form {
  background: var(--c2);
  padding: 20px 14px;
  border-radius: 15px;
  width: 74%;
  float: inline-end;
  position: relative;
  z-index: 9;
}

.chat_form .form_main {
  background: #fff;
  position: relative;
}

.form_title {
  padding: 16px 13px;
  text-align: center;
  background: var(--c3);
}

.chat_form form {
  padding: 20px 30px;
}

.form_group label {
  display: block;
  font-size: 15px;
  font-family: var(--f2);
  font-weight: 500;
  text-transform: capitalize;
}

.form_group input,
.form_group textarea {
  width: 100%;
  padding: 10px 10px;
  outline: 0;
  border-radius: 3px;
  border: none;
  box-shadow: 0px 0px 0px 1px #a7a7a7;
  background: #F2F2F2;
  font-size: 12px;
  transition: 600ms;
  font-family: var(--f2);
}

.form_group input::placeholder {
  text-transform: capitalize;
}

.form_group {
  margin-bottom: 11px;
}

.form_group textarea {
  height: 100px;
}

.form_btn .themebtn {
  width: 100%;
}

.form_title h5 {
  font-size: 21px;
  font-family: var(--f2);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 3px;
}

.form_title h4 {
  font-size: 27px;
  font-family: var(--f2);
  margin: 0;
  font-weight: 600;
}

.chat_form::before {
  position: absolute;
  content: '';
  width: 280px;
  height: 280px;
  background: #3d3d3d;
  top: -7%;
  left: -36%;
  border-radius: 100%;
  z-index: -3;
  animation: boll2 5s infinite linear;
  animation-delay: 1.5s;
}

@keyframes boll2 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
    background: #3d3d3d62;
    backdrop-filter: blur(20px);
  }

  100% {
    transform: scale(1);
  }
}

.chat_form::after {
  position: absolute;
  content: '';
  width: 280px;
  height: 280px;
  background: var(--c1);
  top: 22%;
  left: -47%;
  border-radius: 100%;
  z-index: -2;
  animation: boll1 5s infinite linear;
}

@keyframes boll1 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
    background: #dc963b67;
    backdrop-filter: blur(20px);
  }

  100% {
    transform: scale(1);
  }
}

.banner_img::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #4b4b4bd1;
}


.chat_form .form_main::before {
  position: absolute;
  content: '';
  width: 250px;
  height: 250px;
  background: #ffffffde;
  border-radius: 100%;
  top: 10%;
  left: -19%;
  z-index: -1;
  animation: boll3 5s infinite linear;
  animation-delay: 3.5s;
}

@keyframes boll3 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
    background: #ffffff3b;
    backdrop-filter: blur(20px);
  }

  100% {
    transform: scale(1);
  }
}

.our_services {
  padding: 70px 0;
}

.services_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.services_item {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 7px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 14%);
  position: relative;
  gap: 19px;
  z-index: 1;
  width: 22%;
  margin: 0px 23px;
  transition: 500ms;
}

/* Right Orange Line */
.services_item::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background: var(--c1);
  right: 0;
  top: 0;
  border-radius: 12px;
  transition: 500ms;
}

.ser_icon {
  width: 95px;
  height: 95px;
  background: #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -48px;
  padding: 19px;
  z-index: 9;
  transition: 500ms;
}

.ser_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ser_cont p {
  text-transform: capitalize;
  font-size: 27px;
  font-weight: 500;
  margin: 0;
  font-family: var(--f2);
  line-height: 1.2;
  transition: 300ms;
}

.ser_cont {
  width: 68%;
  position: relative;
  z-index: 1;
}

.services_item:hover::after {
  width: 100%;
}

.services_item:hover .ser_icon {
  background: #fff;
  box-shadow: 0px 0px 10px #cfcfcf;
}

.services_item:hover .ser_icon img {
  filter: invert(1);
  animation: tada 700ms;
}

.services_item:hover .ser_cont p {
  color: #fff;
}

.section_title h3 {
  font-size: 49px;
  font-family: var(--f2);
  font-weight: 400;
  text-transform: capitalize;
}

.section_title h3 span {
  font-family: var(--f2);
}

.color-gray {
  color: var(--c2);
}

.color-yellow {
  color: var(--c1);
}

.get_book {
  padding: 70px 0px;
  background: url(../images/banner.webp);
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.get_book_img {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}

.get_book_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.get_your_book {
  padding: 20px 20px;
  background: #00000054;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.book_top_headings h3 {
  font-size: 50px;
  font-family: var(--f2);
  text-transform: capitalize;
  font-weight: 400;
  margin: 0;
  color: #fff;
  line-height: 1.2;
}

.book_top_headings P {
  font-size: 13PX;
  line-height: 1.9;
  width: 96%;
  margin: 0;
}

.get_book_cont {
  padding-left: 35px;
}

.get_book_item {
  width: 30%;
}

.get_book_icon img {
  width: 40px;
}

.get_book_item p {
  font-size: 11px;
  margin: 0;
  color: #fff;
}

.get_book_item h4 {
  font-size: 27px;
  font-family: var(--f3);
  text-transform: capitalize;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.get_book_icon img {
  width: 26px;
  isolation: isolate;
  margin-bottom: 8px;
}

.get_book_card {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.get_your_book::before {
  position: absolute;
  content: '';
  width: 300px;
  height: 300px;
  background: var(--c1);
  bottom: -22%;
  left: -8%;
  border-radius: 100%;
}

.get_book::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: var(--c2);
  top: 0;
  left: 0;
  opacity: 0.8;
}

.book_top_headings {
  color: #fff;
}

.form_group input:focus,
.form_group textarea:focus {
  box-shadow: 0px 0px 0px 1px var(--c1);
  background: #f795212e;
}

.idea_to_life {
  padding: 70px 0px;
  background: #FFF8F0;
}

.section_title p {
  font-size: 13px;
  margin: 0;
  line-height: 1.8;
}

.idea_to_life .section_title p {
  width: 83%;
  margin: 0 auto;
}

.process_step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.process_card {
  padding: 26px 16px;
  margin-top: 20px;
  border-radius: 14px;
  backdrop-filter: blur(5px);
  box-shadow: 2px 2px 23px 0px #00000036;
  border: 1px solid #fff;
}

.top_step span {
  font-size: 30px;
  font-family: var(--f2);
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1;
  border-bottom: 3px solid var(--c1);
}

.top_step {
  text-align: end;
}

.process_item {
  position: relative;
  width: 88%;
}

.process_item::before {
  position: absolute;
  content: '';
  width: 160px;
  height: 160px;
  background: var(--c1);
  border-radius: 100%;
  top: 0px;
  left: -35px;
}

.process_step span {
  font-size: 64px;
  line-height: 1;
  font-family: var(--f2);
  color: #fff;
  font-weight: 500;
}

.process_step img {
  width: 50px;
  height: auto;
}

.process_card h3 {
  font-size: 23px;
  font-family: var(--f2);
  text-transform: capitalize;
  font-weight: 600;
  color: #000;
  margin-bottom: 11px;
}

.process_card p {
  font-size: 12px;
  margin: 0;
  line-height: 1.8;
  text-transform: capitalize;
}

.card_row .col-md-3:nth-child(even) .process_item::before {
  background: var(--c2);
}

.card_row .col-md-3:nth-child(even) .process_step img {
  filter: brightness(0) opacity(0.6);
}


.book_stand_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px 60px 60px 60px;
}


.book_stand_img {
  width: 100%;
  height: 665px;
  position: relative;
}

section.book_stand {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}


.book_stand_content h3 span {
  font-family: var(--f2);
  color: var(--c1);
  font-size: 47px;
}

.book_stand_content h3 {
  font-family: var(--f2);
  font-size: 47px;
  width: 85%;
}

.book_stand_content p {
  font-size: 13px;
  font-family: var(--f1);
  width: 77%;
  text-align: justify;
  margin-bottom: 20px;
}


.book_stand_content {
  padding-left: 40px;
}

.book_stand_content ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.book_stand_content ul li {
  width: 50%;
  margin-bottom: 20px;
  font-family: var(--f2);
  font-weight: 600;
  font-size: 18px;
  position: relative;
  padding-left: 34px;
}

.book_stand_img::before {
  content: '';
  position: absolute;
  background-image: url(../images/book_stand1.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 110px;
  height: 100px;
  top: -46px;
  left: -50px;
  z-index: 111;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.book_stand_img::after {
  content: '';
  position: absolute;
  height: 93%;
  width: 100%;
  border: 3px solid #fff;
  z-index: 1;
  top: 50%;
  left: -34px;
  transform: translateY(-50%);
  border-radius: 60px;
  animation: translate 10s linear infinite;
}

@keyframes translate {
  0% {
    transform: translateX(0px) translateY(-50%);
  }

  50% {
    transform: translateX(50px) translateY(-50%);
  }

  100% {
    transform: translateX(0px) translateY(-50%);
  }
}

.book_stand_content ul li::before {
  position: absolute;
  content: '';
  background-image: url(../images/book_stand2.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 28px;
  height: 28px;
  left: 0;
  top: 0;
}

.book_stand_btn {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 13px;
}

section.book_stand::before {
  position: absolute;
  content: '';
  background: #f9b05a17;
  height: 88%;
  width: 70%;
  top: 55%;
  right: 0px;
  transform: translateY(-50%);
}

section.book_stand::after {
  position: absolute;
  content: '';
  background: var(--c1);
  height: 210px;
  width: 210px;
  top: 20px;
  right: -37px;
  border-radius: 100%;
}

.publishing_stand_img img {
  width: 87%;
  height: 100%;
  object-fit: cover;
}

.publishing_stand_img {
  width: 100%;
  height: 492px;
  text-align: end;
}

.publishing_stand_cnt h3 {
  font-family: var(--f2);
  font-size: 47px;
  width: 91%;
}

.publishing_stand_cnt h3 span {
  font-family: var(--f2);
  color: var(--c1);
  font-size: 47px;
}

.publishing_stand_cnt p {
  font-size: 13px;
  font-family: var(--f1);
  width: 96%;
  margin-bottom: 12px;
  line-height: 1.7;
}

section.publishing_stand {
  padding: 70px 0;
}

.write_book {
  padding: 70px 0;
  background-image: url(../images/banner.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

section.write_book::before {
  content: '';
  position: absolute;
  background: var(--c2);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.9;
}

.write_book_cnt {
  position: relative;
  z-index: 9;
  text-align: center;
}

.write_book_cnt .web_btns {
  justify-content: center;
  margin-top: 20px;
}

.write_book_cnt h3 {
  font-family: var(--f2);
  color: #fff;
  font-size: 56px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 5px;
  font-weight: 400;
}

.write_book_cnt p {
  font-size: 13px;
  color: #fff;
  font-family: var(--f1);
  width: 71%;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

.incredible_writing_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.incredible_writing_img {
  width: 100%;
  height: 486px;
}

.incredible_writing_cnt h3 {
  font-family: var(--f2);
  font-size: 47px;
  width: 91%;
}

.incredible_writing_cnt h3 span {
  font-family: var(--f2);
  color: var(--c1);
  font-size: 47px;
}

.incredible_writing_cnt p {
  font-size: 13px;
  font-family: var(--f1);
  width: 91%;
  text-align: justify;
  margin-bottom: 30px;
}

.incredible_writing {
  padding: 70px 0;
}

.turning_word_img img {
  width: 90%;
  height: 100%;
  object-fit: cover;
}

.turning_word_img {
  width: 100%;
  height: 568px;
}

section.turning_word {
  padding: 70px 0;
}

.turning_word_cnt h3 {
  font-family: var(--f2);
  font-size: 47px;
  width: 100%;
  margin-bottom: 20px;
}

.turning_word_cnt h3 span {
  font-family: var(--f2);
  color: var(--c1);
  font-size: 47px;
}

.turning_word_cnt p {
  font-size: 14px;
  font-family: var(--f1);
  margin-bottom: 25px;
}

.place_heading h4 {
  font-family: var(--f2);
  font-weight: 600;
  font-size: 25px;
}

.place_heading1 p {
  font-family: var(--f1);
  font-size: 13px;
}

.place_heading1 {
  padding-left: 63px;
  position: relative;
}

.place_heading1 h4 {
  font-family: var(--f2);
  font-weight: 600;
  font-size: 25px;
}

.place_heading p {
  font-family: var(--f1);
  font-size: 13px;
}

.place_heading {
  padding-left: 15px;
  position: relative;
}

.place_heading_main {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.place_heading_main span {
  width: 80px;
  height: 45px;
  background: var(--c1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  font-family: var(--f1);
  position: relative;
}

.place_heading_main span::before {
  position: absolute;
  content: '';
  width: 14px;
  height: 19px;
  background: var(--c1);
  right: -8px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.write_book::after {
  position: absolute;
  content: '';
  width: 400px;
  height: 400px;
  background: var(--c3);
  border-radius: 100%;
  left: -8%;
  bottom: -31%;
  opacity: 0.5;
}

/* ====================================== Footer css start ================================ */
.footer {
  padding-top: 70px;
  background-color: #fff8f0;
}

.footer_logo {
  width: 280px;
  height: auto;
  margin-bottom: 15px;
}

.footer_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer_about p {
  margin: 0;
  color: #000;
  font-size: 13px;
  line-height: 1.9;
  text-align: justify;
}

h4.f_title {
  color: #000;
  font-size: 20px;
  font-family: var(--f2);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 26px;
  position: relative;
}

.footer_links ul li a {
  color: #000;
  font-size: 15px;
  margin-bottom: 23px;
  width: 100%;
}

h4.f_title::before {
  position: absolute;
  content: '';
  width: 30%;
  background: var(--c3);
  bottom: -8px;
  left: 0;
  height: 3px;
}

.footer_links {
  margin-top: 60px;
}

.footer_form {
  margin-top: 60px;
}

ul.footer_social {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 23px 13px;
  border-radius: 10px;
  border: 1px solid #fff;
}

ul.footer_social li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100%;
}

ul.footer_social li a:hover {
  transform: translateY(-7px);
  background: var(--c1);
  box-shadow: 0px 0px 20px 0px var(--c1);
  border-color: var(--c1);
}

.fooetr_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 30px;
  border-radius: 10px;
  border: 1px solid #000;
  height: 100%;
}

.fooetr_info a {
  color: #000;
  font-size: 21px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fooetr_info a i {
  font-size: 23px;
  color: var(--c1);
  transition: 500ms;
}

.fooetr_info a:hover i {
  color: #000;
}

.fooetr_info a:hover {
  color: var(--c1);
}

.footer_about {
  width: 91%;
}

.social_links {
  padding: 26px 0px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin: 25px 0px 0;
}

.copy_right p {
  margin: 0;
  color: #000;
  font-size: 14px;
}

.copy_right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0px;
}

.form_fields input,
.form_fields textarea {
  width: 100%;
  padding: 8px 8px;
  font-size: 13px;
  background: #EAE7E2;
  border: 1px solid #ffffff96;
  border-radius: 3px;
  color: var(--c1);
  outline: 0;
}

.form_fields {
  margin-bottom: 7px;
}

.form_fields button {
  width: 100%;
}

.footer_links ul li a:hover {
  transform: translateX(7px);
  color: var(--c1);
}

.disclaimer {
  color: #000;
  font-size: 15px;
  text-align: center;
  line-height: 1.6;
  font-family: var(--f1);
  margin-top: 40px;
}

.copy_right ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.copy_right ul li a {
  font-size: 15px;
  text-transform: capitalize;
}

.copy_right ul li a:hover {
  color: var(--c1);
}

.footer_about p b {
  font-family: var(--f1);
}

.disclaimer b {
  font-family: var(--f1);
}

.form_fields textarea {
  height: 79px;
}

.bg-tr-black {
  border-color: #000;
  background: transparent;
}
/* ====================================== Footer css end ================================ */

/* ===================================== responsive  css start ===================================== */

.menu_logo {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 500ms all;
  box-shadow: 0px 0px 10px 0px #cfcfcf;
}


.side_menu {
  width: 90%;
  background: #fff;
  height: 100vh;
  position: fixed;
  top: 0;
  padding: 10px 16px;
  left: 0;
  z-index: 99999;
  transform: translateX(-100%);
  transition: 200ms all;
}

.responsive_menu {
  display: none;
}

.show {
  transform: translateX(0%);
}

.responsive_logo img {
  width: 75px;
}

.open_menu {
  font-size: 30px;
  color: var(--c2);
}

.side_menu li a {
  padding: 12px 12px;
  width: 100%;
  color: #373737;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
}

.close_menu {
  width: 50px;
  text-align: end;
  padding: 8px 12px !important;
  float: inline-end;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu_sticky {
  position: fixed;
}

.responsive_overly {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #000000a3;
  transition: 200ms;
  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;
  border: none;
}

.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: "\ebc0";
  color: #000;
  font-size: 19px;
}

.side_menu .accordion-body {
  padding: 0;
  overflow-x: auto;
}

.side_menu .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
  background-image: none;
  content: "\eb8b";
  color: var(--c1);
}

.side_menu .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  outline: 0;
  border-color: transparent;
}

.side_menu .accordion-button:not(.collapsed) a {
  color: var(--c1);
}

.close_menu i {
  font-size: 23px;
}



.side_form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 5px 12px;
  gap: 10px;
  box-shadow: 0px 1px 0px 0px #ebebeb;
  margin-bottom: 14px;
  margin-top: 0px;
}

.side_form input {
  background: transparent;
  border: none;
  outline: 0;
  color: gray;
  font-size: 13px;
  width: 100%;
}

.side_form button {
  background: transparent;
  border: none;
  font-size: 17px;
  color: gray;
  outline: 0;
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.social a {
  font-size: 24px;
  color: var(--c2);
}

.link_row {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0px;
  justify-content: space-between;
  padding-left: 14px;
}

.link_colom {
  width: 100%;
}


.sidenav {
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 0px 10px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: 200ms all;
  width: 500px;
  border-left: 1px solid;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-image: initial;
  padding: 20px 17px;
}


.custom-select {
  position: relative;
  width: 180px;
  cursor: pointer;
}

.custom-select .selected {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f1);
  font-size: 13px;
}

.custom-select img {
  width: 20px;
  height: 14px;
}

.custom-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background: #fff;
  display: none;
  z-index: 99;
}

.custom-select .options li {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.custom-select.open .options {
  display: block;
}

.side_menu ul {
  height: 84vh;
  overflow-y: auto;
}

/* ===================================== responsive  css end ===================================== */

/* ===================================== dropdown css start ===================================== */

ul.dropdown_menu {
  background: #fff;
  position: absolute;
  z-index: 99999;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  overflow: 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(--c1);
  color: #000;
}

ul.header_nav li {
  position: relative;
}

/* ===================================== dropdown css end ===================================== */

/* ===================================== popup form css start ===================================== */

.form_close {
  position: absolute;
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #fff;
  top: 6px;
  right: 6px;
  z-index: 999;
  background: var(--c1);
  border-radius: 8px;
}

.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;
  background: var(--c2);
}

.popup_form .chat_form {
  width: 30%;
}

/* ===================================== popup form 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: 94vh;
}

.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;
  color: #fff;
}

.inner_cont h6 {
  font-size: 22px;
  text-transform: uppercase;
  font-family: var(--f1);
  font-weight: 400;
}

.inner_cont h3 {
  font-size: 48px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 14px 0px;
  font-weight: 700;
  line-height: 1.1;
}

.inner_cont p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 7px;
}

.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;
  font-weight: 700;
}

.inner_sub_cont p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 7px;
}

.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 {
  color: var(--c1);
  font-family: var(--f1);
}

.inner_sub_cont ul li {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 7px;
  position: relative;
}

.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: -21px;
  transform: translateY(-50%);
}


.inner_sub_img img {
  width: 80%;
  object-fit: cover;
  height: 100%;
  border-radius: 16px;
  border-top-right-radius: 64px;
}

.inner_sub_img {
  width: 100%;
  height: 514px;
  text-align: center;
  position: sticky;
  top: 50px;
}

.inner_sub_banner {
  padding: 120px 0;
}

.inner_sub_cnt h3 {
  font-family: var(--f2);
  font-size: 42px;
  font-weight: 700;
  color: #000;
}

.inner_sub_cnt h3 span {
  font-size: 42px;
  color: var(--c1);
  font-weight: 700;
  font-family: var(--f2);
}

.inner_sub_cnt p {
  font-size: 14px;
  line-height: 2;
}


.inner_sub_cnt p {
  font-size: 14px;
  line-height: 2;
}


.inner_sub_cnt ul li {
  margin-bottom: 18px;
  position: relative;
  padding-left: 30px;
  font-weight: 500;
  color: #000;
  font-size: 15px;
}

.inner_sub_cnt ul li::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 25px;
  top: 0;
  left: 0px;
  background: url(../images/book_stand2.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.inner_sub_img::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 115%;
  background: #223554;
  z-index: -1;
  left: 19px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.inner_sub_cnt ul li b {
  font-family: var(--f1);
  font-size: 14px;
}

.inner_banner_img::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #4b4b4bd1;
}

.inner_sub_banner--alt {
  background: #e1e1e1;
}

.inner_sub_img--alt::before {
  left: auto;
  right: 0;
  border-radius: 0px 20px 20px 0px;
}

/* ===================================== inner banner css end ===================================== */

/* ===================================== contact us page css start ===================================== */


.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;
  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: 11px 14px;
  outline: 0;
  background: #EDEDED;
  border: 2px solid #2f2f2d54;
}

.contact_form textarea {
  height: 103px;
}

.contact_us_cont h5 {
  font-family: var(--f2);
  font-size: 18px;
  text-transform: uppercase;
  color: #333;
}

.contact_us_cont h3 {
  font-family: var(--f2);
  text-transform: uppercase;
  font-size: 43px;
  line-height: 1.1;
  color: #000;
  font-weight: 800;
}

.contact_us_cont h3 span {
  font-family: var(--f2);
  text-transform: uppercase;
  font-weight: 900;
}

.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;
}

.contact_us::before {
  position: absolute;
  content: '';
  background: url(../images/splatter.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 220px;
  height: 208px;
  top: 8px;
  left: -74px;
  z-index: 9;
  transform: scaleX(-1) rotate(75deg);
}

.contact_us::after {
  position: absolute;
  content: '';
  background: url(../images/splatter.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 280px;
  height: 298px;
  bottom: 28px;
  right: -5px;
  transform: scaleX(-1) rotate(75deg);
}

.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;
  font-family: var(--f1);
}

.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;
}


/* ===================================== contact us page css end ===================================== */

/* ===================================== 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);
}

/* Section Headings */
.policy_content h4 {
  font-size: 26px;
  font-family: var(--f2);
  font-weight: 600;
  margin: 13px 0;
  color: #111827;
  position: relative;
  padding-left: 18px;
  text-transform: capitalize;
}

.policy_content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 70%;
  width: 4px;
  background: var(--c2);
  border-radius: 4px;
}

/* Paragraph Styling */
.policy_content p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #374151;
  text-align: justify;
  margin-bottom: 14px;
}

/* Bold text highlight */
.policy_content p b {
  color: var(--c2);
  font-weight: 600;
}

/* Links */
.policy_content a {
  color: var(--c2);
  text-decoration: none;
  font-weight: 500;
}

.policy_content a:hover {
  color: var(--c1);
}

/* Contact Section Highlight */

.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: 8px;
  color: var(--c2);
  font-size: 21px;
  line-height: 1.9;
  width: 12px;
  height: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.policy_content h5 {
  font-size: 22px;
  font-family: var(--f1);
  font-weight: 500;
}

/* ===================================== privacy page css end ===================================== */

/*===================================== faqs page css start ================================*/

.faqs_section {
  padding: 70px 0px;
}

.faqs_mian .accordion-button {
  padding: 26px 20px;
  font-family: var(--f1);
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  border-radius: 0 !important;
  background: #fff;
}

.faqs_mian .accordion-item {
  margin-bottom: 17px;
  border: 1px solid #c7c7c7 !important;
  overflow: hidden;
  border-radius: 8px !important;
  box-shadow: 0px 0px 10px 0px #00000026;
}

.faqs_mian .accordion-button:not(.collapsed) {
  color: #000;
  background: #fff;
  box-shadow: none;
}

.faqs_mian .accordion-body {
  background: var(--c3);
  padding: 24px 24px;
}

.faqs_mian .accordion-body p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
}

.faqs_mian .accordion-button::after {
  background-image: none;
  content: "\ee90";
  font-size: 14px;
  width: 23px;
  height: 23px;
  font-family: boxicons !important;
  border: 2px solid;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faqs_mian .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(90deg) scale(1.3);
  color: var(--c1);
}

.faqs_mian .accordion-button:hover {
  color: var(--c1);
}

.faqs_img {
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: sticky;
  top: 20px;
  transform: translateX(30px);
}

.faqs_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo_main {
  position: relative;
  width: 100%;
  height: 510px;
}

/* ====================================== faqs page css end ================================ */
/*===================================== faqs page css start ================================*/

.faqs_section {
  padding: 70px 0px;
}

.faqs_mian .accordion-button {
  padding: 26px 20px;
  font-family: var(--f1);
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  border-radius: 0 !important;
  background: #fff;
}

.faqs_mian .accordion-item {
  margin-bottom: 17px;
  border: 1px solid #c7c7c7 !important;
  overflow: hidden;
  border-radius: 8px !important;
  box-shadow: 0px 0px 10px 0px #00000026;
}

.faqs_mian .accordion-button:not(.collapsed) {
  color: #000;
  background: #fff;
  box-shadow: none;
}

.faqs_mian .accordion-body {
  background: var(--c3);
  padding: 24px 24px;
}

.faqs_mian .accordion-body p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
}

.faqs_mian .accordion-button::after {
  background-image: none;
  content: "\ee90";
  font-size: 14px;
  width: 23px;
  height: 23px;
  font-family: boxicons !important;
  border: 2px solid;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faqs_mian .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(90deg) scale(1.3);
  color: var(--c1);
}

.faqs_mian .accordion-button:hover {
  color: var(--c1);
}

.faqs_img {
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: sticky;
  top: 20px;
  transform: translateX(30px);
}

.faqs_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo_main {
  position: relative;
  width: 100%;
  height: 510px;
}
/* ====================================== faqs page css end ================================ */

.contact_map {
  width: 100%;
  height: 700px;
  overflow: hidden;
  border-radius: 40px;
}

.contact_map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.get_input input,
.get_input textarea {
  width: 100%;
  padding: 9px 12px;
  border: none;
  background: transparent;
  backdrop-filter: blur(7px);
  height: 45px;
  color: #fff;
  font-size: 15px;
  outline: 0;
}

.get_input {
  margin-bottom: 10px;
}

.get_input button {
  width: 100%;
  height: 100%;
}

.get_input textarea {
  margin: 0;
}

.get_form {
  margin-top: 20px;
}

.book_top_headings h6 b {
  font-family: var(--f1);
  color: var(--c1);
} 

.book_top_headings h6 {
  font-family: var(--f2);
  font-size: 25px;
  margin-top: 6px;
  text-transform: uppercase;
}

a.header__logo:hover img {
    transform: scale(0.8);
}
 