@import url("https://fonts.googleapis.com/css2?family=Questrial&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Questrial", sans-serif;
}

body {
  font-size: 14px;
}

.img-responsive {
  width: 100%;
  height: auto;
}

.topNav {
  background-color: #000000;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #ffffff;
}

.topNav-left {
  display: flex;
  gap: 25px;
}

.topNav-left a {
  text-decoration: none;
}

.topNav-right-nav2 {
  font-weight: 400;
  font-size: 18px;
}

.topNav-right-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.topNav-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topNav-right {
  display: flex;
  gap: 20px;
}

#navbar {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #ffffff;
}

#navbar .nav-item {
  padding: 7px 10px;
  transition: 0.3s all;
}

#navbar .nav-link {
  transition: 0.3s all;
  font-weight: 400;
  font-size: 18px;
  color: #000000cc;
}

#navbar .nav-link:hover {
  transition: 0.3s all;
  color: #fdef68;
}

#navbar .m-active {
  color: #fdef68;
  font-weight: 600;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  animation-duration: 0.7s;
  animation-name: slidein;
  transition: ease-in 0.5s;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  border: none;
}

.dropdown-menu a {
  color: #000000;
  font-weight: 400;
  font-size: 18px;
}

@keyframes slidein {
  from {
    margin-top: 100%;
  }

  to {
    margin-top: 0%;
  }
}

.dropdown-navR {
  display: none;
}

.dropdown-nav:hover .dropdown-navR {
  display: block;
  transition: ease-in 0.5s;
}

.dropdown-item:hover {
  transition: ease-in 0.5s;
  animation: fadein 0.5s;
  background-color: transparent;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-nav {
  display: flex;
  gap: -10px;
  align-items: center;
  padding: 5px;
  font-weight: 400;
  font-size: 18px;
}

.navbar-light .navbar-toggler {
  outline: none;
  border: none;
}

.home_banner {
  background-image: url(./images/home-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 325px;
  padding-bottom: 234px;
  margin-bottom: 100px;
}

.home_banner-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 81px;
  color: #ffffff;
  margin-bottom: 30px;
}

.home_banner button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  border: none;
  outline: none;
  background-color: #fdef68;
  border: 1.5px solid #fdef68;
  padding: 20px 50px;
}

.home_banner button:hover {
  background-color: transparent;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  transition: 0.3s all;
}

.home_banner button:hover i {
  transform: rotate(90deg);
  transition: 0.3s all;
}

.abNumbers-left-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 50px;
  margin-bottom: 10px;
}

.abNumbers-left-head span {
  background-color: #fdef6829;
  font-family: "DM Serif Display", sans-serif;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.abNumbers {
  margin-bottom: 100px;
}

.abNumbers-left p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding-left: 10px;
}

.abNumbers-rows-count {
  display: flex;
  gap: 3px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 8px;
}

.abNumbers-rows img {
  margin-bottom: 20px;
}

.abNumbers-right {
  background-color: #fdef6829;
  padding: 55px 30px;
}

.abNumbers-rows-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 8px;
}

.abNumbers-rows p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.abNumbers-left {
  padding: 55px 0px;
}

.no_price {
  margin-bottom: 152px;
  background-color: #000000cc;
  padding: 70px 0px;
}

.no_price-rows .card {
  position: relative;
  width: 100%;
  height: 439px;
  overflow: hidden;
  transition: transform 0.2s ease;
  background: url("./images/card-img.png") center/cover no-repeat;
  cursor: default;
}

.no_price-rows .card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.no_price-rows .card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 1.8rem 1.5rem 2rem 1.5rem;
  color: white;
  transform: translateY(calc(100% - 80px));
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.no_price-rows .card-content h1 {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 15px;
  transform: translateY(0);
}

.no_price-rows .card-content p {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
}

.no_price-rows .card:hover .card-content {
  transform: translateY(0);
}

.pry_btn a {
  text-decoration: none;
}

.pry_btn button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  border: none;
  outline: none;
  background-color: #fdef68;
  border: 1.5px solid #fdef68;
  padding: 20px 50px;
}

.pry_btn button:hover {
  background-color: transparent;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  transition: 0.3s all;
}

.pry_btn button:hover i {
  transform: rotate(90deg);
  transition: 0.3s all;
}

.inner-banner {
  background-image: url(./images/inner-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 369px;
  padding-bottom: 50px;
  margin-bottom: 100px;
}

.inner-banner-nav-left-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 81px;
  color: #ffffff;
}

.inner-banner-nav {
  display: flex;
  justify-content: space-between;
}

.inner-banner-nav-right-btn {
  display: flex;
  gap: 10px;
}

