/*

TemplateMo 588 ebook landing

https://templatemo.com/tm-588-ebook-landing

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #E76F51;
  --secondary-color:              #E9C46A;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #F4A261;
  --custom-btn-bg-hover-color:    #E76F51;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --link-hover-color:             #E76F51;

  --body-font-family:             'Unbounded', sans-serif;

  --h1-font-size:                 42px;
  --h2-font-size:                 36px;
  --h3-font-size:                 28px;
  --h4-font-size:                 24px;
  --h5-font-size:                 22px;
  --h6-font-size:                 20px;
  --p-font-size:                  16px;
  --menu-font-size:               12px;
  --btn-font-size:                14px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 50px;
  /* padding-bottom: 100px; */
}

::selection {
  background-color: var(--secondary-color);
  color: var(--white-color);
}


/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border: 4px solid var(--white-color);
  border-radius: 100px;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.avatar-image-left {
  position: relative;
  /* left: -10px; */
}



.avatar-image:hover {
  transition: 1s;
  bottom: 0; /* Adjust this value as needed */
  transform: scale(1.5); /* Optional: Adds a slight zoom effect on hover */
}

.avatar-group,
.reviews-group {
  margin-top: 15px !important;
  /* border: 2px solid red; */
  position: relative;
  z-index: 22;
}

.reviews-group {
  /* border: 2px solid red; */
  display: inline-block;
  vertical-align: top;
  width: 20rem;
}

.reviews-group strong {
  font-size: var(--h3-font-size);
  margin-right: 10px;
}

.review_container{
  display: flex;
  justify-content: space-around;
  width: 100%;
  overflow-y: hidden;
  overflow: auto;
  height: 100%;
  padding-bottom: 30px;
  scroll-behavior: smooth;
}

.review_container::-webkit-scrollbar {
  height: 10px; /* Height for horizontal scrollbar */
}

.review_container::-webkit-scrollbar-track {
  background: #f1f1f1; /* Scrollbar track color */
  border-radius: 10px; /* Rounded corners for the track */
}

.review_container::-webkit-scrollbar-thumb {
  background: #ffffff; /* Scrollbar thumb color */
  border-radius: 10px; /* Rounded corners for the thumb */
  border: 2px solid #ff8c00; /* Padding around the thumb */
}

.review_container::-webkit-scrollbar-thumb:hover {
  background: orange; /* Color on hover */
  transition: 3s ease;
}

.reviews-section {
  margin-bottom: 100px;
}

/*---------------------------------------
  CUSTOM LINK              
-----------------------------------------*/
.link {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  color: var(--white-color);
}

.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::before {
  content: '';
}

.link--kale::before {
  height: 10px;
  top: 100%;
  opacity: 0;
}

.link--kale:hover::before {
  opacity: 1;
  animation: lineUp 0.3s ease forwards;
}

@keyframes lineUp {
    0% {
      transform-origin: 50% 100%;
      transform: scale3d(1, 0.045, 1);
    }

    50% {
      transform-origin: 50% 100%;
      transform: scale3d(1, 1, 1);
    }

    51% {
      transform-origin: 50% 0%;
      transform: scale3d(1, 1, 1);
    }

    100% {
      transform-origin: 50% 0%;
      transform: scale3d(1, 0.045, 1);
    }
}

.link--kale::after {
    content: '';
    transition: opacity 0.3s;
    opacity: 0;
    transition-delay: 0s;
}

