@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Merriweather:ital,wght@0,400;0,700;1,400;1,700&display=swap");
/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

section {
  overflow: hidden;
}

a {
  color: #658CBB;
}
a:hover {
  color: #658CBB;
  text-decoration: underline;
}
a {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Merriweather", serif;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
}

p {
  margin: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

.scroll-top {
  width: 35px;
  height: 35px;
  background-color: #658CBB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  color: #fff;
  border-radius: 7px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
}
.scroll-top img {
  height: 18px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  fill: #FFFFFF;
}
.scroll-top:focus, .scroll-top:hover {
  color: #fff;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(101, 140, 187, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(101, 140, 187, 0.5);
}

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/
.page-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: #F2F2F2;
}

.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.lds-spinner div {
  -webkit-transform-origin: 40px 40px;
          transform-origin: 40px 40px;
  -webkit-animation: lds-spinner 1.2s linear infinite;
          animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #658CBB;
}

.lds-spinner div:nth-child(1) {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  -webkit-transform: rotate(210deg);
          transform: rotate(210deg);
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  -webkit-transform: rotate(240deg);
          transform: rotate(240deg);
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  -webkit-transform: rotate(300deg);
          transform: rotate(300deg);
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  -webkit-transform: rotate(330deg);
          transform: rotate(330deg);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

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

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.bg-blue {
  background: #12baf8;
}

.bg-dark-blue {
  background-color: #272e43;
}

.bg-green {
  background: #93c214;
}

.bg-red {
  background: #f2774c;
}

.light-bg {
  background-color: #f7b3b3;
}

.dark-bg {
  background-color: #333333;
}

.skin-bg {
  background-color: #12baf8;
}

.gray-bg {
  background: #fcfcfc;
}

.pattern-bg {
  background-color: #eee;
}

a, a:hover, a:focus, button:hover, button:focus {
  outline: 0 !important;
  text-decoration: none;
}

blockquote {
  font-style: normal;
  font-weight: 400;
}

blockquote p {
  font-weight: 400;
}

button:focus {
  outline: 0 !important;
}

::-moz-selection {
  background-color: #191b1d;
  color: #fff;
}

::selection {
  background-color: #191b1d;
  color: #fff;
}

.lead {
  font-size: 18px;
  font-weight: 400;
}

strong, b {
  font-weight: 700;
}

.text-primary {
  color: #12baf8;
}

.features-list li {
  margin-bottom: 7px;
}

.features-list i {
  color: #12baf8;
  margin-right: 7px;
}

.border-width {
  width: 60px;
  height: 2px;
  background: #12baf8;
  margin: 10px 0;
}

.overflow-hidden {
  overflow: hidden;
}

.full-wid {
  width: 100%;
}

.no-padding {
  padding: 0px;
}

.no-margin {
  margin: 0px;
}

/***spaces**/
.space-10 {
  width: 100%;
  height: 10px;
}

.space-20 {
  width: 100%;
  height: 20px;
}

.space-30 {
  width: 100%;
  height: 30px;
}

.space-40 {
  width: 100%;
  height: 40px;
}

.space-50 {
  width: 100%;
  height: 50px;
}

.space-60 {
  width: 100%;
  height: 60px;
}

.space-70 {
  width: 100%;
  height: 70px;
}

.space-80 {
  width: 100%;
  height: 80px;
}

.space-90 {
  width: 100%;
  height: 90px;
}

.space-100 {
  width: 100%;
  height: 100px;
}

/**margins**/
.margin-b-10 {
  margin-bottom: 10px;
}

.margin-b-20 {
  margin-bottom: 20px;
}

.margin-b-30 {
  margin-bottom: 30px;
}

.margin-b-40 {
  margin-bottom: 40px;
}

.margin-b-50 {
  margin-bottom: 50px;
}

.skin-bg {
  background-color: #12baf8;
}

.img-center {
  display: block;
  margin: 0 auto;
}

/**********back to top*************/
.scrollToTop {
  text-align: center;
  font-size: 30px;
  background: transparent;
  font-weight: bold;
  color: #12baf8;
  text-decoration: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999999;
  display: none;
  opacity: 0.5;
  line-height: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.scrollToTop:hover {
  text-decoration: none;
  opacity: 1;
  color: #12baf8;
}

/**preloader**/
div#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../images/loader.gif") no-repeat center center;
}

.center-img {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.full-img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .vertical-align-child {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.absolute_full {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.display-table {
  display: table;
  width: 100%;
  height: 100%;
  position: relative;
}

.vertical-middle {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

/**section title**/
.center-title h2 {
  color: #000;
  text-transform: capitalize;
  letter-spacing: -1px;
}

.center-title .lead {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
}

.left-title h3 {
  font-weight: 700;
  color: #000;
  letter-spacing: -1px;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 15px;
}

.left-title h3:after {
  position: absolute;
  width: 90px;
  height: 3px;
  background: #f06b6b;
  display: block;
  bottom: 0;
  left: 0;
  content: "";
}

.bg-section .left-title h3 {
  color: #fff;
}

.bg-section .left-title h3:after {
  background-color: #fff;
  opacity: 0.7;
}

.bg-section h2 {
  color: #fff;
}

.bg-section p {
  color: #fff;
  opacity: 0.8;
}

/*
Buttons style
*/
.btn {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 700;
  border-radius: 2px;
  border: 0px;
}

.btn i {
  margin-left: 8px;
}

.btn.btn-radius {
  border-radius: 30px;
}

.btn-md {
  padding: 12px 25px;
}

.btn-lg {
  padding: 16px 30px;
  font-size: 14px;
}

.btn-primary {
  background-color: #d9980b;
  color: #fff;
}

.btn-primary:hover {
  color: #fff;
  opacity: 0.9;
  background-color: #12baf8;
}

.btn-dark {
  background-color: #393f4d;
  color: #fff;
}

.btn-dark:hover {
  color: #fff;
  opacity: 0.9;
}

.btn-default {
  background: #f5f5f5;
}

.btn-white {
  background-color: #fff;
  color: #393f4d;
}

.btn-white:hover {
  color: #393f4d;
  opacity: 0.9;
}

a.video-link {
  text-transform: capitalize;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

a.video-link i {
  display: inline-block;
  font-size: 24px;
  padding-left: 3px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a.video-link:hover i {
  background-color: rgba(255, 255, 255, 0.2);
}

.video-icon {
  display: block;
  width: 100px;
  height: 100px;
  background: #12baf8;
  color: #fff;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto;
}

.video-icon i {
  color: #FFF;
  font-size: 65px;
  line-height: 100px;
  margin-left: 10px;
}

.video-icon:hover, .video-icon:focus {
  color: #fff;
  opacity: 0.8;
}

.video-icon:hover i, .video-icon:focus i {
  opacity: 1;
}

span.dropdown-toggle {
  display: block;
  padding: 15px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 21px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.dropdown-menu {
  border-radius: 0px;
  border: 0px;
  padding: 10px;
}

.dropdown-menu > li > a {
  padding: 9px 20px;
  text-transform: capitalize;
}

/*
Intro setions style
*/
.header-full-screen {
  width: 100%;
  height: 100%;
  position: relative;
}

.header-full-screen h1 {
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 700;
}

.header-full-screen p {
  color: #fff;
  opacity: 0.9;
}

.header-full-screen a.video-link {
  color: #fff;
}

.buttons a {
  margin: 5px;
}

.background-1 {
  background: url("../images/cta/bg2.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  background-position: 0 0;
}

.hero-padded {
  padding-top: 200px;
  padding-bottom: 150px;
  position: relative;
}

.hero-padded h1 {
  font-weight: 300;
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 20px;
}

.hero-padded h1, .hero-padded p, .hero-padded h5 {
  color: #fff;
}

.hero-padded p {
  font-weight: 400;
}

.hero-padded .mentos-newsletter {
  max-width: 450px;
  margin: 25px auto;
  display: block;
}

.hero-padded .mentos-newsletter .form-control {
  border-color: transparent;
}

.hero-padded .mentos-newsletter .form-control.error {
  border-color: #f95858;
  color: #f95858;
}

.hero-padded .mentos-newsletter .form-control.success {
  border-color: #9fcf0e;
  color: #9fcf0e;
}

.background-2 {
  background: url("../images/bg3.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  background-position: 0 0;
}

.background-3 {
  background: url("../images/bg4.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  background-position: 0 0;
}

.background-4 {
  background-image: url("../images/pattern.png");
  background-repeat: repeat;
  background-color: #333;
  background-attachment: fixed;
  background-position: 0 0;
}

.hero-contact {
  padding: 150px 0 60px;
}
@media only screen and (max-width: 767px) {
  .hero-contact {
    padding: 135px 0 70px;
  }
}

.hero-contact h1, .hero-contact p {
  color: #fff;
}

.hero-contact h1 {
  font-weight: 400;
  color: #fff;
}

.hero-contact .buttons {
  margin-top: 20px;
}

.hero-contact .buttons a {
  margin: 10px 0;
}

.hero-contact .buttons .video-link, .hero-contact .buttons .btn-default {
  margin-left: 20px;
}

.hero-video {
  width: 100%;
  height: 100%;
  position: relative;
}

/*
Call to actions
*/
.cta-1 {
  padding: 40px 0;
}

.cta-1 h3 {
  color: #fff;
}

.cta-1 p {
  color: #fff;
  opacity: 0.7;
}

.video-cta {
  background: url("../images/bg1.jpg") no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.video-cta h2 {
  color: #fff;
}

.video-cta p {
  color: #fff;
  opacity: 0.8;
}

/*
Pricing tables
*/
.pricing-row {
  margin: 0;
  padding: 20px;
  background: #fcfcfc;
}

.price-box {
  padding: 40px 30px;
  text-align: center;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.price-box h4 {
  font-weight: 900;
}

.price-box i.price-icon {
  display: block;
  margin: 0 auto;
  font-size: 80px;
  color: #000;
  opacity: 0.1;
}

.price-box .features-list {
  text-align: left;
  text-transform: capitalize;
  padding-bottom: 30px;
}

.price-box .features-list li {
  margin: 0;
  padding: 7px 0;
  border-bottom: 1px dashed #eee;
}

.price-box .features-list .ion-checkmark {
  color: #2cdd9d;
}

.price-box .features-list .ion-close {
  color: #f2774c;
}

.price-box .price {
  font-size: 70px;
  line-height: 70px;
  font-weight: 900;
  margin: 20px 0;
  color: #12baf8;
}

.price-box .price sup {
  font-size: 13px;
}

.price-box.colored {
  background-color: #12baf8;
  position: relative;
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}

.price-box.colored .price {
  color: #fff;
}

.price-box.colored h4 {
  color: #fff;
}

.price-box.colored i {
  color: #fff;
  opacity: 0.5;
}

.price-box.colored .features-list li {
  color: #fff;
  opacity: 0.9;
}

.price-box.colored .features-list .ion-checkmark {
  color: #fff;
  opacity: 1;
}

.price-box.colored .features-list .ion-close {
  color: #fff;
  opacity: 0.5;
}

.section-2 {
  background: #f09797;
}

/*
Testimonials
*/
.testi-box {
  padding: 15px;
  background-color: #fcfcfc;
  margin-bottom: 20px;
  border-radius: 3px;
}

.testi-box .thumb {
  display: block;
  width: 90px;
  float: left;
  margin-right: 20px;
}

.testi-box .testi-text {
  overflow: hidden;
  padding-left: 10px;
}

.testi-box .rating {
  display: block;
  color: #f9d133;
}

.testi-box h4 {
  color: #000;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0;
}

.testi-box.right .thumb {
  float: right;
  margin-right: 0;
  margin-left: 20px;
}

/*testimonials*/
.testimnials-slider {
  padding: 80px 0;
  position: relative;
  background: url("../images/bg3.jpg") no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: 0 0;
}

.testi-info {
  display: inline-block;
  padding-top: 20px;
}

.testimonial_slider {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
}

.testimonial_slider img {
  margin-right: 20px;
}

.testimonial_slider p {
  color: #fff;
  opacity: 0.9;
  font-size: 23px;
  line-height: 40px;
  font-style: italic;
}

.testimonial_slider .testi-content {
  overflow: hidden;
  min-width: 140px;
  text-align: left;
}

.testimonial_slider .testi-content h4 {
  text-transform: capitalize;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 0px;
  padding-top: 10px;
  color: #fff;
}

.testimonial_slider .testi-content span {
  font-size: 12px;
  color: #eee;
}

.testimonial_slider .flex-control-nav {
  left: 0;
  bottom: -60px;
}

.testimonial_slider .flex-control-paging li a {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  padding: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 2px solid #12baf8;
}

.testimonial_slider .flex-control-paging li a:hover, .testimonial_slider .flex-control-paging li a.flex-active {
  background-color: #12baf8;
}

/*
Image overlay style
*/
.folio-box {
  display: block;
  overflow: hidden;
  position: relative;
}

.folio-box img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.folio-box .folio-overlay {
  width: 100%;
  height: auto;
  position: absolute;
  padding: 20px;
  text-align: right;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.folio-box .folio-overlay h4 {
  color: #fff;
  margin-bottom: 0px;
  text-transform: capitalize;
}

.folio-box .folio-overlay span {
  color: #eee;
  font-style: italic;
}

.folio-box:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.8;
}

/*
Collapse css
*/
.panel-group .panel {
  border-radius: 0px;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  border: 0px;
}

.panel-heading {
  padding: 0;
}

.panel-heading a {
  display: block;
  padding: 10px 15px;
  position: relative;
  color: #12baf8;
  text-transform: capitalize;
}

.panel-heading a:after {
  position: absolute;
  top: 10px;
  right: 15px;
  display: block;
  content: "\f3d0";
  font-family: "Ionicons";
  color: #12baf8;
}

.panel-heading a.collapsed {
  color: #333;
}

.panel-heading a.collapsed:after {
  position: absolute;
  top: 10px;
  right: 15px;
  display: block;
  content: "\f3d8";
  font-family: "Ionicons";
  color: #333;
}

.panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
  border-top: 0px;
}

/*
Team styles
*/
.person-box {
  border-radius: 5px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  text-align: center;
  background: #fff;
}

.person-box img {
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.person-box .person-info {
  padding: 15px;
  width: 80%;
  margin: 0 auto;
  position: relative;
  margin-top: -15px;
  background: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.person-box .person-info h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0px;
  line-height: 20px;
}

.person-box .person-info span {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid #12baf8;
  font-style: italic;
  font-size: 13px;
}

.person-box ul {
  margin-bottom: 0px;
}

.person-box ul li a {
  font-size: 25px;
  color: #ddd;
}

.person-box ul li a:hover {
  color: #12baf8;
}

.person-box:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*
Counter numbers
*/
.social a i {
  color: #fff;
  font-size: 24px;
  opacity: 0.7;
  display: inline-block;
  margin: 2px 10px;
}

.counter-section i {
  color: #fff;
  font-size: 50px;
  opacity: 0.7;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

.counter-section p, .counter-section h1 {
  color: #fff;
}

.counter-section p {
  text-transform: capitalize;
}

/*
Mentos forms style
*/
.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
  height: 50px;
  font-size: 14px;
}

.form-control {
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  min-height: 50px;
  padding-left: 20px;
}

.form-control.error {
  border-color: #f95858;
  color: #f95858;
}

.form-control.success {
  border-color: #9fcf0e;
  color: #9fcf0e;
}

.form-control:focus {
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

.mentos-newsletter .btn-primary {
  border-radius: 0px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.mentos-newsletter .form-control {
  border-radius: 30px;
}

.newsletter-section {
  background-color: #fefefe;
  background-image: url("../images/pattern.png");
  background-repeat: repeat;
}

.mentos-contact .form-control {
  margin-bottom: 15px;
}

.form-bg {
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 5px;
  border-top: 5px solid #00ecec;
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
}

.form-bg .form-control {
  margin-bottom: 15px;
}

.form-bg h5 {
  color: #fff;
}

.book_box {
  background: #b34e44;
  border: 1px solid #d65a51;
  padding: 20px;
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: #fff;
  height: 100%;
}

.book_box h4 {
  color: #f9a96c;
}

.book_box img {
  max-width: 120px;
}

.book_box .btn.btn-default {
  background: #393f4d;
  color: #fff;
}

.book_box .btn.btn-amazon {
  background: #febd69;
  color: #333333;
}

/*
Split sections
*/
.split-section {
  position: relative;
}

.split-section .split-image {
  position: absolute;
  width: 50%;
  height: 100%;
  background-position: 50% 50% !important;
  background-repeat: no-repeat;
  background-size: cover;
}

.split-section .split-image.left-align {
  left: 0;
  top: 0;
}

.split-section .split-image.right-align {
  right: 0;
  top: 0;
}

.split-section .split-content {
  padding: 50px 0px;
}

.split-section .split-content h2 {
  font-weight: 400;
  margin-bottom: 30px;
}

/*
Tabs content
*/
.tabs-nav {
  text-align: center;
  padding: 0;
  border-bottom: 2px solid #eee;
}

.tabs-nav li a {
  display: block;
  border-radius: 3px;
  border: 2px solid transparent;
  padding: 10px 20px;
  text-transform: capitalize;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 700;
  color: #7a7a7a;
  margin-bottom: -2px;
}

.tabs-nav li a:hover {
  color: #12baf8;
  border-bottom-color: #12baf8;
}

.tabs-nav li.active a {
  cursor: default;
  color: #12baf8;
  border-bottom-color: #12baf8;
}

/*
clients section
*/
.clients-section .center-title h2, .clients-section .center-title p {
  color: #fff;
}

.clients-section .center-title p {
  opacity: 0.8;
}

.clients-section img {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.clients-section a:hover img {
  opacity: 1;
}

/*
Icon and step boxes css
*/
.feature-box h4 {
  text-transform: capitalize;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
}

.feature-box i {
  display: block;
  margin-right: 20px;
  width: 60px;
  height: 60px;
  line-height: 55px;
  text-align: center;
  font-size: 30px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background-color: #f5f5f5;
}

.feature-box.colored i {
  color: #fff;
  background-color: #12baf8;
}

.feature-box2 {
  padding-bottom: 20px;
}

.feature-box2 i {
  display: block;
  float: left;
  margin-right: 20px;
  font-size: 40px;
  width: 40px;
  text-align: left;
}

.feature-box2 h4 {
  margin-bottom: 5px;
  text-transform: capitalize;
}

/**colored box**/
.step-box {
  padding: 50px 20px;
}

.step-box h1, .step-box h3, .step-box p {
  color: #fff;
}

.step-box h1 {
  opacity: 0.8;
}

.step-box h1 span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  margin-left: 5px;
  vertical-align: bottom;
  bottom: 7px;
  position: relative;
}

/*
Modals stylesheet
*/
/**video modal**/
.video-modal .modal-header {
  padding: 0px;
  min-height: auto;
  border: 0px;
}

.video-modal .modal-body {
  padding: 0;
}

.video-modal .modal-content {
  border: 0px;
  border-radius: 0px;
  position: relative;
  margin-top: 70px;
}

.video-modal .modal-header .close {
  margin-top: -2px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  top: -20px;
  opacity: 1;
  color: #fff;
}

/*
Footer styles
*/
.footer {
  background: #393f4d;
  color: #fff;
}

.footer h4 {
  margin-bottom: 20px;
  color: #fff;
  font-weight: 500;
}

.footer p, .footer address {
  color: #fff;
  opacity: 0.7;
}

.footer a img {
  display: block;
  margin-bottom: 5px;
}

.footer ul {
  margin: 0px;
}

.footer ul li {
  display: block;
}

.footer ul li a {
  color: #fff;
  opacity: 0.7;
  display: block;
  position: relative;
  padding: 6px 0;
}

.footer ul li a:before {
  content: "\f3d3";
  font-family: "Ionicons";
  display: inline-block;
  padding-right: 8px;
}

.footer ul li a:after {
  content: "";
  border-bottom: 1px solid transparent;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer ul li a:hover {
  color: #12baf8;
  opacity: 1;
}

.footer ul li a:hover:after {
  width: 100%;
  border-bottom-color: #12baf8;
}

/*
Template responsive style. Must be bottom into css file.
*/
@media (min-width: 1320px) {
  .adv {
    position: relative;
    right: -30%;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 26px;
    line-height: 26px;
  }
  .lead {
    font-size: 15px;
  }
  h3 {
    font-size: 18px;
    line-height: 28px;
  }
  h2 {
    font-size: 24px;
    line-height: 30px;
  }
  h4 {
    font-size: 15px;
    line-height: 20px;
  }
  .testimonial_slider p {
    font-size: 16px;
    line-height: 26px;
  }
  .btn-lg {
    padding: 12px 25px;
    font-size: 14px;
  }
  .btn-md {
    padding: 10px 20px;
  }
  .navbar-inverse .navbar-toggle {
    border: 0px;
  }
  .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
    border-color: #101010;
    background-color: #222;
  }
  .hero-padded {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .hero-padded h1 {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 20px;
  }
  .hero-padded .lead {
    font-size: 13px;
  }
  .video-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
  .video-icon i {
    font-size: 50px;
    line-height: 75px;
  }
  .mentos-newsletter .form-control {
    min-height: 42px;
  }
  .cta-1, .cta-1 .text-right {
    text-align: center;
  }
  #benefits img.img-responsive {
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .testi-box .thumb {
    width: 40px;
    margin-right: 10px;
  }
  .navbar-brand {
    font-size: 22px;
    margin-top: -3px;
  }
  .hero-contact {
    background-attachment: scroll !important;
    background-size: cover !important;
    text-align: center;
  }
  .hero-contact .video-link i {
    display: none;
  }
  .hero-contact .space-20 {
    height: 0px;
  }
  .hero-contact .buttons {
    margin-bottom: 20px;
  }
  .hero-contact .buttons .btn-default {
    margin-left: 3px;
  }
}
/***intro box styles**/
.demo-box {
  display: block;
  margin: 0 auto;
}

.demo-box h5 {
  margin-top: 20px;
}

.buttons-elements a {
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# navbar
--------------------------------------------------------------*/
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: transparent;
  background-color: #000000;
}

.navbar {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 12px 0;
}
@media only screen and (max-width: 991px) {
  .navbar {
    padding: 9px 0;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 9px 0;
  }
}
.navbar .navbar-brand {
  padding: 0;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  font-family: "Merriweather", serif;
}
.navbar .navbar-brand span {
  line-height: 1.2;
  font-size: 21px;
  color: #fff;
}
.navbar .navbar-brand img {
  height: 42px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-brand img {
    height: 38px;
  }
}
.navbar .navbar-nav {
  /** Large devices (desktops, 992px and up) **/
}
@media (min-width: 992px) {
  .navbar .navbar-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 30px;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item {
    margin-left: 26px;
  }
}
.navbar .navbar-nav .nav-item a {
  text-decoration: none;
  font-size: 15px;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item a {
    color: #fff;
  }
}
.navbar .navbar-nav .nav-item a:hover, .navbar .navbar-nav .nav-item a.active {
  color: #ff8e65;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
    margin: 4px 0px;
    font-weight: 400;
    padding: 1px 0;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
    padding: 1px 0;
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #191a1a;
    z-index: 9;
    -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 6px 12px 20px 12px;
    border-radius: 0px 0px 10px 10px;
  }
}
.navbar .navbar-toggler {
  padding: 0;
}
.navbar .navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #FFFFFF;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #000000;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0 0.1625rem 0.25rem 0 rgba(101, 140, 187, 0.1);
          box-shadow: 0 0.1625rem 0.25rem 0 rgba(101, 140, 187, 0.1);
}
.sticky .navbar {
  padding: 12px 0;
  padding-top: 12px;
}
@media only screen and (max-width: 991px) {
  .sticky .navbar {
    padding: 9px 0;
    padding-top: 9px;
  }
}
@media (max-width: 767px) {
  .sticky .navbar {
    padding: 9px 0;
  }
}
.sticky .navbar .navbar-toggler .toggler-icon {
  background: #FFFFFF;
}
.sticky .navbar-nav .nav-item a {
  color: #fff;
}

@media only screen and (min-width: 992px) {
  .social {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 991px) {
  .social {
    padding-top: 12px;
  }
}
.social li {
  display: inline-block;
  vertical-align: middle;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .social li {
    margin-left: 26px;
  }
}
.social li a {
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin-right: 12px;
}
.social li a:last-child {
  margin-right: 0;
}
.social li a img {
  height: 23px;
}
.social li a:hover {
  opacity: 0.6;
}

/*--------------------------------------------------------------
# hero-area
--------------------------------------------------------------*/
.hero-area {
  position: relative;
  background-image: url("../images/hero/banner.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .hero-area {
    padding-top: 90px;
    padding-bottom: 30px;
  }
}
.hero-area .hero-text {
  position: relative;
  text-align: center;
}
.hero-area .hero-text h1 {
  color: #FFFFFF;
  font-size: 55px;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .hero-area .hero-text h1 {
    font-size: 45px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-text h1 {
    font-size: 38px;
  }
}
.hero-area .hero-text p {
  font-family: "Merriweather", serif;
  font-size: 17px;
  color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-text p {
    font-size: 16px;
  }
}
.hero-area .hero-text span {
  font-size: 15px;
  display: inline-block;
  color: #d9980b;
}
.hero-area .btn-hero {
  display: inline-block;
  text-decoration: none;
  border: 0;
  background-color: #d9980b;
  color: #FFFFFF;
  border-radius: 50px;
  padding: 12px 26px 10px 26px;
  font-family: "Merriweather", serif;
  font-size: 15px;
  text-transform: uppercase;
  margin-top: 16px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.hero-area .btn-hero:hover {
  background-color: #FFFFFF;
  color: #000000;
}

/*--------------------------------------------------------------
# join
--------------------------------------------------------------*/
.join {
  padding: 50px 0px;
}
@media only screen and (max-width: 991px) {
  .join {
    padding: 40px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .join {
    padding: 30px 0px;
  }
}
.join .join-text h2 {
  font-size: 33px;
  color: #000000;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .join .join-text h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
.join .join-text p:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .join .join-text p:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .join .join-text p {
    font-size: 15px;
  }
}

.btn-main {
  display: inline-block;
  text-decoration: none;
  border: 0;
  background-color: #d9980b;
  color: #FFFFFF;
  border-radius: 50px;
  padding: 9px 30px;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-main:hover {
  background-color: #658CBB;
  color: #FFFFFF;
  text-decoration: none;
}

/*--------------------------------------------------------------
# cta
--------------------------------------------------------------*/
.cta {
  padding: 50px 0px;
}
.cta .sec-t {
  text-align: center;
}
.cta .sec-t h2 {
  font-size: 34px;
  color: #000000;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .cta .sec-t h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.cta .af-text {
  padding-top: 26px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .cta .af-text {
    padding-top: 18px;
  }
}
.cta .af-text p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
@media only screen and (max-width: 767px) {
  .cta .af-text p {
    font-size: 17px;
  }
}
.cta .af-text a {
  display: inline-block;
  font-weight: 500;
  color: #658CBB;
}
.cta .like {
  padding-top: 20px;
}
.cta .like p {
  font-size: 16px;
}

.cta-bg {
  background-image: url("../images/cta/cta-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 0px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .cta-bg {
    padding: 20px 20px;
  }
}

.mem {
  text-align: center;
  padding-top: 26px;
}
.mem .btn-main {
  display: block;
  max-width: 220px;
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
}
.mem .btn-black {
  text-decoration: none;
  border: 0;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 3px;
  padding: 9px 30px;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  display: block;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
.mem .btn-black:hover {
  background-color: #658CBB;
  color: #FFFFFF;
  text-decoration: none;
}

/*--------------------------------------------------------------
# slider-sec
--------------------------------------------------------------*/
.slider-sec {
  padding: 60px 0px;
  background-color: #FFFFFF;
}
.slider-sec .swiper-slide {
  height: auto;
}
.slider-sec .books-single {
  background-color: #FFFFFF;
  border: 1px solid #e7e7e7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 6px;
  height: 100%;
}
.slider-sec .books-single .book-img {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #E3CDC1;
}
@media only screen and (max-width: 767px) {
  .slider-sec .books-single .book-img {
    height: 180px;
  }
}
@media only screen and (max-width: 482px) {
  .slider-sec .books-single .book-img {
    height: 150px;
  }
}
.slider-sec .book-text {
  padding: 15px 15px 15px 15px;
}
.slider-sec .book-text h2 {
  font-size: 16px;
  line-height: 1;
  color: #000000;
  margin-bottom: 10px;
}
.slider-sec .book-text p {
  font-size: 15px;
  line-height: 1.3;
}
.slider-sec .book-text small {
  display: block;
  width: 100%;
  line-height: 1.3;
}
.slider-sec .book-cart {
  padding: 0px 15px 15px 15px;
  margin-top: auto;
}
.slider-sec .btn-cat {
  display: block;
  text-decoration: none;
  border: 0;
  width: 100%;
  padding: 8px 20px;
  background-color: #399B9E;
  color: #FFFFFF;
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  border-radius: 6px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.slider-sec .btn-cat:hover {
  color: #FFFFFF;
  background-color: #658CBB;
}

/*--------------------------------------------------------------
# swiper-btns
--------------------------------------------------------------*/
.swiper-btns {
  text-align: end;
  margin-bottom: 16px;
}
.swiper-btns .btn-cm:not(:last-child) {
  margin-right: 6px;
}
.swiper-btns .btn-cm {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33px;
  height: 33px;
  background-color: #eee;
  border-radius: 50%;
  color: #658CBB;
  border: 1px solid #c3c3c3;
  font-size: 20px;
  outline: none;
}
.swiper-btns .btn-cm.btn-left i {
  position: relative;
  right: 1px;
}
.swiper-btns .btn-cm.btn-right i {
  position: relative;
  left: 1px;
}

/*--------------------------------------------------------------
# main-footer
--------------------------------------------------------------*/
.main-footer {
  padding: 15px 0px;
  background-color: #000000;
}
.main-footer .footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .main-footer .footer-flex {
    display: block;
    text-align: center;
  }
}
.main-footer .legal p {
  font-size: 15px;
  color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .main-footer .legal p {
    font-size: 14px;
  }
}
.main-footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .main-footer .social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 6px;
  }
}
.main-footer .social p {
  font-size: 15px;
  color: #d9980b;
  margin-right: 7px;
}
@media only screen and (max-width: 767px) {
  .main-footer .social p {
    font-size: 14px;
  }
}
.main-footer .social img {
  height: 30px;
}
/*# sourceMappingURL=main.css.map */