.sec_btn a {
  text-decoration: none;
}

.sec_btn button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  border: none;
  outline: none;
  background-color: transparent;
  border: 1.5px solid #ffffff;
  padding: 20px 50px;
}

.sec_btn button:hover {
  background-color: #fdef68;
  border: 1.5px solid #fdef68;
  color: #000000;
  transition: 0.3s all;
}

.sec_btn button:hover i {
  transform: rotate(90deg);
  transition: 0.3s all;
}

.insight-research-section {
  margin-bottom: 100px;
}

.carder {
  overflow: hidden;
  cursor: pointer;
}
.img_carder {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.carder:hover .img_carder {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.insight-research-box {
  border: 1.5px solid #efefef;
  padding: 20px 30px;
  margin-bottom: 40px;
}

.insight-research-box-left-txt {
  background-color: #fdef68;
  width: 56px;
  height: 70px;
  padding: 17px 12px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 91%;
  position: absolute;
  top: 0px;
  left: 50px;
}

.insight-research-box-left-txt span {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 91%;
}

.insight-research-box-left-img {
  position: relative;
}

.insight-research-box-right {
  padding-top: 20px;
}

.insight-research-box-right-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 14px;
}

.insight-research-box-right p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  height: 70px;
  overflow: auto;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

.insight-research-box-right p::-webkit-scrollbar {
  display: none !important;
}

.insight-research-box-right button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: transparent;
}

.insight-research-box-right a {
  text-decoration: none;
}

.insight-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 150px;
}

.more_btn button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  border: none;
  outline: none;
  background-color: #000000;
  border: 1.5px solid #000000;
  padding: 20px 50px;
}

.more_btn button:hover {
  background-color: transparent;
  border: 1.5px solid #000000;
  color: #000000;
  transition: 0.3s all;
}

.more_btn a {
  text-decoration: none;
}

.footerTop {
  background-color: #fdef68;
  padding-top: 50px;
  padding-bottom: 57px;
  position: relative;
  bottom: -50px;
}

.footerTop-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.footerTop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ft-btnL a {
  text-decoration: none;
}

.ft-btnL button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  border: none;
  outline: none;
  background-color: #000000;
  border: 1.5px solid #000000;
  padding: 20px 50px;
}

.ft-btnL button:hover {
  background-color: transparent;
  border: 1.5px solid #000000;
  color: #000000;
  transition: 0.3s all;
}

.ft-btnL button:hover i {
  transform: rotate(90deg);
  transition: 0.3s all;
}

.ft-btnR a {
  text-decoration: none;
}

.ft-btnR button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  border: none;
  outline: none;
  background-color: transparent;
  border: 1.5px solid #000000;
  padding: 20px 50px;
}

.ft-btnR button:hover {
  background-color: #ffffff;
  border: 1.5px solid #ffffff;
  color: #000000;
  transition: 0.3s all;
}

.ft-btnR button:hover i {
  transform: rotate(90deg);
  transition: 0.3s all;
}

.footer-gangan {
  background-color: #000000;
  padding-top: 120px;
  padding-bottom: 14px;
  color: #ffffff;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo-head {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 10px;
}

.footer-logo-sub {
  font-weight: 400;
  font-size: 18px;
}

.footerHead {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 40px;
  margin-top: 10px;
}

.footer-rows a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
}

.footer-rows a:hover {
  color: #fdef68;
}

.footer-rows a i {
  display: none;
}

.footer-rows a:hover i {
  display: block;
}

.footer-rows ul li {
  list-style: none;
  line-height: 50px;
}

.footer-field {
  position: relative;
  border: 1.5px solid #ffffff33;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 15px;
}

.footer-field input {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  font-weight: 400;
  font-size: 14px;
  color: #9d9d9d;
}

.footer-field input::placeholder {
  color: #9d9d9d;
}

.footer-field button {
  position: absolute;
  border: none;
  outline: none;
  right: 0px;
  top: 0px;
  background-color: #fdef68;
  padding: 15px;
  color: #000000;
  border-radius: 0px 6px 6px 0px;
}

.footer-line {
  border-top: 1.5px solid #fdef68;
  opacity: 20%;
  margin-bottom: 20px;
}

.footer_copy {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: 16px;
}

.footer_copyA {
  display: flex;
  gap: 10px;
}

.insightDetails-navR {
  background-color: #fdef68;
  width: 56px;
  height: 70px;
  padding: 17px 12px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 91%;
}

.insightDetails-navR span {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 91%;
}

.insightDetails {
  margin-bottom: 130px;
  margin-top: 50px;
}

.insightDetails-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 54px;
}