.link--kale:hover::after {
    opacity: 1;
    transition-delay: 0.3s;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.btn-naira {
  padding: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* -webkit-backface-visibility: hidden; */
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btn-naira::before {
  content: '';
  position: absolute;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--primary-color);
  top: -50%;
  z-index: -1;
  -webkit-transform: translate3d(0, -100%, 0) rotate3d(0, 0, 1, -10deg);
  transform: translate3d(0, -100%, 0) rotate3d(0, 0, 1, -10deg);
}

.btn-naira.btn-inverted::before {
  background: var(--primary-color);
}

.btn-naira > span {
  display: block;
  /* vertical-align: middle; */
}

.btn-naira .btn-icon {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  color: var(--white-color);
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.btn-naira > span,
.btn-naira .btn-icon {
  padding: 10px 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.btn-naira:hover::before {
  -webkit-animation: anim-naira-1 0.3s forwards ease-in;
  animation: anim-naira-1 0.3s forwards ease-in;
}

@-webkit-keyframes anim-naira-1 {
  50% {
    -webkit-transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
    transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes anim-naira-1 {
  50% {
    -webkit-transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
    transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
  }
}

.btn-naira:hover {
  background-color: var(--primary-color);
  -webkit-transition: background-color 0s 0.3s;
  transition: background-color 0s 0.3s;
}

.btn-naira.btn-inverted:hover {
  background-color: var(--primary-color);
}

.btn-naira:hover .btn-icon {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.btn-naira:hover > span {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.event-register{
  color: white !important;
  margin-bottom: 15px;
  text-shadow: 2px 2px 3px rgba(255, 170, 43, 0.548);
  font-weight: bold;
  border: 2px solid rgb(255, 255, 255);
  padding: 15px;
  background-color: rgb(31, 31, 31);
  border-radius: 50px;
}

.event-register:hover{
  background-color: black;
}


@media screen and (max-width: 480px) {
  .down-btn{
    margin-bottom: 20px;
  }

  
  /* .meet-founder{
    margin-left: 15px;
  } */
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/

/* .logo{
  height: 4rem;
  margin: 0;
  padding: 0;
} */

.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: rgba(0, 0, 0, 0.85);
}

.navbar {
  background: transparent;
  z-index: 99;
}

.navbar-brand{
  height: 4.9rem;
  margin: 0;
  padding: 0;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--white-color);
}

.navbar-brand-icon {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  vertical-align: top;
  color: var(--white-color);
  font-size: var(--h6-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
}

.navbar-brand-icon::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10px;
  right: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent var(--secondary-color) transparent;
  pointer-events: none;
  transform: rotate(65deg);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover {
  transform: scale(1.1);
  transition: 0.5s ease-out;
}
  
.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  /* background-image: url('../images/businessman-sitting-by-table-cafe.jpg'); */
  background-image: url('../images/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 50px;
  filter: brightness(0.9); /* Slightly dulls the background */
  position: relative;
  z-index: 1; /* Lower than hero-image */
}

@media screen and (max-width: 980px) {
  .hero-section {
    background-image: url('../images/bgmbl.jpg');
  }
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.60); /* Slightly darker overlay */
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  filter: brightness(0.8); /* Ensures background is dulled */
  transition: opacity 1s ease-in-out;
}

.hero-section.fade {
  transition: background-image 1s ease-in-out;
}

.hero-section::before.active {
  opacity: 1;
}

.hero-section .row {
  position: relative;
  z-index: 22;
  top: 100px;
}


@keyframes heroImageLoad {
  from {
    bottom: -100px; 
    opacity: 0; 
  }
  to {
    bottom: 100px; 
    opacity: 1; 
  }
}

.hero-image {
  position: relative;
  z-index: 10;
  bottom: 200px;
  left: 6rem;
  display: block;
  margin: auto;
  animation: heroImageLoad 1s ease-in-out forwards;
}


.hero-image:hover{
  transition: 1s;
  bottom: 0; /* Adjust this value as needed */
  transform: scale(1.05); /* Optional: Adds a slight zoom effect on hover */
}


@media screen and (min-width: 991px) {
  .hero-section {
    height: calc(90vh - 88px);
    padding-top: 350px;
  }

  .hero-image{
    right:6rem;

  }
}

@media screen and (max-width: 480px) {
  .hero-image{
    left:0;
    height:auto;
    width: 100%;
  }
}

/* ------ Slider---------- */


.highlates {
  margin: auto;
  height: 70vh;
  width: 80vh;
  /* width: 65%; */
  background: #000000f8;
  /* height: fit-content; */
  border-radius: 30px 0;
  box-shadow: var(--shadow-4);
  padding-bottom: 10px;
}

.roles_club {
  background: white;
  width: 80%;
  grid-area: right-middle;
  height: fit-content;
  border-radius: 10px;
  margin:10%;
}


.courses-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  /* font-family: 'Segoe UI', sans-serif; */
}

.regis{
  font-size: 25px;
  color: orange;
  position: relative;
  bottom: 20px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .regis{
    font-size: 1rem;
  }
}

/* ----------- Courses --------------- */
.courses-grid {
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
}

.courses-grid1 {
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 3rem 2rem;
  flex-wrap: wrap;
}

.course-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.course-card::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: linear-gradient(45deg, #a1c4fd, #c2e9fb);
  top: -10%;
  left: -10%;
  z-index: -1;
  opacity: 0.2;
  transform: rotate(5deg);
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.course-card h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  text-decoration: underline;
}

.course-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.course-card ul li {
  font-size: 1rem;
  color: #34495e;
  margin-bottom: 0.5rem;
}

.course-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}


.know-more-btn {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.know-more-btn:hover {
  background: linear-gradient(to right, #2575fc, #6a11cb);
}

.tag-badge {
  font-family:sans-serif;
  position: fixed;
  top: 6rem;
  left: -1rem;
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  /* font-weight: bold; */
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  box-shadow: 0 0 10px rgba(255, 65, 108, 0.7);
  animation: shine 1s infinite alternate;
  z-index: 10;
  cursor: pointer;
}

/* Shine Animation */
@keyframes shine {
  0% {
    box-shadow: 0 0 10px rgba(255, 65, 108, 0.6);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 65, 108, 1);
  }
}



/* Responsive tweaks */
@media (max-width: 600px) {
  .course-card{
    height: auto !important;
  }
  .courses-grid {
    padding: 2rem 1rem;
  }
  
  .course-card {
    padding: 1.5rem;
  }
  
  .course-card h3 {
    font-size: 1.1rem;
  }
  
  .know-more-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }
}


/* Responsive tweaks */
/* @media (max-width: 600px) {
  .courses-grid {
    padding: 1rem 1rem;
  }
  
  .course-card {
    padding: 1.5rem;
  }
  
  .course-card h3 {
    font-size: 1.5rem;
  }
  
  .know-more-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }
} */


@media (max-width: 800px) {

  .section-header h2{
    font-size: 1.5rem;
  }
  .section-header p{
    font-size: 0.8rem;
    margin-bottom: 30px;
  }
  .tag-badge {
    top: 3.5rem;
    left: -0.5rem;
  }

}

/* Slideshow container */
.slideshow-container {
  width: 80vh;
  position: relative;
  margin: 0;
  padding: 20px;
  border-bottom: 3px solid orange;
  
}

/* Hide the images by default */
.mySlides img{

  border-radius: 20px;
  box-shadow: 4px 4px 10px orange;

}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  box-shadow: var(--shadow-1);
  background-color: white;
}
.prev{
  left: 0;
  
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  color: rgb(255, 255, 255);
  background-color: rgba(0,0,0,0.8);
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dots .active, .dot:hover {
  background-color: orange;
}


/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 3s;
}

/* Fading animation */
@keyframes fade {
  from {opacity: 0.6}
  to {opacity: 1}
}


/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-section {
  background-color: var(--custom-btn-bg-color);
  position: relative;
  /* padding: 40px 10px;  */
  z-index: 0;
  overflow: hidden; 
}

.featured-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 450px 450px;
  border-color: transparent transparent var(--white-color) transparent;
  pointer-events: none;
}


.avatar-group {
  gap: 20px; /* Adds spacing between elements in the group */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0px;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar-image {
  width: 50px; /* Uniform size for avatars */
  height: 50px;
  border-radius: 50%; /* Makes images circular */
  margin-right: -10px; /* Overlapping effect */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* Adds depth to avatars */
  border: 2px solid var(--white-color); /* Highlights each avatar */
}

.avatar-image-left {
  margin-left: -1px; /* Adjusts overlap on the left */
}

h4.fw-bold {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--primary-color); /* Highlighted text color */
}

p.text-muted {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--secondary-color); 
}

/* .fw-bold{
  border: 2px solid black;
} */


/* ------event css------ */

/* Section heading */
#event h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #e65100;
  margin-bottom: 40px;
  text-align: center;
}

