
body {
  font-family: 'Mulish', sans-serif;
  color: #270903;
  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;
  }

}

/*--------------------------------------------------------------
# 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;

}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  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: 90vh;
  }

  }

@media (max-width: 1024px) {
  #hero {

   height: 100vh;
 }
 #hero .hero-img {
  margin-top: 100px;
  text-align: center;
}
}

@media (max-width: 991px) {
  #hero {
    height: 150vh;
    position: relative;
    overflow: hidden;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    margin-top: 70px;
    text-align: center;
  }
  #hero .hero-img {
        width: 70%;
    height: 70%;
  }
}

#hero::after{
  height: 10vh;
  position: relative;
  overflow: hidden;
}



@media (max-width: 768px) {
  #hero {
    margin-top: 20px;
    height: 160vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 575px) {



  #hero {
    height: 150vh;
  }


  #hero .hero-img {
    width: 100%;
    height: 100%;
    margin-top: 0;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  #hero h3 {
    font-size: 14px;
  }


}

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

  }

@-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: url("../svg/whatIsEnstasy.svg");*/
  background-size: contain;
  background-repeat: no-repeat;
}



#whatIsEnstasy h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  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 {
    margin-top: 0px;
   height: 75vh;
   padding-bottom: 0;
 }
}


@media (max-width: 1024px) {
  #whatIsEnstasy {
    margin-top: 0px;
   height: 65vh;
   padding-bottom: 0;
 }
 #whatIsEnstasy .hero-img {
  margin-top: 0px;
  text-align: center;
}
}

@media (max-width: 991px) {
  #whatIsEnstasy {
    height: 90vh;
    position: relative;
    overflow: hidden;
     padding-bottom: 0;
  }
  #whatIsEnstasy .animated {
    -webkit-animation: none;
    animation: none;
  }
  #whatIsEnstasy .hero-img {
    margin-top: 70px;
    text-align: center;
  }
  #whatIsEnstasy .hero-img {  
    width: 60%;
  }
}

#whatIsEnstasy::after{
  height: 100vh;
  position: relative;
  overflow: hidden;
}



@media (max-width: 768px) {
  #whatIsEnstasy {
    margin-top: 20px;
     padding-bottom: 0;
  }

  #whatIsEnstasy .hero-img {
    width: 70%;
    height: 70%;
  }
}

@media (max-width: 575px) {

  #whatIsEnstasy {
    height: 70vh;
  }

  #whatIsEnstasy .hero-img {
    width: 80%;
    height: 70%;
    margin-top: 0;
     padding-bottom: 0;
  }

    #whatIsEnstasy h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #whatIsEnstasy h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


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


@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# whatDoWeDo Section
--------------------------------------------------------------*/
#whatDoWeDo {
  width: 100%;

  margin-top: 0px;
  background: url("../svg/hero.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

#whatDoWeDo h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #270903;
}

#whatDoWeDo h2 {
  color: #270903;
  margin-bottom: 30px;
  font-size: 24px;
}

#whatDoWeDo h3 {
  color:  #270903;
  margin-bottom: 50px;
  font-size: 16px;
}



#whatDoWeDo .btn-get-started:hover {
  background: #3498db;
  color: #fff;
}

#whatDoWeDo .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1367px) {
  #whatDoWeDo {

   height: 130vh;
 }
}


@media (max-width: 1366px) {
  #whatDoWeDo {

   height: 140vh;
 }
 #whatDoWeDo .hero-img {
  margin-top: 100px;
  text-align: center;
}
}

@media (max-width: 991px) {
  #whatDoWeDo {
    height: 230vh;
    position: relative;
    overflow: hidden;
  }
  #whatDoWeDo .row .row {
    margin-top: 50px;
  }


  #whatDoWeDo .animated {
    -webkit-animation: none;
    animation: none;
  }


  #whatDoWeDo .hero-img {
    margin-top: 70px;
    text-align: center;
  }
  #whatDoWeDo .hero-img {  
    width: 60%;
  }


