@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color: #e3bc68;
  --secondary-color: #ffffff;
  --third-color: #000000;
  --navy-blue: #00274d;
  --font-one: "Exo 2", serif;
  --font-second: "Montserrat", serif;
  --gradient-one: linear-gradient(180deg, #ffffff, #e3bc68);
  --skew-text: skew(0deg);
}

body {
  background: var(--third-color);
  color: var(--secondary-color);
  overflow-x: hidden;
  font-family: var(--font-second);
}
body::-webkit-scrollbar {
  display: none;
}
body img {
  height: 100%;
  width: 100%;
}
body .commonBtn {
  background: var(--primary-color);
  color: var(--third-color);
  border-radius: 10px;
  border: none;
  padding: 7px 30px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}
body .commonBtn:hover {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}
body .tabHeader .heading {
  font-size: 65px;
  font-family: var(--font-one);
}
body .tabHeader .heading span {
  display: block;
  transform: var(--skew-text);
}
body .tabHeader .subHeading {
  font-size: 40px;
  font-family: var(--font-one);
}
body .tabHeader .subHeading span {
  display: block;
  transform: var(--skew-text);
}
body .header .navbar .navbar-brand {
  height: 110px;
  width: 300px;
  display: block;
}
body .header .navbar .navbar-brand .brandLogo {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
body .header .navbar #navbarNav {
  font-family: var(--font-one);
  justify-content: end;
}
body .header .navbar #navbarNav .navbar-nav {
  gap: 20px;
}
body .header .navbar #navbarNav .navbar-nav .nav-item .nav-link {
  color: var(--secondary-color);
  font-weight: 500;
  padding: 7px 30px;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  border-radius: 10px;
}
body .header .navbar #navbarNav .navbar-nav .nav-item:hover .nav-link,
body .header .navbar #navbarNav .navbar-nav .nav-item .nav-link.active {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}
body .header .navbar #navbarNav .navbar-nav .nav-item .commonBtn.active {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  background: transparent;
}

