/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #555555;
}

a {
  text-decoration: none;
  color: #b00000;
}

a:hover {
  color: #e20000;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #b00000;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #F6EFE5;
  line-height: 0;
}

.back-to-top:hover {
  background: #e20000;
}

.back-to-top i:hover {
  color: #1E1F21;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header Section
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #2a2a2a;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
}

@media (max-width: 992px) {
  #header {
    height: 70px;
  }
}

.scrolled-offset {
  margin-top: 90px;
}

@media (max-width: 992px) {
  .scrolled-offset {
    margin-top: 90px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #b00000;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #2a2a2a;
  box-shadow: 0px 0px 15px #414141;
  transition: 0.3s;
  border-radius: 5px;
}

.navbar .dropdown ul li {
  background: #2a2a2a;
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #b00000;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #F6EFE5;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #F6EFE5;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #1E1F21;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #2a2a2a;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #F6EFE5;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #b00000;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #2a2a2a;
  box-shadow: 0px 0px 15px #1E1F21;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #b00000;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
#home {
  width: 100%;
  height: 100vh;
  background: url("../img/home-bg.jpeg");
  background-size: cover;
  position: relative;
}

#home .home-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#home .home-logo {
  margin-bottom: 30px;
}

#home .home-logo img {
  width: 150px;
  height: auto;
}

#home h1 {
  margin: 0 0 30px 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  color: #F6EFE5;
}

#home h2 {
  color: #F6EFE5;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

#home .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 3px;
  margin: 10px;
  color: #F6EFE5;
  background: #b00000;
}

#home .btn-get-started:hover {
  transition: 0.5s;
  background: #e20000; 
  color: #1E1F21;
}

@media (min-width: 1024px) {
  #home {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #home h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #home h2 {
    line-height: 22px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #1E1F21;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 0;
  color: #b00000;
}

/*--------------------------------------------------------------
# Information Section
--------------------------------------------------------------*/
.information {
  background: #1E1F21;
}

.information p {
  color: #F6EFE5;
}

.information .row{
  margin: 0 10px;
}

.section-title-information {
  text-align: center;
  padding-bottom: 40px;
}

.section-title-information h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 0;
  color: #b00000;
  margin-top: 30px;
}

.pt-4 p, .pt-4 ul{
  text-align: justify;
}

@media (max-width: 991px) {
 
.information .content.pt-4.pt-lg-0.pl-0.pl-lg-3 {
  margin: 450px 0 30px;
}

}

/*--------------------------------------------------------------
# Information Slider Section
--------------------------------------------------------------*/
.information .image-slider {
  position: relative;
}

.information .image-slider img {
  padding: 20px;
  box-shadow: 0px 0px 15px rgba(246, 239, 229, 0.1);
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  width: 2000px;
  height: 450px;
  object-fit: cover;
}

.information .image-slider .active {
  opacity: 1;
}

/*--------------------------------------------------------------
# Description Section
--------------------------------------------------------------*/
.description {
  background: #1E1F21;
  padding: 20px;
}

.description .content {
  padding: 15px 20px 0 20px;
  box-shadow: 0px 0px 15px rgba(246, 239, 229, 0.1);
  background-color: #fff;
  border-radius: 5px;
}

.description .content p {
  font-size: 15px;
  color: #1E1F21;
}


@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Goals Section
--------------------------------------------------------------*/
.goals {
  background: #1E1F21;
}

.goals .image img {
  padding: 20px;
  box-shadow: 0px 0px 15px rgba(246, 239, 229, 0.1);
  border-radius: 5px;
  width: 2000px;
  height: 425px;
  object-fit: cover;
}

.goals p {
  color: #F6EFE5;
}

.goals .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #fff;
}

/*--------------------------------------------------------------
# Tasks Section
--------------------------------------------------------------*/
.tasks {
  background: #1E1F21;
}

.tasks .image img {
  width: 2000px;
  height: 708px;
  object-fit: cover;
  padding: 20px;
  box-shadow: 0px 0px 15px rgba(246, 239, 229, 0.1);
  border-radius: 5px;
}

.tasks .content ul {
  list-style: none;
  padding: 0;
}

.tasks .content ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: #F6EFE5;
}

.tasks .content ul i {
  font-size: 24px;
  padding: 2px 6px 0 0;
  color: #e20000;
}

/*--------------------------------------------------------------
# Organization Section
--------------------------------------------------------------*/
.organization {
  background: #1E1F21;
}

.organization .image img {
  padding: 20px;
  box-shadow: 0px 0px 15px rgba(246, 239, 229, 0.1);
  border-radius: 5px;
  width: 2000px;
  height: 520px;
  object-fit: cover;
}


.organization .video video {
  padding: 20px; 
  box-shadow: 0px 0px 15px rgba(246, 239, 229, 0.1); 
  border-radius: 5px;
  width: 100%; 
  height: auto; 
  object-fit: cover;
}

@media (min-width: 992px) {
  .organization #tab-6 .video video, .organization #tab-7 .video video {
    width: 350px ;
  }
  .organization #tab-3 .video video{
    margin-top: 80px;
  }
}

.organization .nav-tabs {
  border: 0;
}