#whatDoWeDo .icon-box {
  padding: 30px;
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #F5F5ED;
  box-shadow: 10px 10px 8px #d0d0c9, 
  -12px -12px 8px #f5f5f5;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

}

#whatDoWeDo::after{
  height: 100vh;
  position: relative;
  overflow: hidden;
}




#whatDoWeDo .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #F5F5ED;
  box-shadow: 10px 10px 8px #d0d0c9, 
  -12px -12px 8px #f5f5f5;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

#whatDoWeDo .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;
}

#whatDoWeDo .icon-box:hover::before {
  background: #270903;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

#whatDoWeDo .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;
}

#whatDoWeDo .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

#whatDoWeDo .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 22px;
}

#whatDoWeDo .title a {
  color: #111;
}

#whatDoWeDo .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#whatDoWeDo .icon-box:hover .title a, #whatDoWeDo .icon-box:hover .description {
  color: #fff;
}

#whatDoWeDo .icon-box:hover .icon {
  background: #fff;
}

#whatDoWeDo .icon-box:hover .icon i {
  color: #996666;
}

#whatDoWeDo .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;
}

#whatDoWeDo .btn-get-started:hover {
  background: #3498db;
  color: #fff;
}

/* 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%;
  }
}

@media(max-width: 768px){
  .modal-content {
    width: 80%;
  }
}

@media(max-width: 400px){
  .modal-content {
    width: 90%;
  }
}


@media (max-width: 768px) {
  #whatDoWeDo {
    height: 250vh;
    margin-top: 0;
  }
  #whatDoWeDo h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #whatDoWeDo h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #whatDoWeDo .hero-img {
    width: 70%;
    height: 70%;
  }

  #whatDoWeDo .btn-get-started {
    margin-bottom: 40px;
}
}

@media (max-width: 575px) {
  #whatDoWeDo {
    height: 200vh;
    margin-top: 0;
  }

  #whatDoWeDo .icon-box {
    height: 240px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #F5F5ED;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
  }

}


@media (max-width: 400px) {
  #whatDoWeDo {
    height: 260vh;
    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);
  }
}


/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f3f9fd;
  padding: 10px 0;
  text-align: center;
}

.clients .col-lg-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients img {
  width: 50%;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 10px 0;
}

.clients img:hover {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .clients img {
    width: 30%;
  }
}

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

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #3498db;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #3498db;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #3498db;
}

.about .content .btn-learn-more:hover {
  background: #3498db;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .content {
  padding: 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #222222;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #3498db;
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #222222;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #484848;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #484848;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #6f6f6f;
}

@media (max-width: 1024px) {
  .counts .image {
    text-align: center;
  }
  .counts .image img {
    max-width: 70%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: '';
  position: absolute;
  background: #e1f0fa;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #3498db;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #3498db;
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a, .services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #3498db;
}

/*--------------------------------------------------------------
# More Services
--------------------------------------------------------------*/
.more-services {
  padding-top: 20px;
}

.more-services .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.more-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.more-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.more-services .card-title a {
  color: #222222;
}

.more-services .card-text {
  color: #5e5e5e;
}

.more-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.more-services .read-more a:hover {
  text-decoration: underline;
}

.more-services .card:hover .card-body {
  background: #3498db;
}

.more-services .card:hover .read-more a, .more-services .card:hover .card-title, .more-services .card:hover .card-title a, .more-services .card:hover .card-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f6f6f6;
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #3498db;
}

.features .icon-box:hover {
  background: #eef7fc;
}

/*--------------------------------------------------------------
# processes
--------------------------------------------------------------*/

.processes {
  width: 100%;
  height: 80vh;
  margin-top: 0px;
  background: url("../svg/whatDoWeDo.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.processes .processes-wrap {
  padding: 30px;
  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: 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: 20px;
}
.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: 991px) {
    .processes {
    height: 100vh;
  }


  .processes .processes-item {
    padding: 30px;
    margin: 15px;
    height: 280px;
}
}

