/*
Template Name: Ubold - Bootstrap 4 Landing Page Tamplat
Author: CoderThemes
Email: coderthemes@gmail.com
File: Main scss file
*/
/*******************************
01.Helper
02.Navbar
03.Home
04.Features
05.Demo
06.Pricing
07.Faqs
08.Testionial
09.Contact
10.Cta
11.Footer
12.Responsive
********************************/
@import url("https://fonts.googleapis.com/css?family=Nunito:400,600,700,900");
@font-face {
  font-family: "Cerebri Sans,sans-serif";
  src: url("../fonts/cerebrisans-light.eot");
  src: local("Cerebri-sans Light"), url("../fonts/cerebrisans-light.woff") format("woff");
  font-weight: 300;
}

@font-face {
  font-family: "Cerebri Sans,sans-serif";
  src: url("../fonts/cerebrisans-regular.eot");
  src: local("Cerebri-sans Regular"), url("../fonts/cerebrisans-regular.woff") format("woff");
  font-weight: 400;
}

@font-face {
  font-family: "Cerebri Sans,sans-serif";
  src: url("../fonts/cerebrisans-medium.eot");
  src: local("Cerebri-sans Medium"), url("../fonts/cerebrisans-medium.woff") format("woff");
  font-weight: 500;
}

@font-face {
  font-family: "Cerebri Sans,sans-serif";
  src: url("../fonts/cerebrisans-semibold.eot");
  src: local("Cerebri-sans Semibold"), url("../fonts/cerebrisans-semibold.woff") format("woff");
  font-weight: 600;
}

@font-face {
  font-family: "Cerebri Sans,sans-serif";
  src: url("../fonts/cerebrisans-bold.eot");
  src: local("Cerebri-sans Bold"), url("../fonts/cerebrisans-bold.woff") format("woff");
  font-weight: 700;
}

/*******************
    1.Helper
*******************/

html {
}

body {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  background-color: #ffffff;
  overflow-y: auto; 
  -webkit-overflow-scrolling: auto;
}

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

h3 {
  line-height: 30px;
}

.h4, h4 {
  line-height: 30px;
}

a {
  text-decoration: none !important;
  outline: none;
}

p {
  line-height: 1.6;
  font-size: 15px;
}

textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none; 
}