/* Container for event cards */
.event-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background: #fff;
}

/* Individual event card */
.event-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.621);
  padding: 24px;
  width: 350px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Shine effect on hover */
.event-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  transform: rotate(25deg);
  opacity: 0;
  pointer-events: none;
}

.event-card:hover::before {
  left: 150%;
  top: 150%;
  opacity: 1;
}

/* Card hover transform */
.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Title inside the card */
.event-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #bf360c;
  margin-bottom: 10px;
}

/* Date inside the card */
.event-date {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 18px;
}

/* Register button */
.event-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(to right, #ff6f00, #ff8f00);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
}

.event-link:hover {
  background: linear-gradient(to right, #ff8f00, #ff6f00);
  transform: scale(1.05);
  color: black;
}

/* Hide button for schedule-only cards */
.schedule .event-link {
  display: none;
}

/* Sticker Style */
.sticker {
  position: absolute;
  top: 20px;
  left: -48px;
  background: linear-gradient(135deg, #ff6f00, #ff8f00);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 50px;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  z-index: 10;
  pointer-events: none;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
  .event-card {
      width: 90%;
  }
  .event-title{
    font-size: 1rem;
  }

  #event h4 {
      font-size: 1.6rem;
  }
}



/* -------------------What we do-----------------------  */
.what-we-do-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.content-wrapper {
  margin: 30px;
}

.left-content{
  width: 80%;
  margin: auto;
}

.left-content, .right-content {
  /* flex: 1; */
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-height: 50vh ;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.content-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #444;
}

.service-list, .training-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.service-list li, .training-list li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 8px;
}

