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

#snow {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1000;
}
/* width */
::-webkit-scrollbar {
  background: linear-gradient(rgb(6,0,45), RGB(7, 1, 46));
  width: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(22, 4, 143); 
  border-radius: 10px;
  transition: 0.2s;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(32, 7, 197); 
  transition: 0.2s;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
  background: linear-gradient(rgb(6,0,45), RGB(7, 1, 46));
}
.dark-mode {  
  background: linear-gradient(rgb(6,0,45), RGB(7, 1, 46));
  color: #e4e4e4; 
  transition: 1s;
}

a {
  color: #BB2528;
  text-decoration: none;
  transition: 1s;
}

a:hover {
  color: #BB2528;
  text-decoration: none;
  transition: 1s;
}

.dark-mode a {
  color: #00258a;
  text-decoration: none;
  transition: 1s;
}

.dark-mode a:hover {
  color: #0a3fcf;
  text-decoration: none;
  transition: 1s;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #3218c4;
  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: #2f6aad;
  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: linear-gradient(rgb(6,0,45), RGB(7, 1, 46));
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #373ea8;
  border-top-color: #7c84f7;
  border-bottom-color: #7c84f7;
  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
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}
@media (max-width: 992px) {
  #header {
    width: 300px;
    background: linear-gradient(rgb(6,0,45), RGB(7, 1, 46));
    border-right: 1px solid rgb(36, 36, 36);
    left: -300px;
    transition: 1s;
  }
  .dark-mode #header {
    width: 300px;
    background: linear-gradient(rgb(6,0,45), RGB(7, 1, 46));
    border-right: 1px solid rgb(36, 36, 36);
    left: -300px;
    transition: 1s;
  }  
}

@media (min-width: 992px) {
  #main {
    margin-left: 100px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
  transition: 0.3s;
}
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
  transition: 0.3s;
}
.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  transition: 0.3s;
}
.nav-menu a, .nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #270d99;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: rgb(50, 25, 187);
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
} 
.dark-mode .nav-menu a {
  color: #256bbb;
  background: rgb(1, 1, 39);
  transition: 0.3s;
}
.dark-mode .nav-menu a:focus {
  color: #91c4ff;
  background: rgb(5, 27, 54);
  transition: 0.3s;
}
.nav-menu a i, .nav-menu a:focus i {
  font-size: 20px;
  transition: 0.3s;
}
.dark-mode .nav-menu a i, .nav-menu a:focus i {
  font-size: 20px;
  transition: 0.3s;
}
.nav-menu a span, .nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #eeeeee;
  transition: 0.3s;
}
.dark-mode .nav-menu a span, .nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #d7d7d8;
  transition: 0.3s;
}
@media (min-width: 992px) {
  .nav-menu a, .nav-menu a:focus {
    width: 56px;
    transition: 0.3s;
  }
  .nav-menu a span, .nav-menu a:focus span {
    display: none;
    color: #fff;
    transition: 0.3s;
  }
}
.nav-menu a:hover, .nav-menu .active, .nav-menu .active:focus, .nav-menu li:hover > a {
  color: #fff;
  background: #080f7e;
  transition: 0.3s;
}
.dark-mode .nav-menu a:hover, .nav-menu .active, .nav-menu .active:focus, .nav-menu li:hover > a {
  color: #fff;
  background: #080f7e;
  transition: 0.3s;
}
.nav-menu a:hover span, .nav-menu .active span, .nav-menu .active:focus span, .nav-menu li:hover > a span {
  color: #fff;
  transition: 0.3s;
}
.nav-menu a:hover, .nav-menu li:hover > a {
  width: 100%;
  color: #fff;
  transition: 0.3s;
}
.dark-mode .nav-menu a:hover, .nav-menu li:hover > a {
  width: 100%;
  color: #fff;
  transition: 0.3s;
}

.nav-menu a:hover span, .nav-menu li:hover > a span {
  display: block;
  transition: 0.3s;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}
.mobile-nav-toggle i {
  color: #eeeeee;
}

.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active #header {
  left: 0;
}
.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #BB2528;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: linear-gradient(rgb(7, 0, 97), rgb(8, 0, 126));
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 1s;
}
.dark-mode #hero:before {
  content: "";
  background: linear-gradient(rgb(6,0,45), RGB(7, 1, 46));
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 1s;
}
#hero h1 {
  text-align: center;
  font-family: "Poppins", sans-serif;
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 56px;
  color: #eeeeee;
  transition: 1s;
  
}
.dark-mode #hero h1 {
  margin: 0;
  font-size: 37px;
  font-weight: 700;
  line-height: 56px;
  color: #bdbfc0;
  transition: 0.5s;
}

