/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Inter", sans-serif;
  color: #444444;
}

a {
  color: #993366;
}

a:hover {
  color: #C43E81;
  text-decoration: none;
}

.sign {
  background-color: #ffffff;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #993366;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #701141;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

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

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

#topbar .contact-info a {
  line-height: 1;
  color: #fff;
  transition: 0.3s;

}

#topbar .contact-info a:hover {
  text-decoration: underline;
}

#topbar .contact-info i {
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.6);
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(194, 9, 138, 0.1);
}

#header.header-scrolled {
  top: 0;
  padding: 10px;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.8px;
}

#header .logo a {
  color: #993366;
}

#header .logo img {
  max-height: 50px;
}

@media (max-width: 992px) {
  #header {
    padding: 15px;
    top: 0;
  }

  #header .logo {
    font-size: 28px;
  }
}

/*-----------------f---------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul {
  display: flex;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #993366;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  padding: 0 3px;
}

.nav-menu>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #993366;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #C43E81;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  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 {
  color: #993366;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

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

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

.mobile-nav button {
  display: block;
  position: relative;
  color: #fff;
  padding: 5px 20px;
  font-weight: 500;
  outline: none;
}

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

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

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

.btn-login {
  width: 70px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #C43E81;
  border-radius: 5px;
  padding: 7px 15px;
  border-style: none;
  display: block;
  margin-top: -6px;
}

.btn-login:hover {
  background: #aa3670;
  border-style: none;
}

.btn-login:focus {
  outline: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/warna.jpg") top left;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 130px;
  padding-left: 30px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 58px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #C43E81;
}

#hero h2 {
  font-family: 'Satisfy', cursive;
  color: #e24895;
  margin-top: 20px;
  margin-bottom: 50px;
  font-size: 28px;
}

#hero .btn-get-started {
  width: 180px;
  text-align: center;
  margin-top: 50px;
  font-size: 16px;  
  font-weight: 600;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #C43E81;
}

#hero .btn-get-started:hover {
  background: #993366;

}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .btn-get-started {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #fef6fc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title img {
  max-height: 80px;
  margin-top: 20px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #fde7f6;
  color: #993366;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #993366;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  text-align: center;
}


.about .content h5 {
  font-size: 18px;
  color: #993366;
  text-align: center;
  margin-top: 10px;
}

.about .row p {
  font-size: 15px;
  margin-top: 10px;
  text-align: center;
  padding: 0px 20px 0px;
}

.about .row span {
  color: #993366;
  font-size: 32px;
}

.fero {
  padding: 25px 0 20px;
  text-align: center;
}

.fero i {
  background: #993366;
  box-shadow: 0px 3px 5px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  color: #ffffff;
  border-radius: 50px;
  margin-bottom: 10px;
}

.fero p {
  padding: 20px;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: white;
  border-radius: 20px;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1d3e2;
  border-radius: 10px;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #993366;
  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 p {
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: rgb(211, 35, 143);
  box-shadow: 0px 0 25px 0 rgba(26, 10, 243, 0.1);
}

.services .icon-box:hover h4,
.services .icon-box:hover .icon i {
  color: #bd105e;
}

.services .icon-box:hover .icon {
  border-color: #C43E81;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 80px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fef1fd;
  border-radius: 10px;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #993366;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  border: 5px solid #fff;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #5b0646;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #ba0d75;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 50px;
  display: block;
  background: none;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  color: #222222;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e6c2dd;
  border-radius: 20px;
}

.skills .progress-bar {
  width: 10px;
  height: 15px;
  transition: .9s;
  border-radius: 20px;
  background-color: #993366;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  margin: 10px;
  padding: 20px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(188, 30, 127, 0.12);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 700;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 22px;
  color: #fff;
  background: #c44383;
}

.pricing .box h4 {
  font-size: 36px;
  color: #D1458B;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #993366;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #F8F8F8;
  text-align: center;
}

.pricing .btn-buy {
  background: #C43E81;
  display: inline-block;
  padding: 10px 50px 10px 50px;
  border-radius: 5px;
  color: #ffffff;
  font-weight: bold;
  transition: none;
  font-size: 14px;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #B31A66;
  color: white;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #FDE7F6;
  color: #993366;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 30px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 0 0 20px 25px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #C43E81;
  font-size: 18px;
  font-weight: 500;
}

.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: -25px;
  top: 6px;
}

.faq .faq-list p {
  margin-bottom: 20px;
  font-size: 15px;
}

.faq .faq-list a.collapse {
  color: #961957;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #C43E81;
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 10px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
  background-color: #ffffff;
  border-radius: 10px;
}

.contact .info-box i {
  font-size: 32px;
  color: #993366;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #993366;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #FEF6FC;
}

#footer h3 {
  color: #9E3469;
}

#footer .footer-top {
  padding: 10px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #993366;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #444444;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  color: #444444;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #993366;
  color: #fff;
  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: #C43E81;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
  font-size: 14px;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 14px;
  color: #444444;
}

#footer .credits a {
  font-weight: bold;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

.page {
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-color: #ede7e6;
  background-size: 100% 100%;
  background-position: top center;
  padding: 10px;
  margin-top: 50px;
}

.page-login {
  margin-top: 100px;
}

.sign-in {
  background-color: rgb(255, 235, 245);
  padding: 2%;
  margin: auto;
}

.signup {
  background-color: #961957;
  padding: 2%;
}

.label-control {
  margin-left: auto;
  margin-right: auto;
}

.form-control {
  margin-left: auto;
  margin-right: auto;
  background-color: #ebe8e8;
}


.form-group a {
  float: right;
  font-size: 15px;
}

.checkbox {
  margin-top: 50px;
}

label {
  font-weight: 600;
}

.form-group input {
  font-size: 14px;
}

.contact .php-email-form input {
  padding: 20px 15px;
}


.title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-align: center;
}