._9AhH0 {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-sm {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.bg-gradient {
  background: -webkit-gradient(linear, right top, left top, from(#673ab7), to(#3e1e8c));
  background: linear-gradient(to left, #673ab7, #3e1e8c);
}

/**BACK TO TOP**/
.back-to-top {
  width: 30px;
  height: 30px;
  position: fixed;
  bottom: 10px;
  right: 20px;
  display: none;
  text-align: center;
  z-index: 10000;
  border-radius: 3px;
  background-color: #673ab7;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.back-to-top i {
  color: #ffffff;
  font-size: 22px;
  display: block;
  line-height: 30px;
}

.fade-in {
  animation: fadeIn ease 1.5s;
  -webkit-animation: fadeIn ease 1.5s;
  -moz-animation: fadeIn ease 1.5s;
  -o-animation: fadeIn ease 1.5s;
  -ms-animation: fadeIn ease 1.5s;
}
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

/******************
    2.Navbar
*******************/
.navbar-custom {
  padding: 20px 0px;
  width: 100%;
  border-radius: 0px;
  z-index: 999;
  margin-bottom: 0px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navbar-custom.sticky .logo .logo-light,
.navbar-custom.sticky.nav-sticky .logo .logo-dark  {
  display: inline-block;
}

.navbar-custom.sticky.nav-sticky .logo .logo-light,
.navbar-custom.sticky .logo .logo-dark {
  display: none;
}

.navbar-custom .navbar-nav .nav-item .nav-link {
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: transparent !important;
  padding: 6px 10px;
  margin: 0 7px;
  font-weight: 600;
}

.navbar-custom .navbar-nav .nav-item .nav-link:hover, .navbar-custom .navbar-nav .nav-item .nav-link:active {
  color: #ffffff;
}

.navbar-custom .navbar-nav .nav-item.active .nav-link {
  color: #ffffff;
}

.navbar-toggler {
  font-size: 24px;
  margin-top: 5px;
  margin-bottom: 0px;
  color: #ffffff;
}

/*--- navbar sticky ---*/
.nav-sticky.navbar-custom {
  margin-top: 0px;
  padding: 20px 0px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 33px -14px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 33px -14px rgba(0, 0, 0, 0.1);
}

.sticky-dark .logo .logo-dark {
  display: inline-block;
}

.sticky-dark .logo .logo-light {
  display: none;
}

.nav-sticky.navbar-custom .navbar-nav .nav-item .nav-link {
  color: rgba(40, 40, 46, 0.8);
}

.nav-sticky.navbar-custom .navbar-nav .nav-item .nav-link:hover, 
.nav-sticky.navbar-custom .navbar-nav .nav-item .nav-link:active {
  color: #673ab7;
}

.nav-sticky.navbar-custom .navbar-nav .nav-item.active .nav-link {
  color: #673ab7;
}

/*******************
    3.Home
*******************/
.bg-home {
  position: relative;
  padding: 150px 0px 100px 0px;
}

.btn-pink {
  color: #fff;
  background-color: #fa1fa3;
  border-color: #fa1fa3;
}

.bg-gradient-pink {
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, from(#fa1fa3), to(#ff7077));
  background: linear-gradient(to left, #fa1fa3, #ff7077);
}

.bg-a-d-p,
.bg-t-y-c {
  position: relative;
  padding: 70px 0px 70px 0px;
}

.home-center {
  display: table;
  width: 100%;
  height: 100%;
}

.home-desc-center {
  display: table-cell;
  vertical-align: middle;
}

.home-title .home-desc {
  max-width: 605px;
  font-size: 16px;
}

.home-title .subscribe input {
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 43px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.home-title .subscribe input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.home-title .subscribe input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.home-title .subscribe input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.home-title .subscribe input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.home-title .subscribe .btn {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.navbar-btn:hover,
.navbar-btn:focus {
  color: rgba(255, 255, 255, 0.9);
}

.home-title .subscribe .form-control:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.home-first-img {
  position: relative;
  z-index: 2;
  max-width: 300px;
}

.home-second-img {
  position: absolute;
  max-width: 250px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 61px;
  right: 0px;
  z-index: 1;
  opacity: 0.8;
}

.home-third-img {
  position: absolute;
  right: 0px;
  max-width: 200px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.7;
}

.clients {
  position: relative;
  top: -70px;
  -webkit-box-shadow: 0 10px 35px 0 rgba(154, 161, 171, 0.1);
          box-shadow: 0 10px 35px 0 rgba(154, 161, 171, 0.1);
  border-radius: 8px;
  margin-bottom: -70px;
}

.clients .client-images img {
  margin: 10px auto;
  opacity: 0.7;
}

/*******************
    4.features
********************/
.features-box {
  padding: 30px;
  text-align: center;
}

.features-box .features-img img {
  max-height: 60px;
}

.features-icon i {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: -webkit-gradient(linear, right top, left top, from(#673ab7), to(#3e1e8c));
  background: linear-gradient(to left, #673ab7, #3e1e8c);
  border-radius: 7px;
  line-height: 48px;
}

/*******************
    5.demo
********************/
.demo-box, .testi-desc {
  -webkit-box-shadow: 0 10px 35px 0 rgba(154, 161, 171, 0.1);
          box-shadow: 0 10px 35px 0 rgba(154, 161, 171, 0.1);
  border-radius: 7px;
}

/*******************
    6.pricing
********************/
.pricing-plan {
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 9px;
  max-width: 370px;
  margin: 0px auto;
  min-height: 653px;
}

.pricing-plan .lable {
  background-color: #f9f9f9;
  color: #673ab7;
  font-size: 12px;
  font-weight: 700;
  right: -26px;
  padding: 2px 25px;
  position: absolute;
  text-transform: uppercase;
  top: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.pricing-plan.active {
  /*background-image: linear-gradient(120deg, #63e4ec 0%, #3db9dc 100%);*/
  min-height: 660px;
}

.pricing-list {
  padding-left: 20px;
}

.pricing-list li {
  padding-left: 25px;
  position: relative;
}

.pricing-list li i {
  position: absolute;
  left: 0;
}

.bg-shape {
  position: absolute;
  bottom: -1px;
  left: 0px;
  right: 0px;
}

.bg-shape img {
  width: 100%;
}

/*******************
    7.faqs
********************/
.faq-question-q-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
  color: #673ab7;
  text-align: center;
  border-radius: 50%;
  float: left;
  font-weight: 700;
  line-height: 30px;
  background-color: rgba(103, 58, 183, 0.15);
}

.faq-question {
  margin-top: 0;
  margin-left: 50px;
  font-size: 16px;
}

.faq-answer {
  margin-left: 50px;
  font-size: 14.5px;
}

/*******************
    8.testionial
********************/
.testi-box .testi-desc {
  position: relative;
}

.testi-box .testi-desc:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: #ffffff;
  bottom: -6px;
  left: 48px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.testi-box .testi-img img {
  max-width: 48px;
}

/*******************
    9.contact
********************/
.custom-form {
  -webkit-box-shadow: 0 10px 35px 0 rgba(154, 161, 171, 0.1);
          box-shadow: 0 10px 35px 0 rgba(154, 161, 171, 0.1);
  border-radius: 8px;
}

.custom-form .form-group {
  margin-bottom: 1.5rem;
}

.custom-form .form-group .form-control {
  height: 43px;
}

.custom-form .form-group textarea.form-control {
  height: auto;
}

.error {
  margin: 8px 0px;
  display: none;
  color: #ff5d48;
}

#ajaxsuccess {
  font-size: 16px;
  width: 100%;
  display: none;
  clear: both;
  margin: 8px 0px;
}

.error_message {
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
  color: #806027;
  background-color: #fdf1db;
  border-color: #fdebcd;
  border-radius: 5px;
  font-size: 14px;
}

.contact-loader {
  display: none;
}

#success_page {
  text-align: center;
}

#success_page h3 {
  color: #10c469;
  font-size: 22px;
}

/*******************
    10.cta
********************/
.cta {
  background-image: linear-gradient(120deg, #63e4ec 0%, #3db9dc 100%);
  border-radius: 8px;
}

/*******************
    11.footer
********************/
.footer {
  padding: 0;
  position: relative;
  left: 0;
}

.footer .footer-list li {
  padding: 7px 0px;
}

.footer a,
.footer .footer-list li a {
  color: #673ab7;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.footer .footer-list li a:hover {
  color: #ffffff;
}

.footer a {
  color: rgba(40, 40, 46, 0.8);
  font-size: 14px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.login-page .footer a {
  font-size: 16px;
}

.footer a i {
  font-size: 18px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.footer a:hover {
  color:rgba(52, 58, 64, 1);
}

.navbar-custom .logo  {
  width: 150px;
}

/******************
    12.Responsive
*******************/
@media (min-width: 200px) and (max-width: 1199px) {
  .container-fluid {
    max-width: 95%;
  }
}

@media (min-width: 1200px) {
  .container-fluid {
    max-width: 85%;
  }
}

@media (min-width: 1600px) {
  .container-fluid {
    max-width: 70%;
  }
}

@media (min-width: 200px) and (max-width: 768px) {

  .navbar-custom .logo  {
    width: 120px;
    margin-left: 10px;
  }
  .navbar-custom {
    margin-top: 0px;
    -webkit-box-shadow: 0 10px 33px -14px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 33px -14px rgba(0, 0, 0, 0.1);
  }

  .navbar-custom.sticky .logo .logo-light  {
    display: none;
  }

  .navbar-custom.sticky .logo .logo-dark {
    display: inline-block;
  }


 /* .navbar-custom .logo .logo-dark {
    display: inline-block;
  }
  .navbar-custom .logo .logo-light {
    display: none;
  }*/
  .navbar-custom .navbar-nav .nav-item .nav-link {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    color: rgba(40, 40, 46, 0.8);
    margin: 0px;
    padding: 6px 0px;
  }
  .navbar-custom .navbar-nav .nav-item.active .nav-link {
    color: #673ab7 !important;
  }
  .navbar-toggler {
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #28282e;
  }
  .bg-home {
    /*padding: 200px 0px 120px 0px;*/
  }
  .mo-mb-20 {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 425px) {
  .home-title h1 {
    font-size: 34px;
  }
  .home-img {
    /*display: none;*/
  }
  .features-content, .cta, .custom-form {
    padding: 24px !important;
  }
  .pull-none {
    float: none !important;
    text-align: center;
  }
}

.app-store .auth-fluid-pages {
  display: flex;
  min-height: 100vh;
  align-items: center;
}

.navbar-custom {
  background-color: #ffffff;
  
}

.navbar-toggler {
  color: #28282e;
}

.navbar-custom .navbar-nav .nav-item.active .nav-link {
  color: #673ab7;
}

.navbar-custom .navbar-nav .nav-item .nav-link {
  color: rgba(40, 40, 46, 0.8);
  margin: 0 auto;
}

.navbar-custom .navbar-nav .nav-item .nav-link:hover {
  color: #673ab7;
  opacity: 0.8;
}

.navbar-nav .nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-toggler[aria-expanded="true"] > .mdi-menu:before {
    content: "\F1398";
}

.navbar-toggler[aria-expanded="true"] + .navbar-collapse #mySidenav {

}

.navbar-toggler[aria-expanded="true"] + .navbar-collapse .navbar-nav {
  
}

.navbar-collapse {
  
  
}

.navbar-nav {
  
}

.white-space {
  white-space: pre;
}

.fa-instagram {
  color: #d82b7d;
}

.fa-facebook {
  color: #1876f2;
}

.fa-twitter {
  color: #1da1f2;
}

.iconMenu--hamburger {
    position: relative;
    width: 30px;
    height: 16px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.iconMenu--hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #3e1e8c;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.iconMenu--hamburger span:nth-child(1) {
    top: 0;
}

.iconMenu--hamburger span:nth-child(3) {
    bottom: 0;
    right: 0;
    left: auto;
    width: 80%;
}

.iconMenu--hamburger span:nth-child(2) {
    top: 50%;
    width: 60%;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    right: 0;
    left: auto;
}

[aria-expanded="true"] .iconMenu--hamburger span:nth-child(1) {
    top: 7px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    width: 20px;
    left: 12px;
}

[aria-expanded="true"] .iconMenu--hamburger span:nth-child(2) {
    opacity: 0;
    width: 100%;
}

[aria-expanded="true"] .iconMenu--hamburger span:nth-child(3) {
    top: 7px;
    width: 20px;
    transform: rotate(-135deg);
    left: 12px;
}

.btn--action {
  transition: all .3s ease 0s; 
  box-shadow: 0 0px #673ab7;
}

.btn--action:active {
  box-shadow: 0 0px #673ab7;
  transform: translateY(5px);
}

@media (min-width: 576px) {

  .bg-home {
    padding: 200px 0px 120px 0px;
  }

  .navbar-custom {
    background-color: #ffffff;
  }

}


@media (min-width: 768px) {

  .bg-home {
    padding: 180px 0px 50px 0px;
  }

  .navbar-custom {
    background-color: #ffffff;
  }

  .navbar-custom.sticky .logo .logo-light  {
    display: none;
  }

  .navbar-custom.sticky .logo .logo-dark {
    display: inline-block;
  }

  .navbar-custom .navbar-nav .nav-item .nav-link {
    margin: 0 auto;
    padding: 6px 0;
  }

}

@media (min-width: 992px) {
  .bg-home {
    padding: 250px 0px 180px 0px;
  }

  .navbar-nav {
    margin-bottom: 0;
  }

  .navbar-custom.sticky .logo .logo-light  {
    display: inline-block;
  }

  .navbar-custom.sticky .logo .logo-dark {
    display: none;
  }

  .navbar-collapse {
    display: flex;
    flex-direction: row;
  }

  .navbar-custom {
    background-color: transparent;
  }

  .navbar-toggler {
    color: #28282e;
  }

  .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .navbar-custom .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 16px;
    padding: 6px 10px;
  }

  .navbar-custom .navbar-nav .nav-item .nav-link:hover, 
  .navbar-custom .navbar-nav .nav-item .nav-link:active {
    color: #ffffff;
    opacity: 1;
  }

  .navbar-custom .navbar-nav .nav-item.active .nav-link {
    color: #ffffff;
  }
}


@media (min-width: 1200px) {
  .bg-home {
    padding: 200px 0px 150px 0px;
  }
}

[class*=hover-] {
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.hover-scale-110:hover,
.scale-110{
  -webkit-transform:scale(1.1)!important;
  -ms-transform:scale(1.1)!important;
  transform:scale(1.1)!important
}

.hover-translate-y-n10:hover,
.translate-y-n10{
  -webkit-transform:translateY(-10px)!important;
  -ms-transform:translateY(-10px)!important;
  transform:translateY(-10px)!important
}

.bg-gradient-primary {
    background: -o-linear-gradient(40deg,#6e00ff 0,#b0f 100%)!important;
    background: linear-gradient(50deg,#6e00ff,#b0f)!important;
}

.zindex-100 {
    z-index: 0;
}
.bg-size--contain {
    background-size: contain;
}
.bg-absolute-cover {
    background-repeat: no-repeat;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.features-img figure {
  margin: 0;
}