body .header .navbar #navbarNav .navbar-nav .nav-item .nav-link.commonBtn {
  color: var(--third-color);
}
body .heroSection {
  height: calc(85vh - 30px);
  display: flex;
  align-items: center;
  justify-content: center;
}
body .heroSection .bg-gradient {
  background: linear-gradient(180deg, #ffffff, #e3bc68);
  width: 96%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-color);
  position: relative;
}
body .heroSection .bg-gradient .videoSection {
  width: 100%;
  height: 100%;
  position: relative;
}
body .heroSection .bg-gradient .videoSection video {
  width: 100%;
}
body .heroSection .bg-gradient .videoSection .contentOverlay {
  position: absolute;
  z-index: 99;
  left: 10%;
  top: 50%;
  width: 640px;
  transform: translate(-10%, -50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body .heroSection .bg-gradient .videoSection .contentOverlay .heading {
  font-family: var(--font-one);
  font-size: 60px;
  line-height: 60px;
}
body .heroSection .bg-gradient .videoSection .contentOverlay .heading span {
  display: block;
  transform: var(--skew-text);
}
body .heroSection .bg-gradient .videoSection .contentOverlay .subHeading {
  font-size: 25px;
  line-height: 30px;
}
body .heroSection .bg-gradient .videoSection .contentOverlay .commonBtn {
  margin-top: 40px;
}
body .heroSection .bg-gradient .videoSection::before {
  content: "";
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0), var(--navy-blue));
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
body .mainContent .aboutAndrew {
  margin: 5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .mainContent .aboutAndrew .content {
  font-family: var(--font-one);
  font-size: 38px;
  line-height: 46px;
}
body .mainContent .aboutAndrew .content span {
  display: block;
  transform: skew(-10deg);
}
body .mainContent .aboutAndrew .content .signature {
  height: 100px;
  width: 300px;
}
body .mainContent .aboutAndrew .aboutImg {
  height: 55%;
  width: 55%;
}
body .mainContent .buildWealth {
  margin: 5rem 0;
}
body .mainContent .buildWealth .tabHeader {
  display: flex;
  flex-direction: column;
  text-transform: capitalize;
  margin-bottom: 5rem;
}
body .mainContent .buildWealth .tabHeader .heading {
  color: var(--primary-color);
  text-align: center;
}
body .mainContent .buildWealth .tabHeader .subHeading {
  text-align: center;
}
body .mainContent .buildWealth .videoTab {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
body .mainContent .buildWealth .videoTab .tabCustom {
  position: relative;
}
body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab {
  gap: 25px;
  height: 540px;
  width: 300px;
  display: flex;
  flex-direction: column;
  flex-wrap: unset;
  overflow-y: scroll;
  direction: rtl;
  padding-bottom: 25%;
}
body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab::-webkit-scrollbar {
  width: 4px;
  border-radius: 20px;
}
body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab::-webkit-scrollbar-track {
  background: #2d2d2d;
  border-radius: 20px;
}
body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab::-webkit-scrollbar-thumb {
  background: rgba(227, 188, 104, 0.8);
  border-radius: 20px;
}
body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
  border-radius: 20px;
}
body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab .nav-link {
  border-radius: 20px;
  height: 150px;
  width: 270px;
  padding: 0;
  position: relative;
}
body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab .nav-link video {
  transform: scale(1.01);
  height: 100%;
  width: 100%;
  border-radius: 25px;
}
body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab .nav-link .overlayText {
  border-radius: 20px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  font-size: 18px;
  color: var(--third-color);
  font-weight: 600;
  top: 0;
  left: 0;
  padding: 30px;
  background: var(--primary-color);
  opacity: 0;
  font-family: var(--font-one);
}
body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab .nav-link .overlayText .name {
  font-size: 22px;
}
body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab .nav-link .overlayText .university {
  font-size: 16px;
}
body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab .nav-link.active .overlayText {
  background: rgba(227, 188, 104, 0.6);
  opacity: 1;
}
body .mainContent .buildWealth .videoTab .tabCustom::after {
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
}
body .mainContent .buildWealth .videoTab .tab-content .tab-pane {
  height: 540px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
body .mainContent .buildWealth .videoTab .tab-content .tab-pane video {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}
body .mainContent .counterDiv {
  background: var(--primary-color);
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}
body .mainContent .counterDiv .countCard {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
  height: 200px;
  color: var(--navy-blue);
}
body .mainContent .counterDiv .countCard .count {
  font-size: 70px;
  font-weight: 700;
  line-height: 70px;
}
body .mainContent .counterDiv .countCard .countText {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 600;
}
body .mainContent .fullWidthwhoIam {
  background: var(--navy-blue);
  padding: 5rem 0;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
body .mainContent .fullWidthwhoIam .whoIam {
  background-image: url("../images/5.jpeg");
  background-position: right;
  background-repeat: no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  background-size: contain;
  border-radius: 20px;
}
body .mainContent .fullWidthwhoIam .whoIam .contentText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  margin-left: 40px;
  background: linear-gradient(to right, var(--navy-blue) 80%, transparent);
  padding-right: 5rem;
  height: 100%;
}
body .mainContent .fullWidthwhoIam .whoIam .contentText .para {
  font-size: 30px;
  line-height: 35px;
}
body .mainContent .fullWidthwhoIam .whoIam .contentText .para span {
  display: block;
  transform: skew(-10deg);
}
body .mainContent .fullWidthwhoIam .whoIam .contentText .knowMore {
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 20px;
  border-radius: 20px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
body .mainContent .fullWidthwhoIam .whoIam .contentText .knowMore:hover {
  background: var(--primary-color);
  color: var(--third-color);
  transform: scale(1.05);
}
body .mainContent .hoster {
  margin: 5rem 0;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 50px;
  border-left: 5px solid var(--primary-color);
  background: linear-gradient(to right, rgba(0, 0, 0, 0), var(--navy-blue));
}
body .mainContent .hoster .hostImg {
  height: 500px;
  width: 36%;
}
body .mainContent .hoster .hostView {
  width: 64%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
body .mainContent .hoster .hostView .para {
  margin-bottom: 3rem;
  font-size: 22px;
  font-weight: 400;
}
body .mainContent .hoster .hostView .para span {
  display: block;
}

body .mainContent .hoster .hostView .aboutHost {
  color: var(--primary-color);
  font-size: 22px;
}
body .mainContent .hoster .hostView .aboutHost span {
  display: block;
}
body .mainContent .hoster .hostView .aboutHost .hostName {
  font-weight: 700;
}
body .mainContent .linkidInPost {
  width: 100%;
  margin: 5rem 0;
}

body .mainContent .linkidInPosts {
  height: 600px;
}

body .mainContent .linkidInPost .tabHeader {
  display: flex;
  flex-direction: column;
  text-transform: capitalize;
  margin-bottom: 4rem;
}

body .mainContent .linkidInPost .tabHeader .heading {
  color: var(--primary-color);
  text-align: center;
}

body .mainContent .linkidInPost .iFrameContainer {
  width: 100%;
  height: 520px;
}

body .mainContent .linkidInPost iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}
body .mainContent .upcomingEvents {
  margin: 5rem 0;
}
body .mainContent .upcomingEvents .tabHeader {
  display: flex;
  flex-direction: column;
  text-transform: capitalize;
  margin-bottom: 5rem;
}
body .mainContent .upcomingEvents .tabHeader .heading {
  color: var(--primary-color);
  text-align: center;
}
body .mainContent .upcomingEvents .eventsCard {
  display: flex;
  justify-content: space-between;
}
body .mainContent .upcomingEvents .eventsCard .eventCard {
  height: 550px;
  width: 30%;
  position: relative;
  border-radius: 36px;
  border: 2px solid #f9f9f9;
  transition: all 0.4s ease-in-out;
}
body .mainContent .upcomingEvents .eventsCard .eventCard img {
  border-radius: 35px;
  mix-blend-mode: luminosity;
  transition: all 0.4s ease-in-out;
  -o-object-fit: cover;
  object-fit: cover;
}
body .mainContent .upcomingEvents .eventsCard .eventCard .dateTag {
  transition: all 0.4s ease-in-out;
  background: #f9f9f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  width: 50px;
  height: 60px;
  padding: 5px 10px;
  position: absolute;
  border-radius: 5px;
  top: -3px;
  right: 30px;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 40px;
}
body .mainContent .upcomingEvents .eventsCard .eventCard .dateTag::after {
  content: "";
  width: 50px;
  height: 0px;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 10px solid #000;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
body .mainContent .upcomingEvents .eventsCard .eventCard .eventDetails {
  transition: all 0.4s ease-in-out;
  opacity: 0;
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  width: 100%;
  border-bottom-right-radius: 36px;
  border-bottom-left-radius: 36px;
  height: 200px;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, var(--navy-blue) 80%);
}
body .mainContent .upcomingEvents .eventsCard .eventCard .eventDetails .para {
  font-size: 30px;
  line-height: 35px;
}
body .mainContent .upcomingEvents .eventsCard .eventCard .eventDetails .para span {
  display: block;
  transform: var(--skew-text);
}
body .mainContent .upcomingEvents .eventsCard .eventCard .eventDetails .bookNow {
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 20px;
  border-radius: 20px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
body .mainContent .upcomingEvents .eventsCard .eventCard .eventDetails .bookNow:hover {
  background: var(--primary-color);
  color: var(--third-color);
  transform: scale(1.05);
}
body .mainContent .upcomingEvents .eventsCard .eventCard .eventDetails .titleHead {
  padding: 1rem;
}
body .mainContent .upcomingEvents .eventsCard .eventCard .eventDetails .titleHead .head {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 600;
}
body .mainContent .upcomingEvents .eventsCard .eventCard .eventDetails .titleHead .head span {
  display: block;
  transform: var(--skew-text);
}
body .mainContent .upcomingEvents .eventsCard .eventCard .eventDetails .titleHead .subHead {
  font-size: 18px;
}
body .mainContent .upcomingEvents .eventsCard .eventCard:hover {
  border: 2px solid var(--primary-color);
}
body .mainContent .upcomingEvents .eventsCard .eventCard:hover img {
  mix-blend-mode: unset;
}
body .mainContent .upcomingEvents .eventsCard .eventCard:hover .dateTag {
  background: var(--primary-color);
}
body .mainContent .upcomingEvents .eventsCard .eventCard:hover .eventDetails {
  opacity: 1;
}
body .mainContent .upcomingEvents .booksRepresent {
  text-align: center;
}
body .mainContent .upcomingEvents .booksRepresent .para {
  margin: 2rem 0;
}
body .mainContent .upcomingEvents .booksRepresent .bookNow {
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 20px;
  border-radius: 20px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  display: inline-flex;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
body .mainContent .upcomingEvents .booksRepresent .bookNow:hover {
  background: var(--primary-color);
  color: var(--third-color);
  transform: scale(1.05);
}
body .mainContent .fullWidthaboutPage {
  padding: 5rem 0 0;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
body .mainContent .fullWidthaboutPage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/crowd.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(5px);
  z-index: -1;
}
body .mainContent .fullWidthaboutPage .aboutPage {
  display: flex;
  align-items: center;
}
body .mainContent .fullWidthaboutPage .aboutPage .ownerImg {
  height: auto;
  width: 50%;
}
body .mainContent .fullWidthaboutPage .aboutPage .imgConnect {
  display: flex;
  align-items: center;
  flex-direction: column;
}
body .mainContent .fullWidthaboutPage .aboutPage .imgConnect .meetText {
  font-size: 200px;
  font-weight: 400;
  line-height: 145px;
  color: #aaaaaa;
  position: relative;
}
body .mainContent .fullWidthaboutPage .aboutPage .imgConnect .signature {
  height: 110px;
  width: 430px;
  position: relative;
  top: -30px;
}
body .mainContent .fullWidthaboutPage .aboutPage .imgConnect .profession {
  font-size: 18px;
  color: #ccc;
  text-align: center;
}
body .mainContent .fullWidthaboutOwner {
  background: var(--navy-blue);
  padding: 5rem 0;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
body .mainContent .fullWidthaboutOwner .aboutOwner .tabHeader {
  display: flex;
  flex-direction: column;
  text-transform: capitalize;
}
body .mainContent .fullWidthaboutOwner .aboutOwner .tabHeader .heading {
  color: var(--primary-color);
  text-align: center;
}
body .mainContent .fullWidthaboutOwner .aboutOwner .tabHeader .subHeading {
  text-align: center;
}
body .mainContent .fullWidthaboutOwner .aboutOwner .ownerContent .para {
  font-size: 20px;
  text-align: center;
  margin-top: 1rem;
}
body .mainContent .ownerStory {
  margin: 10rem 0;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  padding: 20px;
  display: flex;
}
body .mainContent .ownerStory .leftSide {
  position: relative;
  width: 60%;
}
body .mainContent .ownerStory .leftSide .tabHeader {
  display: flex;
  flex-direction: column;
  text-transform: capitalize;
  position: absolute;
  top: -80px;
}
body .mainContent .ownerStory .leftSide .tabHeader .heading {
  background: var(--third-color);
  box-shadow: 200px 0px 50px var(--third-color);
  color: var(--primary-color);
  text-align: start;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 30px 0 0;
}
body .mainContent .ownerStory .leftSide .tabHeader .subHeading {
  text-align: start;
}
body .mainContent .ownerStory .leftSide .storyContent {
  margin-top: 7rem;
}
body .mainContent .ownerStory .leftSide .storyContent .para {
  font-size: 22px;
  text-align: start;
  margin-top: 1rem;
}
body .mainContent .ownerStory .rightSide {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}
body .mainContent .ownerStory .rightSide .storyImg {
  height: 280px;
  width: 250px;
  position: absolute;
  background: #ffffff;
  border-radius: 10px;
}
body .mainContent .ownerStory .rightSide .storyImg img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
body .mainContent .ownerStory .rightSide .storyImg:nth-child(1) {
  left: 30px;
}
body .mainContent .ownerStory .rightSide .storyImg:nth-child(2) {
  top: -70px;
  right: -50px;
}
body .mainContent .ownerStory .rightSide .storyImg:nth-child(3) {
  bottom: -70px;
  left: 30px;
}
body .mainContent .ownerStory .rightSide .storyImg:nth-child(4) {
  bottom: 0px;
  right: -50px;
}
body .mainContent .mission {
  background: var(--primary-color);
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  padding: 3rem 0;
  margin: 5rem 0;
}
body .mainContent .mission .tabHeader {
  display: flex;
  flex-direction: column;
  text-transform: capitalize;
}
body .mainContent .mission .tabHeader .heading {
  color: var(--navy-blue);
  text-align: center;
}
body .mainContent .mission .missonContent .para {
  font-size: 20px;
  text-align: center;
  margin-top: 1rem;
  color: var(--third-color);
}
body .mainContent .workShop .eventsCard .eventCard .eventDetails {
  opacity: 1;
  justify-content: center;
}
body .mainContent .workShop .eventsCard .eventCard .eventDetails .para {
  position: relative;
  bottom: -60px;
  transition: all 0.4s ease-in-out;
}
body .mainContent .workShop .eventsCard .eventCard .eventDetails .bookNow {
  position: relative;
  bottom: -60px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
body .mainContent .workShop .eventsCard .eventCard:hover .para {
  bottom: 0px;
}
body .mainContent .workShop .eventsCard .eventCard:hover .bookNow {
  bottom: 0px;
  opacity: 1;
}
body .mainContent .books .tabHeader {
  display: flex;
  flex-direction: column;
  text-transform: capitalize;
  margin-bottom: 5rem;
}
body .mainContent .books .tabHeader .heading {
  color: var(--primary-color);
  text-align: center;
}
/* body .mainContent .books .booksCards {
  display: flex;
  justify-content: space-between;
}
body .mainContent .books .booksCards .bookCard {
  display: block;
  text-decoration: none;
  width: 30%;
  height: 100%;
  color: var(--secondary-color);
}
body .mainContent .books .booksCards .bookCard .bookCover {
  position: relative;
}
body .mainContent .books .booksCards .bookCard .bookCover::after {
  background: var(--navy-blue);
  border-radius: 30px;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  position: absolute;
}
body .mainContent .books .booksCards .bookCard .bookCover img {
  position: relative;
  z-index: 1;
}
body .mainContent .books .booksCards .bookCard .bookContent {
  font-size: 20px;
  text-align: center;
}
body .mainContent .books .booksCards .bookCard .bookContent .bookName {
  font-size: 30px;
  color: var(--primary-color);
}
body .mainContent .books .booksCards .bookCard .bookContent .bookName span {
  display: inline-block;
  transform: var(--skew-text);
} */

/* Recent BookCards */
/* body .mainContent .books .booksCards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
}

body .mainContent .books .booksCards .bookCard {
  width: 30%;
  perspective: 1000px;
  text-decoration: none;
  color: var(--secondary-color);
  height: 430px;
  display: block;
}

body .mainContent .books .booksCards .bookCard .cardInner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

body .mainContent .books .booksCards .bookCard:hover .cardInner {
  transform: rotateY(180deg);
}

body .mainContent .books .booksCards .bookCard .cardInner .cardFront,
body .mainContent .books .booksCards .bookCard .cardInner .cardBack {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body .mainContent .books .booksCards .bookCard .cardInner .cardFront {
  z-index: 2;
}

body .mainContent .books .booksCards .bookCard .cardInner .cardBack {
  transform: rotateY(180deg);
  background: var(--navy-blue);
  color: white;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
}

body .mainContent .books .booksCards .bookCard .cardInner .cardFront .bookCover {
  position: relative;
}

body .mainContent .books .booksCards .bookCard .cardInner .cardFront .bookCover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: var(--navy-blue);
  border-radius: 30px;
  z-index: 0;
}

body .mainContent .books .booksCards .bookCard .cardInner .cardFront .bookCover img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px 30px 0 0;
}

body .mainContent .books .booksCards .bookCard .cardInner .cardFront .bookContent {
  text-align: center;
  font-size: 20px;
}

body .mainContent .books .booksCards .bookCard .cardInner .cardFront .bookContent .bookName {
  font-size: 30px;
  color: var(--primary-color);
  font-weight: bold;
}

body .mainContent .books .booksCards .bookCard .cardInner .cardFront .bookContent .bookName span {
  display: inline-block;
  transform: var(--skew-text);
}

body .mainContent .books .booksCards .bookCard .cardInner .cardBack .flipContent p {
  margin-bottom: 15px;
} */
/* Recent BookCards */

/* New Books */

.booksSection {
  height: 70vh;
}

.booksSection .booksSlider {
  height: 100%;
}

.booksSection .booksSlider .owl-stage-outer {
  height: 100%;
}

.booksSection .booksSlider .owl-stage-outer .owl-stage {
  height: 100%;
  display: flex;
  align-items: center;
}

.booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item {
  filter: blur(5px);
  transition: all 0.3s ease-in-out;
  transform: scale(0.8);
}

.booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item.active.center {
  filter: blur(0px);
  transform: scale(1.2);
}

.booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookImage {
  width: 40%;
  height: 250px;
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}
.booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookInfo {
  font-size: 12px;
  width: 75%;
  background: var(--navy-blue);
  padding: 20px 20px 20px 80px;
  border-radius: 10px;
}

.booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookInfo .bookTitle {
  color: var(--primary-color);
}

.booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookInfo .bookTag {
  font-size: 16px;
}

.booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookInfo .commonBtn {
  display: block;
}

.booksSection .booksSlider .owl-nav {
  text-align: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  height: 40px;
  margin-top: unset;
  gap: 10px;
}
.booksSection .booksSlider .owl-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 30px;
}
.booksSection .booksSlider .owl-nav button span {
  width: 25px;
  height: 25px;
}

/* New Books */

body .mainContent .books .bookOwnermsg {
  margin-top: 5rem;
}
body .mainContent .books .bookOwnermsg .para {
  font-size: 20px;
  text-align: center;
  margin-top: 1rem;
}
body .mainContent .quotes {
  text-align: center;
  margin: 5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body .mainContent .quotes .quote {
  height: 100px;
  width: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .mainContent .quotes .quote span {
  position: absolute;
  bottom: -30px;
  line-height: 100px;
  font-size: 200px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-color);
  font-family: "Arial", "Helvetica", sans-serif;
}
body .mainContent .quotes .quoteContent {
  font-family: var(--font-one);
  font-size: 40px;
  line-height: 50px;
  color: var(--primary-color);
}
body .mainContent .quotes .quoteContent span {
  display: block;
  transform: var(--skew-text);
}
body .mainContent .subscribed {
  background: var(--navy-blue);
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  margin-top: 15rem;
}
body .mainContent .subscribed .subscribeDiv {
  display: flex;
}
body .mainContent .subscribed .subscribeDiv .subImg {
  width: 45%;
  transform: scale(1.4);
  top: -70px;
  position: relative;
}
body .mainContent .subscribed .subscribeDiv .subContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 2rem 0;
  position: relative;
  z-index: 5;
}
body .mainContent .subscribed .subscribeDiv .subContent .headPart .submainHead {
  font-size: 35px;
  line-height: 40px;
}
body .mainContent .subscribed .subscribeDiv .subContent .headPart .submainHead span {
  font-family: var(--font-one);
  color: var(--primary-color);
  display: inline-flex;
  transform: var(--skew-text);
}
body .mainContent .subscribed .subscribeDiv .subContent .headPart .subsecHead {
  font-size: 18px;
}
body .mainContent .subscribed .subscribeDiv .subContent .headPart .subsecHead .firstSpan {
  font-family: var(--font-one);
  display: inline-flex;
  transform: var(--skew-text);
}
body .mainContent .subscribed .subscribeDiv .subContent .headPart .subsecHead .secondSpan {
  font-weight: 600;
}
body .mainContent .subscribed .subscribeDiv .subContent .subForm {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}
body .mainContent .subscribed .subscribeDiv .subContent .subForm .input-control label {
  margin-bottom: 0.5rem;
}
body .mainContent .subscribed .subscribeDiv .subContent .subForm .input-control .form-control {
  border-radius: 0;
  box-shadow: none;
  outline: none;
  width: 50%;
}

body .mainContent .books .bookPage .singleBook .bookWrapper .bookImage {
  height: 400px;
}

body .mainContent .books .bookPage .singleBook .bookWrapper .bookImage img{
  object-fit: contain;
}

body .mainContent .fullWidthBooks {
  background: var(--navy-blue);
  /* padding: 5rem 0; */
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
/* body .mainContent .subscribed .subscribeDiv .subContent .subForm .commonBtn {
  color: var(--navy-blue);
} */
body .footer {
  background: var(--primary-color);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
}
body .footer ul {
  list-style: none;
  padding-left: 0;
}
body .footer a {
  text-decoration: none;
}
body .footer .footerLeft .footerLogo {
  height: 100px;
  width: 300px;
}
body .footer .footerLeft .socialMedia .icons {
  display: flex;
  gap: 10px;
}
body .footer .footerLeft .socialMedia .icons .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  background: var(--third-color);
  border-radius: 50%;
  border: 2px solid var(--third-color);
}
body .footer .footerLeft .socialMedia .icons .icon:hover {
  background: var(--navy-blue);
  border: 2px solid var(--navy-blue);
}
body .footer .footerLeft .socialMedia .icons .icon a {
  text-decoration: none;
  display: flex;
}
body .footer .footerLeft .socialMedia .icons .icon a i {
  color: var(--secondary-color);
  font-size: 20px;
}
body .footer .footerLeft .copyRight {
  color: var(--third-color);
  font-size: 18px;
  margin-top: 4rem;
}
body .footer .footerRight {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: end;
}
body .footer .footerRight .footerNav {
  height: 30px;
}
body .footer .footerRight .footerNav .navLinks {
  display: flex;
  gap: 50px;
  font-family: var(--font-one);
}
body .footer .footerRight .footerNav .navLinks .link a {
  font-size: 20px;
  color: var(--third-color);
}
body .footer .footerRight .footerNav .navLinks .link a:hover {
  color: var(--navy-blue);
}
body .footer .footerRight .newsLetter {
  text-align: end;
  display: flex;
}
body .footer .footerRight .newsLetter .form-control {
  outline: 0;
  border-radius: 0;
  box-shadow: none;
  width: 400px;
}
body .footer .footerRight .newsLetter button {
  border-radius: 0;
  background: var(--navy-blue);
  border: none;
}
body .footer .footerRight .creditNav {
  height: 20px;
}
body .footer .footerRight .creditNav .credLinks {
  display: flex;
  gap: 50px;
  justify-content: end;
}
body .footer .footerRight .creditNav .credLinks .link a {
  font-size: 16px;
  color: var(--third-color);
}

@media (max-width: 1440.98px) {
  body .tabHeader .heading {
    font-size: 55px;
  }
  body .tabHeader .subHeading {
    font-size: 30px;
  }
  body .heroSection .bg-gradient .videoSection .contentOverlay .heading {
    font-size: 45px;
    line-height: 50px;
  }
  body .heroSection .bg-gradient .videoSection .contentOverlay .subHeading {
    font-size: 22px;
    line-height: 28px;
  }
  body .heroSection .bg-gradient .videoSection .contentOverlay .commonBtn {
    margin-top: 30px;
  }
  body .mainContent .aboutAndrew .content {
    font-size: 36px;
    line-height: 45px;
  }
  body .mainContent .aboutAndrew .aboutImg {
    width: 45%;
    height: 45%;
  }
  body .mainContent .buildWealth .videoTab {
    gap: 30px;
  }
  body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab {
    gap: 20px;
    height: 520px;
    width: 290px;
  }
  body .mainContent .buildWealth .videoTab .tab-content .tab-pane {
    height: 500px;
  }
  body .mainContent .hoster .hostView .para,
  body .mainContent .hoster .hostView .aboutHost {
    font-size: 20px;
  }
  body .mainContent .upcomingEvents .eventsCard .eventCard {
    height: 470px;
  }
  body .mainContent .subscribed {
    margin-top: 10rem;
  }
  body .mainContent .subscribed .subscribeDiv .subContent .headPart .submainHead {
    font-size: 30px;
  }
  body .mainContent .ownerStory .leftSide .storyContent {
    margin-top: 6rem;
  }
  body .mainContent .ownerStory .rightSide .storyImg {
    height: 270px;
    width: 210px;
  }
  body .mainContent .quotes .quoteContent {
    font-size: 34px;
  }
  body .mainContent .ownerStory .leftSide .storyContent .para {
    font-size: 20px;
  }
  .booksSection {
    height: 90vh;
  }
}
@media (max-width: 1200.98px) {
  body .tabHeader .heading {
    font-size: 45px;
  }
  body .tabHeader .subHeading {
    font-size: 25px;
  }
  body .header .navbar #navbarNav .navbar-nav {
    gap: 15px;
  }
  body .heroSection .bg-gradient .videoSection .contentOverlay .heading {
    font-size: 40px;
    line-height: 40px;
  }
  body .heroSection .bg-gradient .videoSection .contentOverlay .subHeading {
    font-size: 20px;
    line-height: 25px;
  }
  body .heroSection .bg-gradient .videoSection .contentOverlay .commonBtn {
    margin-top: 20px;
  }
  body .mainContent .aboutAndrew .content {
    font-size: 32px;
    line-height: 36px;
  }
  body .mainContent .buildWealth .tabHeader {
    margin-bottom: 3rem;
  }
  body .mainContent .buildWealth .videoTab {
    gap: 30px;
  }
  body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab {
    gap: 20px;
    height: 370px;
    width: 270px;
  }
  body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab .nav-link {
    height: 140px;
    width: 250px;
  }
  body .mainContent .buildWealth .videoTab .tab-content .tab-pane {
    height: 370px;
  }
  body .mainContent .fullWidthwhoIam .whoIam {
    height: unset;
  }
  body .mainContent .fullWidthwhoIam .whoIam .contentText {
    gap: 30px;
    padding: 3rem 0;
  }
  body .mainContent .fullWidthwhoIam .whoIam .contentText .para {
    font-size: 26px;
  }
  body .mainContent .hoster {
    height: unset;
  }
  body .mainContent .hoster .hostImg {
    height: auto;
    width: 35%;
  }
  body .mainContent .hoster .hostView {
    width: 65%;
  }
  body .mainContent .hoster .hostView .para,
  body .mainContent .hoster .hostView .aboutHost {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }
  body .mainContent .hoster .hostView .aboutHost {
    margin-bottom: 0;
  }
  body .mainContent .upcomingEvents .eventsCard .eventCard {
    height: auto;
  }
  body .mainContent .subscribed .subscribeDiv .subContent .headPart .submainHead {
    font-size: 25px;
  }
  body .mainContent .subscribed .subscribeDiv .subContent .headPart .subsecHead {
    font-size: 16px;
  }
  body .mainContent .ownerStory .leftSide .storyContent {
    margin-top: 6rem;
  }
  body .mainContent .ownerStory .rightSide .storyImg {
    height: 290px;
    width: 210px;
  }
  body .mainContent .quotes .quoteContent {
    font-size: 34px;
  }
  body .footer .footerLeft .copyRight {
    margin-top: 3rem;
  }
  body .footer .footerRight .footerNav .navLinks {
    gap: 26px;
  }
  body .footer .footerRight .creditNav .credLinks {
    gap: 26px;
  }
}
@media (max-width: 991.98px) {
  body .tabHeader .heading {
    font-size: 35px;
  }
  body .tabHeader .subHeading {
    font-size: 22px;
  }
  body .header .navbar .navbar-toggler {
    color: var(--secondary-color);
    font-size: 30px;
    outline: 0;
    box-shadow: none;
  }
  body .header .navbar #navbarNav .navbar-nav {
    gap: 10px;
  }
  body .header .navbar #navbarNav .navbar-nav .nav-item .commonBtn {
    margin-top: 0.3rem;
  }
  body .header .navbar #navbarNav .navbar-nav .nav-item:hover .nav-link,
  body .header .navbar #navbarNav .navbar-nav .nav-item .nav-link.active {
    transform: scale(1);
  }
  body .mainContent .aboutAndrew {
    flex-direction: column-reverse;
  }
  body .mainContent .aboutAndrew .content {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body .mainContent .buildWealth .videoTab {
    width: 100%;
    flex-direction: column;
  }
  body .mainContent .buildWealth .videoTab .tabCustom {
    width: 100%;
  }
  body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab {
    flex-direction: row;
    display: -webkit-inline-box;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    height: 130px;
    padding-bottom: unset;
    direction: unset;
  }
  body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    border-radius: 20px;
  }
  body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab .nav-link {
    height: 100px;
    width: 180px;
  }
  body .mainContent .buildWealth .videoTab .tabCustom #video-pills-tab .nav-link .overlayText {
    padding: 20px;
    font-size: 14px;
  }
  body .mainContent .buildWealth .videoTab .tabCustom::after {
    content: "";
    display: none;
  }
  body .mainContent .buildWealth .videoTab .tab-content .tab-pane {
    height: auto;
  }
  body .mainContent .fullWidthwhoIam .whoIam .contentText {
    margin-left: 0;
    background: linear-gradient(to right, var(--navy-blue) 10%, transparent);
  }
  body .mainContent .fullWidthwhoIam .whoIam .contentText .para {
    font-size: 22px;
  }
  body .mainContent .hoster {
    flex-direction: column;
    border-left: 0;
    border-bottom: 5px solid var(--primary-color);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--navy-blue));
  }
  body .mainContent .hoster .hostImg {
    width: auto;
  }
  body .mainContent .hoster .hostImg img {
    border-radius: 36px;
  }
  body .mainContent .hoster .hostView {
    width: auto;
    margin: 2rem 0;
  }
  body .mainContent .upcomingEvents .tabHeader {
    margin-bottom: 3rem;
  }
  body .mainContent .upcomingEvents .eventsCard .eventCard .eventDetails {
    height: 140px;
  }
  body .mainContent .upcomingEvents .eventsCard .eventCard .eventDetails .para {
    font-size: 24px;
    line-height: 24px;
  }
  body .mainContent .fullWidthaboutOwner .aboutOwner .ownerContent .para {
    font-size: 16px;
  }
  body .mainContent .ownerStory {
    margin: 7rem 0;
    flex-direction: column;
  }
  body .mainContent .ownerStory .leftSide {
    width: 100%;
  }
  body .mainContent .ownerStory .leftSide .tabHeader {
    top: -50px;
  }
  body .mainContent .ownerStory .leftSide .tabHeader .heading {
    box-shadow: 100px 0px 30px var(--third-color);
  }
  body .mainContent .ownerStory .leftSide .storyContent {
    margin-top: 3rem;
  }
  body .mainContent .ownerStory .leftSide .storyContent .para {
    font-size: 16px;
  }
  body .mainContent .ownerStory .rightSide {
    width: 100%;
    flex-wrap: unset;
  }
  body .mainContent .ownerStory .rightSide .storyImg {
    position: unset;
    margin-top: 1rem;
    height: auto;
  }
  body .mainContent .books .tabHeader {
    margin-bottom: 3rem;
  }
  body .mainContent .books .booksCards .bookCard .bookContent .bookName {
    font-size: 24px;
  }
  body .mainContent .books .booksCards .bookCard .bookContent .bookTag {
    font-size: 16px;
  }
  body .mainContent .books .bookOwnermsg {
    margin-top: 3rem;
  }
  body .mainContent .books .bookOwnermsg .para {
    font-size: 16px;
  }
  body .mainContent .quotes {
    margin: 3rem 0;
  }
  body .mainContent .quotes .quote {
    height: 70px;
    width: 70px;
  }
  body .mainContent .quotes .quote span {
    line-height: 70px;
    font-size: 140px;
    bottom: -10px;
  }
  body .mainContent .quotes .quoteContent {
    font-size: 20px;
    line-height: 30px;
  }
  body .mainContent .subscribed .subscribeDiv .subImg {
    width: 40%;
  }
  body .mainContent .subscribed .subscribeDiv .subContent {
    width: 60%;
  }
  .booksSection {
    height: 70vh;
  }
  .booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookImage {
    left: -30px;
  }
  .booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookInfo {
    padding: 20px 20px 20px 110px;
  }
}
@media (max-width: 768.98px) {
  body .mainContent .subscribed .subscribeDiv {
    flex-direction: column;
    align-items: center;
  }
  body .mainContent .subscribed .subscribeDiv .subImg {
    width: 50%;
  }
  body .mainContent .subscribed .subscribeDiv .subContent {
    width: 100%;
    align-items: center;
    justify-content: unset;
  }
  body .mainContent .subscribed .subscribeDiv .subContent .subForm {
    height: unset;
    flex-direction: row;
    gap: 20px;
    align-items: end;
  }
  body .mainContent .subscribed .subscribeDiv .subContent .subForm .input-control {
    width: 30%;
  }
  body .mainContent .subscribed .subscribeDiv .subContent .subForm .input-control .form-control {
    width: 100%;
  }
  body .mainContent .subscribed .subscribeDiv .subContent .subForm .commonBtn {
    width: 30%;
    height: 40px;
    border-radius: 0;
  }
  body .footer {
    flex-direction: column-reverse;
    padding: 2rem;
    align-items: center;
    gap: 30px;
  }
  body .footer .footerLeft {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  body .footer .footerLeft .copyRight {
    margin-top: 0;
  }
  body .footer .footerRight {
    align-items: center;
    gap: 15px;
  }
  body .footer .footerRight .newsLetter {
    text-align: center;
  }
  body .mainContent .linkidInPosts {
    margin-bottom: 3rem;
  }
  .booksSection {
    height: 60vh;
  }
  .booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookImage {
    position: unset;
    transform: unset;
    height: 200px;
    width: 25%;
  }
  .booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookInfo {
    padding: 10px;
    font-size: 10px;
    width: 60%;
  }
  .booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookInfo .bookTitle {
    font-size: 20px;
  }
  .booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookInfo .bookTag {
    font-size: 13px;
  }
  body .mainContent .fullWidthBooks .singleBook .bookWrapper .row {
    flex-direction: column-reverse;
  }
}
@media (max-width: 576.98px) {
  body .tabHeader .heading {
    font-size: 26px;
  }
  body .tabHeader .subHeading {
    font-size: 18px;
  }
  body .heroSection {
    height: 50vh;
  }
  body .heroSection .bg-gradient .videoSection video {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  body .heroSection .bg-gradient .videoSection .contentOverlay {
    width: 320px;
  }
  body .heroSection .bg-gradient .videoSection .contentOverlay .heading {
    font-size: 30px;
    line-height: 30px;
  }
  body .heroSection .bg-gradient .videoSection .contentOverlay .subHeading {
    font-size: 16px;
  }
  body .mainContent .aboutAndrew {
    margin: 2rem 0;
  }
  body .mainContent .buildWealth {
    margin: 2rem 0;
  }
  body .mainContent .counterDiv .countCard {
    height: 130px;
  }
  body .mainContent .counterDiv .countCard .count {
    font-size: 50px;
  }
  body .mainContent .counterDiv .countCard .countText {
    font-size: 16px;
  }
  body .mainContent .fullWidthwhoIam {
    padding: 2rem 0;
  }
  body .mainContent .fullWidthwhoIam .whoIam {
    background-size: cover;
  }
  body .mainContent .fullWidthwhoIam .whoIam .contentText {
    padding: 2rem 0;
  }
  body .mainContent .fullWidthwhoIam .whoIam .contentText .para {
    font-size: 18px;
    line-height: 20px;
  }
  body .mainContent .hoster .hostView {
    padding: 0 1rem;
  }
  body .mainContent .hoster .hostView .para {
    font-size: 16px;
  }
  body .mainContent .hoster .hostView .para span {
    display: unset;
  }
  body .mainContent .upcomingEvents {
    margin: 2rem 0;
  }
  body .mainContent .upcomingEvents .tabHeader {
    margin-bottom: 2rem;
  }
  body .mainContent .upcomingEvents .eventsCard {
    flex-wrap: wrap;
    gap: 20px;
  }
  body .mainContent .upcomingEvents .eventsCard .eventCard {
    width: 100%;
    height: 400px;
  }
  body .mainContent .upcomingEvents .eventsCard .eventCard img {
    -o-object-position: top;
    object-position: top;
  }
  body .mainContent .fullWidthaboutPage {
    padding: 2rem 0;
  }
  body .mainContent .fullWidthaboutPage .aboutPage {
    flex-direction: column;
  }
  body .mainContent .fullWidthaboutPage .aboutPage .ownerImg {
    height: auto;
  }
  body .mainContent .fullWidthaboutPage .aboutPage .ownerImg img {
    border-radius: 50%;
  }
  body .mainContent .fullWidthaboutOwner {
    padding: 2rem 0;
  }
  body .mainContent .ownerStory {
    margin: 3rem 0 2rem;
  }
  body .mainContent .ownerStory .leftSide .tabHeader {
    top: -40px;
  }
  body .mainContent .mission {
    padding: 2rem 0;
    margin: 2rem 0;
  }
  body .mainContent .mission .missonContent .para {
    font-size: 16px;
  }
  body .mainContent .books .tabHeader {
    margin-bottom: 2rem;
  }
  body .mainContent .books .booksCards {
    flex-direction: column;
    gap: 20px;
  }
  body .mainContent .books .booksCards .bookCard {
    width: 100%;
  }
  body .mainContent .books .bookOwnermsg {
    margin-bottom: 2rem;
  }
  body .mainContent .quotes {
    margin: 2rem 0;
  }
  body .mainContent .quotes .quoteContent {
    font-size: 24px;
  }
  body .mainContent .subscribed .subscribeDiv .subContent {
    padding: 1rem;
  }
  body .mainContent .subscribed .subscribeDiv .subContent .subForm {
    flex-direction: column;
    width: 100%;
    align-items: unset;
  }
  body .mainContent .subscribed .subscribeDiv .subContent .subForm .input-control {
    width: 100%;
  }
  body .mainContent .subscribed .subscribeDiv .subContent .subForm .commonBtn {
    width: 100%;
  }
  body .footer .footerRight .footerNav .navLinks {
    gap: 15px;
  }
  body .footer .footerRight .footerNav .navLinks .link a {
    font-size: 18px;
  }
  body .footer .footerLeft .copyRight {
    font-size: 15px;
  }
}
@media (max-width: 480.98px) {
  body .mainContent .aboutAndrew .content {
    font-size: 20px;
  }
  body .mainContent .aboutAndrew .content .signature {
    height: 70px;
    width: 270px;
  }
  body .mainContent .hoster {
    margin: 3rem 0;
  }
  body .mainContent .hoster .hostImg {
    width: 40%;
  }
  body .mainContent .fullWidthaboutPage .aboutPage .ownerImg {
    width: 100%;
  }
  body .mainContent .fullWidthaboutPage .aboutPage .imgConnect {
    margin-top: -120px;
  }
  body .mainContent .fullWidthaboutPage .aboutPage .imgConnect .meetText {
    font-size: 140px;
    line-height: 110px;
  }
  body .mainContent .fullWidthaboutPage .aboutPage .imgConnect .signature {
    width: 380px;
  }
  body .mainContent .fullWidthaboutPage .aboutPage .imgConnect .profession {
    margin-top: -10px;
  }
  body .mainContent .subscribed {
    margin-top: 12rem;
  }
  body .mainContent .subscribed .subscribeDiv .subImg {
    transform: scale(2);
  }
  body .mainContent .subscribed .subscribeDiv .subContent {
    gap: 20px;
  }
  body .mainContent .subscribed .subscribeDiv .subContent .headPart .submainHead {
    font-size: 20px;
  }
  body .mainContent .subscribed .subscribeDiv .subContent .subForm {
    width: 100%;
  }
  body .footer {
    gap: 20px;
  }
  body .footer .footerLeft .footerLogo {
    width: 270px;
    height: 70px;
  }
  body .footer .footerLeft .socialMedia {
    height: 45px;
  }
  body .footer .footerRight .footerNav .navLinks .link a {
    font-size: 16px;
  }
  body .footer .footerRight .creditNav .credLinks .link a {
    font-size: 14px;
  }
}
@media (max-width: 425.98px) {
  body .mainContent .hoster .hostView .para {
    font-size: 12px;
  }
  body .mainContent .hoster .hostView .aboutHost {
    font-size: 14px;
  }
  body .mainContent .fullWidthwhoIam .whoIam .contentText {
    gap: 10px;
  }
  body .mainContent .fullWidthwhoIam .whoIam .contentText .para {
    font-size: 12px;
  }
  body .mainContent .fullWidthaboutOwner .aboutOwner .ownerContent .para {
    font-size: 12px;
  }
  body .mainContent .ownerStory .leftSide .storyContent {
    margin-top: 2rem;
  }
  body .mainContent .ownerStory .leftSide .storyContent .para {
    font-size: 12px;
  }
  body .mainContent .mission .missonContent .para {
    font-size: 12px;
  }
  body .mainContent .books .booksCards .bookCard {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body .mainContent .books .booksCards .bookCard .bookCover {
    width: 80%;
  }
  body .mainContent .books .booksCards .bookCard .bookContent .bookTag {
    font-size: 12px;
  }
  body .mainContent .books .bookOwnermsg .para {
    font-size: 12px;
  }
  body .mainContent .quotes .quoteContent {
    font-size: 20px;
  }
  .booksSection {
    height: 80vh;
  }
  .booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper {
    flex-direction: column;
  }
  .booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookInfo {
    font-size: 8px;
    width: 80%;
  }
  .booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookInfo .bookTitle {
    font-size: 16px;
  }
  .booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookInfo .bookTag {
    font-size: 10px;
  }
  .booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookInfo .commonBtn {
    font-size: 10px;
    padding: 5px 10px;
  }
  .booksSection .booksSlider .owl-stage-outer .owl-stage .owl-item .bookSlide .bookWrapper .bookImage {
    width: 50%;
    margin-bottom: -20px;
  }
}
@media (max-width: 390.98px) {
  body .tabHeader .heading {
    font-size: 24px;
  }
  body .tabHeader .subHeading {
    font-size: 16px;
  }
  body .commonBtn {
    font-size: 12px;
  }
  body .header .navbar .navbar-brand {
    height: 90px;
    width: 240px;
  }
  body .heroSection .bg-gradient .videoSection .contentOverlay {
    width: 220px;
  }
  body .heroSection .bg-gradient .videoSection .contentOverlay .heading {
    font-size: 24px;
  }
  body .heroSection .bg-gradient .videoSection .contentOverlay .subHeading {
    font-size: 14px;
  }
  body .mainContent .fullWidthaboutPage .aboutPage .imgConnect .meetText {
    font-size: 110px;
    line-height: 100px;
  }
  body .mainContent .fullWidthaboutPage .aboutPage .imgConnect .signature {
    height: 70px;
    width: 300px;
  }
  body .mainContent .ownerStory .leftSide .tabHeader {
    top: -40px;
  }
  body .mainContent .ownerStory .leftSide .tabHeader .heading {
    box-shadow: 100px 0px 30px var(--third-color);
  }
  body .mainContent .fullWidthwhoIam .whoIam .contentText {
    padding: 1rem 0;
  }
  body .mainContent .fullWidthwhoIam .whoIam .contentText .knowMore {
    font-size: 12px;
  }
  body .footer {
    gap: 10px;
  }
  body .footer .footerLeft .copyRight {
    font-size: 14px;
  }
  body .footer .footerRight .footerNav {
    height: -moz-fit-content;
    height: fit-content;
  }
  body .footer .footerRight .footerNav .navLinks {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 5px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  body .footer .footerRight .newsLetter .form-control {
    width: 220px;
  }
  body .footer .footerRight .creditNav {
    height: unset;
  }
  body .footer .footerRight .creditNav .credLinks {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 5px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}
:root {
  --contact-primary-color: #010712;
  --contact-secondary-color: #818386;
  --bg-color: #fcfdfd;
  --button-color: #3b3636;
  --h1-color: #3f444c;
}

[data-theme="dark"] {
  --contact-primary-color: #fcfdfd;
  --contact-secondary-color: #818386;
  --bg-color: #010712;
  --button-color: #818386;
  --h1-color: #fcfdfd;
}

* {
  margin: 0;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

.contact-container {
  display: flex;
  width: 100vw;
  height: auto;
  background: var(--bg-color);
}
.contact-container .left-col {
  width: 50vw;
  background-image: url("../images/contact.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.contact-container .left-col .logo {
  width: 10rem;
  padding: 1.5rem;
}
.contact-container .right-col {
  background: var(--bg-color);
  width: 50vw;
  height: 100%;
  padding: 5rem 3.5rem;
  box-shadow: inset 10px 5px 10px #9f9f9f;
}
.contact-container .right-col h1,
.contact-container .right-col label,
.contact-container .right-col button,
.contact-container .right-col .description {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
.contact-container .right-col h1 {
  color: var(--h1-color);
  text-transform: uppercase;
  font-size: 2.5rem;
  letter-spacing: 0.5rem;
  font-weight: 300;
  position: relative;
  display: flex;
  align-items: center;
}
/* .contact-container .right-col h1::after {
  content: "";
  background: var(--third-color);
  width: 200px;
  height: 2px;
} */
.contact-container .right-col p {
  color: var(--contact-secondary-color);
  font-size: 0.9rem;
  letter-spacing: 0.01rem;
  margin: 0.25rem 0;
}
.contact-container .right-col label,
.contact-container .right-col .description {
  color: var(--contact-secondary-color);
  text-transform: uppercase;
  font-size: 0.625rem;
}
.contact-container .right-col form {
  position: relative;
  padding: 1rem 0;
}
.contact-container .right-col form input,
.contact-container .right-col form textarea,
.contact-container .right-col form label,
.contact-container .right-col form select {
  display: block;
}
.contact-container .right-col form input::-moz-placeholder,
.contact-container .right-col form textarea::-moz-placeholder,
.contact-container .right-col form select::-moz-placeholder {
  color: var(--contact-primary-color);
}
.contact-container .right-col form input::placeholder,
.contact-container .right-col form textarea::placeholder,
.contact-container .right-col form select::placeholder {
  color: var(--contact-primary-color);
}
.contact-container .right-col form input,
.contact-container .right-col form textarea,
.contact-container .right-col form select {
  color: var(--contact-primary-color);
  font-weight: 500;
  background: var(--bg-color);
  border: none;
  border-bottom: 1px solid var(--contact-secondary-color);
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  outline: none;
  width: 100%;
}
.contact-container .right-col form textarea {
  resize: none;
}
.contact-container .right-col form button {
  text-transform: uppercase;
  font-weight: 300;
  background: var(--primary-color);
  color: var(--bg-color);
  width: 10rem;
  height: 2.25rem;
  border: none;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.contact-container .right-col form button:hover {
  opacity: 0.5;
}
.contact-container .right-col form button:active {
  opacity: 0.8;
}
.contact-container .right-col #error,
.contact-container .right-col #success-msg {
  width: 40vw;
  margin: 0.125rem 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-family: "Jost";
  color: var(--contact-secondary-color);
}
.contact-container .right-col #error #success-msg,
.contact-container .right-col #success-msg #success-msg {
  transition-delay: 3s;
}
.contact-container .right-col .theme-switch-wrapper {
  display: flex;
  align-items: center;
  text-align: center;
  width: 160px;
  position: absolute;
  top: 0.5rem;
  right: 0;
}
.contact-container .right-col .theme-switch-wrapper .description {
  margin-left: 1.25rem;
}
.contact-container .right-col .theme-switch-wrapper .theme-switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}
.contact-container .right-col .theme-switch-wrapper .theme-switch input {
  display: none;
}
.contact-container .right-col .theme-switch-wrapper .theme-switch .slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}
.contact-container .right-col .theme-switch-wrapper .theme-switch .slider:before {
  background-color: #fff;
  bottom: 0.25rem;
  content: "";
  width: 26px;
  height: 26px;
  left: 0.25rem;
  position: absolute;
  transition: 0.4s;
}
.contact-container .right-col .theme-switch-wrapper .theme-switch input:checked + .slider {
  background-color: var(--button-color);
}
.contact-container .right-col .theme-switch-wrapper .theme-switch input:checked + .slider:before {
  transform: translateX(26px);
}
.contact-container .right-col .theme-switch-wrapper .theme-switch .slider.round {
  border-radius: 34px;
}
.contact-container .right-col .theme-switch-wrapper .theme-switch .slider.round:before {
  border-radius: 50%;
}

@media (max-width: 1440.98px) {
  .contact-container .left-col {
    width: 45vw;
  }
  .contact-container .right-col {
    width: 55vw;
    padding: 4rem 3rem;
  }
  .contact-container .right-col h1 {
    font-size: 2.4rem;
  }
  /* .contact-container .right-col h1::after {
    width: 140px;
  } */
}
@media (max-width: 1200.98px) {
  .contact-container .right-col {
    padding: 3rem 2.5rem;
  }
  .contact-container .right-col h1 {
    font-size: 2rem;
    letter-spacing: 0.3rem;
  }
  /* .contact-container .right-col h1::after {
    width: 140px;
  } */
  .contact-container .right-col p {
    font-size: 0.8rem;
  }
  .contact-container .right-col form input,
  .contact-container .right-col form textarea,
  .contact-container .right-col form select {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .contact-container {
    flex-direction: column;
    overflow-x: hidden;
  }
  .contact-container .left-col {
    width: 100vw;
    height: 50vh;
    background-size: fill;
  }
  .contact-container .right-col {
    width: 100vw;
  }
  .contact-container .right-col h1 {
    font-size: 1.75rem;
  }
  .contact-container .right-col p {
    font-size: 0.7rem;
  }
  .contact-container .right-col input,
  .contact-container .right-col textarea,
  .contact-container .right-col button {
    font-size: 0.65rem;
  }
  .contact-container .right-col .description {
    font-size: 0.3rem;
    margin-left: 0.4rem;
  }
  .contact-container .right-col button {
    width: 7rem;
  }
  .contact-container .right-col .theme-switch-wrapper {
    width: 120px;
  }
  .contact-container .right-col .theme-switch-wrapper .theme-switch {
    height: 28px;
    width: 50px;
  }
  .contact-container .right-col .theme-switch-wrapper .theme-switch .slider:before {
    width: 20px;
    height: 20px;
  }
  .contact-container .right-col .theme-switch-wrapper .theme-switch input:checked + .slider:before {
    transform: translateX(16px);
  }
  .contact-container .right-col .theme-switch-wrapper .theme-switch .slider.round {
    border-radius: 15px;
  }
  .contact-container .right-col .theme-switch-wrapper .theme-switch .slider.round:before {
    border-radius: 50%;
  }
}

/* Speaking Css */
.section,
.slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.section {
  background: var(--third-color);
}

.section .fp-slides {
  width: 100%;
}

.slide,
.section.vertical-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.slide::before,
.section.vertical-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slide:nth-child(1) {
  /* background: #ff6b6b; */
  background-image: url(https://www.thenationalnews.com/resizer/v2/3SOZS7ZE4WCIIB26ZCZKI7KJ6M.jpg?smart=true&auth=f247acd38bfe3473453ea8dbb52aaadc718c34d5f36fe96185e1e7b480ea7049&width=400&height=225);
}
.slide:nth-child(2) {
  /* background: #4ecdc4; */
  background-image: url(https://img.playbook.com/F7nJdw98kgcyGKnKU51nZ96IfKaOpZMGnyPmsYO0ObI/w:1000/Z3M6Ly9icmFuZGlm/eS11c2VyY29udGVu/dC1kZXYvcHJvZC9s/YXJnZV9wcmV2aWV3/cy84MmE1ZmE1ZS1h/ZWEzLTQ2NjUtOTk0/NC1hNGE4NmE0MWQx/Mjc.webp);
}
.slide:nth-child(3) {
  /* background: #1a535c; */
  background-image: url(https://img.playbook.com/Q10UUqm9f_f6BgZEjUVgX9r0y_VfeYd-ZfkJMlADLlY/w:1000/Z3M6Ly9icmFuZGlm/eS11c2VyY29udGVu/dC1kZXYvcHJvZC9s/YXJnZV9wcmV2aWV3/cy83Mjc0M2EwYy1k/YTliLTQ3MzEtYmRk/ZC0xNjA4ZmFkMjkz/NmI.webp);
}
.slide:nth-child(4) {
  /* background: #ffe66d; */
  background-image: url(https://img.playbook.com/BC2r62ElLhzg20rgrkgOAJyoQM-4k9S26WUhQOiDXHg/w:1000/Z3M6Ly9icmFuZGlm/eS11c2VyY29udGVu/dC1kZXYvcHJvZC9s/YXJnZV9wcmV2aWV3/cy8zMjkwODdiMC00/NWZlLTQyNzctODA2/My1kOGJjY2VjMWM2/NGQ.webp);
}

.slide-inner-content {
  padding: 0 10%;
  position: relative;
  z-index: 2;
}

.section.vertical-section:nth-child(2) {
  /* background: var(--primary-color); */
  background-image: url(https://img.playbook.com/u50OaPoaXQ7EYxxGeWuq7H7HksEi8wAZZHsWGcCiF2A/w:1000/Z3M6Ly9icmFuZGlm/eS11c2VyY29udGVu/dC1kZXYvcHJvZC9s/YXJnZV9wcmV2aWV3/cy83ZTRiNTA3Yy1j/YjhiLTRjOGMtODE0/ZS1jZGY0MTgwMDdh/MDU.webp);
}
.section.vertical-section:nth-child(3) {
  background: var(--navy-blue);
}
.section.vertical-section:nth-child(4) {
  background: #888;
}

.section.vertical-section .fp-overflow {
  width: 100%;
  padding: 0 10%;
  position: relative;
  z-index: 2;
}

.section.vertical-section .accordion {
  --bs-accordion-bg: rgba(255, 255, 255, 0.6) !important;
}

.section.vertical-section .accordion .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  font-size: 20px;
}

.section.vertical-section .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.section.vertical-section .accordion .accordion-item .accordion-body {
  padding-bottom: 0px;
}
.section.vertical-section .accordion .accordion-item .accordion-body p {
  font-size: 16px;
}

.section.vertical-section .accordion .accordion-item .accordion-body p a {
  color: var(--third-color);
  font-weight: 600;
  text-decoration: none;
}

.section.vertical-section #FAQs {
  position: relative;
}

.section.vertical-section #FAQs .faqImage {
  height: 220px;
  width: 300px;
  position: absolute;
  top: -100px;
  z-index: 1;
  right: 0;
}

.fp-slidesNav.fp-bottom {
  bottom: 0;
}

.fp-section,
.fp-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fp-section.active,
.fp-slide.active {
  opacity: 1;
  z-index: 1;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  background: var(--primary-color);
}

.fp-slidesNav ul li a.active span {
  border: 1px solid var(--navy-blue);
}

.fp-watermark {
  display: none;
}

.fullHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0px 10px;
  display: flex;
  justify-content: end;
}
.fullHeader .toggleHeader {
  color: #fff;
  font-size: 40px;
  border: 0;
  background: transparent;
}

/* Speaking Css */

.vortex-carousel-section {
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
  height: 100vh;
}

/* .vortex-carousel-section::before,
.vortex-carousel-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 30%;
  z-index: 5;
  pointer-events: none;
}

.vortex-carousel-section::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

.vortex-carousel-section::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
} */

.vortex-carousel-section .owl-carousel .owl-stage-outer {
  height: 90vh;
  width: 100%;
}

.vortex-carousel .item,
.vortex-carousel .owl-stage,
.vortex-carousel .owl-item {
  display: flex;
  align-items: stretch;
  height: 100%;
  width: 100%;
}

.vortex-carousel .carousel-content,
.owl-carousel .owl-item .carousel-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 60px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  background-size: cover;
  background-position: center;
  background-image: none !important;
  color: var(--secondary-color);
  font-weight: 600;
  overflow: hidden;
  z-index: 2;
}

.vortex-carousel .carousel-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  animation: spin 20s linear infinite;
  z-index: 1;
}

.vortex-carousel-section .vortex-carousel .owl-nav {
  text-align: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 5%;
  width: fit-content;
  height: 40px;
  margin-top: unset;
  gap: 10px;
}
.vortex-carousel-section .vortex-carousel .owl-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 30px;
}
.vortex-carousel-section .vortex-carousel .owl-nav button span {
  width: 25px;
  height: 25px;
}

.vortex-carousel-section .vortex-carousel .owl-dots {
  position: absolute;
  right: 5%;
  width: fit-content;
  text-align: unset;
  display: flex;
  align-items: center;
  height: 40px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.vortex-carousel .carousel-content > * {
  z-index: 2;
}

.vortex-carousel .carousel-content .bookset {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  width: 100%;
}

.vortex-carousel .carousel-content .bookset .booksImg {
  height: 70%;
  width: 190px;
}
.vortex-carousel .carousel-content .bookset .booksImg.book1 {
  transform: rotate(-20deg) translate(20px, 25px);
}

.vortex-carousel .carousel-content .bookset .booksImg.book3 {
  transform: rotate(20deg) translate(-20px, 25px);
}

.vortex-carousel .carousel-content .slideImg {
  width: 100%;
  height: 400px;
}

.vortex-carousel .carousel-content .slideImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.vortex-carousel .carousel-content .tabHeader .heading {
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.vortex-carousel .carousel-content .tabHeader .heading span {
  line-height: 50px;
}

.vortex-carousel-section .owl-prev-icon,
.vortex-carousel-section .owl-next-icon {
  font-size: 2rem;
  color: #fff;
  background: transparent !important;
}

/* .vortex-carousel-section .owl-nav button.owl-prev,
.vortex-carousel-section .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  background: transparent;
} */

/* .vortex-carousel-section .owl-nav button.owl-prev {
  left: 10px;
}

.vortex-carousel-section .owl-nav button.owl-next {
  right: 10px;
} */

/* .vortex-carousel-section .owl-nav button span {
  font-size: 1.5rem;
} */

.vortex-carousel-section .owl-dot.active span,
.vortex-carousel-section .owl-dot:hover span {
  background: var(--primary-color) !important;
}

.robot {
  position: fixed;
  width: 100px;
  height: 100px;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
  z-index: 9999;
}

.speaking-slider .slide-content {
  padding: 30px;
}
.speaking-slider .img-fluid {
  max-height: 320px;
  object-fit: cover;
}

.speaking-slider .owl-dot.active span,
.speaking-slider .owl-dot:hover span {
  background: var(--primary-color) !important;
}

.faqSection {
  padding: 5rem 0;
  position: relative;
}

.faqSection .tabHeader .heading,
.sliderSection .tabHeader .heading {
  color: var(--primary-color);
  margin-bottom: 4rem;
  text-align: center;
}

.sliderSection .speaking-slider .owl-nav {
  text-align: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  width: fit-content;
  height: 40px;
  margin-top: unset;
  gap: 10px;
}
.sliderSection .speaking-slider .owl-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 30px;
}
.sliderSection .speaking-slider .owl-nav button span {
  width: 25px;
  height: 25px;
}

.sliderSection .speaking-slider .owl-dots {
  position: absolute;
  right: 0;
  width: fit-content;
  text-align: unset;
  display: flex;
  align-items: center;
  height: 40px;
}

.faqSection .accordion {
  --bs-accordion-bg: rgba(255, 255, 255, 0.6) !important;
}

.faqSection .accordion .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  font-size: 20px;
}

.faqSection .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.faqSection .accordion .accordion-item .accordion-body {
  padding-bottom: 0px;
}
.faqSection .accordion .accordion-item .accordion-body p {
  font-size: 16px;
  font-weight: 600;
}

.faqSection .accordion .accordion-item .accordion-body p a {
  color: var(--third-color);
  font-weight: 900;
  text-decoration: none;
}

.faqSection .accordion .accordion-item .accordion-body p a:hover {
  text-decoration: underline;
}

.faqSection #FAQs {
  position: relative;
}

.faqSection #FAQs .faqImage {
  height: 220px;
  width: 300px;
  position: absolute;
  top: -200px;
  z-index: -1;
  right: 0;
}

@media (min-width: 1600px) {
  .vortex-carousel .carousel-content .slideImg,
  .vortex-carousel .carousel-content .bookset {
    height: 580px;
  }

  .vortex-carousel .carousel-content .bookset .booksImg {
    height: 75%;
    width: 260px;
  }
  body .mainContent .books .booksCards .bookCard {
    height: 460px;
  }
  body .mainContent .books .booksCards .bookCard .cardInner .cardBack {
    font-size: 16px;
  }
  .vortex-carousel .carousel-content,
  .owl-carousel .owl-item .carousel-content {
    font-size: 18px;
  }
}

@media (max-width: 991.98px) {
  .vortex-carousel-section .owl-carousel .owl-stage-outer {
    height: auto;
  }
}

@media (max-width: 768.98px) {
  .vortex-carousel-section {
    height: auto;
  }
  .vortex-carousel .carousel-content .slideImg {
    height: auto;
    margin: 16px 0;
  }
  .vortex-carousel .owl-stage {
    align-items: center;
  }
  .vortex-carousel .carousel-content .tabHeader .heading span {
    line-height: 32px;
  }
  .vortex-carousel .carousel-content .bookset {
    height: 300px;
  }
  .vortex-carousel .carousel-content .bookset .booksImg {
    width: 130px;
  }
  .vortex-carousel .carousel-content {
    text-align: center;
  }
  .faqSection #FAQs .faqImage {
    position: unset;
    display: flex;
    justify-content: center;
  }
  body .mainContent .books .booksCards .bookCard .cardInner .cardFront {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 540.98px) {
  .faqSection .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
  }
  .faqSection .accordion .accordion-item .accordion-body p {
    font-size: 12px;
  }
}

/*# sourceMappingURL=index.css.map */
