/* ----- IMP ----- */

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-Medium.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-Regular.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/static/Inter_18pt-Bold.ttf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.ttf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraBold.ttf");
  font-weight: 700;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins";
}

p,
ul,
li {
  font-family: "Inter";
}

a,
input {
  font-family: "Poppins";
}

/* ----- header ------ */

.header-contain {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 20%;
}

.brand-bar {
  display: flex;
  width: 80%;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}

.logo img {
  width: 100%;
}

a.logo {
  display: block;
  width: 180px;
  height: 100px;
}

.call-btn a {
  text-decoration: none;
  font-size: 17px;
  color: #04293b;
  font-weight: 500;
  transition: all ease 0.3s;
}

.call-btn a:hover {
  color: #91b206;
}

.chat-btn a {
  text-decoration: none;
  font-size: 17px;
  background-color: #91b206;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all ease 0.3s;
  border: 2px solid;
}

.chat-btn a:hover {
  background-color: #ffffff;
  color: #91b206;
  border: 2px solid #91b206;
}

.chat-btn a:hover span.chat-icon {
  background-color: #91b206;
}

.chat-btn a:hover span.chat-icon i {
  color: #ffffff;
}

span.chat-icon {
  background-color: #ffffff;
  border-radius: 50px;
  padding: 2px 7px;
  margin-left: 8px;
  padding-bottom: 5px;
  transition: all ease 0.3s;
}

span.chat-icon i {
  color: #212529;
  font-size: 14px;
  transition: all ease 0.3s;
}

.desktop {
  background-color: #ffffff;
}

/* ----- banner ------ */

