:root {
  --primary_color: #392e78;
  --hover_color: #f9f0f5;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-weight: 100 !important;
}
body {
  color: #444444;
}
img,
video {
  width: 100%;
}
a {
  color: var(--primary_color);
  text-decoration: none;
}

a:hover {
  color: var(--hover_color);
  text-decoration: none;
}

/* 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: var(--primary_color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--hover_color);
  background-color: var(--primary_color);
  line-height: 0;
  transition: 0.7s ease;
}

.back-to-top:hover {
  border: 3px solid var(--primary_color);
  background-color: var(--hover_color);
}
.back-to-top:hover i {
  color: var(--hover_color) !important;
}

.back-to-top:hover i {
  color: var(--primary_color);
}

.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: #151515;
}

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

@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 {
  background: #ffffff80 !important;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  transition: 0.7s ease;
}
#header:hover {
  background-color: #f0f0f0 !important;
}
#header #logo {
  width: 150px;
  margin: 0;
  padding: 0;
}

#header #logo img {
  width: 100%;
  max-height: 40px;
  object-fit: contain;
}

#header ul {
  width: 150px;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none;
}
#header ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
#header ul li h3 a i {
  transition: 0.7s ease;
}
#header ul li h3 a i:hover {
  color: var(--primary_color) !important;
  transform: scale(2, 2);
}
@media (max-width: 768px) {
  #header {
    padding: 5px 10px;
  }
  #header .container {
    flex-direction: column;
  }
  #header ul {
    margin-top: 5px;
  }
  #header ul li h3 a i {
    font-size: 0.5em;
  }
}
/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #343a40;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid var(--primary_color);
}

.get-started-btn:hover {
  background: var(--hover_color);
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}
@media (max-width: 768px) {
  .get-started-btn {
    display: none;
  }
}

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

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .heroVideo {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
#hero .container {
  max-width: 95% !important;
  position: relative;
  padding-top: 74px;
  text-align: center;
}
#hero #hero-box ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
#hero #hero-box ul li {
  color: var(--hover_color);
}
#hero #hero-box ul li h1 {
  font-size: 3em;
  font-weight: 700;
  color: var(--hover_color);
  /* font-family: "Poppins", sans-serif; */
}
#hero #hero-box ul li h1 span {
  color: var(--primary_color);
}
#hero #hero-box ul li h2 {
  /* font-family: "Poppins", sans-serif; */
  color: var(--hover_color) fff;
  font-size: 2em;
}
@media (min-width: 2000px) {
  #hero #hero-box ul li h1 {
    font-size: 7em !important;
  }
  #hero #hero-box ul li h2 {
    font-size: 5em !important;
  }
  #hero #hero-box ul li h4,
  #hero #hero-box ul li h3 {
    font-size: 5em !important;
  }
}
@media (min-width: 1800px) {
  .container {
    max-width: 75% !important;
  }
  #hero #hero-box ul li h1 {
    font-size: 5em !important;
  }
  #hero #hero-box ul li h2 {
    font-size: 3em !important;
  }
  #hero #hero-box ul li h4,
  #hero #hero-box ul li h3 {
    font-size: 3em !important;
  }
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    height: auto;
    /* max-height: 500px; */
  }
  #hero .heroVideo {
    width: 500px !important;
  }
  #hero .container {
    padding: 0 !important;
    margin: 0 !important;
    padding-top: 50px !important;
  }
  #hero #hero-box div {
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column !important;
  }
  #hero #hero-box ul {
    padding: 0 !important;
    width: 100%;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px;
    flex-direction: row !important;
  }
  #hero #hero-box ul li h1,
  #hero #hero-box ul li h2 {
    font-size: 2em !important;
  }
  #hero #hero-box ul:last-child {
    /* display: none; */
    flex-wrap: wrap;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0 !important;
  overflow: hidden;
}
.section-title {
  padding-top: 40px !important;
  cursor: pointer;
  transition: all 0.7s ease;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #151515;
}
@media (min-width: 2000px) {
  .section-title h2 {
    font-size: 3em;
  }
  .section-title p {
    font-size: 7em;
  }
}
/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
#main section {
  background-color: #ffffff80;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#features,