.bottom-content {
  background-color: #eaf3fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bottom-content p {
  margin-top: 10px;
  font-size: 1rem;
  color: #555;
}

.service-list{
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* border: 2px solid yellow; */
}

.service-list a {
  display: block;
  width: auto; /* Fixed size for icons */
  height: 18rem;
}

.left-content img{
  height: 100%;
  border-radius: 10px;
  border: 2px solid rgb(0, 0, 0);
  box-shadow: 2px 2px 5px rgba(255, 166, 0, 0.384);
}

.underDev{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.underDev h6{
  font-size: 17px;
}

.underDev li{
  font-size: 12px;
  /* border: 2px solid black; */
  text-align: start;
}

.right-content h6{
  margin: 0;
}

.training a{
  text-decoration: underline;
  text-align: start;
  margin-bottom: 10px;
}

.right-content li{
  list-style-type:lower-greek;
  text-align: start;
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column; /* Stack sections vertically */
    gap: 30px;
  }

  .left-content, .right-content {
    width: 100%; /* Full width for smaller screens */
    flex: none;
    padding: 20px 6px;
  }

  .service-list img, .underDev img {
    max-width: 80%; /* Scale down images on smaller screens */
    margin: 0 auto; /* Center align images */
  }

  .section-title {
    font-size: 2rem; /* Reduce heading size */
  }

  .content-heading {
    font-size: 1.5rem; /* Adjust subheading size */
  }

  .training-list li {
    font-size: 1rem; /* Reduce font size for training list */
  }

  .bottom-content {
    padding: 15px; /* Adjust padding for smaller screens */
    font-size: 1rem;
  }
}

@media (max-width: 480px) {

  .what-we-do-section .container{
    margin: 0;
    padding: 0;
  }

  .service-list a{
    width: 6rem;
    height: auto;
  }

  .training a{
    font-size: 0.7rem;
  }

  .redirect-section{
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  .left-content, .right-content {
    min-height: auto;
  }

  .section-title {
    font-size: 1.8rem; /* Smaller heading for mobile */
  }

  .underDev h6{
    font-size: 8px;
  }
  
  .underDev li{
    font-size: 6px;
  }

  .content-heading {
    font-size: 1.3rem; /* Reduce subheading further */
  }

  .service-list{
    max-width: 100%;
    flex-direction: row;
    justify-content: space-around;
  }

  .service-list img, .underDev img {
    max-width: 100%; /* Use full width on very small screens */
  }

  .training-list li {
    font-size: 0.8rem; /* Compact text */
  }

  .bottom-content p {
    font-size: 0.9rem; /* Adjust paragraph size */
  }

  .what-we-do-section {
    padding: 20px 10px; /* Reduce padding for mobile */
  }
}





.redirect-section {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.redirect-input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  flex: 1;
}

.redirect-btn {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.redirect-btn:hover {
  background-color: #0056b3;
}




/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.review_boxes{
  margin-right: 10px;
 }

.custom-block {
  height: 500px;
  width: 25rem;
  position: relative;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  margin: 10px 0;
}

.custom-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/review.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: blur(10px); /* Adjust the blur intensity as needed */
  z-index: -1; /* Ensure the pseudo-element is behind the content */
}

/* Optional: Style the content inside the block */
.custom-block-content {
  position: relative;
  z-index: 1;
  padding: 20px; /* Adjust padding as needed */
  color: #fff; /* Adjust text color for better contrast */
}


.custom-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.45);
}