.insightDetails-navL {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 50px;
  width: 80%;
  line-height: 100%;
}

.insightDetails-img img {
  width: 100%;
  max-width: 100%;
}

.insightDetails-img {
  margin-bottom: 70px;
}

.insightDetails-info-icon {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.insightDetails-info {
  display: flex;
  gap: 60px;
  margin-bottom: 130px;
}

.insightDetails-info-txt {
  width: 90%;
}

.insightDetails-info-txt p {
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
}

.insightD-p {
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
}

.carder1 {
  overflow: hidden;
  cursor: pointer;
}
.img_carder1 {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.carder1:hover .img_carder1 {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.programSection-row {
  background-color: #f3f3f3;
  padding: 20px 15px;
  margin-bottom: 30px;
}

.programSection-row:hover {
  background-color: #fdef68;
}

.programSection-img {
  margin-bottom: 20px;
}

.programSection-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  margin-bottom: 10px;
}

.programSection-row p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
  height: 100px;
  overflow: auto;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

.programSection-row p::-webkit-scrollbar {
  display: none !important;
}

.programSection-row a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
}

.programSection {
  margin-bottom: 100px;
}

.program_banner img {
  width: 100%;
  max-width: 100%;
}

.program_banner-nav {
  background-color: #000000;
  padding-top: 43px;
  padding-bottom: 43px;
  margin-bottom: 100px;
}

.program_banner-nav-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 81px;
  color: #fdef68;
}

.program_banner-nav p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  width: 80%;
}

.program_share {
  display: flex;
  justify-content: end;
  gap: 20px;
}

.program_share-lists {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.program_share a {
  text-decoration: none;
}

.instaPost {
  background-color: #efefefcc;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 100px;
}

.instaPost-left {
  border: 1px solid #e2e2e2;
  padding: 20px;
}

.instaPost-right {
  padding-top: 150px;
}

.instaPost-right-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 50px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.foundersNav {
  background-color: #000000;
  padding-top: 70px;
  padding-bottom: 70px;
  color: #ffffff;
}

.foundersNav-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
}

.founders_row {
  background-color: #efefef;
  padding-top: 100px;
  padding-bottom: 100px;
}

.founders_row-txt-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 50px;
  margin-bottom: 20px;
  line-height: 100%;
}

.founders_row-txt p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.bdb-section {
  background-color: #000000;
  padding-top: 76px;
  padding-bottom: 76px;
  color: #ffffff;
}

.bdb-box {
  width: 70%;
  margin: auto;
  text-align: center;
}

.bdb-box-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.bdb-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.emblematic {
  background-color: #efefefcc;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 100px;
}

.emblematic-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  margin-bottom: 40px;
}

.emblematic-box {
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 13px #f3f3f3;
  padding: 41px 27px;
  margin-bottom: 40px;
}

.emblematic-box:hover {
  background-color: #fdef68;
}

.emblematic-box-left-sub {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}

.emblematic-box-left-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
}

.emblematic-box-right {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.cyber_island {
  background-image: url(./images/island-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 78px;
  padding-bottom: 78px;
  color: #ffffff;
}

.cyber_island-left {
  padding-top: 100px;
  padding-right: 30px;
}

.cyber_island-left-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  margin-bottom: 20px;
}

.cyber_island-left p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.cyber_island-right-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 24px;
}

.cyber_island-right input {
  border: none;
  outline: none;
  background-color: #000000;
  padding: 25px;
  width: 100%;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff80;
}

.cyber_island-right input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff80;
}

.cyber_island-forgot {
  margin-bottom: 40px;
}

.cyber_island-forgot a {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

.cyber_island-forgot a:hover {
  color: #fdef68;
}

.cyber_islandNav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dontHave {
  font-weight: 400;
  font-size: 16px;
}

.dontHave a {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  color: #fdef68;
}

.dontHave a:hover {
  color: #ffffff;
}

.historystory .col-md-6 {
  padding-left: 0px;
  padding-right: 0px;
}

.historystory {
  position: relative;
  margin-bottom: 127px;
  margin-top: 150px;
}

.historystory-right-box {
  position: absolute;
  top: -20px;
  left: -130px;
  width: 110%;
  height: 700px;
  background-color: #fdef68;
  transform: rotate(-20deg);
  z-index: -1;
}

.historystory-right-txt {
  position: absolute;
  top: 20px;
  left: 10px;
}

.istorystory-right-txt-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  margin-bottom: 20px;
}

