/**
* Template Name: Mentor - v4.9.1
* Template URL: https://bootstrapmade.com/mentor-free-education-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


a {
  color: #de2746;
  text-decoration: none;
}

/* a:hover {
  color: #de2746;
  text-decoration: none;
} */



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #de2746;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

/* .back-to-top:hover {
  background: #7ed899;
  color: #fff;
} */

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #de2746;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/


@media (max-width: 512px) {
  #header {
    /* background: #fff; */
    transition: all 0.5s;
    z-index: 997;
    padding: 10px;
    box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
  }
  
  #header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    font-family: "Poppins";
  }
  
  #header .logo a {
    color: #de2746;
  }
  
  #header .logo img {
    /* max-height: 66px; */
    margin-left: 10%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  #header {
    /* background: #fff; */
    transition: all 0.5s;
    z-index: 997;
    padding: 5px 0;
    box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
  }
  
  #header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    font-family: "Poppins";
  }
  
  #header .logo a {
    color: #de2746;
  }
  
  #header .logo img {
    max-height: 70px;
  }
}

/**
* Get Startet Button 
*/
.get-started-btn {
  margin-left: 22px;
  background: #de2746;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

/* .get-started-btn:hover {
  background: #3ac162;
  color: #fff;
} */

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar2 {
  padding: 0;
}

.navbar2 ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar2 li {
  position: relative;
}

.navbar2 a,
.navbar2 a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #37423b;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar2 a i,
.navbar2 a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

/* .navbar2 a:hover,
.navbar2 .active,
.navbar2 .active:focus,
.navbar2 li:hover>a {
  color: #de2746;
} */

.navbar2 .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar2 .dropdown ul li {
  min-width: 200px;
}

.navbar2 .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
}

.navbar2 .dropdown ul a i {
  font-size: 12px;
}

/* .navbar2 .dropdown ul a:hover,
.navbar2 .dropdown ul .active:hover,
.navbar2 .dropdown ul li:hover>a {
  color: #de2746;
} */

/* .navbar2 .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
} */

.navbar2 .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

/* .navbar2 .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
} */

@media (max-width: 1366px) {
  .navbar2 .dropdown .dropdown ul {
    left: -90%;
  }

  /* .navbar2 .dropdown .dropdown:hover>ul {
    left: -100%;
  } */
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #37423b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar2 ul {
    display: none;
  }

  
}

.navbar2-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(32, 38, 34, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar2-mobile .mobile-nav-toggle {
	position: absolute;
	top: 30px;
	right: 15px;
}

.navbar2-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 6px;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
	height: 50%;
}

.navbar2-mobile a,
.navbar2-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37423b;
}

/* .navbar2-mobile a:hover,
.navbar2-mobile .active,
.navbar2-mobile li:hover>a {
  color: #de2746;
} */

.navbar2-mobile .getstarted,
.navbar2-mobile .getstarted:focus {
  margin: 15px;
}

.navbar2-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar2-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar2-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar2-mobile .dropdown ul a i {
  font-size: 12px;
}

/* .navbar2-mobile .dropdown ul a:hover,
.navbar2-mobile .dropdown ul .active:hover,
.navbar2-mobile .dropdown ul li:hover>a {
  color: #de2746;
} */

.navbar2-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