@media (max-width: 767px) {
  .processes {
    height: 100vh;
  }


  .processes .processes-item {
    padding: 30px;
    margin: 15px;
    height: 240px;

  }


  .processes .processes-item .title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .processes .processes-item .content {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (max-width: 767px) {
  .processes {
    height: 100vh;
  }

  .processes .processes-item {
    padding: 30px;
    margin: 15px;
    height: 240px;

  }


  .processes .processes-item .title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .processes .processes-item .content {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (max-width: 575px) {
  .processes {
    height: 120vh;
  }

  .processes .processes-item
  {
    margin-left: 50px;
  }

  .processes .processes-item .title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .processes .processes-item .content {
    font-size: 1rem;
    line-height: 1.5rem;
  }

}

@media (max-width: 500px) {
/*  #whatDoWeDo {
    height: 200vh;
    margin-top: 0;
  }
*/

 .processes{
    height: 100vh;
    padding-bottom: 0;
  } 

  .processes .processes-item {
    padding: 30px;
    margin: 10px;
    height: 320px;

  }

    .processes .processes-item .title {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
  .processes .processes-item .content {
    font-size: 1rem;
    line-height: 1.2rem;
  }

}

@media (max-width: 400px) {
/*  #whatDoWeDo {
    height: 200vh;
    margin-top: 0;
  }
*/

  .processes{
    height: 140vh;
  }
  .processes .processes-item {

    height: 320px;

  }
    .processes .processes-item .title {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
  .processes .processes-item .content {
    font-size: 0.9rem;
    line-height: 1rem;
  }
}

/*--------------------------------------------------------------
# howDoWeDoIt
--------------------------------------------------------------*/
#howDoWeDoIt h1 {
  margin: 0 0 50px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #F3F2E2;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.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: #F5F5ED;
  height: 350px;
}

.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: #270903;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #270903;
  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: 991px) {
  .testimonials .testimonial-item {
      height: 570px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
          height: 370px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

@media (max-width: 430px) {
    .testimonials .testimonial-item {

          height: 450px;
  }
}

@media (max-width: 380px) {


    .testimonials .testimonial-item {

          height: 530px;
  }
}


#testimonials h1 {
  margin: 0 0 50px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #F3F2E2;
}
/*--------------------------------------------------------------
# contact Section
--------------------------------------------------------------*/
#contact {
  width: 100%;
  height: 70vh;
  margin-top: 70px;
  background: #F5F5ED;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 0;
}

#contact h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  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;
  }

 
    #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{
  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%;
  }
}

/***************************************************
 * Generated by SVG Artista on 9/28/2020, 3:21:05 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

 svg .svg-elem-1 {
  stroke-dashoffset: 1374.8759896187396px;
  stroke-dasharray: 1374.8759896187396px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

svg.active .svg-elem-1 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-2 {
  stroke-dashoffset: 1374.8759896187396px;
  stroke-dasharray: 1374.8759896187396px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}

svg.active .svg-elem-2 {
  stroke-dashoffset: 0;
  fill: rgb(246, 245, 237);
}

svg .svg-elem-3 {
  stroke-dashoffset: 761.5428558584043px;
  stroke-dasharray: 761.5428558584043px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}

svg.active .svg-elem-3 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-4 {
  stroke-dashoffset: 734.8581678588126px;
  stroke-dasharray: 734.8581678588126px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}

svg.active .svg-elem-4 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-5 {
  stroke-dashoffset: 622.7975579052646px;
  stroke-dasharray: 622.7975579052646px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s;
}

svg.active .svg-elem-5 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-6 {
  stroke-dashoffset: 280.6893005371094px;
  stroke-dasharray: 280.6893005371094px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}

svg.active .svg-elem-6 {
  stroke-dashoffset: 0;
}

svg .svg-elem-7 {
  stroke-dashoffset: 280.6893005371094px;
  stroke-dasharray: 280.6893005371094px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s;
}

svg.active .svg-elem-7 {
  stroke-dashoffset: 0;
}

svg .svg-elem-8 {
  stroke-dashoffset: 280.6893615722656px;
  stroke-dasharray: 280.6893615722656px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}

svg.active .svg-elem-8 {
  stroke-dashoffset: 0;
}

svg .svg-elem-9 {
  stroke-dashoffset: 280.6893615722656px;
  stroke-dasharray: 280.6893615722656px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}

svg.active .svg-elem-9 {
  stroke-dashoffset: 0;
}

svg .svg-elem-10 {
  stroke-dashoffset: 280.6893005371094px;
  stroke-dasharray: 280.6893005371094px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s;
}

svg.active .svg-elem-10 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-11 {
  stroke-dashoffset: 280.6893005371094px;
  stroke-dasharray: 280.6893005371094px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
}

svg.active .svg-elem-11 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-12 {
  stroke-dashoffset: 280.6893615722656px;
  stroke-dasharray: 280.6893615722656px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3199999999999998s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3199999999999998s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s;
}

svg.active .svg-elem-12 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-13 {
  stroke-dashoffset: 280.6893615722656px;
  stroke-dasharray: 280.6893615722656px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
}

svg.active .svg-elem-13 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-14 {
  stroke-dashoffset: 280.6912536621094px;
  stroke-dasharray: 280.6912536621094px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
}

svg.active .svg-elem-14 {
  stroke-dashoffset: 0;
}

svg .svg-elem-15 {
  stroke-dashoffset: 280.6912536621094px;
  stroke-dasharray: 280.6912536621094px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
}

svg.active .svg-elem-15 {
  stroke-dashoffset: 0;
}

svg .svg-elem-16 {
  stroke-dashoffset: 280.68927001953125px;
  stroke-dasharray: 280.68927001953125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
}

svg.active .svg-elem-16 {
  stroke-dashoffset: 0;
}

svg .svg-elem-17 {
  stroke-dashoffset: 280.68927001953125px;
  stroke-dasharray: 280.68927001953125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4000000000000004s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4000000000000004s;
}

svg.active .svg-elem-17 {
  stroke-dashoffset: 0;
}

svg .svg-elem-18 {
  stroke-dashoffset: 280.6912536621094px;
  stroke-dasharray: 280.6912536621094px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.04s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.04s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
}

svg.active .svg-elem-18 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-19 {
  stroke-dashoffset: 280.6912536621094px;
  stroke-dasharray: 280.6912536621094px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.16s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.16s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
}

svg.active .svg-elem-19 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-20 {
  stroke-dashoffset: 280.68927001953125px;
  stroke-dasharray: 280.68927001953125px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.28s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.28s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
}

svg.active .svg-elem-20 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-21 {
  stroke-dashoffset: 280.68927001953125px;
  stroke-dasharray: 280.68927001953125px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s;
}

svg.active .svg-elem-21 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-22 {
  stroke-dashoffset: 202.9267578125px;
  stroke-dasharray: 202.9267578125px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.52s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9000000000000004s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.52s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9000000000000004s;
}

svg.active .svg-elem-22 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-23 {
  stroke-dashoffset: 202.92202758789062px;
  stroke-dasharray: 202.92202758789062px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6399999999999997s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6399999999999997s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
}

svg.active .svg-elem-23 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-24 {
  stroke-dashoffset: 202.92440795898438px;
  stroke-dasharray: 202.92440795898438px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.76s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1000000000000005s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.76s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1000000000000005s;
}

svg.active .svg-elem-24 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-25 {
  stroke-dashoffset: 202.92242431640625px;
  stroke-dasharray: 202.92242431640625px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.88s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.88s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s;
}

svg.active .svg-elem-25 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-26 {
  stroke-dashoffset: 202.92587280273438px;
  stroke-dasharray: 202.92587280273438px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s;
}

svg.active .svg-elem-26 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-27 {
  stroke-dashoffset: 202.92333984375px;
  stroke-dasharray: 202.92333984375px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.12s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4000000000000004s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.12s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4000000000000004s;
}

svg.active .svg-elem-27 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-28 {
  stroke-dashoffset: 202.92283630371094px;
  stroke-dasharray: 202.92283630371094px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2399999999999998s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2399999999999998s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s;
}

svg.active .svg-elem-28 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-29 {
  stroke-dashoffset: 202.92327880859375px;
  stroke-dasharray: 202.92327880859375px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.36s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6000000000000005s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.36s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6000000000000005s;
}

svg.active .svg-elem-29 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-30 {
  stroke-dashoffset: 106.94429016113281px;
  stroke-dasharray: 106.94429016113281px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.48s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.48s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7s;
}

svg.active .svg-elem-30 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-31 {
  stroke-dashoffset: 103.26707458496094px;
  stroke-dasharray: 103.26707458496094px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5999999999999996s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5999999999999996s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s;
}

svg.active .svg-elem-31 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-32 {
  stroke-dashoffset: 103.26628112792969px;
  stroke-dasharray: 103.26628112792969px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7199999999999998s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9000000000000004s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7199999999999998s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9000000000000004s;
}

svg.active .svg-elem-32 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-33 {
  stroke-dashoffset: 103.26113891601562px;
  stroke-dasharray: 103.26113891601562px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.84s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.84s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4s;
}

svg.active .svg-elem-33 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-34 {
  stroke-dashoffset: 103.26951599121094px;
  stroke-dasharray: 103.26951599121094px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.96s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1000000000000005s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.96s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1000000000000005s;
}

svg.active .svg-elem-34 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-35 {
  stroke-dashoffset: 103.2652359008789px;
  stroke-dasharray: 103.2652359008789px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.08s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.08s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s;
}

svg.active .svg-elem-35 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-36 {
  stroke-dashoffset: 103.2698745727539px;
  stroke-dasharray: 103.2698745727539px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s;
}

svg.active .svg-elem-36 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-37 {
  stroke-dashoffset: 103.27047729492188px;
  stroke-dasharray: 103.27047729492188px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.32s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.32s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s;
}

svg.active .svg-elem-37 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-38 {
  stroke-dashoffset: 103.26575469970703px;
  stroke-dasharray: 103.26575469970703px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4399999999999995s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4399999999999995s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s;
}

svg.active .svg-elem-38 {
  stroke-dashoffset: 0;
  fill: rgb(66, 53, 40);
}

svg .svg-elem-39 {
  stroke-dashoffset: 181.96685791015625px;
  stroke-dasharray: 181.96685791015625px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.56s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6000000000000005s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.56s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6000000000000005s;
}

svg.active .svg-elem-39 {
  stroke-dashoffset: 0;
  fill: rgb(1, 1, 1);
}

svg .svg-elem-40 {
  stroke-dashoffset: 158.14698791503906px;
  stroke-dasharray: 158.14698791503906px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.68s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.7s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.68s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.7s;
}

svg.active .svg-elem-40 {
  stroke-dashoffset: 0;
  fill: rgb(1, 1, 1);
}

svg .svg-elem-41 {
  stroke-dashoffset: 233.54306030273438px;
  stroke-dasharray: 233.54306030273438px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s;
}

svg.active .svg-elem-41 {
  stroke-dashoffset: 0;
  fill: rgb(1, 1, 1);
}

svg .svg-elem-42 {
  stroke-dashoffset: 127.6371078491211px;
  stroke-dasharray: 127.6371078491211px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.92s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.9s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.92s,
  fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.9s;
}

svg.active .svg-elem-42 {
  stroke-dashoffset: 0;
  fill: rgb(1, 1, 1);
}