#hero p {
  text-align: center;
  color: #eeeeee;
  margin: 15px 0 0 0;
  font-size: 35px;
  font-family: "Poppins", sans-serif;
  transition: 1s;
}
.dark-mode #hero p {
  color: #000000;
  margin: 15px 0 0 0;
  font-size: 35px;
  font-family: "Poppins", sans-serif;
  transition: 1s;
}
#hero p span {
  background-color: #ffffff;
}
.dark-mode #hero p span {
  background-color: #ffffff;
}
#hero img {

  /* Center this image */
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 10%;
  top: -20px;
  position: relative;

}
#hero .social-links {
  /* Center a this div*/
  margin: 0 auto;
  padding-left:45px;
  /* Set the width of this div */
  width: 200px;
  /* Set the height of this div */
  height: 50px;
  /* Set the background color of this div */
  margin-top: 30px;
}
#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #eeeeee;
  line-height: 1;
  transition: 0.3s;
  margin-right: 20px;
}
.dark-mode #hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #eeeeee;
  line-height: 1;
  transition: 0.3s;
  margin-right: 20px;
}
#hero .social-links a:hover {
  color: #BB2528;
}
.dark-mode #hero .social-links a:hover {
  color: #2a3de6;
}
@media (max-width: 992px) {
  #hero {
    text-align: center;
  }
  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }
  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {

  overflow: hidden;
}

.section-title {
  transition: 1s;
  text-align: center;
  color: #eeeeee;
  margin-left: -103px;
  padding-top: 20%;
  transition: 1s;

}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #eeeeee;
  
}
.dark-mode .section-title h2 {
  font-size: 75px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #BB2528;
  
  color: #000000;

  
}
.dark-mode .section-title h2 span {
  background-color: #ffffff;
}


.dark-mode .section-title h2::before {  
  background: rgb(61, 61, 61);
  transition: 1s;
}

.section-title p {
  font-size: 25px;
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/

.facts .count-box {
  
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: rgb(37, 37, 37);
  transition: 1s;
}
.dark-mode .facts .count-box {
  margin-left: 90%;
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: rgb(10, 2, 61);
  transition: 1s;
}
.facts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);  
  font-size: 24px;
  background: rgb(39, 10, 223);
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.facts .count-box span {
  font-family: sans-serif;
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #011426;
  transition: 1s;
}
.dark-mode .facts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: rgb(255, 255, 255);
  transition: 1s;
}
.facts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  margin-left: 353px;
  text-align: center;
  width: 100%;
}
.dark-mode .contact .info {
  width: 100%;

}
.contact .info i {
  font-size: 20px;
  color: #146B3A;
  float: left;
  width: 44px;
  height: 44px;
  background: #eef7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.dark-mode .contact .info i {
  font-size: 20px;
  color: #146B3A;
  float: left;
  width: 44px;
  height: 44px;
  background: #4b4b4b;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #eeeeee;
  transition: 1s;
}
.dark-mode .contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #cacaca;
  transition: 1s;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #728394;
}
.dark-mode .contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #c2c2c2;
}
.dark-mode .contact .info a {
  padding: 0 0 0 16px;
  margin-left: 43px;
  margin-bottom: 0;
  font-size: 14px;
  color: #c2c2c2;
  transition: 0.3s;
}
.dark-mode .contact .info a:hover {
  padding: 0 0 0 16px;
  margin-bottom: 0;
  font-size: 14px;
  color: #c2c2c2;
  letter-spacing: 3px;
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.425);
  transition: 0.3s;
}
.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #BB2528;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: RGB(7, 1, 46);
  color: #eeeeee;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  transition: 1s;
}
.dark-mode #footer {
  background: RGB(7, 1, 46);
  color: #dfe1e2;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  transition: 1s;
}
#footer h3 {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}
#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}
#footer .social-links {
  margin: 0 0 40px 0;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #BB2528;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.dark-mode #footer .social-links a {
  background: #BB2528;
  color: rgb(36, 36, 36);
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #BB2528 x;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  margin: 0 0 5px 0;
}
#footer .credits {
  font-size: 13px;
}