.historystory-right-txt p {
  width: 80%;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

.carder01 {
  overflow: hidden;
  cursor: pointer;
}
.img_carder01 {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.carder01:hover .img_carder01 {
  transform: scale(1.2);
}

.contact_body {
  padding-top: 87px;
  padding-bottom: 87px;
  color: #ffffff;
  background-image: url(./images/contact-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100vh;
}

.contact_body-logo {
  margin-bottom: 40px;
}

.contact_body_head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  margin-bottom: 70px;
}

.contact_body-left {
  padding-right: 50px;
}

.contactRow-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #fdef68;
  margin-bottom: 10px;
}

.contactRowss p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.contactRowss {
  margin-bottom: 30px;
}

.contact_body-right-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  margin-bottom: 24px;
}

.contact_body-right input {
  border: none;
  outline: none;
  background-color: #ffffff1a;
  padding: 20px 15px;
  width: 100%;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff80;
}

.contact_body-right input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #ffffff80;
}

.contact_body-right textarea {
  border: none;
  outline: none;
  background-color: #ffffff1a;
  padding: 20px 15px;
  width: 100%;
  margin-bottom: 50px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff80;
}

.contact_body-right textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #ffffff80;
}

.historyDetails {
  margin-bottom: 100px;
}

.historyDetails .col-md-6 {
  padding-left: 0px;
  padding-right: 0px;
}

.historyDetails-left {
  position: relative;
  padding-top: 30px;
  padding-left: 70px;
  padding-right: 40px;
  padding-bottom: 30px;
  background-image: url(./images/bc-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
}

.history-Det-info {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #ffffff;
}

.home_latext {
  background-color: #f3f3f3;
  padding-top: 99px;
  padding-bottom: 99px;
}

.home_latext-rows-date {
  background-color: #fdef68;
  width: 56px;
  height: 70px;
  padding: 17px 12px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 91%;
  position: absolute;
  top: 30px;
  left: 50px;
}

.home_latext-rows-date span {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 91%;
}

.home_latext-conts p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  height: 50px;
  overflow: auto;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

.home_latext-conts p::-webkit-scrollbar {
  display: none !important;
}

.home_latext-conts a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
}

.home_latext-conts-head {
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
}

.home_latext-conts:hover {
  padding-left: 20px;
  transition: all 0.3s ease-in-out;
}

.home_latext-rows {
  margin-bottom: 30px;
}

/* MEDIA */

@media (max-width: 736px) {
  .historystory-right-txt p {
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
  }
  .historystory-right-box {
    display: none;
  }

  .historystory-right-txt {
    position: relative;
    top: 0px;
    left: 0px;
    background-color: #fdef68;
    padding: 20px;
  }
  .historyDetails-left {
    position: relative;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    background-image: url(./images/bc-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
  }

  .contact_body {
    padding-top: 87px;
    padding-bottom: 87px;
    color: #ffffff;
    background-image: url(./images/contact-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
  }
  .contact_body-left {
    padding-right: 0px;
    margin-bottom: 30px;
  }
  .cyber_islandNav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
  .cyber_island-left {
    padding-top: 30px;
    padding-right: 0px;
    margin-bottom: 50px;
  }
  .emblematic-box-left {
    margin-bottom: 20px;
  }
  .bdb-box {
    width: 100%;
    margin: auto;
    text-align: center;
  }
  .bdb-box-head {
    font-family: "DM Serif Display", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .founders_row-img {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .foundersNav-head {
    font-family: "DM Serif Display", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
  }
  .instaPost-right {
    padding-top: 50px;
  }

  .program_banner-nav-head {
    font-family: "DM Serif Display", sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 71px;
    color: #fdef68;
  }
  .relatdPosts-row {
    margin-bottom: 30px;
  }
  .footer_copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 400;
    font-size: 16px;
  }
  .footerTop-btn {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .insight-research-box-right-head {
    font-family: "DM Serif Display", sans-serif;
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 14px;
  }
  .pry_btn button {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "DM Serif Display", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    border: none;
    outline: none;
    background-color: #fdef68;
    border: 1.5px solid #fdef68;
    padding: 10px 20px;
  }
  .sec_btn button {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "DM Serif Display", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    border: none;
    outline: none;
    background-color: transparent;
    border: 1.5px solid #ffffff;
    padding: 10px 20px;
  }
  .inner-banner-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .no_price-rows {
    margin-bottom: 40px;
  }
  .abNumbers-rows {
    margin-bottom: 40px;
  }
  .abNumbers-left-head {
    font-family: "DM Serif Display", sans-serif;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 10px;
  }
  .home_banner-head {
    font-family: "DM Serif Display", sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 60px;
    color: #ffffff;
    margin-bottom: 30px;
  }
  .topNav-right-nav2 {
    font-weight: 400;
    font-size: 14px;
  }
  .topNav-cont {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
