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

p {
  line-height: 1.55;
  color: #333;
  font-size: 400;
  font-family: "Abhaya Libre", serif;
}

h1 {
  font-size: 62px;
}

h2 {
  font-size: 30px;
  margin-bottom: 65px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

a {
  transition: 0.5s;
  color: #010d35;
}

a:hover {
  color: #f37335;
}

/* ==================================================
  Elements
  ================================================== */

.btn {
  background-color: #010d35;
  font-family: "Abhaya Libre", serif;
  font-weight: 800;
  color: #fff;
  padding: 15px 45px;
  border-radius: 50px;
}

.btn:hover {
  background-color: #e04f00;
  color: #fff;
}

.btn:focus {
  color: #fff;
}

.btn-ghost {
  border: 3px solid #fff;
  background-color: transparent;
}

.btn-ghost:hover {
  background-color: #fff;
  color: #010d35;
}

.card {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  margin: 0;
  overflow: hidden;
}

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

.scrolltop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #010d35;
  color: #fff;
  text-align: center;
  font-size: 24px;
}

.scrolltop:hover,
.scrolltop:active,
.scrolltop:focus {
  color: #fff !important;
  opacity: 0.75;
}

.astro-btn,
.astro-btn:focus,
.astro-btn:visited {
  border-radius: 4px;
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(#f37335),
      to(#f4aa36)) !important;
  background: -o-linear-gradient(left, #f37335, #f4aa36) !important;
  background: linear-gradient(to right, #f37335, #f4aa36) !important;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px 10px;
}

.astro-btn:hover {
  color: #fff;
  background: linear-gradient(to right, #f4aa36, #f37335) !important;
}

.astro-btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.4s;
}

.astro-btn span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.astro-btn:hover span {
  padding-right: 20px;
}

.astro-btn:hover span:after {
  opacity: 1;
  right: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  background: #010d35;
  height: 70px;
  z-index: 999;
  position: relative;
}

#header #logo {
  margin: 14px 25px 0 0;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 2px 0;
  line-height: 1;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 768px) {
  #header {
    height: 70px;
  }

  #header #logo {
    margin: 10px 0 0 0;
  }

  #header #logo h1 {
    padding: 2px 0;
    font-size: 26px;
  }

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

#header .social-nav {
  margin-top: 15px;
}

#header .social-nav a {
  font-size: 24px;
  margin-left: 15px;
  color: #fff;
}

#header .social-nav a:hover {
  color: rgba(255, 255, 255, 0.75);
}

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

/* Nav Menu Essentials */

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

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu>li {
  float: left;
}

.nav-menu li:hover>ul,
.nav-menu li.sfHover>ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 22px 15px 18px 15px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Abhaya Libre", serif;
  font-weight: 300;
  font-size: 15px;
  outline: none;
}

.nav-menu a:hover,
.nav-menu li:hover>a,
.nav-menu .menu-active>a {
  color: rgba(255, 255, 255, 0.75);
}

.nav-menu ul {
  margin: 4px 0 0 15px;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
}

.nav-menu ul li {
  background: #fff;
  border-top: 1px solid #f4f4f4;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li:hover {
  background: #010d35;
  transition: 0.3s;
}

.nav-menu ul li a {
  color: #333;
  transition: none;
  padding: 10px 15px;
}

.nav-menu ul li a:hover {
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 8px 10px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

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

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
    font-size: 32px;
    z-index: 1000;
  }
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 100px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #010d35;
}

#mobile-nav ul .menu-item-active {
  color: #010d35;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}

/* Mobile Nav body classes */

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

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

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

/* Start Twinkle Stars */
@keyframes move-twink-back {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -10000px 5000px;
  }
}

@-webkit-keyframes move-twink-back {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -10000px 5000px;
  }
}

@-moz-keyframes move-twink-back {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -10000px 5000px;
  }
}

@-ms-keyframes move-twink-back {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -10000px 5000px;
  }
}

