body {
  font-family: "Mulish", sans-serif;
  color: #444444;
  background-color: #270903;
}

a {
  color: #3498db;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
}

h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #270903;
}

h2 {
  color: #270903;
  margin-bottom: 30px;
  font-size: 24px;
}

h3 {
  color: #270903;
  margin-bottom: 50px;
  font-size: 16px;
}

h1,
h2 {
  font-family: "Merriweather", serif;
}

h3,
h4 {
  font-family: "Mulish", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #3498db;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #57aae1;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 0;
  background: #f3f2e2;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 0;
  background: #f3f2e2;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 90px;
}

@media (max-width: 768px) {
  #header {
    background: #f3f2e2;
    max-height: 90px;
  }
  #header .logo img {
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #270903;
  padding: 8px 0 12px 25px;
  transition: 0.3s;
  font-size: 16px;
  font-family: "Mulish", sans-serif;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: #3498db;
  text-decoration: none;
}

.nav-menu .get-started a {
  background: #3498db;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 30px;
  padding: 10px 25px;
}

.nav-menu .get-started a:hover {
  background: #57aae1;
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 25px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  border-radius: 5px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #222222;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
  color: #3498db;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #222222;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #3498db;
  text-decoration: none;
}

.mobile-nav .get-started {
  text-align: center;
  margin-top: 10px;
}

.mobile-nav .get-started a {
  background: #3498db;
  color: #fff;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 30px;
  display: inline-block;
}

.mobile-nav .get-started a:hover {
  background: #57aae1;
  color: #fff;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  margin-top: 70px;
  background: url("../svg/hero.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: all;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  color: #270903;
}

#hero h2 {
  color: #270903;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero h3 {
  color: #270903;
  margin-bottom: 50px;
  font-size: 16px;
}

#hero .btn-get-started {
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #3498db;
  border: 2px solid #3498db;
}

#hero .btn-get-started:hover {
  background: #3498db;
  color: #fff;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    height: 100vh;
  }
  #hero .hero-img {
    text-align: center;
  }
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    margin-top: 70px;
    text-align: center;
  }
  #hero .hero-img {
  }
}

#hero::after {
  height: 10vh;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  #hero {
    margin-top: 20px;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img {
  }
}

@media (max-width: 575px) {
  #hero {
    height: 90vh;
  }

  #hero .hero-img {
    margin-top: 0;
    margin-left: 30px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  #hero h3 {
    font-size: 14px;
  }

  .pt-5,
  .py-5 {
  }
}

@media (max-width: 400px) {
  #hero {
    height: 110vh;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# whatIsEnstasy Section
--------------------------------------------------------------*/
#whatIsEnstasy {
  width: 100%;
  height: 70vh;
  padding-top: unset;
  margin-top: 0px;
  background: #270903;
  background-size: cover;
  background-repeat: no-repeat;
}

#whatIsEnstasy h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  color: #f3f2e2;
}

#whatIsEnstasy h2 {
  color: #f3f2e2;
  margin-bottom: 30px;
  font-size: 24px;
}

#whatIsEnstasy h3 {
  color: #f3f2e2;
  margin-bottom: 50px;
  font-size: 16px;
}

#whatIsEnstasy h1,
#whatIsEnstasy h2,
#whatIsEnstasy h3 {
  text-align: right;
}

#whatIsEnstasy .btn-get-started:hover {
  background: #3498db;
  color: #fff;
}

#whatIsEnstasy .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #whatIsEnstasy {
    height: 80vh;
  }
  #whatIsEnstasy .hero-img {
    margin-top: 100px;
    text-align: center;
  }
}

@media (max-width: 991px) {
  #whatIsEnstasy {
    position: relative;
    overflow: hidden;
  }
  #whatIsEnstasy .animated {
    -webkit-animation: none;
    animation: none;
  }
  #whatIsEnstasy .hero-img {
    margin-top: 70px;
    text-align: center;
  }
  #whatIsEnstasy .hero-img {
  }
}

#whatIsEnstasy::after {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  #whatIsEnstasy {
    height: 70vh;

    margin-top: 20px;
  }
  #whatIsEnstasy h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #whatIsEnstasy h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #whatIsEnstasy .hero-img {
  }
}

@media (max-width: 575px) {
  #whatIsEnstasy .hero-img {
    margin-top: 0;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  height: 70vh;
  padding-top: unset;
  margin-top: 0px;
  background: #f5f5ed;
  background-size: cover;
  background-repeat: no-repeat;
}