.organization .nav-link {
  border: 0;
  padding: 20px;
  color: #F6EFE5;
  transition: 0.3s;
  border-radius: 5px;
}

.organization .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.organization .nav-link:hover h4 {
  color: #e20000;
}

.organization .nav-link.active {
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.08);
}

.organization .nav-link.active h4 {
  color: #b00000;
}

.organization .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.news {
  background: #1E1F21;
}

.news .news-item {
  margin-bottom: 30px;
}

.news #news-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
}

.news #news-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 18px 12px 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #1E1F21;
  transition: all 0.3s ease-in-out;
  margin: 0 4px 10px 4px;
  background: #F6EFE5;
  border-radius: 5px;
}

.news #news-flters li:hover, .news #news-flters li.filter-active {
  background: #b00000;
  color: #F6EFE5;
}

.news #news-flters li:last-child {
  margin-right: 0;
}

.news .news-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 5px;
}

.news .news-wrap::before {
  content: "";
  background: rgba(30, 31, 33, 0.5);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.news .news-wrap .news-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.news .news-wrap .news-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #F6EFE5;
  border-left: 3px solid #F6EFE5;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.news .news-wrap .news-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #F6EFE5;
  border-right: 3px solid #F6EFE5;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.news .news-wrap .news-info h4 {
  font-size: 20px;
  color: #F6EFE5;
  font-weight: 600;
}

.news .news-wrap .news-info p {
  color: #F6EFE5;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.news .news-wrap .news-links {
  text-align: center;
  z-index: 4;
}

.news .news-wrap .news-links a {
  color: #F6EFE5;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.news .news-wrap .news-links a:hover {
  color: #b00000;
}

.news .news-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.news .news-wrap:hover .news-info {
  opacity: 1;
}

.news .news-wrap:hover .news-info::before {
  top: 15px;
  left: 15px;
}

.news .news-wrap:hover .news-info::after {
  bottom: 15px;
  right: 15px;
}

.news .news-wrap img {
  width: 2000px;
  height: 300px;
  object-fit: cover;
}

/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news-details {
  background-color: #1E1F21;
}

.news-details .news-details-slider img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.news-details .news-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.news-details .news-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #BEBEBE;
  opacity: 1;
}

.news-details .news-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #F6EFE5;
}

.news-details .news-description p {
  color: #F6EFE5;
  padding: 0;
  text-align: justify;
  white-space: pre-wrap;
}

.news-details .news-info strong {
  color: #F6EFE5;
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.news-details .news-info ul {
  color: #BEBEBE;
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.news-details .news-info ul li + li {
  margin-top: 10px;
}

.news-details .news-info a {
  color: #b00000;
}

.news-details .news-info a:hover {
  color: #e20000;
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners {
  background: #1a1a1a;
  text-align: center;
}

.partners img {
  width: 50%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 25px 0;
}

.partners img:hover {
  filter: none;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .partners img {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .partners img {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Partners text
--------------------------------------------------------------*/
.profile-card {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 30px;
  height: 280px;
  margin: -15px auto;
  width: 320px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.profile-card .profile-bio {
  padding: 20px;
  position: relative;
  -webkit-transition: all 0.3s 0.25s;
  -moz-transition: all 0.3s 0.25s;
  -o-transition: all 0.3s 0.25s;
  transition: all 0.3s 0.25s;
}
/*--------------------------------------------------------------
# Leader Section
--------------------------------------------------------------*/
.leader {
  background: #1E1F21;
  padding: 60px 0;
}

.leader .member {
  margin-bottom: 20px;
  overflow: hidden;
}

.leader p {
  color: #F6EFE5;
}

.leader .member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.leader .member .member-info h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
  color: #F6EFE5;
}

.leader .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #F6EFE5;
}

.member-img img {
  width: 412px;
  height: 412px;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Members Section
--------------------------------------------------------------*/
.members {
  background: #1E1F21;
  padding: 60px 0;
}

.members .row {
  margin: 0 -15px;
}

.members .col-lg-4, .members .col-md-6 {
  padding: 0 15px;
}

.members .member {
  margin-bottom: 20px;
  overflow: hidden;
}

.members .member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  max-width: 412px;
  max-height: 414px;
  object-fit: cover;
}

.members .member .member-info h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
  color: #F6EFE5;
}

.members .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #F6EFE5;
}

.members .member:hover .social {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Members Slider Section
--------------------------------------------------------------*/
.slider .slick-dots li button:before {
  color: #F6EFE5;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  background-color: #1E1F21;
  padding: 40px 0;
  margin-bottom: -40px;
}

.breadcrumbs h2 {
  color: #b00000;
  font-size: 26px;
  font-weight: 700;
}

.breadcrumbs a {
  color: #b00000;
}

.breadcrumbs a:hover {
  color: #e20000;
}

.breadcrumbs ol {
  color: #BEBEBE;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #BEBEBE;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
#footer {
  background: url("../img/footer-bg.jpeg");
  color: #F6EFE5;
  font-size: 14px;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

#footer .footer-top .footer-logo img {
  height: 80px;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #F6EFE5;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 30px 0 0 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #b00000;
  color: #F6EFE5;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #e20000;
  color: #F6EFE5;
  text-decoration: none;
}