.custom-block .avatar-image {
  min-width: 60px;
  margin: auto;
  left: 0;
}

.custom-block .bi-star {
  color: var(--white-color);
}

.custom-block .bi-star-fill {
  color: var(--secondary-color);
}

.custom-block-image-wrap {
  margin: 0 auto;
  width: 20rem;
  height: 7rem;
  background-color: rgba(231, 111, 81, 0.85);
  border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
  position: relative;
  z-index: 2;
  overflow: hidden;
  /* margin: auto; */
  padding: 25px 45px;
}

.custom-block-info {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: white;
}

.custom-block-info strong,
.custom-block-info p {
  color: var(--white-color);
}

.custom-block-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}


/*---------------------------------------
  THE BOOK SECTION            
-----------------------------------------*/

.book-section-info {
  display: flex;
  width: 85vw;
  margin-bottom: 50px;
}

.Aboutus{
  /* border: 5px solid green; */
  margin-top: 10px;
  margin-left: 30px;
}

.tablet_img {
  transition: transform 1s ease-in-out;
  will-change: transform;
}

.zoom-in {
  transform: scale(1.1); /* Zoom in effect */
}

.zoom-out {
  transform: scale(1); /* Zoom out effect */
}


.nav-pills {
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: sticky;
  top: 100px;
  padding: 30px;
}