#intro h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  color: #270903;
}

#intro h2 {
  color: #270903;
  margin-bottom: 0px;
  font-size: 24px;
}

#intro h3 {
  color: #270903;
  margin-bottom: 50px;
  font-size: 16px;
}

#intro h1,
#intro h2,
#intro h3 {
  text-align: right;
}

#intro .btn-get-started:hover {
  background: #3498db;
  color: #fff;
}

#intro .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #intro {
    height: 80vh;
  }
  #intro .hero-img {
    margin-top: 100px;
    text-align: center;
  }
}

@media (max-width: 991px) {
  #intro {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  #intro .animated {
    -webkit-animation: none;
    animation: none;
  }
  #intro .hero-img {
    margin-top: 70px;
    text-align: center;
  }
  #intro .hero-img {
  }
}

#intro::after {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  #intro {
    margin-top: 20px;
    padding: 0;
  }
  #intro h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #intro h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #intro .hero-img {
  }
}

@media (max-width: 575px) {
  #intro .hero-img {
    margin-top: 0;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

#testimonials .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #f5f5ed;
  box-shadow: 10px 10px 8px #140401;
  max-height: 180px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

#testimonials .icon-box::before {
  content: "";
  position: absolute;
  background: #996666;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

#testimonials .icon-box:hover::before {
  background: #996666;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

#testimonials .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #996666;
  transition: all 0.3s ease-in-out;
}

#testimonials .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

#testimonials .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}

#testimonials .title a {
  color: #111;
}

#testimonials .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#testimonials .icon-box:hover .title a,
#testimonials .icon-box:hover .description {
  color: #fff;
}

#testimonials .icon-box:hover .icon {
  background: #fff;
}

#testimonials .icon-box:hover .icon i {
  color: #996666;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 150px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(19, 9, 3); /* Fallback color */
  background-color: rgba(19, 9, 3, 0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  /* max-width: 700px;*/
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* The Close Button */
.close {
  position: absolute;
  top: 100px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 1366px) {
  .modal-content {
    width: 60%;
  }

  #img01 {
    border-radius: 45px;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 80%;
  }
  #img01 {
    border-radius: 30px;
  }
}

@media (max-width: 375px) {
  .modal-content {
    width: 90%;
  }
  #img01 {
    border-radius: 20px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #222222;
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #3498db;
  display: inline-block;
}

.section-title h2::before {
  margin: 0 15px 10px 0;
}

.section-title h2::after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin: 15px 0 0 0;
}

/*--------------------------------------------------------------
# processes
--------------------------------------------------------------*/

.processes {
  width: 100%;
  height: 90vh;
  margin-top: 0px;
  background: url("../svg/whatDoWeDo.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.processes .processes-wrap {
  padding: 30px 45px;
  padding-left: 70px;
  box-shadow: inset 10px 10px 25px #d0d0c9, inset -15px -15px 25px #ffffff;
  border-radius: 60px;
}

.processes .processes-item {
  box-sizing: content-box;
  padding: 0px 30px 0px 60px;
  margin: 30px 15px;
  height: 200px;
  box-shadow: 15px 15px 30px #d0d0c9, -15px -15px 30px #ffffff;
  position: relative;
  background: #f5f5ed;
  border-radius: 60px;
}

.processes .processes-item .title {
  font-size: 3rem;
  line-height: 3rem;
  padding-bottom: 30px;
}
.processes .processes-item .content {
  font-size: 1rem;
  line-height: 1.5rem;
}

.processes .owl-nav,
.processes .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.processes .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.processes .owl-dot.active {
  background-color: #3498db !important;
}

@media (max-width: 767px) {
  .processes .processes-wrap {
    padding-left: 0;
  }
  .processes .processes-item {
    padding: 30px;
    margin: 10px;
    height: 250px;
  }
}

@media (max-width: 575px) {
  .processes {
    height: 100vh;
    padding: 0;
  }

  .processes .processes-item {
    margin-left: 50px;
  }

  .processes .processes-item .title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .processes .processes-item .content {
    font-size: 1rem;
    line-height: 1rem;
  }
}

@media (max-width: 400px) {
  .processes {
    height: 120vh;
    padding: 0;
  }
  .processes .processes-item {
    padding: 30px;
    margin: 0;
    margin-left: 50px;
    height: 290px;
  }
}

/*--------------------------------------------------------------
# howDoWeDoIt
--------------------------------------------------------------*/
#howDoWeDoIt h1 {
  margin: 0 0 50px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #f3f2e2;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
  padding-top: 0;
}

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 10px 10px 12px #1e0702;
  border-radius: 30px;
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 20px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e1f0fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #3498db !important;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

