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

body {
  background: #ffdab9;
  color: #444;
  font-family: "Montserrat", "Open Sans", sans-serif;
}

a {
  color: #45acff;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #45acff;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #64b5f6;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top:hover {
  background: #fa5b3d;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/* Prelaoder */
#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 #f2f2f2;
  border-top: 6px solid #64b5f6;
  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;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  height: 40px;
  font-size: 16px;
  transition: all 0.5s;
}

#topbar.topbar-transparent {
  background: transparent;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .social-links a {
  color: #3e2723;
  padding-left: 20px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #64b5f6;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  top: 40px;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  top: 0;
  background: #ffdab9;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header .logo {
  font-size: 40px;
  margin: 10px 0;
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: lowercase;
  font-family: "Sacramento";
}

#header .logo a {
  color: #3e2723;

}

#header .logo img {
  max-height: 50px;
  margin-right: 10px;

}

@media (max-width: 992px) {
  #header {
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.main-nav, .main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  padding-left: 30px;
}

.main-nav a {
  display: block;
  position: relative;
  color: #3e2723;
  padding: 10px 0;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
  color: #fa5b3d;
  text-decoration: none;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(40, 38, 70, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #8dc2fa;
  text-decoration: none;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #065e77;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 38, 70, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

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

@media (max-width: 767px) {
  #hero {
    height: auto;
    padding: 100px 0 60px 0;
  }
  #hero .container {
    height: auto !important;
  }
  #hero .intro-img {
    width: 80%;
  }
}

@media (min-width: 992px) {
  #hero .intro-info {
    padding-top: 80px;
    padding-left: 80px;
  }
}

@media (max-width: 767px) {
  #hero .intro-info {
    text-align: center;
    padding-top: 40px;
  }
}

#hero .intro-info h2{
  color: #fff;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 400;
}

#hero .intro-info h2 span {
  color: #fa5b3d;
  font-weight: 600;
}

#hero .intro-info p {
  color: #f0ead6;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 767px) {
  #hero .intro-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }
}

#hero .intro-info .btn-get-started, #hero .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 50px;
  padding: 10px 50px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #fa5b3d;
  color: #fff;
}

#hero .intro-info .btn-get-started:hover, #hero .intro-info .btn-services:hover {
  background: #64b5f6;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 36px;
  color: #3e2723;
  text-align: center;
  font-weight: 700;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #535074;
  width: 50%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

/* About Section
--------------------------------*/

#about {
  padding: 30px 0;
  background: #fff;
}

#about .about-content {
  padding: 40px;
  text-align: center;
}

#about .about-content h2 {
  color: #64b5f6;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

#about .about-content p {
  color: #3e2723;
  font-weight: 500;
  font-size: 20px;
}

/* Platforms Section
--------------------------------*/
#platforms {
  padding: 40px 0;
  background: #fff;
}

#platforms img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 15px;
}

#platforms img:hover {
  opacity: 1;
}

#platforms h3 {
  color: #64b5f6;
}

#platforms .owl-nav, #platforms .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#platforms .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#platforms .owl-dot.active {
  background-color: #64b5f6;
}

/* Hosts Section
--------------------------------*/
#host {
  padding: 60px 0 30px 0;
}

#host h3 {
  color: #3e2723;
}

#host .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

#host .member .member-info {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 0;
  background: rgba(29, 28, 41, 0.6);
}

#host .member .member-info-content {
  height: 40px;
}


#host .member h4 {
  font-weight: 500;
  font-size: 40px;
  color: #fff;
  font-family: "Sacramento", "Montserrat", sans-serif;
}

/* About Us Section
--------------------------------*/
#about-us {
  padding: 0 20px 50px 20px;
  font-size: 18px;
  font-family: Montserrat;
}

#about-us .row {
  padding: 20px;
}

.about-us-img {
  padding: 20px;
}

.about-us-content {
  padding: 10px 20px;
  width: 100%;
}


/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: #fa5b3d;
  background-size: cover;
  padding: 40px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  padding-top: 15px;
}

@media (min-width: 991px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #64b5f6;
  border: 3px solid #64b5f6;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


#footer {
  padding: 20px 0 10px 0;
  color: #3e2723;
  text-align: center;
}

#footer p {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 10px;
  font-family: "Open Sans", "Montserrat", sans-serif;
}

#footer #email {
  font-size: 16px;
}

#footer a {
  display: inline-block;
  background: #64b5f6;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin: 0 4px 0 10px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer a:hover {
  background: #fa5b3d;
  color: #fff;
}

@media (max-width: 574px) {
  #footer p {
    font-size: 16px;
  }

  #footer #email {
    font-size: 14px;
  }
  }
}


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

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