section.banner {
  width: 100%;
  height: 135vh;
  background-image: url(../images/banner-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bnr-head h1 {
  font-size: 70px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
}

.clr {
  color: #91b206;
}

.bnr-head {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 60px;
}

.bnr-head p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
  padding: 0px 200px;
}

form.form-contain {
  display: flex;
}

.input-box input {
  background: transparent;
  padding: 8px 14px;
  border: 1.5px solid #91b206;
  border-radius: 5px;
  color: #ffffff;
}

input[type="text"] {
  font-size: 16px;
  color: #ffffff;
}

input::placeholder {
  color: #b4b4b4;
}

form.form-contain {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.bnr-form {
  margin-top: 30px;
  background: #0000005c;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(15px);
  padding: 60px 0px;
  border-radius: 18px;
  width: 95%;
}

.bnr-form input::placeholder {
    color: #ffffff;
}

.from-btn button {
  text-decoration: none;
  font-size: 17px;
  background-color: #91b206;
  color: #ffffff;
  padding: 8px 0px;
  width: 200px;
  display: block;
  text-align: center;
  border-radius: 5px;
  font-weight: 500;
  transition: all ease 0.3s;
  border: none;
}

.from-btn button:hover {
  background-color: #ffffff;
  color: #91b206;
}

.banner-contain {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.launch-head h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 400;
}

.launch-head p {
  color: #ffffff;
  font-size: 15px;
}

li.laun-item {
  color: #ffffff;
  font-size: 14px;
}

ul.launch-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 10px;
}

.launch-head {
  text-align: center;
}

span.laun-icon {
  margin-right: 10px;
  color: #91b206;
}

/* ----- brand slider ----- */

.brands {
  background-color: #91b206;
  padding: 30px 0px;
  margin-top: -70px;
}

.brand-box img {
  margin: auto;
}

/* ----- About Book ----- */

.about-book-contain {
  display: flex;
}

.book-detail h2 {
  font-size: 52px;
  font-weight: 600;
  color: #1b1a1a;
  margin-bottom: -8px;
}

.book-detail h1 {
  font-size: 52px;
  font-weight: 600;
  color: #91b206;
}

.book-detail p {
  font-size: 15px;
  font-weight: 400;
  color: #1b1a1a;
}

.book-detail {
  width: 55%;
}

.about-book-img {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/about-book-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

section.about-book {
  margin-top: 60px;
}

.abt-chats-btn a {
  text-decoration: none;
  background-color: #91b206;
  padding: 10px 30px;
  font-size: 17px;
  color: #ffffff;
  padding-right: 0px;
  transition: all ease 0.3s;
}

.abt-chats-btn a:hover {
  background-color: #04293b;
  color: #ffffff;
}

.abt-chats-btn a:hover span.abt-chat {
  background-color: #91b206;
}

.abt-chats-btn a:hover span.abt-chat i {
  color: #ffffff;
}

span.abt-chat {
  margin-left: 16px;
  background-color: #04293b;
  padding: 10px 10px;
  transition: all ease 0.3s;
}

.abt-chats-btn {
  margin-top: 30px;
}

.abt-book-img img {
  width: 100%;
}

.abt-book-img {
  width: 370px;
}

/* ---- services ----- */

.our-services {
  background-color: #04293b;
  margin-top: 0px;
  padding-bottom: 50px;
  position: relative;
}

.our-services::before {
  content: "";
  background-image: url(../images/serv-desi.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
  position: absolute;
  left: -40px;
  bottom: 180px;
  z-index: 0;
}

.our-services::after {
  content: "";
  background-image: url(../images/serv-desi-2.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -30px;
  right: 0px;
}

.serv-head {
  text-align: center;
}

.serv-head h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 400;
}

.service-contain {
  margin-top: 60px;
  position: relative;
}

.serv-head h1 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 500;
  transition: all ease 0.2s;
}

.services {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 24px 24px;
  flex-wrap: wrap;
}

.serv-box {
  background-color: #ffffff;
  width: 31%;
  padding: 24px 24px;
  border-radius: 12px;
  transition: all ease 0.3s;
  cursor: pointer;
}

.serv-box:hover {
  background-color: #91b206;
}

.serv-box:hover .serv-img img {
  filter: brightness(0) invert(1);
}

.serv-box:hover .serv-name h1 {
  color: #ffffff;
}

.serv-box:hover .serv-desc p {
  color: #ffffff;
}

.serv-top {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  height: 60px;
}

.serv-name h1 {
  font-size: 22px;
  font-weight: 400;
}

.serv-img img {
  width: 100%;
}

.serv-img {
  width: 15%;
}

.serv-name {
  width: 100%;
  padding-right: 20px;
}

.serv-desc p {
  font-size: 14px;
  margin-bottom: 0px;
  margin-top: 10px;
  font-weight: 400;
  transition: all ease 0.2s;
}

.serv-chats-btn a {
  text-decoration: none;
  background-color: #91b206;
  padding: 10px 30px;
  font-size: 17px;
  color: #ffffff;
  padding-right: 0px;
  border-radius: 6px;
  transition: all ease 0.3s;
}

.serv-chats-btn a:hover {
  background-color: #04293b;
  color: #91b206;
}

.serv-box:hover .serv-chats-btn a {
  background-color: #04293b;
  color: #91b206;
}

.serv-chats-btn {
  margin-top: 24px;
}

span.serv-chat {
  margin-left: 16px;
  background-color: #04293b;
  padding: 10px 10px;
  border-radius: 6px;
  border-radius: 0px 6px 6px 0px;
  transition: all ease 0.3s;
}

.serv-chats-btn a:hover span.serv-chat {
  background-color: #ffffff;
}

.serv-box:hover span.serv-chat {
  background-color: #ffffff;
}

/* ---- packages ----- */

section.our-packages {
  margin-top: 50px;
  padding-bottom: 50px;
}

.pkg-head h1 {
  font-size: 44px;
  font-weight: 600;
  transition: all ease 0.3s;
}

.pkg-head {
  text-align: center;
}

.pkg-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #91b206;
  transition: all ease 0.3s;
}

.pkg-details {
  padding: 0px 12px;
  padding-left: 30px;
}

.pkg-title {
  text-align: center;
}

.packages {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pkg-box {
  width: 32%;
  padding-top: 20px;
  border-left: 2px solid #04293b;
  border-top: 2px solid #04293b;
  border-right: 1px solid #04293b;
  border-radius: 18px 18px 18px 18px;
  transition: all ease 0.3s;
  cursor: pointer;
}

.pkg-f {
  border-left: 2px solid #04293b;
  border-top: 2px solid #04293b;
  border-right: 1.5px solid #04293b;
  border-radius: 18px 18px 18px 18px;
}

.pkg-s {
  border-left: 1.5px solid #04293b;
  border-bottom: 2px solid #04293b;
  border-right: 1.5px solid #04293b;
  border-radius: 18px 18px 18px 18px;
  border-top: 2px solid #ffffff;
}

.pkg-t {
  border-left: 1.5px solid #04293b;
  border-top: 2px solid #04293b;
  border-right: 2px solid #04293b;
  border-radius: 18px 18px 18px 18px;
}

.pkg-divider img {
  width: 100%;
  transition: all ease 0.3s;
}

ul.pkg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  /* justify-content: center;
  align-items: center; */
  padding-left: 0px;
  margin-top: 24px;
  gap: 6px;
  height: 320px;
  overflow-y: scroll;
}

ul.pkg-list::-webkit-scrollbar {
  width: 6px;
}

ul.pkg-list::-webkit-scrollbar-track {
  background: #1b1a1a;
  border-radius: 8px;
}

ul.pkg-list::-webkit-scrollbar-thumb {
  background: #91b206;
  border-radius: 10px;
  transition: 0.3s;
}

ul.pkg-list::-webkit-scrollbar-thumb:hover {
  background: #91b206;
}

.pkg-box:hover ul.pkg-list::-webkit-scrollbar-track {
  background: #ffffff;
}

.pkg-box:hover ul.pkg-list::-webkit-scrollbar-thumb {
  background: #1b1a1a;
}

ul.pkg-list li {
  font-size: 14px;
  transition: all ease 0.3s;
}

span.check i {
  margin-right: 6px;
  font-size: 12px;
}

.pkg-chat a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  background-color: #91b206;
  color: #ffffff;
  padding: 10px 34px;
  border-radius: 10px;
  transition: all ease 0.3s;
}