#testimonials h1 {
  margin: 0 0 50px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: #f3f2e2;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing {
  width: 100%;
  height: 130vh;
  margin-top: 0px;
  background: url("../svg/whatDoWeDo.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.pricing .box {
  padding: 20px;
  background: #f5f5ed;
  box-shadow: 15px 15px 30px #d0d0c9, -10px -10px 40px #e7e7e7;
  text-align: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.pricing h1 {
  margin: 0 0 50px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: #270903;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #222222;
}

.pricing .box h4 {
  font-size: 42px;
  color: #3498db;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #222222;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #3498db;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  border: 2px solid #3498db;
  color: #3498db;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #3498db;
  color: #fff;
}

.pricing .recommended {
  border-color: #3498db;
}

.pricing .recommended .btn-buy {
  background: #3498db;
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #2383c4;
  border-color: #2383c4;
}

@media (max-width: 767px) {
  .pricing {
    height: 120vh;
  }
}

@media (max-width: 575px) {
  .pricing {
    height: 240vh;
  }

  .pricing .box {
    box-shadow: 3px 3px 20px #160401;
  }
}

@media (max-width: 400px) {
  .pricing {
    height: 340vh;
  }
}

/* contact Section*/

.faq {
  padding-top: 0;
}

.faq h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  color: #f3f2e2;
}

.faq h2 {
  color: #f3f2e2;
  margin-bottom: 30px;
  font-size: 24px;
}

.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}

.faq .faq-item i {
  color: #8bc4ea;
  font-size: 24px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 32px;
  font-family: "Merriweather", sans-serif;
  color: #f3f2e2;
}

.faq .faq-item p {
  color: #f3f2e2;
  font-size: 15px;
}

/*--------------------------------------------------------------
# contact Section
--------------------------------------------------------------*/
#contact {
  width: 100%;
  height: 70vh;

  background: #f5f5ed;
  background-size: cover;
  background-repeat: no-repeat;
}

#contact h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #270903;
}

#contact h2 {
  color: #270903;
  margin-bottom: 30px;
  font-size: 24px;
}

#contact h3 {
  color: #270903;
  margin-bottom: 50px;
  font-size: 16px;
}

#contact .btn-get-started {
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #3498db;
  border: 2px solid #3498db;
  margin-top: 20px;
}

#contact .btn-get-started:hover {
  background: #3498db;
  color: #fff;
}

#contact .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #contact {
    height: 100vh;
  }
  #contact .contact-img {
    margin-top: 100px;
    text-align: center;
  }
}

@media (max-width: 991px) {
  #contact {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  #contact .animated {
    -webkit-animation: none;
    animation: none;
  }
  #contact .contact-img {
    margin-top: 70px;
    text-align: center;
  }
  #contact .contact-img {
    width: 60%;
  }
}

#contact::after {
  height: 10vh;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  #contact {
    margin-top: 20px;
    height: 180vh;
  }
  #contact h1 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
  #contact h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #contact .contact-img {
    width: 70%;
    height: 70%;
  }
}

@media (max-width: 575px) {
  #contact .contact-img {
    width: 80%;
    height: 70%;
    margin-top: 0;
  }
  #contact h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  #contact h3 {
    font-size: 14px;
  }

  .pt-5,
  .py-5 {
  }
  #contact {
    margin-top: 20px;
    height: 150vh;
  }
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form input,
.contact .php-email-form textarea,
.contact .php-email-form select {
  background-color: #f5f5ed;
  border: none;
  border-radius: 10px;
  box-shadow: inset 2px 2px 10px #d0d0c9, inset -5px -5px 10px #f7f7f7;
  font-size: 16px;
  color: #270903;
  text-align: center;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .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 .php-email-form button[type="submit"] {
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #3498db;
  border: 2px solid #3498db;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #2383c4;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*Footer*/
#footer {
  width: 100%;
  height: 30vh;
  padding: 35px 0;
  background: url("../svg/footer.svg");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

#footer p {
  margin-left: 60px;
  font-size: 24px;
  color: #f5f5ed;
}

#footer p a {
  font-size: 18px;
  color: #f5f5ed;
}

@media (max-width: 768px) {
  #footer {
    height: 50vh;
    background-position: left;
    background: url("../svg/footeralt.svg");
    background-size: cover;
  }

  #footer img {
    width: 70%;
    height: 70%;
  }
}