.nav-pills .nav-link {
  background: var(--section-bg-color);
  color: var(--p-color);
  border-radius: var(--border-radius-large);
  margin-top: 5px;
  margin-bottom: 10px;
  padding: 15px 30px;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active, 
.nav-pills .show>.nav-link {
  background: var(--primary-color);
  color: var(--white-color);
}

.scrollspy-example-2 {
  padding-right: 30px;
  padding-left: 30px;
}

.scrollspy-example-item {
  border-bottom: 5px dotted var(--p-color);
  min-height: 500px;
  padding-top: 20px;
  padding-bottom: 50px;
}

.scrollspy-example-item:last-child {
  border-bottom: 0;
}

.scrollspy-example-item-image {
  border-radius: var(--border-radius-medium);
}

.scrollspy-example-item h5 {
  padding-top: 30px;
  padding-bottom: 20px;
}

.scrollspy-example-item ul, ol{
  line-height: 2.2rem;
}

.sem1, .sem2{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sem3{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.month1{
  max-width: 450px;
}

.fe-img{
  margin: 30px 0;
  border: 2px solid black;
  border-radius: var(--border-radius-small);
}

.overview_report{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.overview_img{
  margin-bottom: 20px;
  max-width: 15rem;
}

.register_link{
  font-size: 20px;
  font-weight: bold;
  color: blue;
  text-decoration: underline;
}

.register_link:hover{
  font-size: 23px;
  font-weight: bold;
  color: rgb(17, 255, 0);
  text-decoration: underline;
}

.report_content{
  line-height: 50px;
}

.blockquote {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--site-footer-bg-color);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 80px 40px 40px 40px;
  text-align: center;
}

.blockquote::before {
  content: "“";
  color: var(--custom-btn-bg-color);
  font-size: 100px;
  line-height: 1rem;
  display: block;
}
.sub-head b{
  color: #ff9f87;
  text-shadow: 1px 1px black;
}

@media screen and (max-width: 500px) {

  .abus{
    display: flex;
    justify-content: center;
  }
  .book-section-info {
    display: flex;
    flex-direction: column;
    width: 90%;
    padding-top: 0;
    margin-bottom: 10px;
  }

  .slideshow-container{
    width: 100%;
  }

  .highlates{
    width: 100%;
    height: auto;
  }
  .Aboutus{
    margin: 20px 0;
  }
  .Aboutus p {
    /* border:  2px solid green; */
    font-size: 0.7rem;
  }
}
/* --------------cursor---------------------------- */
.text-container {
  font-size: 2rem;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 2rem;
}

.text-container b{
  font-size: 1.5rem;
  color: #ffe49f;
}

#animated-text{
  color: #ffd6cc;
  text-shadow: 2px 2px 2px #E76F51;
}

.cursor {
  display: inline-block;
  width: 10px;
  background-color: #ffffff;
  border: 1px solid #E76F51;
  color: #ffffff;
  animation: blink 0.6s infinite;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

@media screen and (max-width: 480px) {
  .text-container b {
    font-size: 1rem;
    display: block;
  }

  .text-container{
    font-size: 1.2rem;
  }
}




/*---------------------------------------
  AUTHOR SECTION            
-----------------------------------------*/
.author-section {
  background-image: url('../images/circle-scatter-haikei.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  position: relative;
  /* margin-top: 50px; */
}

.author-image {
  border: 10px solid var(--secondary-color);
  border-radius: 100%;
  display: block;
  margin: auto;
  width: 350px;
  height: 350px;
  object-fit: cover;
}
/* 
.meetFounder{
  color: var(--primary-color);
  text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.733);
} */

.founder-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
    padding: 30px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 30px rgba(0,0,0,0.12);
}

.founder-card .founder-content {
    flex: 1;
}

.founder-card .founder-content h6 {
    color: #ff6f61;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.founder-card .founder-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.founder-card .founder-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.founder-card .founder-photo {
    flex: 0 0 280px;
    text-align: center;
}

.founder-card .founder-photo img {
    width: 100%;
    max-width: 250px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.founder-card .founder-photo img:hover {
    transform: scale(1.05);
}

/* Founder = Photo Right */
.founder-card.founder {
    flex-direction: row;
}

/* Co-Founder = Photo Left */
.founder-card.cofounder {
    flex-direction: row;
}

/* Responsive */
@media (max-width: 992px) {
    .founder-card {
        text-align: center;
    }
    .founder-card.founder {
    flex-direction: column-reverse;
    }
    .founder-card.cofounder {
    flex-direction: column;
    } 
}


/*---------------------------------------
  DIVIDER SECTION               
-----------------------------------------*/
.divider-section {
  background-image: url('../images/wave-haikei.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}



/* <!-- -------------team members--------------------- --> */

.right_bottom_head{
  text-align: center;
  text-shadow: 2px 2px 3px rgb(255, 201, 102);
  margin-bottom: 2rem;
}

/* Members Section */
.members {
  text-align: center;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5,1fr); 
  grid-auto-rows: auto;
  gap: 10px; 
  transition: 1s;
  border-radius: 15px; 
}

.members > div {
  color: chocolate;
  margin: auto;
  width: 90%;
  height: 250px;
  text-align: center;
  padding: 5px; 
  border-radius: 10px;
  background-color: #fffce9b9;
  box-shadow: rgba(255, 196, 0, 0.34) 0px 8px 24px;
  transition: 0.5s;
}

.members > div:hover {
  background: linear-gradient(#eab645, #f5dd71);
  color: rgb(255, 255, 255);
  transition: 0.2s;
  border-radius: 15px; /* Make the corners a bit rounder */
  box-shadow: rgba(10, 10, 10, 0.34) 0px 8px 24px;
}

.members > div:hover h6{
  color: white;
}

.members img {
  display: block;
  margin: 0 auto;
  margin-top: 10px; /* Adjust the spacing */
  margin-bottom: 15px; /* Adjust the spacing */
  width: 80px; /* Adjust the size */
  height: 80px; /* Adjust the size */
  border-radius: 50%;
  transition: 0.5s;
  box-shadow: 2px 2px 5px gray;
  border: 1px solid;
}

.members img:hover {
  transform: scale(1.2);
  box-shadow: rgba(10, 10, 10, 0.34) 0px 8px 24px;
  background-color: black;
}

.data h5{
  font-size: 16px;
}


.icons {
    display: flex;
    justify-content:space-evenly;
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
    transition: 0.5s;
}

.icons > i {
    color: rgb(0, 8, 255);
    transition: 0.5s;
    transform: scale(1.2);
}

.icons > a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: bold;
    transition: 0.5s;
}

.icons > a:hover {
    color: white;
    transform: scale(1.2);
}

.icons > i:hover {
    color: white;
    transition: 0.3s;
    transform: scale(1.6);
}

.members h4 {
    margin-top: 1px;
    font-size: 15px;
}

.mentors2k23{
  width: 95%;
  margin: auto;
  padding:20px;
  border: 2px solid rebeccapurple;
}

.fa-linkedin:before {
  font-size: 30px;
}

@media screen and (max-width: 480px) {
  .members {
    /* grid-template-columns: repeat(2, 1fr); 
    gap: 10px; */
    display: flex;
    flex-direction: column;
    border: #f0f8ff;
  }

  .data{
    border: 2px solid black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .data-div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }


  .icons{
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
  }

  .icons > a {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .fa-linkedin:before {
    font-size: 24px;
  }

  .members > div{
    padding: 10px;
    height: auto;
  }

  .members h5 {
    font-size: 15px;
  }

  .members b{
    font-size: 13px;
  }
  .members img{
    margin: 0;
  }

  .mentors2k23{
    width: 99%;
    margin: auto;
    padding:10px;
    /* border: 2px solid rebeccapurple; */
  }

}




/* ---------Academy-------------- */
.academy{
  margin-top: 50px;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.footer-container {
  background-color: #222; /* Dark background for footer */
  color: #f9f9f9; /* Light text for contrast */
  padding: 20px 20px;
  text-align: center;
  border-radius: 30px 30px 0px 0px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap; /* Ensures responsiveness */
  justify-content: space-between;
  align-items: center;
  gap: 0px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-container p{
  color: white;
}

.contact-us {
  flex: 1 1 45%; /* Takes up 45% width, adjusts for smaller screens */
  text-align: left;
}

.footer-container hr{
  width: 400px;
}

.footer-container .footer-hr{
  width: 100%;
}

.contact-us h3, 
.contact-us h5 {
  color: var(--custom-btn-bg-hover-color); /* Highlight color for headings */
}

.contact-link {
  color: var(--custom-btn-bg-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #f1c40f; /* Hover effect for links */
}

.map {
  flex: 1 1 45%; /* Takes up 45% width */
  text-align: center;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: start;
  gap: 10px;
}

.social-icon-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  color: white;
  background-color: var(--custom-btn-bg-color);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon-item a:hover {
  background-color: #f1c40f;
  transform: scale(1.1);
}

.copyright-text {
  font-size: 0.9rem;
  margin-top: 30px;
  color: #aaa; 
}

@media screen and (max-width: 480px) {
  .map iframe {
    margin-top: 50px;
    width: 100%;
    height: 250px;
  }
  .footer-container hr{
    width: auto;
  }

  .footer-container .mt-5{
    margin-top: 2px !important;
  }
  
  .footer-container{
    border-radius: 10px 10px 0 0;
  }
}

/*---------------------------------------
  EBOOK DOWNLOAD FORM               
-----------------------------------------*/
.ebook-download-form {
  border-radius: var(--border-radius-medium);
  position: relative;
  z-index: 2;
  padding: 50px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--p-color);
  padding-top: 13px;
  padding-bottom: 13px;
  padding-right: 40px;
  padding-left: 20px;
  outline: none;
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: var(--primary-color);
}

.custom-form .form-control:focus + .input-group-text .custom-form-icon,
.custom-form .form-control:hover + .input-group-text .custom-form-icon {
  opacity: 1;
}

.custom-form .input-group-text {
  background: transparent;
  border: 0;
  border-radius: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 10px;
}

.custom-form-icon {
  position: relative;
  z-index: 22;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control, .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select, .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-radius: var(--border-radius-large);
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 20px;
    /* padding-bottom: 50px; */
  }
  
  .navbar {
    background-color: rgba(0, 0, 0, 0.65);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .scrollspy-example-2 .scrollspy-example-item:first-child {
    padding-top: 0;
  }

  .scrollspy-example-item h5 {
    padding-bottom: 5px;
  }


  /* .book-section-info {
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
  } */

  .ebook-download-form {
    padding: 30px;
  }

  .block-footer{
    flex-wrap: wrap;
  }

  .contact-us{
    width: 100%;
  }

  .map iframe{

    width: 100%;
  
  }

  .custom-block {
    height: 100%;
    font-size: 10px;
    width: 100%;
  }

  .custom-block-info p {
    font-size: 8px;
    width: 100%;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
  }

 .review_boxes{
  width: 200px;
  margin-right: 10px;
  
 }

 .custom-block-info {
  padding: 10px;
  width: 100%;
 }

 .custom-block-image-wrap{
  width: 8rem;
  height: 5rem;
  padding: 5px;
 }

 .review_container{
  width: 90%;
  margin: auto;
  padding: 20px 0;
  height: auto;
 }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .logo{
    height: 30px;
  }

  .navbar-brand {
    height: 2.5rem;
  }

  .navbar-brand-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .navbar-brand-icon::after {
    top: 5px;
  }

  .btn-naira > span, 
  .btn-naira .btn-icon {
    font-size: 12px;
    padding: 5px 15px;
  }
}