.stars,
.twinkling {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.stars {
  background: #000 url(../img/stars.jpg) repeat top center;
  z-index: 0;
}

.twinkling {
  background: transparent url(../img/twinkling.png) repeat top center;
  -moz-animation: move-twink-back 200s linear infinite;
  -ms-animation: move-twink-back 200s linear infinite;
  -o-animation: move-twink-back 200s linear infinite;
  -webkit-animation: move-twink-back 200s linear infinite;
  animation: move-twink-back 200s linear infinite;
}

/* End Twinkle Stars */

/*---------- Slider Css Start -------*/

.ast_slider_wrapper {
  /* float: left; */
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #111111;
  z-index: 1;
  background-image: url(../img/astro-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/* .ast_slider_wrapper.style_2{
	background-image: url(../images/content/slider2.jpg);
} */

.ast_slider_wrapper .ast_img_overlay {
  z-index: -1;
}

.ast_banner_text {
  /* float: left; */
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ast_bannertext_wrapper {
  /* float: left; */
  width: 100%;
}

.ast_bannertext_wrapper h1 {
  /* float: left; */
  width: 100%;
  text-transform: capitalize;
  margin: 50px 0px 0px 0px;
  font-size: 60px;
  color: #ffffff;
  font-weight: 400;
}

.ast_bannertext_wrapper ul {
  /* float: left; */
  width: 100%;
  margin: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.ast_bannertext_wrapper ul li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
  position: relative;
  text-transform: capitalize;
  font-family: "Philosopher", sans-serif;
  font-size: 24px;
}

.ast_bannertext_wrapper ul li:last-child {
  margin-right: 0px;
}

.ast_bannertext_wrapper ul li:after {
  content: "*";
  position: absolute;
  top: 3px;
  right: -20px;
}

.ast_bannertext_wrapper ul li:last-child:after {
  display: none;
}

.ast_bannertext_wrapper p {
  /* float: left; */
  width: 100%;
  margin: 0px;
  text-transform: capitalize;
}

.ast_bannertext_wrapper img {
  display: inline-block;
}

.starfield {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.starfield>* {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-image: -webkit-radial-gradient(2px 2px at 40px 60px,
      #cccccc,
      rgba(0, 0, 0, 0)),
    -webkit-radial-gradient(2px 2px at 20px 50px, #dddddd, rgba(0, 0, 0, 0)),
    -webkit-radial-gradient(2px 2px at 30px 100px, #eeeeee, rgba(0, 0, 0, 0)),
    -webkit-radial-gradient(2px 2px at 40px 60px, #ffffff, rgba(0, 0, 0, 0)),
    -webkit-radial-gradient(2px 2px at 110px 90px, #cccccc, rgba(0, 0, 0, 0)),
    -webkit-radial-gradient(2px 2px at 190px 150px, #dddddd, rgba(0, 0, 0, 0));
  background-image: radial-gradient(2px 2px at 40px 60px,
      #cccccc,
      rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 20px 50px, #dddddd, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 30px 100px, #eeeeee, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 40px 60px, #ffffff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 110px 90px, #cccccc, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 190px 150px, #dddddd, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  -webkit-animation-name: starfieldRotate;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}

.starfield>*:nth-child(1) {
  -webkit-animation-duration: 18s;
}

.starfield>*:nth-child(2) {
  -webkit-animation-duration: 22s;
}

.starfield>*:nth-child(3) {
  -webkit-animation-duration: 36s;
}

.starfield>*:nth-child(4) {
  -webkit-animation-duration: 40s;
}

@-webkit-keyframes starfieldRotate {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

/* code for waves on Banner */

.ast_waves {
  position: absolute;
  width: 800px;
  bottom: -75px;
  left: 0%;
  margin-left: -400px;
}

.ast_waves2 {
  position: absolute;
  width: 100%;
  top: 385px;
  right: 0px;
  margin: 0px auto;
  left: 0px;
}

.ast_waves3 {
  position: absolute;
  width: 900px;
  bottom: 15px;
  right: -400px;
}

.ast_wave {
  width: 700px;
  height: 700px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin-left: 50%;
  left: -350px;
  position: absolute;
  bottom: -350px;
  z-index: -1;
  -webkit-transform: scale(0.1, 0.1);
  -moz-transform: scale(0.1, 0.1);
  -ms-transform: scale(0.1, 0.1);
  -o-transform: scale(0.1, 0.1);
  transform: scale(0.1, 0.1);
  opacity: 0;
  -webkit-animation: pulse 3000ms ease-out infinite;
  -moz-animation: pulse 3000ms ease-out infinite;
  -ms-animation: pulse 3000ms ease-out infinite;
  -o-animation: pulse 3000ms ease-out infinite;
  animation: pulse 3000ms ease-out infinite;
}

.ast_wave:nth-of-type(2) {
  -webkit-animation-delay: 600ms;
  -moz-animation-delay: 600ms;
  -ms-animation-delay: 600ms;
  -o-animation-delay: 600ms;
  animation-delay: 600ms;
}

.ast_wave:nth-of-type(3) {
  -webkit-animation-delay: 1200ms;
  -moz-animation-delay: 1200ms;
  -ms-animation-delay: 1200ms;
  -o-animation-delay: 1200ms;
  animation-delay: 1200ms;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse-text {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes pulse-text {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*---------- Slider Css End  -------*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  /* display: table; */
  /* position: relative; */
  /* background-image: url(../img/astro-bg.jpg); */
  /* background-size: cover; */
  /* padding: 150px 0; */
  /* color: #fff;
  width: 100%;
  height: 100vh; */
}

/* .hero:after {
  content: '';
  z-index: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
} */

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.hero-brand {
  margin-bottom: 75px;
  display: inline-block;
}

.hero-brand:hover {
  opacity: 0.75;
}

.tagline {
  font-family: "Abhaya Libre", serif;
  font-size: 26px;
  margin: 45px 0 75px 0;
  color: #fff;
}

/*--------------------------------------------------------------
# Stats
--------------------------------------------------------------*/

.stats-row {
  margin-top: 65px;
}

.stats-col .circle {
  display: inline-block;
  width: 160px;
  height: 160px;
  font-family: "Abhaya Libre", serif;
  font-weight: 500;
  color: #666;
  border: 6px solid #010d35;
  border-radius: 50%;
  padding: 55px 25px 0 25px;
  position: relative;
}

.stats-col .circle .stats-no {
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  top: -25px;
  right: -15px;
  font-family: "Abhaya Libre", serif;
  font-size: 18px;
  background-color: #e04f00;
  position: absolute;
  border-radius: 50%;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
  padding: 20px 0;
  background-color: #fafafa;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* ==================================================
  Welcome Styling
  ================================================== */

.welcome {
  color: #fff;
  height: 490px;
  overflow: hidden;
  padding-top: 85px;
  background: url("../img/parallax-bg.jpg") center top no-repeat;
}

.welcome h2 {
  text-transform: uppercase;
  margin-bottom: 15px;
}

.welcome p {
  color: #fff;
  margin-bottom: 45px;
}

/* ==================================================
  Features Styling
  ================================================== */
.features-section {
  padding: 3em 0 0;
}

.feature-col {
  display: table;
  padding-bottom: 45px;
}

.feature-col>div>div {
  display: table-cell;
  vertical-align: middle;
}

.feature-col>div>div:last-child {
  padding-left: 20px;
}

.feature-col .feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  background: #010d35;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 70px;
  border-radius: 50%;
  display: inline-block;
}

.feature-col h3 {
  color: #010d35;
}

.feature-col p {
  font-family: "Abhaya Libre", serif;
  font-size: 14px;
  color: #999;
}

/* ==================================================
  Call-to-action Styling
  ================================================== */

.cta {
  background-color: #010d35;
  padding: 25px 0;
}

.cta h2 {
  margin-bottom: 5px;
}

.cta h2,
.cta p {
  color: #fff;
}

.cta p {
  margin-bottom: 0;
  opacity: 0.75;
}

.cta .btn-ghost {
  position: relative;
  top: 13px;
}

/* ==================================================
  Portfolio Styling
  ================================================== */

.portfolio {
  background-color: #edf6ff;
  padding-bottom: 0;
}

.portfolio h2 {
  color: #010d35;
  margin-bottom: 25px;
}

.portfolio-grid {
  margin-top: 65px;
}

.portfolio-grid .row {
  margin: 0;
}

.portfolio-grid .row>div {
  padding: 0;
}

.portfolio-grid .row>div .card img {
  width: 100%;
}

.portfolio-grid .row>div .card .portfolio-over {
  position: absolute;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.portfolio-grid .row>div .card .portfolio-over>div {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.portfolio-grid .row>div .card .portfolio-over .card-title {
  color: #fff;
  font-size: 30px;
}

.portfolio-grid .row>div .card .portfolio-over .card-text {
  color: #fff;
  opacity: 0.75;
  padding: 0 45px;
}

.portfolio-grid .row>div .card:hover .portfolio-over {
  opacity: 1;
  visibility: visible;
}

/* ==================================================
  Team Styling
  ================================================== */

.team h2 {
  color: #010d35;
}

.team .col-sm-3 {
  padding: 0;
}

.team .card>a {
  display: block;
}

.team .card img {
  width: 100%;
}

.team .card h4 {
  color: #fff;
  text-transform: uppercase;
}

.team .card p {
  font-size: 11px;
  color: #fff;
  opacity: 0.75;
  margin: 0;
  padding: 0 35px;
}

.team .card .social-nav {
  margin-bottom: 45px;
}

.team .card .social-nav a {
  color: #fff;
  font-size: 16px;
  margin: 0 4px;
}

.team .card .social-nav a:hover {
  opacity: 0.75;
}

.team .card:hover .team-over {
  opacity: 1;
  visibility: visible;
}

.team .card:hover .card-title-wrap {
  background-color: #010d35;
}

.team .card:hover .card-title-wrap .card-title,
.team .card:hover .card-title-wrap .card-text {
  color: #fff;
}

.team .team-over {
  padding-top: 45px;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.team .card-title-wrap {
  padding: 15px 25px;
  position: relative;
  z-index: 9;
  background-color: #fff;
}

.team .card-title-wrap .card-title,
.team .card-title-wrap .card-text {
  font-family: "Abhaya Libre", serif;
  display: block;
  margin: 0;
}

.team .card-title-wrap .card-title {
  font-size: 24px;
  color: #333;
}

.team .card-title-wrap .card-text {
  font-size: 18px;
  color: #999;
}

/* Start Lagna Palapla */

.horoscope-procastings {
  padding: 3em 0 4em;
  background-image: url("../img/lagna-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.as_sign_box {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  box-shadow: -2px 0px 28px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(231, 231, 231);
  margin-top: 30px;
}

.as_sign_box .as_sign {
  background-color: #ffffff;
  box-shadow: -2px 0px 15px 0px rgba(0, 0, 0, 0.06);
  height: 56px;
  width: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 14px;
  border-radius: 100%;
}

.as_sign_box .as_sign {
  width: 32px;
  height: 32px;
}

.as_sign_box:hover .as_sign img {
  transform: rotate(360deg);
}

.as_sign_box h5 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 2px;
  transition: none;
}

.as_sign_box p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  transition: none;
}

.as_sign_box:hover h5,
.as_sign_box:hover p {
  color: #ffffff;
}

.as_sign_box:hover {
  background-image: -moz-linear-gradient(0deg,
      rgb(244, 170, 54) 0%,
      rgb(243, 115, 53) 100%);
  background-image: -webkit-linear-gradient(0deg,
      rgb(244, 170, 54) 0%,
      rgb(243, 115, 53) 100%);
  background-image: -ms-linear-gradient(0deg,
      rgb(244, 170, 54) 0%,
      rgb(243, 115, 53) 100%);
  border-color: rgb(231, 231, 231);
}

/* End Lagna Palapla */

/* ==================================================
  Contact Section
  ================================================== */

#contact-us {
  background: #f7f7f7;
  padding: 3em 0;
}

#contact-us h2 {
  font-family: "Abhaya Libre", serif;
  color: #010d35;
}

#contact-us .info i {
  font-size: 32px;
  color: #010d35;
  float: left;
}

#contact-us .info p {
  padding: 0 0 10px 50px;
  line-height: 24px;
}

#contact-us .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#contact-us .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact-us .php-email-form .error-message br+br {
  margin-top: 25px;
}

#contact-us .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact-us .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact-us .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact-us .php-email-form input,
#contact-us .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
}

#contact-us .php-email-form input::focus,
#contact-us .php-email-form textarea::focus {
  background-color: #010d35;
}

#contact-us .php-email-form button[type="submit"] {
  background: #010d35;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

#contact-us .php-email-form button[type="submit"]:hover {
  background: #f37335;
}

.amenities-list img {
  padding-right: 7px;
  width: 50px;
  height: auto;
}
.amenities-list li {
  margin-bottom: 20px;
}

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

  100% {
    transform: rotate(360deg);
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Horoscope booking
--------------------------------------------------------------*/
.booking-section {
  margin: 3rem 0;
}
.cc-img {
  max-height: 250px;
  display: block;
  margin: 0 auto;
}
.tour-form {
  max-width: 100%;
  padding: 10px 20px;
  background: #f4f7f8;
  margin: 10px auto;
  padding: 20px;
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.tour-form fieldset {
  border: none;
}

.tour-form legend {
  font-size: 1.4em;
  margin-bottom: 20px;
}

.tour-form label {
  display: block;
  margin-bottom: 8px;
}

.tour-form input[type="text"],
.tour-form input[type="date"],
.tour-form input[type="datetime"],
.tour-form input[type="email"],
.tour-form input[type="number"],
.tour-form input[type="search"],
.tour-form input[type="time"],
.tour-form input[type="url"],
.tour-form textarea,
.tour-form select {
  font-family: Georgia, "Times New Roman", Times, serif;
  background: rgba(255, 255, 255, .1);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  margin: 0;
  outline: 0;
  padding: 7px;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  background-color: #e8eeef;
  color: #8a97a0;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
  margin-bottom: 30px;

}

.tour-form input[type="text"]:focus,
.tour-form input[type="date"]:focus,
.tour-form input[type="datetime"]:focus,
.tour-form input[type="email"]:focus,
.tour-form input[type="number"]:focus,
.tour-form input[type="search"]:focus,
.tour-form input[type="time"]:focus,
.tour-form input[type="url"]:focus,
.tour-form textarea:focus,
.tour-form select:focus {
  background: #d2d9dd;
}

.tour-form input.valid,
.tour-form textarea.valid,
.tour-form select.valid {
  color: #444;
}

.tour-form select {
  -webkit-appearance: menulist-button;
  height: 35px;
}

.tour-form .number {
  background: #f37335;
  color: #fff;
  height: 30px;
  width: 30px;
  display: inline-block;
  font-size: 0.8em;
  margin-right: 4px;
  line-height: 30px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  border-radius: 15px 0px 15px 0px;
}

.tour-form .submit {
  float: none;
}

.tour-form-mt-50 {
  margin-top: 50px;
}

.form-result table {
  background: #fff;
}

label.error {
  font-size: 11px;
  position: absolute;
  top: -5px;
  right: 15px;
  z-index: 9;
  height: 25px;
  line-height: 25px;
  background-color: #e34f4f;
  color: #fff;
  font-weight: normal;
  padding: 0 6px;
}

label.error:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0 6px 6px 0;
  border-color: transparent #e34f4f;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -6px;
  left: 20%;
}

#goto_payment_form {
  padding: 100px 0;
}

#wait-for-payment {
  color: #ff0000;
}

.booking_form legend h3 {
  color: #e04f00;
}

.booking_form #sendmessage {
  color: #82AE20;
  border: 1px solid #82AE20;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.booking_form #beforesend {
  color: #3498DB;
  border: 1px solid #3498DB;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.booking_form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.navigation button:disabled {
  display: none;
}

.booking_form .navigation button.hide {
  display: none;
}

.booking_form .navigation button.show {
  display: inline-block;
}

.booking_form #sendmessage.show,
.booking_form #beforesend.show,
.booking_form #errormessage.show,
.booking_form .show {
  display: block;
}

.hide-booking-form {
  display: none;
}

.show-booking-form {
  display: block;
}

#tour-name {
  color: #f37335;
}

.tour-name-inner {
  font-weight: bold;
  text-transform: none;
}

.show-me {
  display: block;
}

.hide-me {
  display: none;
}

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


.site-footer {
  background-color: #111;
  padding: 0;
}

.site-footer h2,
.site-footer p {
  color: #fff;
}

.site-footer p {
  opacity: 0.75;
  line-height: 2.0925;
}

.site-footer h2,
.site-footer .btn {
  margin-bottom: 25px;
}

.site-footer .social-nav a {
  color: #fff;
  opacity: 0.25;
}

.site-footer .social-nav a:hover {
  opacity: 1;
}

.site-footer .bottom {
  background-color: #000;
  padding: 20px 0;
}

.site-footer .bottom .list-inline,
.site-footer .bottom p {
  margin: 0;
}

.site-footer .bottom .list-inline {
  position: relative;
  top: 5px;
}

.site-footer .bottom .list-inline a {
  color: #fff;
  font-family: "Abhaya Libre", serif;
  margin-right: 15px;
}

.site-footer .bottom .list-inline a:hover {
  color: #010d35;
}

.site-footer .credits {
  color: #ddd;
}

.site-footer .credits a {
  color: #010d35;
}

.site-footer .footer-img {
  width: auto;
  max-height: 30px;
}

/* ==================================================
  Responsive Styling
  ================================================== */

@media (max-width: 61.9em) {

  section,
  .block,
  .cta {
    padding: 35px 0;
  }

  p,
  .block p {
    margin: 0;
  }

  .hero-brand {
    margin-bottom: 35px;
  }

  .tagline {
    margin: 35px 0;
  }

  h1 {
    font-size: 32px;
    margin: 0;
  }

  h2,
  .tagline {
    font-size: 24px;
  }

  h2 {
    margin-bottom: 25px;
  }

  h3 {
    font-size: 14px;
  }

  .hero {
    padding: 75px 0;
  }

  .stats-col {
    margin-bottom: 25px;
  }

  .block {
    height: auto;
  }

  .feature-col {
    padding-bottom: 30px;
  }

  .portfolio-grid .card h3.card-title {
    font-size: 18px !important;
  }

  .portfolio-grid .card .card-text {
    font-size: 13px;
  }

  .team .team-over {
    padding-top: 20px;
  }

  .team .card .social-nav {
    margin-bottom: 15px;
    padding: 0;
  }

  .site-footer .social-nav {
    margin-bottom: 35px;
  }

  .site-footer .list-inline {
    text-align: center;
    padding-bottom: 15px;
  }

  .site-footer .list-inline li {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .block {
    padding-left: 30px;
    padding-right: 30px;
  }
}


/*
*** by Dushan
*/

/* customer css start */
.testimonial-section {
  padding: 3em 0 6em;
}
.as_customer_img {
  width: 100% !important;
  cursor: pointer;
}

.as_customer_img img {
  display: block;
  margin: 0 auto 20px;
  width: 75px;
  height: auto;
  border-radius: 100%;
  border: 5px solid rgb(255, 255, 255);
  box-shadow: -2px 0px 13px 0px rgba(0, 0, 0, 0.13);
}

.as_customer_nav .slick-list {
  padding: 30px !important;
}

.as_customer_nav {
  position: relative;
}

.as_customer_box {
  position: relative;
  z-index: 1;
  border-radius: 30px;
  background-image: -moz-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
  color: #ffffff;
}

@-webkit-keyframes spin {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(360deg);}   
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

.as_customer_box:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 235px;
  height: 235px;
  background-image: url(../img/rotate_circle.png);
  z-index: -1;
  animation: spin 9s infinite linear;
  -webkit-animation: spin 9s infinite linear;
  -moz-animation: spin 9s infinite linear;
}

.as_customer_box .as_customer_img>img {
  border-radius: 100%;
}

.as_customer_box .as_customer_img {
  position: relative;
  display: inline-flex;
  margin: -45px 0 34px;
}

.as_customer_box .as_customer_img span {
  position: absolute;
  width: 38px;
  height: 38px;
  background-color: #f37335;
  border-radius: 100%;
  line-height: 32px;
  right: -10px;
  bottom: 0px
}

.as_customer_box .as_customer_img span img {
  display: inline-block;
}

.as_customer_box p {
  font-size: 14px;
  line-height: 24px;
}

.as_customer_box h3 {
  font-size: 20px;
  margin: 25px 0 0;
}

.as_customer_slider .slick-dots {
  position: absolute;
  top: 50%;
  left: -34px;
  margin: 0;
  transform: translateY(-50%);
}

.as_customer_slider .slick-dots li {
  display: flex;
  margin: 10px auto;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 1px solid #e7e7e7;
}

.as_customer_slider .slick-dots li.slick-active {
  background-image: -moz-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(244, 170, 54) 0%, rgb(243, 115, 53) 100%);
  border: 2px solid #fff;
  width: 14px;
  height: 14px;
  box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.18);
}

.as_customer_for:before {
  content: '';
  position: absolute;
  top: 0;
  left: -27px;
  bottom: 0;
  border-left: 1px solid #e7e7e7;
}

.as_customer_img.slick-slide.slick-current {
  transform: scale(1.2);
}

.as_customer_img.slick-slide.slick-current img {
  border-color: #f37335;
}

.blockquote {
  position: relative;
  padding: 54px 50px;
}
.blockquote:before {
  position: absolute;
  font-family: 'FontAwesome';
  top: -50px;
  left: 20px;
  content:"\f10d";
  font-size: 200px;
  color: rgba(0,0,0,0.1);
}
.blockquote::after {
  content: "";
  top: 20px;
  left: 10%;
  margin-left: -100px;
  position: absolute;
  height: 3px;
  width: 200px;
}
/* customer css end */

.modal-content {
  font-family: "Abhaya Libre", serif;
}

/* Media Queries */
@media (max-width: 767px) {
  .as_customer_for:before {
    border: none;
  }
}