.pkg-chat a:hover {
  background-color: #04293b;
  color: #ffffff;
}

.pkg-chat {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: -24px;
}

.pkg-box:hover {
  background-color: #91b206;
}

.pkg-box:hover .pkg-divider img {
  filter: brightness(0) invert(1);
}

.pkg-box:hover ul.pkg-list li {
  color: #ffffff;
}

.pkg-box:hover .pkg-title h2 {
  color: #ffffff;
}

.pkg-box:hover .pkg-chat a {
  background-color: #04293b;
  color: #ffffff;
}

/* ----- publishing record ----- */

section.publishing-record {
  margin-top: 60px;
  overflow-x: hidden;
}

section.publishing-record .container-fluid {
  padding: 0px;
  margin: 0px;
}

.pub-record-head h1 {
  font-size: 44px;
  text-align: center;
  font-weight: 500;
  color: #1b1a1a;
}

.pub-record {
  background-color: #04293b;
  margin-top: 30px;
}

.our-record {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0px;
}

.record-box h1 {
  font-size: 60px;
  color: #ffffff;
}

.record-box {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.record-box p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  margin-top: 14px;
}

/* ---- portfolio ---- */

section.our-portfolio {
  margin-top: 60px;
  overflow-x: hidden;
  position: relative;
}

