body {
  font-family: "Montserrat", Arial, "sans-serif";
  background-color: #DFD8CF;
}

a {
  color: #B7683C;
  text-decoration: none;
}

a:hover {
  color: #404040;
  text-decoration: none;
}

p{
  font-size: 18px;
}

.wapp {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: rgb(80,200,90);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s;
}

.wapp i {
  font-size: 28px;
  color: #F8F8F8;
  line-height: 0;
}

.wapp:hover {
  background: rgb(60,140,65);
  color: #F8F8F8;
}

.wapp.active {
  visibility: visible;
  opacity: 1;
}

#header {
  height: 50px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: rgba(75,96,105,0.95)
}


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

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #B7683C;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #F8F8F8;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #F8F8F8;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #DFD8CF;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #404040;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  color: #F8F8F8;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(223,216,207,0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #F8F8F8;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li>a:before {
  left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #B7683C;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #404040;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #F8F8F8;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #B7683C;
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}

/*
# Hero Section
*/
#hero {
  width: 100%;
  position: relative;
  padding: 60px 0 0 0;
  background: url("./img/gd_bg.webp");
  background-size: 100% 100%;
}


#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #F8F8F8;
}

#hero h2 {
  color: #F8F8F8;
  margin-bottom: 40px;
  font-size: 24px;
}

.button {
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  display: inline-block;
  padding: 15px 20px;
  border-radius: 5px;
  transition: 0.5s;
  color: #F8F8F8;
  background: #B7683C;
}

.button:hover{
  background: #7a482d;
  color: #F8F8F8;
  transform: scale(1.1);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    padding-top: 60px;
  }

  #hero .hero-img {
    text-align: center;
    padding-bottom: 30px;
  }

  #hero .hero-img img {
    max-width: 50%;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

.hero-waves {
  display: block;
  margin-top: 10px;
  width: 100%;
  height: 30px;
  z-index: 0;
  position: relative;
}

.wave1 use {
  animation: move-forever1 12s linear infinite;
}

.wave2 use {
  animation: move-forever2 9s linear infinite;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

section {
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #375056;
  text-align: center;
}

.title-white p{
  color: #F8F8F8;
}

.icon-boxes {
  max-width: 800px;
}

.icon-box {
  display: flex;
  align-items: center; 
  margin: 10px;
}

.icon-boxes p {
  margin: 0px;
}

.icon-boxes i {
  color: #B7683C;
  font-size: 32px;
}

.title {
  margin-top: 0px;
  vertical-align: middle; 
}

.title span {
  font-weight: bold;
}


.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #F8F8F8;
  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: #B7683C;
  transition: ease-in-out 0.3s;
}

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

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

.details .content+.content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #B7683C;
}

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

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #B7683C;
}

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

.slick-carousel-port, .slick-carousel-bfaf {
  max-height: 600px;
}

.portfolio-item {
  overflow: hidden;
  border-radius: 20px;
  padding: 10px;
}

.img-hover {
  border-radius: 20px;
}

.img-hover:hover {
  transform: scale(1.1);
  transition: all ease-in-out 0.4s;
}

.slick-prev:before {
  color: #436066 !important; 
}
.slick-next:before {
  color: #436066 !important;
}

.testimonials {
  background: url("./img/gd_bg.webp");
  background-size: 100% 100%;
  
}

.testimonials >*{
  color:#F8F8F8;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
  padding: 20px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #F8F8F8;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #F8F8F8;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #F8F8F8;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  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: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #B7683C;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

.team {
  background: url("./img/gd_bg.webp");
  background-size: 100% 100%;
}

.team >*{
  color:#F8F8F8;
}

.biografia span{
  font-weight: bold;
}

@media (min-width: 1024px) {
  .team {
    background-attachment: fixed;
  }
}

.how-card {
  background: url("./img/gd_bg.webp");
  height: 100%;
  background-size: 100% 100%;
  border: none;
}

.how-card >*{
  color: #F8F8F8;
}

.how-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
}

.how-card img {
  border-radius: 30px;
  padding: 15px;
}

.card-body img {
  height: 200px;
}

.deliverables {
  background: #F8F8F8;
  background: url("./img/gd_bg.webp");
  background-size: 100% 100%;
}

.deliverables >*{
  color:#F8F8F8;
}

.deliver-card {
  background-color: rgba(255,255,255,.4);
  height: 100%;
  border: none;
}

.deliver-card i {
  color: #b7683c;
font-size: 4rem;
}

@media (min-width: 1024px) {
  .deliverables {
    background-attachment: fixed;
  }
}

.bonus-card {
  background-color: rgba(60,90,95,0.5);
  height: 100%;
  border: none;
}

.bonus-card img {
  border-radius: 40px;
  padding: 15px;
}

.pricing .box {
  padding: 20px;
  background: #F8F8F8;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 32px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 32px;
  color: #375056;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.pricing h4 span {
  font-size: 26px;
}

.pricing ul {
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 16px;
  text-align: left;
  min-height: 108px;

}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #375056;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .btn-wrap {
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #375056;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #F8F8F8;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-weight: 600;
}

.pricing .btn-buy:hover {
  background: #B7683C  ;
}

.pricing .featured h3 {
  color: #F8F8F8;
  background: #436066;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 30px;
  right: -60px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #b7683c;
  color: #F8F8F8;
}

.faq .faq-list {
  padding: 0;
}

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

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #F8F8F8;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list span {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
  color: #b7683c;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 15px;
  left: 20px;
  color: #404040;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list span.collapsed {
  color: #343a40;
}

.faq .faq-list span.collapsed:hover {
  color: #B7683C;
}

.faq .faq-list span.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list span.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

.contact .info {
  background: #F8F8F8;
}

.contact .info i {
  font-size: 20px;
  color: #4B6069;
  float: left;
  width: 44px;
  height: 44px;
  background: #DFD8CF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #4B6069;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #4B6069;
}

.contact .email .instagram,
.contact .phone .instagram {
  margin-top: 40px;
}

#footer {
  background: #4B6069;
  padding: 30px;
  color: #F8F8F8;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}