#about {
  background-color: #ffffff !important;
}
.about .content h3 {
  color: var(--primary_color);
  font-weight: 700;
  font-size: 1.8em;
}
.about .content p {
  font-weight: 400 !important;
  font-size: 1.2em;
}
.about .content p:last-child {
  margin-bottom: 0;
}
@media (min-width: 2000px) {
  .about .content h3 {
    font-size: 7em;
  }
  .about .content p {
    font-size: 2em;
  }
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}
.features .content ul {
  list-style: none;
  padding: 0;
  margin-left: 60px;
}
.features .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
  font-weight: 400 !important;
  font-size: 1.2em;
}
.features .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--primary_color);
}
.features .icon-box {
  padding-left: 15px;
}
.features .icon-box h4 {
  font-size: 20px;
  font-weight: bold;
  margin: 5px 0 10px 60px;
}
.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}
.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* min-height: 200px; */
}
@media (min-width: 2000px) {
  .features .icon-box h4 {
    font-size: 7em;
  }
  .features .icon-box ul li {
    font-size: 2em;
  }
}
@media (max-width: 768px) {
  .features .content ul {
    padding: 0 !important;
    margin: 0 !important;
  }
}
/*--------------------------------------------------------------
# Minimalist
--------------------------------------------------------------*/

.minimalist .pictures {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.minimalist .pictures div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.minimalist .pictures div div {
  width: calc(100% / 4);
  height: 300px;
  overflow: hidden;
}
.minimalist .pictures img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.minimalist .section-title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.5em;
}
.minimalist .section-title p {
  font-weight: 800;
  text-align: center;
}
.minimalist .section-title h4 {
  text-align: center;
}
/*--------------------------------------------------------------
# Modern
--------------------------------------------------------------*/
.modern .layout .picture img {
  width: 100%;
  object-fit: cover;
}
.modern .layout .section-title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1em;
}
.modern .layout .section-title p {
  font-weight: 800;
  text-align: center;
}
.modern .layout .section-title h4 {
  text-align: center;
}
/*--------------------------------------------------------------
# Wallpaper
--------------------------------------------------------------*/
.wallpaper .layout {
  position: relative;
}
.wallpaper .layout .pictures {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: bottom center;
  align-content: bottom center;
}
.wallpaper .layout .pictures div {
  overflow: hidden;
  height: auto;
}
.wallpaper .layout .pictures div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wallpaper .layout .section-title {
  width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #ffffff30;
  padding: 20px 50px !important;
}
.wallpaper .layout .section-title p {
  font-weight: 800;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: var(--hover_color);
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--primary_color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}
.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}
.services .icon-box h4 a:hover {
  color: var(--primary_color);
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: var(--hover_color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  height: 100vh;
  background: url(../img/book.png);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed !important;
  background-size: cover;

  padding: 60px 0;
}
.cta h3 {
  color: var(--primary_color);
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: var(--primary_color);
}
.cta .cta-btn {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid var(--hover_color);
  color: var(--primary_color);
}
.cta .cta-btn:hover {
  background: var(--primary_color);
  border-color: var(--hover_color);
  color: var(--hover_color);
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /* background: black; */
  padding: 0 0 30px 0;
  color: var(--hover_color);
  font-size: 14px;
}
#footer .footer-top {
  /* background: #151515; */
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
#footer .footer-top .footer-info h3 span {
  color: var(--primary_color);
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  /* font-family: "Raleway", sans-serif; */
  color: #000000;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: var(--hover_color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: var(--primary_color);
  color: var(--hover_color);
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--hover_color);
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary_color);
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: var(--hover_color);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: var(--primary_color);
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: var(--hover_color);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--primary_color);
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: var(--hover_color);
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #000000;
}
#footer .credits {
  color: #000000;
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}