section.our-portfolio::before {
  content: "";
  position: absolute;
  background-image: url(../images/port-1.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 150px;
  height: 150px;
  right: -40px;
  top: 40px;
}

section.our-portfolio::after {
  content: "";
  position: absolute;
  background-image: url(../images/port-2.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  left: -20px;
  top: 0px;
  z-index: 0;
}

.port-head h1 {
  font-size: 40px;
  font-weight: 600;
}

.port-head {
  text-align: center;
}

.flip {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  align-items: center;
  margin: 0;
  overflow: hidden;
}

.flip .perspective-1,
.flip .perspective-2,
.flip .perspective-3,
.flip .perspective-4,
.flip .perspective-5,
.flip .perspective-6,
.flip .perspective-7 {
  perspective: 1000px;
  transform-style: preserve-3d;
  overflow: hidden;
  padding: 10px 10px;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  margin: 10px -25px;
  height: 54vh;
}

.book-flip-1,
.book-flip-2,
.book-flip-3,
.book-flip-4,
.book-flip-5,
.book-flip-6,
.book-flip-7 {
  transform-style: preserve-3d;
  transition: all ease-out 0.5s;
  -webkit-transition: all ease-out 0.5s;
  -moz-transition: all ease-out 0.5s;
  -ms-transition: all ease-out 0.5s;
  -o-transition: all ease-out 0.5s;
}

.book-1 {
  width: 160px;
  height: 240px;
  background: url(../images/book-1.webp) no-repeat center center;
  background-size: cover;
  border-radius: 1px;
  margin: 0;
  cursor: pointer;
}

.left-1 {
  height: 238px;
  width: 40px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: -239px;
  margin-bottom: 0px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url(../images/book-1.webp);
  background-size: cover;
  border-radius: 3px;
  transform: rotateY(-85deg) translateX(-14px);
}

.book-2 {
  width: 160px;
  height: 240px;
  background: url(../images/book-2.webp) no-repeat center center;
  background-size: cover;
  border-radius: 1px;
  margin: 0;
  cursor: pointer;
}

.left-2 {
  height: 238px;
  width: 40px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: -239px;
  margin-bottom: 0px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url(../images/book-2.webp);
  background-size: cover;
  border-radius: 3px;
  transform: rotateY(-85deg) translateX(-14px);
}

.book-3 {
  width: 160px;
  height: 240px;
  background: url(../images/book-3.webp) no-repeat center center;
  background-size: cover;
  border-radius: 1px;
  margin: 0;
  cursor: pointer;
}

.left-3 {
  height: 238px;
  width: 40px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: -239px;
  margin-bottom: 0px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url(../images/book-3.webp);
  background-size: cover;
  border-radius: 3px;
  transform: rotateY(-85deg) translateX(-14px);
}

.book-4 {
  width: 160px;
  height: 240px;
  background: url(../images/book-4.webp) no-repeat center center;
  background-size: cover;
  border-radius: 1px;
  margin: 0;
  cursor: pointer;
}

.left-4 {
  height: 238px;
  width: 40px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: -239px;
  margin-bottom: 0px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url(../images/book-4.webp);
  background-size: cover;
  border-radius: 3px;
  transform: rotateY(-85deg) translateX(-14px);
}

.book-5 {
  width: 160px;
  height: 240px;
  background: url(../images/book-1.webp) no-repeat center center;
  background-size: cover;
  border-radius: 1px;
  margin: 0;
  cursor: pointer;
}

.left-5 {
  height: 238px;
  width: 40px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: -239px;
  margin-bottom: 0px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url(../images/book-1.webp);
  background-size: cover;
  border-radius: 3px;
  transform: rotateY(-85deg) translateX(-14px);
}

.book-6 {
  width: 160px;
  height: 240px;
  background: url(../images/book-6.webp) no-repeat center center;
  background-size: cover;
  border-radius: 1px;
  margin: 0;
  cursor: pointer;
}

.left-6 {
  height: 238px;
  width: 40px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: -239px;
  margin-bottom: 0px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url(../images/book-6.webp);
  background-size: cover;
  border-radius: 3px;
  transform: rotateY(-85deg) translateX(-14px);
}

.book-7 {
  width: 160px;
  height: 240px;
  background: url(../images/book-7.webp) no-repeat center center;
  background-size: cover;
  border-radius: 1px;
  margin: 0;
  cursor: pointer;
}

.left-7 {
  height: 238px;
  width: 40px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: -239px;
  margin-bottom: 0px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url(../images/book-7.webp);
  background-size: cover;
  border-radius: 3px;
  transform: rotateY(-85deg) translateX(-14px);
}

.portslider .slick-slide.myrotatenewclass .bookrotate {
  transform: scale(1.1) rotateY(30deg) rotateX(8deg) rotateZ(-1deg);
}

.portslider .slick-slide.myrotatenewclass .bookspace {
  margin-left: -25px;
  margin-right: -25px;
}

.portslider {
  margin: 40px -70px 40px -175px;
}

/* .portslider {
  margin: 50px -100px 50px -100px;
} */

.portslider .slick-slide.myrotatenewclass {
  margin: 0px 50px;
  position: relative;
}

.portslider .slick-slide.myrotatenewclass::before {
  content: "";
  background: url(../images/dropshadowbook.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: -50px;
  z-index: 9;
}

.flip.portslider.slick-initialized.slick-slider {
  height: 60vh;
}

/* ----- chat banner ----- */

section.chat-banner {
  background-color: #04293b;
  /* overflow-x: hidden; */
  padding: 30px 0px;
}

.chat-bnr-contain {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cht-bnr-lft {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cht-bnr-cen {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cht-bnr-rgt {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cht-lft-img img {
  width: 100%;
}

.cht-rgt-img img {
  width: 100%;
}

.cht-bnr-desc h1 {
  font-size: 44px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.cht-bnr-desc p {
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
}

.cht-rgt-img img {
  width: 130%;
  margin-left: -112px;
  margin-bottom: -60px;
}

.cht-bnr-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.cht-live-btn a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  background-color: #91b206;
  padding: 10px 14px;
  padding-right: 0px;
  color: #ffffff;
  transition: all ease 0.3s;
}

.cht-live-btn a:hover {
  background-color: #ffffff;
  color: #91b206;
}

.cht-live-btn a:hover span.cht-icon {
  background-color: #91b206;
}

.cht-live-btn a:hover span.cht-icon i {
  color: #ffffff;
}

span.cht-icon {
  background-color: #ffffff;
  padding: 10px 10px;
  margin-left: 8px;
  transition: all ease 0.3s;
}

span.cht-icon i {
  font-size: 16px;
  color: #91b206;
  transition: all ease 0.3s;
}

.call-live-btn a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  background-color: #91b206;
  padding: 10px 14px;
  padding-left: 0px;
  color: #ffffff;
  transition: all ease 0.3s;
}

.call-live-btn a:hover {
  background-color: #ffffffff;
  color: #91b206;
}

.call-live-btn a:hover span.call-icon {
  background-color: #91b206;
}

span.call-icon {
  background-color: #ffffff;
  padding: 10px 10px;
  margin-right: 8px;
  transition: all ease 0.3s;
}

span.call-icon i {
  font-size: 16px;
  color: #91b206;
  transition: all ease 0.3s;
}

.call-live-btn a:hover span.call-icon i {
  color: #ffffff;
}

/* ----- client reviews ----- */

section.client-reviews {
  margin-top: 60px;
}

.reviews-head h1 {
  font-size: 44px;
  text-align: center;
  font-weight: 600;
}

.star i {
  color: #ffc703;
}

.review-cover {
  width: 30%;
  padding: 0px 10px;
}

.client-name h1 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.client-desc p {
  font-size: 14px;
  font-weight: 400;
}

.client-title h1 {
  font-size: 16px;
  font-weight: 700;
}

.client-rating {
  margin-bottom: 10px;
}

.client-name {
  height: 50px;
}

.review-box {
  background-color: #f4f4f4;
  padding: 24px;
  border-radius: 20px;
  height: 300px;
  overflow-y: scroll;
}

.review-box::-webkit-scrollbar {
  width: 6px;
}

.review-box::-webkit-scrollbar-track {
}

.review-box::-webkit-scrollbar-thumb {
  background: #91b206;
  border-radius: 10px;
  transition: 0.3s;
}

.reviews {
  margin-top: 50px;
}

.slick-dots li button:before {
  font-size: 40px !important;
}

.slick-dots li button::before,
.slick-dots li button:focus:before {
  opacity: 1;
  color: #1c0c22 !important;
}

.slick-dots li.slick-active button:before {
  color: #91b206 !important;
  opacity: 1 !important;
}

.slick-dots li button:before {
  opacity: 1 !important;
  color: #1c0c22 !important;
  line-height: 70px !important;
}

/* ----- contact banner ----- */

section.contact-banner {
  background-color: #04293b;
  margin-top: 70px;
  padding: 30px 0px;
}

.contact-bnr-details h1 {
  font-size: 40px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 0px;
}

.contact-bnr-details h2 {
  font-size: 42px;
  color: #91b206;
  font-weight: 500;
}

.contact-bnr-details p {
  font-size: 18px;
  color: #ffffff;
}

.contact-bnr-btns {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.contact-bnr-contain {
  display: flex;
  align-items: center;
}

.cont-bnr-img img {
  width: 100%;
}

.cont-bnr-img {
  width: 500px;
  margin-top: -90px;
}

/* ----- branding ----- */

.brand-box h1 {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
}

section.brandings {
  margin-top: 20px;
}

.brand-box {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ----- footer ----- */

footer {
  background-color: #04293b;
  margin-top: 10px;
  overflow-x: hidden;
}

.ft-logo-img img {
  width: 100%;
}

.ft-logo-img {
  width: 180px;
}

.ft-details p {
  color: #ffffffff;
  font-size: 14px;
  margin-bottom: 8px;
  text-align: center;
}

.ft-top {
  display: flex;
  align-items: center;
}

.ft-logo {
  width: 25%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.ft-details {
  width: 50%;
}

.ft-details a {
  text-decoration: none;
  color: #ffff;
}

.ft-details a:hover {
  color: #ffff;
}

.social-media {
  width: 25%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

ul.media-icons i {
  color: #ffffff;
  font-size: 22px;
}

ul.media-icons {
  display: flex;
  gap: 14px;
  padding-left: 0px;
}

.ft-bottom {
  background-color: #ffffffff;
  padding: 12px 0px;
  display: flex;
  justify-content: space-around;
}

footer .container-fluid {
  padding: 0px;
}

.ft-bottom p {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

span.ft-icon {
  margin-right: 5px;
}

ul.ft-linker {
  padding-left: 0px;
  list-style: none;
  margin-bottom: 0px;
  display: flex;
  gap: 30px;
}

li.ft-link a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #1b1a1a;
}

/* ---- popup form ---- */

.pop-book img {
  width: 100%;
}

.popup-lf {
  width: 45%;
}

.popup-rg {
  width: 55%;
}

.modal-dialog {
  max-width: 870px !important;
}

.popup-image {
  background-image: url(../images/about-book-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.popup-image::before {
  content: "";
  position: absolute;
  background-image: url(../images/port-2.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100px;
  height: 100px;
  top: -80px;
  left: -35px;
}

.pop-book {
  padding: 30px;
}

.modal-body {
  display: flex;
}

.pop-input-box {
  margin-top: 10px;
}

.pop-frm-top {
  margin-bottom: 20px;
}

.pop-frm-top h2 {
  font-size: 32px;
  font-weight: 400;
}

.pop-input-box textarea {
  width: 90%;
  padding: 10px 20px;
  border-radius: 4px;
  outline: none;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 2px solid #1b1a1a;
}

.pop-input-box input {
  width: 90%;
  padding: 10px 20px;
  border-radius: 4px;
  outline: none;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 2px solid #1b1a1a;
}

.pop-input-box input[type="text"] {
  color: #1b1a1a;
}

.pop-input-box input::placeholder {
  color: #1b1a1a;
}

.pop-input-box textarea::placeholder {
  color: #1b1a1a;
}

.pop-btn button {
  text-decoration: none;
  font-size: 17px;
  background-color: #91b206;
  color: #ffffff;
  padding: 8px 0px;
  width: 200px;
  display: block;
  text-align: center;
  border-radius: 5px;
  font-weight: 500;
  transition: all ease 0.3s;
  border: none;
}

.pop-btn button:hover {
  background-color: #1c0c22;
  color: #ffffff;
}

.pop-btn {
  display: flex;
  justify-content: flex-end;
  margin-right: 50px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.close-btn {
  display: flex;
  justify-content: flex-end;
}

button.btn-close {
  background-color: #91b206;
  padding: 14px;
  margin-top: 0px;
  margin-right: 0px;
  border-radius: 14px;
}

.clr-p {
  color: #91b206;
  font-weight: 600;
}

.modal-content {
  overflow: hidden;
}

.pop-form {
  position: relative;
  z-index: 3;
}

.pop-form::before {
  content: "";
  position: absolute;
  background-image: url(../images/port-1.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 150px;
  height: 150px;
  bottom: -90px;
  right: -50px;
  z-index: 0;
}
