/*----------------------------------------------------------------------------------

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	02. Header
    03. Hero
	04. Footer

-----------------------------------------------------------------------------------*/
/*===========================
    1. COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import "header.css";
@import "hero-section.css";
@import "footer.css";
@import "blog-page.css";
@import "price-and-faq.css";
@import "about-page.css";

h2 h2:before {
  content: attr(data-number);
  display: inline-block;
  /* customize below */
  font-size: 0.85em;
  margin-right: 0.3em;
  width: 1.2em;
  line-height: 1.2em;
  text-align: center;
  border-radius: 50%;
  color: #FFF;
  background: #F77621;
}
.text-lg {
  font-size: 21px;
  line-height: 30px;
}

.btn {
  @media (min-width: 381px) {
    min-width: 120px;
  }

  @media (max-width: 380px) {
    min-width: 100px;
  }

  max-width: max-content;
  font-weight: bold;
  padding: 8px 12px;
}

.btn-green {
  border-color: #04948c;
  width: auto;
  color: #fff;
  background: #04948c;
}
.btn-outlined-green {
  border-color: #04948c;
  width: auto;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #505056;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
  color: #04948c;
}

i,
span,
a {
  display: inline-block;
  transition: all linear 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  color: black;
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #505056;
  margin: 0px;
}

.page-title {
  font-size: 30px;
  color: white;
  font-weight: 700;
}

.page-subtitle {
  font-weight: 500;
  font-size: 20px;
  opacity: 0.95;
}
.neomorphic-in{
  background: lightgrey;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 50px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 26px -18px inset;
}
.neomorphic-card{
 background: white;
 border-radius: 10px;
 transition: border-radius 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 box-shadow: inset 0 -3em 3em rgba(0,0,0,0.1),
             0 0  0 2px rgb(190, 190, 190),
             0.3em 0.3em 1em rgba(0,0,0,0.3);
}
.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.slick-slide {
  outline: 0;
}
.qr-widget {
  display: flex;
  align-items: start;
  background-color: white;
  border-radius: 24px;
  padding: 8px;
  max-width: max-content;
  margin: 12px 0px;
  font-family: sans-serif;
  flex-wrap: wrap;
  justify-content: start;
}

.qr-image {
  width: 160px;
  height: 160px;
  margin-right: 12px;
  border-radius: 20px;
}

.qr-content h2 {
  font-size: 20px;
  margin-top: 12px;
  color: #333;
}

.qr-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0px;
  line-height: 120%;
}

.download-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* MOBILE VERSION */
@media (max-width: 1023px) {
  .qr-image,
  .qr-content h2,
  .qr-content p {
    display: none;
  }

  .qr-widget {
    padding: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    margin-top: 0;
  }

  .download-buttons {
    justify-content: center;
    display: inline list-item;
    width: 100%;
    gap: 8px;
  }
}
/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #a03f46;
  padding: 0 30px;
  font-size: 15px;
  line-height: 45px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: #a03f46;
}

.main-btn:hover {
  background-color: #fff;
  color: #04948c;
  border-color: #04948c;
}

.main-btn.main-btn-2 {
  background-color: #fff;
  color: #04948c;
  border-color: #04948c;
}

.main-btn.main-btn-2:hover {
  background-color: #04948c;
  border-color: #04948c;
  color: #fff;
}

.aqui-section-title {
  padding-bottom: 25px;
}

.aqui-section-title .aqui-title {
  font-size: 44px;
  line-height: 54px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-section-title .aqui-title {
    font-size: 36px;
    line-height: 46px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-section-title .aqui-title {
    font-size: 36px;
    line-height: 46px;
  }
}

@media (max-width: 767px) {
  .aqui-section-title .aqui-title {
    font-size: 26px;
    line-height: 36px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-section-title .aqui-title {
    font-size: 36px;
    line-height: 46px;
  }
}

.aqui-section-title p {
  font-size: 18px;
  line-height: 28px;
  margin-top: 11px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-section-title p {
    font-size: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-section-title p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .aqui-section-title p {
    font-size: 15px;
  }
}

.aqui-section-title .main-btn {
  border-radius: 30px;
  border: 2px solid #e7eaef;
  background: #fff;
  color: black;
}

.aqui-section-title .main-btn:hover {
  background: #ff3e66;
  color: #fff;
  border-color: #ff3e66;
}

.aqui-section-title.aqui-section-title-2 .aqui-title {
  color: #fff;
}

.aqui-section-title.aqui-section-title-2 p {
  color: #fff;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  display: none;
}

.back-to-top a {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  background: #04948c;
  border-radius: 6px;
  color: #fff;
}

.back-to-top.back-to-top-2 a {
  background: #ff3e66;
}

.back-to-top.back-to-top-3 a {
  background: #ff6b58;
}

.back-to-top.back-to-top-6 a {
  background: #9b2cfa;
}

.back-to-top.back-to-top-5 a {
  background: #801f82;
}

.back-to-top.back-to-top-8 a {
  background: #db0f30;
}

.off_canvars_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
  background: #232323;
  top: 0;
  transition: all linear 0.3s;
}

.off_canvars_overlay.active {
  opacity: .5;
  visibility: visible;
}

.offcanvas_menu {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas_menu {
    display: block;
  }
}

@media (max-width: 767px) {
  .offcanvas_menu {
    display: block;
  }
}

.offcanvas_menu_wrapper {
  width: 290px;
  position: fixed;
  background: #fff;
  z-index: 9999;
  top: 0;
  height: 100%;
  transition: .5s;
  left: 0;
  margin-left: -300px;
  padding: 50px 15px 30px;
  overflow-y: visible;
}

.offcanvas_menu_wrapper.active {
  margin-left: 0;
}

.offcanvas_menu_wrapper .slinky-theme-default {
  background: inherit;
  min-height: 300px;
  overflow-y: auto;
}

.offcanvas_menu_wrapper .header-btn {
  margin-bottom: 30px;
}

.offcanvas_menu_wrapper .header-btn a {
  color: #222;
}

.offcanvas_menu_wrapper .header-btn a:hover {
  color: #222;
}

.offcanvas_main_menu li {
  position: relative;
}

.offcanvas_main_menu li:last-child {
  margin: 0;
}

.offcanvas_main_menu li span.menu-expand {
  position: absolute;
  right: 0;
}

.offcanvas_main_menu li a {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ededed;
  color: #222;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.offcanvas_main_menu li a:hover {
  color: #04948c;
}

.offcanvas_main_menu li ul.sub-menu {
  padding-left: 20px;
}

.offcanvas_footer {
  padding-bottom: 50px;
  text-align: center;
}

.offcanvas_footer span a {
  font-size: 14px;
  color: #222;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.offcanvas_footer span a:hover {
  color: #04948c;
}

.offcanvas_menu_wrapper.active .canvas_close {
  opacity: 1;
  visibility: visible;
}

.canvas_close {
  position: absolute;
  top: 10px;
  right: -50px;
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.2s;
}

.canvas_close a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  line-height: 40px;
  border: 1px solid #04948c;
  border-radius: 10px;
  background: #04948c;
  color: #fff;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.canvas_close a:hover {
  background: #04948c;
  border-color: #04948c;
  color: #fff;
}

@media (min-width: 768px){
  .mobile-website-cards{
    display: none;

  }
}

@media (max-width: 767px) {
  .pb-100{
    padding-bottom: 40px;
  }
  .main-website-cards{
    display: none;
  }
  .container-cards {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: flex;
    padding: 20px;
    
  }
  .card {
    flex: 0 0 300px;
    height: 300px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-right: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: center;

  }
  .card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .card-paragraph {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
    margin-top: 5px;
    text-align: center;
  }
}
.canvas_open a {
  font-size: 26px;
  width: 50px;
  height: 42px;
  display: block;
  line-height: 39px;
  text-align: center;
  border: 1px solid #232323;
  color: #222;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

.canvas_open a:hover {
  color: #04948c;
  border-color: #04948c;
}

.offcanvas-social {
  margin-bottom: 40px;
  margin-top: 40px;
}

.offcanvas-social ul li {
  display: inline-block;
}

.offcanvas-social ul li a {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  color: #04948c;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.offcanvas-social ul li a:hover {
  background: #04948c;
  border-color: #04948c;
  color: #fff;
}


.flex-ptop-mobile {
  padding-top: 20px;
}

@media (min-width: 760px) {
  .flex-ptop-mobile {
    padding-top: 36px;
  }
}

@media (min-width:760px) {
  .hidden-desktop {
    visibility: hidden;
  }
}

@media (max-width: 760px) {
  .float-btn {
    position: fixed;
    display: inline-block;
    font-weight: 500;
    width: 20%;
    min-width: 130px;
    height: 48px;
    right: 16px;
    bottom: 30px;
    z-index: 999;
    line-height: 48px;
    white-space: nowrap;
    vertical-align: middle;;
    color: #FFF;
    border-radius: 6px;
    text-align: center;
    /* box-shadow: 2px 2px 3px rgb(128, 128, 128);*/
  }

  .float-btn:hover {
    background-color: #fff;
    color: #04948c;
    border-color: #04948c;
  }
}


.toggle-btn {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 22px;
  color: #ffffff;
}

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/icon/preloader.svg);
}

.preloader-close {
  position: fixed;
  z-index: 999999;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  right: 40px;
  bottom: 40px;
  font-weight: 600;
  line-height: 60px;
  background: #04948c;
  padding: 0 15px;
  border-radius: 5px;
}

.loader-wrap {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

.loader-wrap .layer-one {
  position: absolute;
  left: 0%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer-two {
  position: absolute;
  left: 33.3333%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer-three {
  position: absolute;
  left: 66.6666%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #F4F9FF;
}

/*===========================
    SEARCH css 
===========================*/
.search-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999999;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.6s ease-out 0s;
  -moz-transition: all 0.6s ease-out 0s;
  -ms-transition: all 0.6s ease-out 0s;
  -o-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.04);
}

.search-box .search-header .search-title {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

.search-box .search-header .search-close button {
  background: none;
  border: 0;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  padding-right: 35px;
  position: relative;
}

.search-box .search-header .search-close button span {
  width: 21px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  right: 0;
}

.search-box .search-header .search-close button span:nth-child(1) {
  top: 13px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.search-box .search-header .search-close button span:nth-child(2) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 13px;
}

.search-box .search-body {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.search-box .search-body .search-form {
  position: relative;
}

.search-box .search-body .search-form input {
  width: 100%;
  border: 0;
  height: 80px;
  padding-left: 30px;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 20px;
  color: #707070;
}

.search-box .search-body .search-form input::placeholder {
  color: #707070;
  opacity: 1;
}

.search-box .search-body .search-form button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  font-size: 36px;
  color: #707070;
  background: none;
  border: 0;
}

.search-box .search-footer {
  padding-bottom: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.search-box .search-footer .search-footer-content h4 {
  color: #707070;
  font-size: 24px;
}

.search-box .search-footer .search-footer-content p {
  color: #222;
  font-size: 16px;
}

.search-box.open {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}




/*===========================
    4.AQUI SERVOCE css 
===========================*/
.aqui-service-area {
  background: #eef1f6;
  position: relative;
  background-image: url(../images/shape/shape-1.png);
  background-position: 92% 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.aqui-service-area.aqui-service-3-area {
  background: none;
}

@media (max-width: 767px) {
  .aqui-service-area.aqui-service-3-area {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-service-area.aqui-service-3-area {
    padding-top: 190px;
  }
}

.aqui-single-service {
  padding: 50px 30px 43px;
  background: #fff;
  border-radius: 6px;
  transition: all linear 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-single-service {
    padding: 50px 15px 43px;
  }
}

.aqui-single-service .icon {
  display: inline-block;
  border-radius: 20px;
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 70px;
  background: linear-gradient(135deg, #84bcfa 0%, #04948c 100%);
  box-shadow: 0px 6px 10px 0px rgba(16, 73, 189, 0.3);
  position: relative;
}

.aqui-single-service .icon>span {
  position: absolute;
  right: -10px;
  top: -10px;
  height: 30px;
  width: 30px;
  background: #04948c;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0px 3px 6px 0px rgba(14, 17, 51, 0.1);
  line-height: 28px;
  color: #fff;
}

.aqui-single-service .aqui-title {
  font-size: 20px;
  font-weight: 700;
  padding-top: 33px;
  padding-bottom: 10px;
}

.aqui-single-service:hover {
  box-shadow: 0px 40px 40px 0px rgba(14, 17, 51, 0.1);
  transform: translateY(-15px);
}

.aqui-single-service.item-2 .icon {
  background: linear-gradient(135deg, #f7b8af 0%, #f8452d 100%);
}

.aqui-single-service.item-2 .icon span {
  background: #f8452d;
}

.aqui-single-service.item-3 .icon {
  background: linear-gradient(135deg, #a0eac2 0%, #31c369 100%);
}

.aqui-single-service.item-3 .icon span {
  background: #31c369;
}

.aqui-single-service.item-4 .icon {
  background: linear-gradient(135deg, #d8aaff 0%, #9b2cfa 100%);
}

.aqui-single-service.item-4 .icon span {
  background: #9b2cfa;
}

.aqui-single-service.aqui-single-services-3 {
  background: transparent;
}

.aqui-single-service.aqui-single-services-3 .icon {
  border-radius: 50%;
  background-image: -moz-linear-gradient(110deg, #ff5f4a 0%, #ff9e91 100%);
  background-image: -webkit-linear-gradient(110deg, #ff5f4a 0%, #ff9e91 100%);
  background-image: -ms-linear-gradient(110deg, #ff5f4a 0%, #ff9e91 100%);
}

.aqui-single-service.aqui-single-services-3 a {
  color: #505056;
  font-size: 14px;
  font-weight: 500;
  margin-top: 25px;
}

.aqui-single-service.aqui-single-services-3 a:hover {
  color: #ff6b58;
}

.aqui-single-service.aqui-single-services-3.item-2 {
  background: linear-gradient(0deg, rgba(39, 153, 246, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.aqui-single-service.aqui-single-services-3.item-2 .icon {
  background-image: -moz-linear-gradient(110deg, #2799f6 0%, #76c1ff 100%);
  background-image: -webkit-linear-gradient(110deg, #2799f6 0%, #76c1ff 100%);
  background-image: -ms-linear-gradient(110deg, #2799f6 0%, #76c1ff 100%);
}

.aqui-single-service.aqui-single-services-3.item-3 .icon {
  background-image: -moz-linear-gradient(110deg, #f2335b 0%, #ff718f 100%);
  background-image: -webkit-linear-gradient(110deg, #f2335b 0%, #ff718f 100%);
  background-image: -ms-linear-gradient(110deg, #f2335b 0%, #ff718f 100%);
}

.aqui-single-service.aqui-single-services-3.item-4 {
  background: linear-gradient(0deg, rgba(119, 89, 237, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.aqui-single-service.aqui-single-services-3.item-4 .icon {
  background-image: -moz-linear-gradient(110deg, #7759ed 0%, #ac97ff 100%);
  background-image: -webkit-linear-gradient(110deg, #7759ed 0%, #ac97ff 100%);
  background-image: -ms-linear-gradient(110deg, #7759ed 0%, #ac97ff 100%);
}

.aqui-single-service.aqui-single-services-3.aqui-single-services-5 a:hover {
  color: #801f82;
}

@media (max-width: 767px) {
  .aqui-services-2-area .aqui-section-title {
    text-align: center !important;
  }
}

.aqui-single-service-2 {
  border: 1px solid #eef0f4;
  border-radius: 10px;
  padding: 48px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .aqui-single-service-2 {
    text-align: center;
    padding: 20px;
  }
}

.aqui-single-service-2 .icon i {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background: #2eacfc;
  color: #fff;
  border-radius: 50%;
}

.aqui-single-service-2 .title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 10px;
}

.aqui-single-service-2 a {
  font-size: 14px;
  font-weight: 500;
  color: #505056;
  margin-top: 23px;
}

.aqui-single-service-2 a:hover {
  color: #ff3e66;
}

.aqui-single-service-2:hover {
  box-shadow: 0px -3px 0px 0px rgba(234, 76, 137, 0.004), 0px 40px 40px 0px rgba(14, 17, 51, 0.1);
  border-top: 3px solid #2eacfc;
  transform: translateY(-10px);
}

.aqui-single-service-2.item-2 .icon i {
  background: #ea4c89;
}

.aqui-single-service-2.item-2:hover {
  border-top-color: #ea4c89;
}

.aqui-single-service-2.item-3 .icon i {
  background: #3578ff;
}

.aqui-single-service-2.item-3:hover {
  border-top-color: #3578ff;
}

.aqui-single-service-2.item-4 .icon i {
  background: #f67741;
}

.aqui-single-service-2.item-4:hover {
  border-top-color: #f67741;
}

.aqui-single-service-2.item-5 .icon i {
  background: #6a88f7;
}

.aqui-single-service-2.item-5:hover {
  border-top-color: #6a88f7;
}

.aqui-single-service-2.item-6 .icon i {
  background: #3ab094;
}

.aqui-single-service-2.item-6:hover {
  border-top-color: #3ab094;
}

.aqui-single-service-2.aqui-single-service-about {
  border-radius: 0;
  padding: 0 90px 30px 0;
  border: 0;
  transition: all linear 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-single-service-2.aqui-single-service-about {
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .aqui-single-service-2.aqui-single-service-about {
    padding-right: 50px;
    padding-left: 50px;
  }
}

.aqui-single-service-2.aqui-single-service-about .icon i {
  background-color: #f1f7fe;
  color: #04948c;
  border-radius: 35% 65% 50% 50% / 59% 50% 50% 41%;
  font-size: 20px;
}

.aqui-single-service-2.aqui-single-service-about:hover {
  box-shadow: none;
  margin-top: 20px;
}

.aqui-single-service-2.aqui-single-service-about.item-2 .icon i {
  color: #db0f30;
  background-color: #fef3f5;
  border-radius: 50% 50% 50% 50% / 50% 75% 25% 50%;
}

.aqui-single-service-2.aqui-single-service-about.item-3 .icon i {
  color: #9b2cfa;
  background-color: #f7eeff;
  border-radius: 25% 75% 50% 50% / 50% 50% 50% 50%;
}

.aqui-single-service-2.aqui-single-service-about.item-4 .icon i {
  color: #f8452d;
  background-color: #fef0ee;
  border-radius: 40% 60% 40% 60% / 40% 60% 40% 60%;
}

.aqui-single-service-2.aqui-single-service-about.item-5 .icon i {
  color: #31c369;
  background-color: #f4fcf7;
  border-radius: 33% 67% 50% 50% / 61% 72% 28% 39%;
}

.aqui-single-service-2.aqui-single-service-about.item-6 .icon i {
  color: #f6ac0e;
  background-color: #fef7e7;
  border-radius: 21% 79% 58% 42% / 50% 46% 54% 50%;
}

.aqui-services-6-area .aqui-section-title .main-btn:hover {
  background: #9b2cfa;
  border-color: #9b2cfa;
}

.aqui-services-6-area .aqui-single-service-2 a:hover {
  color: #9b2cfa;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .service-details-sidebar {
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-sidebar {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .service-details-sidebar {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.service-details-sidebar .service-category-widget {
  border-radius: 6px;
  box-shadow: 0px 30px 50px 0px rgba(14, 17, 51, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}

.service-details-sidebar .service-category-widget ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.service-details-sidebar .service-category-widget ul li {
  margin-bottom: 20px;
}

.service-details-sidebar .service-category-widget ul li i {
  color: #04948c;
  width: 15px;
  margin-right: 15px;
}

.service-details-sidebar .service-category-widget ul li:last-child {
  margin-bottom: 0;
}

.service-details-sidebar .service-download-widget {
  border-radius: 6px;
  margin-top: 10px;
  box-shadow: 0px 0px 50px 0px rgba(14, 17, 51, 0.1);
}

.service-details-sidebar .service-download-widget a {
  padding: 13px 30px;
  color: #505056;
}

.service-details-sidebar .service-download-widget a:hover {
  color: #04948c;
}

.service-details-sidebar .service-download-widget i {
  color: #04948c;
  padding-right: 15px;
}

.service-details-content .thumb {
  border-radius: 10px;
  overflow: hidden;
}

.service-details-content .content {
  padding-top: 34px;
}

.service-details-content .content .title {
  font-size: 30px;
  margin-bottom: 18px;
}

.service-details-content .content span {
  font-size: 20px;
  line-height: 30px;
  color: black;
  padding-top: 34px;
  padding-bottom: 26px;
}

.aqui-services-8-area .service-thumb {
  margin-left: -50px;
  margin-right: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-services-8-area .service-thumb {
    display: none;
  }
}

@media (max-width: 767px) {
  .aqui-services-8-area .service-thumb {
    display: none;
  }
}

/*===========================
    5.AQUI FEATURES css 
===========================*/
.aqui-features-area {
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.aqui-features-area .features-shape-1 {
  position: absolute;
  left: 560px;
  top: 130px;
  animation: animationFramesOne 20s linear infinite;
  z-index: -1;
}

.aqui-features-area .features-shape-2 {
  position: absolute;
  left: 500px;
  bottom: 0px;
  animation: animationFramesThree 20s linear infinite;
  z-index: -1;
}

.aqui-features-area .features-shape-3 {
  position: absolute;
  right: 270px;
  bottom: 0;
  animation: animationFramesFive 20s linear infinite;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-features-tabs-btn .nav {
    flex-direction: row !important;
    justify-content: center;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .aqui-features-tabs-btn .nav {
    flex-direction: row !important;
    justify-content: center;
    margin-bottom: 40px;
  }
}

.aqui-features-tabs-btn .nav a {
  border-right: 3px solid #e8eaef;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  color: #505056;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-features-tabs-btn .nav a {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .aqui-features-tabs-btn .nav a {
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 20px;
  }
}

.aqui-features-tabs-btn .nav a i {
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 35px;
  background: #f1f2f7;
  color: #63636a;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}

.aqui-features-tabs-btn .nav a.active {
  border-right-color: #04948c;
  background: transparent;
  color: #04948c;
}

.aqui-features-tabs-btn .nav a.active i {
  color: #fff;
  background: #04948c;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-features-content {
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .aqui-features-content {
    padding-top: 30px;
  }
}

.aqui-features-content span {
  font-size: 14px;
  font-weight: 500;
  color: #04948c;
  margin-bottom: 8px;
}

.aqui-features-content .title {
  font-size: 44px;
  line-height: 54px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-features-content .title {
    font-size: 36px;
    line-height: 44px;
  }
}

@media (max-width: 767px) {
  .aqui-features-content .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.aqui-features-content p {
  font-size: 18px;
  line-height: 28px;
  padding-bottom: 30px;
}

.aqui-features-area-2 {
  background: #0e1133;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.aqui-features-area-2 .features-shape-1 {
  position: absolute;
  left: 240px;
  top: 240px;
  z-index: -1;
  animation: linear 20s animationFramesThree infinite;
}

.aqui-features-area-2 .features-shape-2 {
  position: absolute;
  right: 190px;
  top: 160px;
  z-index: -1;
  animation: linear 20s animationFramesFive infinite;
}

.aqui-features-area-2 .features-shape-3 {
  position: absolute;
  right: 160px;
  bottom: 260px;
  z-index: -1;
  animation: linear 20s animationFramesOne infinite;
}

.aqui-features-area-2.aqui-features-area-5 {
  background: #fff;
}

.aqui-features-box-item {
  border: 1px solid #202234;
  padding: 25px 30px 30px 70px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-bottom: 20px;
  margin-left: 100px;
  margin-right: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-features-box-item {
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-features-box-item {
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media (max-width: 767px) {
  .aqui-features-box-item {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 60px;
  }
}

.aqui-features-box-item .title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-features-box-item .title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .aqui-features-box-item .title {
    font-size: 20px;
  }
}

.aqui-features-box-item .title::before {
  position: absolute;
  content: '';
  left: -40px;
  top: 0;
  height: 30px;
  width: 30px;
  background: #ff3e66;
  border: 6px solid #2a182d;
  border-radius: 50%;
}

.aqui-features-box-item p {
  font-size: 14px;
  opacity: 0.6;
  color: #fff;
  margin-top: 3px;
}

.aqui-features-box-item:hover {
  border-color: #ff3e66;
}

.aqui-features-box-item.item-2 .title::before {
  background: #2eacfc;
  border-color: #15233d;
}

.aqui-features-box-item.item-2:hover {
  border-color: #2eacfc;
}

.aqui-features-box-item.item-3 .title::before {
  background: #33c956;
  border-color: #15262c;
}

.aqui-features-box-item.item-3:hover {
  border-color: #33c956;
}

.aqui-features-box-item.aqui-features-box-5-item .title {
  color: black;
}

.aqui-features-box-item.aqui-features-box-5-item .title::before {
  border-color: rgba(9, 8, 8, 0.21);
}

.aqui-features-box-item.aqui-features-box-5-item p {
  color: #505056;
  opacity: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-features-thumb {
    text-align: center;
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .aqui-features-thumb {
    text-align: center;
    margin-top: 50px;
  }
}

.aqui-features-6-area .aqui-features-tabs-btn .nav a.active {
  color: #9b2cfa;
  border-right-color: #9b2cfa;
}

.aqui-features-6-area .aqui-features-tabs-btn .nav a.active i {
  background: #9b2cfa;
}

.aqui-features-6-area .aqui-features-content>span {
  color: #9b2cfa;
}

.aqui-features-6-area .aqui-features-content a {
  background: #9b2cfa;
  border-color: #9b2cfa;
}

.aqui-features-6-area .aqui-features-content a:hover {
  background: #fff;
  color: #9b2cfa;
}

/*===========================
    6.AQUI TRAFFIC css 
===========================*/
.aqui-traffic-area {
  position: relative;
  overflow: hidden;
  z-index: 15;
}

.aqui-traffic-area .traffic-thumb {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
}

@media (max-width: 767px) {
  .aqui-traffic-area .traffic-thumb {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-traffic-area .traffic-thumb {
    display: none;
  }
}

.aqui-traffic-title {
  padding-right: 220px;
  margin-bottom: 43px;
}

@media (max-width: 767px) {
  .aqui-traffic-title {
    padding-right: 0;
  }
}

.aqui-traffic-title span {
  font-size: 14px;
  font-weight: 500;
  color: #04948c;
}

.aqui-traffic-title .title {
  font-size: 44px;
  line-height: 54px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-traffic-title .title {
    font-size: 36px;
    line-height: 46px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-traffic-title .title {
    font-size: 36px;
    line-height: 46px;
  }
}

@media (max-width: 767px) {
  .aqui-traffic-title .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.aqui-traffic-service {
  position: relative;
  padding-left: 40px;
  padding-right: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-traffic-service {
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-traffic-service {
    margin-bottom: 30px;
    padding-right: 50px;
  }
}

@media (max-width: 767px) {
  .aqui-traffic-service {
    margin-bottom: 30px;
    padding-right: 0px;
  }
}

.aqui-traffic-service .icon {
  position: absolute;
  left: 0;
  top: 5px;
}

.aqui-traffic-service .icon i {
  height: 26px;
  width: 26px;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #84bcfa 0%, #04948c 100%);
  color: #fff;
  font-size: 14px;
  box-shadow: 0px 6px 10px 0px rgba(16, 73, 189, 0.3);
}

.aqui-traffic-service .title {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 7px;
}

.aqui-traffic-service p {
  font-size: 15px;
}

.aqui-traffic-service.item-2 .icon i {
  background: linear-gradient(135deg, #f7b8af 0%, #f8452d 100%);
}

.aqui-traffic-service.item-3 .icon i {
  background: linear-gradient(135deg, #a0eac2 0%, #31c369 100%);
}

.aqui-traffic-service.item-4 .icon i {
  background: linear-gradient(135deg, #d8aaff 0%, #9b2cfa 100%);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .traffic-btn {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .traffic-btn {
    text-align: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .traffic-btn {
    text-align: left;
  }
}

.traffic-btn a.main-btn {
  background: transparent;
  color: black;
  border: 2px solid #e7eaef;
}

.traffic-btn a.main-btn i {
  padding-left: 6px;
}

.traffic-btn a.main-btn:hover {
  background: #04948c;
  color: #fff;
}

/*===========================
    6.AQUI TRAFFICE css 
===========================*/
.aqui-testimonial-area {
  background-image: url(../images/testimonial-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.aqui-testimonial-slider .aqui-testimonial-item .author-info {
  margin-bottom: 15px;
}

.aqui-testimonial-slider .aqui-testimonial-item .author-info img {
  display: inline-block;
}

.aqui-testimonial-slider .aqui-testimonial-item .author-info .title {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  padding-top: 10px;
}

.aqui-testimonial-slider .aqui-testimonial-item .author-info span {
  font-size: 14px;
  color: #fff;
  opacity: 0.5;
}

.aqui-testimonial-slider .aqui-testimonial-item .text p {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}

.aqui-testimonial-slider .aqui-testimonial-item .text ul {
  margin: 10px 0 0;
  padding: 0;
  list-style-type: none;
}

.aqui-testimonial-slider .aqui-testimonial-item .text ul li {
  display: inline-block;
  margin: 0 2px;
}

.aqui-testimonial-slider .aqui-testimonial-item .text ul li i {
  color: #ffb848;
}

.aqui-testimonial-slider .slick-arrow {
  position: absolute;
  top: 62%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #fff;
  z-index: 11;
  cursor: pointer;
  opacity: 0.5;
}

.aqui-testimonial-slider .slick-arrow.prev {
  left: -80px;
}

.aqui-testimonial-slider .slick-arrow.next {
  right: -80px;
}

.aqui-testimonial-slider .slick-dots {
  position: absolute;
  left: 50%;
  bottom: -65px;
  transform: translateX(-50%);
}

.aqui-testimonial-slider .slick-dots li {
  display: inline-block;
}

.aqui-testimonial-slider .slick-dots li button {
  border: 0;
  background: #fff;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  font-size: 0;
  opacity: 0.5;
  margin: 0 4px;
}

.aqui-testimonial-slider .slick-dots li.slick-active button {
  opacity: 1;
}

.aqui-testimonial-2-box {
  background-image: url(../images/testimonial-bg-2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 140px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-testimonial-2-box {
    padding: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-testimonial-2-box {
    padding: 50px 30px;
  }
}

@media (max-width: 767px) {
  .aqui-testimonial-2-box {
    padding: 50px 30px;
  }
}

.aqui-testimonial-slider-2 .slick-arrow {
  position: absolute;
  right: 0;
  bottom: 0px;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  z-index: 9;
  cursor: pointer;
}

.aqui-testimonial-slider-2 .slick-arrow:hover {
  background: #ff3e66;
  color: #fff;
  border-color: #ff3e66;
}

.aqui-testimonial-slider-2 .slick-arrow.prev {
  right: 60px;
}

.aqui-testimonial-slider-2 .slick-arrow.next {
  right: 0;
}

.aqui-testimonial-slider-2-item .item {
  display: flex;
  padding-right: 30px;
  padding-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-testimonial-slider-2-item .item {
    display: block;
  }
}

@media (max-width: 767px) {
  .aqui-testimonial-slider-2-item .item {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
}

.aqui-testimonial-slider-2-item .thumb {
  text-align: center;
  min-width: 140px;
  margin-right: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-testimonial-slider-2-item .thumb {
    margin-bottom: 30px;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .aqui-testimonial-slider-2-item .thumb {
    margin-bottom: 30px;
    margin-right: 0;
  }
}

.aqui-testimonial-slider-2-item .thumb img {
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0px 20px 30px 0px rgba(0, 16, 49, 0.1);
  margin-bottom: 13px;
}

.aqui-testimonial-slider-2-item .thumb ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.aqui-testimonial-slider-2-item .thumb ul li {
  display: inline-block;
}

.aqui-testimonial-slider-2-item .thumb ul li i {
  font-size: 14px;
  color: #ffb848;
}

.aqui-testimonial-slider-2-item .thumb span {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  opacity: 0.7;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-testimonial-slider-2-item .content {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .aqui-testimonial-slider-2-item .content {
    text-align: center;
  }
}

.aqui-testimonial-slider-2-item .content p {
  color: #fff;
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .aqui-testimonial-slider-2-item .content p {
    font-size: 16px;
  }
}

.aqui-testimonial-slider-2-item .content .author-info {
  margin-top: 27px;
}

.aqui-testimonial-slider-2-item .content .author-info .title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.aqui-testimonial-slider-2-item .content .author-info span {
  font-size: 14px;
  color: #fff;
  opacity: .7;
}

.aqui-testimonial-about-area {
  background-image: url(../images/map-bg.png);
  background-size: auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.aqui-testimonial-about-area .aqui-section-title {
  margin-bottom: 30px;
}

.aqui-testimonial-about-area .aqui-section-title .aqui-title {
  padding: 0 30px;
}

.testimonial-about-slider-active .testimonial-box {
  padding: 60px 100px 80px;
  box-shadow: 0px 40px 60px 0px rgba(14, 17, 51, 0.1);
  text-align: center;
  background: #fff;
  margin-left: 100px;
  margin-right: 100px;
  margin-bottom: 80px;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .testimonial-about-slider-active .testimonial-box {
    padding: 60px 50px 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-about-slider-active .testimonial-box {
    margin-left: 50px;
    margin-right: 50px;
    padding: 30px 30px 50px;
  }
}

@media (max-width: 767px) {
  .testimonial-about-slider-active .testimonial-box {
    margin-left: 0px;
    margin-right: 0px;
    padding: 30px 30px 50px;
  }
}

.testimonial-about-slider-active .testimonial-box::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
}

.testimonial-about-slider-active .testimonial-box .icon i {
  font-size: 32px;
  color: #4985ff;
}

.testimonial-about-slider-active .testimonial-box .ratings-icon {
  padding-top: 25px;
  padding-bottom: 20px;
}

.testimonial-about-slider-active .testimonial-box .ratings-icon ul li {
  display: inline-block;
}

.testimonial-about-slider-active .testimonial-box .ratings-icon ul li i {
  color: #faa116;
  font-size: 14px;
}

.testimonial-about-slider-active .testimonial-box p {
  font-size: 20px;
  color: black;
  line-height: 30px;
}

@media (max-width: 767px) {
  .testimonial-about-slider-active .testimonial-box p {
    font-size: 16px;
    line-height: 26px;
  }
}

.testimonial-about-slider-active .slick-arrow {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  z-index: 9;
  cursor: pointer;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 36px;
  border: 2px solid #db0f30;
  color: #db0f30;
  border-radius: 50%;
  transition: all linear 0.3s;
  background: #fff;
}

.testimonial-about-slider-active .slick-arrow:hover {
  background: #db0f30;
  color: #fff;
}

.testimonial-about-slider-active .slick-arrow.prev {
  left: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-about-slider-active .slick-arrow.prev {
    left: 0;
  }
}

@media (max-width: 767px) {
  .testimonial-about-slider-active .slick-arrow.prev {
    left: -10px;
  }
}

.testimonial-about-slider-active .slick-arrow.next {
  right: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-about-slider-active .slick-arrow.next {
    right: 0;
  }
}

@media (max-width: 767px) {
  .testimonial-about-slider-active .slick-arrow.next {
    right: -10px;
  }
}

.testimonial-box-about-slider-small-active {
  margin-top: -40px;
}

.testimonial-box-about-slider-small-active .item {
  padding-top: 20px;
  padding-bottom: 50px;
}

.testimonial-box-about-slider-small-active .item .thumb {
  max-width: 70px;
  text-align: center;
}

.testimonial-box-about-slider-small-active .item .thumb img {
  display: inline-block;
  width: 40px;
}

.testimonial-box-about-slider-small-active .item .content {
  display: none;
  text-align: center;
}

.testimonial-box-about-slider-small-active .item .content .title {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.testimonial-box-about-slider-small-active .item .content span {
  font-size: 13px;
  font-weight: 500;
  color: #888890;
  white-space: nowrap;
}

.testimonial-box-about-slider-small-active .item.slick-center {
  margin-top: -20px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .testimonial-box-about-slider-small-active .item.slick-center {
    margin-top: -10px;
  }
}

.testimonial-box-about-slider-small-active .item.slick-center .thumb {
  max-width: 70px;
}

.testimonial-box-about-slider-small-active .item.slick-center .thumb img {
  width: 70px;
}

.testimonial-box-about-slider-small-active .item.slick-center .content {
  display: inline-block;
  margin: 10px 0 0 -24px;
}

/*===========================
    7.AQUI TEAM css 
===========================*/
.aqui-team-item .thumb {
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.aqui-team-item .thumb img {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  width: 100%;
}

.aqui-team-item .thumb::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 9;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.aqui-team-item .thumb ul {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  list-style-type: none;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.aqui-team-item .thumb ul li {
  display: inline-block;
  margin: 0 3px;
}

.aqui-team-item .thumb ul li a {
  display: inline-block;
  height: 36px;
  width: 36px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 36px;
  border-radius: 50px;
  color: #fff;
}

.aqui-team-item .thumb ul li a:hover {
  background: #fff;
  color: #04948c;
  border-color: #fff;
}

.aqui-team-item .content {
  padding-top: 27px;
}

.aqui-team-item .content .title {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 8px;
}

.aqui-team-item .content span {
  font-size: 14px;
  color: #81818d;
}

.aqui-team-item:hover .thumb::before {
  opacity: 0.5;
}

.aqui-team-item:hover .thumb ul {
  opacity: 1;
  visibility: visible;
}

.aqui-team-item:hover .thumb img {
  transform: scale(1.1);
}

.aqui-team-item.aqui-team-item-about .thumb {
  border-radius: 6px;
  overflow: hidden;
}

.aqui-team-item.aqui-team-item-about .thumb::before {
  background-color: #04948c;
}

.aqui-team-item.aqui-team-item-about .thumb ul {
  left: 30px;
  transform: translateX(0);
}

.aqui-team-item.aqui-team-item-about .thumb ul li a {
  border-radius: 6px;
}

.aqui-team-item.aqui-team-item-about:hover .thumb::before {
  opacity: 0.9;
}

.aqui-team-item.aqui-team-item-about.aqui-team-item-8 .thumb::before {
  background: #db0f30;
}

.aqui-team-item.aqui-team-item-about.aqui-team-item-8 .thumb ul li a:hover {
  color: #db0f30;
}

.team-btn a {
  background: transparent;
  color: black;
  border: 2px solid #e7eaef;
}

.team-btn a i {
  padding-left: 6px;
}

.team-btn a:hover {
  background: #04948c;
  color: #fff;
}

.aqui-team-about-area .team-btn a {
  border-color: #04948c;
  color: #04948c;
}

.aqui-team-about-area .team-btn a:hover {
  color: #fff;
}

.aqui-team-about-area.aqui-team-8-area .team-btn a {
  border-color: #db0f30;
  color: #db0f30;
}

.aqui-team-about-area.aqui-team-8-area .team-btn a:hover {
  background: #db0f30;
  color: #fff;
}

/*===========================
    8.AQUI PRICING css 
===========================*/
.aqui-pricing-area {
  background: #eef1f6;
}

.aqui-pricing-area {
  position: relative;
  z-index: 10;
}

.aqui-pricing-area .section-title {
  padding-bottom: 48px;
}

.aqui-pricing-area .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  vertical-align: middle;
  margin: 0;
}

.aqui-pricing-area .switch input {
  display: none;
}

.aqui-pricing-area .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .4s;
  transition: .4s;
  background: #fff;
}

.aqui-pricing-area .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  background-color: #04948c;
  -webkit-transition: .4s;
  transition: .4s;
}

.aqui-pricing-area .switch.off .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

.aqui-pricing-area .slider.round {
  border-radius: 34px;
}

.aqui-pricing-area .slider.round:before {
  border-radius: 50%;
}

.aqui-pricing-area ul.switch-toggler-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}

.aqui-pricing-area ul.switch-toggler-list li a {
  font-size: 14px;
  font-weight: 500;
  color: #505056;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

.aqui-pricing-area ul.switch-toggler-list li.active a {
  color: black;
}

.pricing-one__single {
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-one__single {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .pricing-one__single {
    margin-bottom: 30px;
  }
}

.pricing-one__single .pricig-heading {
  border-bottom: 1px solid #e1e4ea;
  padding-bottom: 25px;
}

.pricing-one__single .pricig-heading h6 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 12px;
}

.pricing-one__single .pricig-heading .price-range {
  font-size: 24px;
  font-weight: 400;
  color: black;
}

.pricing-one__single .pricig-heading .price-range sup {
  font-size: 24px;
}

.pricing-one__single .pricig-heading .price-range span {
  font-size: 44px;
  font-weight: 900;
}

.pricing-one__single .pricig-heading .price-range p {
  display: inline-block;
  font-size: 14px;
}

.pricing-one__single .pricig-heading>p {
  font-size: 14px;
}

.pricing-one__single .pricig-body {
  padding-top: 25px;
}

.pricing-one__single .pricig-body ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.pricing-one__single .pricig-body ul li {
  font-size: 15px;
  font-weight: 500;
  color: black;
  margin-bottom: 10px;
}

.pricing-one__single .pricig-body ul li i {
  height: 26px;
  width: 26px;
  font-size: 14px;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  background: #effaf3;
  color: #31c369;
}

.pricing-one__single .pricig-body .pricing-btn a {
  background: transparent;
  color: black;
  border: 2px solid #e7eaef;
}

.pricing-one__single .pricig-body .pricing-btn a:hover {
  background: #04948c;
  color: #fff;
  border-color: #04948c;
}

.pricing-one__single .pricing-rebon {
  position: absolute;
  right: 30px;
  top: -14px;
}

.pricing-one__single .pricing-rebon span {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #f8452d;
  line-height: 28px;
  padding: 0 18px;
  border-radius: 30px;
  box-shadow: 0px 10px 20px 0px rgba(183, 30, 10, 0.3);
}

.pricing-one__single.center {
  box-shadow: 0px 40px 40px 0px rgba(14, 17, 51, 0.1);
}

.pricing-one__single.center .pricig-body ul li i {
  color: #f8452d;
}

.pricing-one__single.center .pricig-body .pricing-btn a {
  background: #04948c;
  color: #fff;
  border-color: #04948c;
}

.pricing-one__single:hover {
  box-shadow: 0px 40px 40px 0px rgba(14, 17, 51, 0.1);
}


.pricing-one__single.pricing-one__single_2 .pricig-body ul li i {
  background: #eef4fe;
  color: #04948c;
}

.pricing-one__single.pricing-one__single_2 .pricig-body .pricing-btn a {
  border-radius: 30px;
}

.pricing-one__single.pricing-one__single_2 .pricig-body .pricing-btn a:hover {
  background: #04948c;
  border-color: #04948c;
}

.pricing-one__single.pricing-one__single_2 .pricig-body .pricing-rebon {
  right: 0;
  top: 20px;
}

.pricing-one__single.pricing-one__single_2 .pricig-body .pricing-rebon span {
  border-radius: 30px 0 0 30px;
  background: #04948c;
  box-shadow: none;
}

.pricing-one__single.pricing-one__single_2.active {
 background: white;
 transition: border-radius 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 box-shadow: inset 0 -3em 3em rgba(0,0,0,0.1),
             0 0  0 2px rgb(190, 190, 190),
             0.3em 0.3em 1em rgba(0,0,0,0.3);
  border-top: 36px solid rgb(34, 34, 34);
  border-radius: 36px;
}

.pricing-one__single.pricing-one__single_2.active .pricig-body .pricing-btn a {
  background: #a03f46;
  border-color: #a03f46;
  color: #fff;
}

.pricing-one__single.pricing-one__single_2.item-2 .pricig-body ul li i {
  background: #effaf3;
  color: #31c369;
}

.pricing-one__single.pricing-one__single_2:hover {
  border-color: #fff;
  border-top: 25px solid rgb(30, 30, 30);
  transform: translateY(-10px);
}

.aqui-pricing-2-area .aqui-section-title .nav {
  display: inline-block !important;
  border: 2px solid #e7eaef;
  padding: 3px;
  border-radius: 40px;
  margin-top: 25px;
  background: cadetblue;
  transition: border-radius 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: inset 0 -3em 3em rgba(0,0,0,0.1),
             0 0  0 2px rgb(190, 190, 190),
             0.3em 0.3em 1em rgba(0,0,0,0.3);
}

.aqui-pricing-2-area .aqui-section-title .nav li {
  display: inline-block;
}

.aqui-pricing-2-area .aqui-section-title .nav li a {
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  color: #505056;
  padding: 5px 20px;
}

.aqui-pricing-2-area .aqui-section-title .nav li a.active {
  color: black;
  background: burlywood;
}

.aqui-pricing-6-area .pricing-one__single .pricing-rebon span {
  background: #9b2cfa;
  box-shadow: none;
}

.aqui-pricing-6-area .pricing-one__single.center .pricig-body .pricing-btn a {
  background: #9b2cfa;
  border-color: #9b2cfa;
}

/*===========================
    10.AQUI BLOG css 
===========================*/
.aqui-blog-item .thumb {
  overflow: hidden;
  border-radius: 6px;
}

.aqui-blog-item .thumb img {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  width: 100%;
}

.aqui-blog-item .content {
  padding-top: 20px;
}

.aqui-blog-item .content .blog-meta ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.aqui-blog-item .content .blog-meta ul li {
  display: inline-block;
  font-size: 14px;
  padding-right: 22px;
  position: relative;
}

.aqui-blog-item .content .blog-meta ul li a {
  font-weight: 400;
  color: #505056;
}

.aqui-blog-item .content .blog-meta ul li:nth-child(1)::before {
  position: absolute;
  content: '';
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 5px;
  width: 5px;
  background: #04948c;
  border-radius: 50%;
}

.aqui-blog-item .content .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  margin-top: 2px;
}

.aqui-blog-item .content .title a {
  color: black;
}

.aqui-blog-item .content .title a:hover {
  color: #04948c;
}

.aqui-blog-item .content>a {
  font-size: 15px;
  font-weight: 500;
  color: black;
  margin-top: 14px;
}

.aqui-blog-item .content>a i {
  padding-left: 6px;
}

.aqui-blog-item .content>a:hover {
  color: #04948c;
}

.aqui-blog-item:hover .thumb img {
  transform: scale(1.1);
}

.aqui-blog-3-area .blog-btn a {
  background: transparent;
  color: black;
  border: 2px solid #e7eaef;
}

.aqui-blog-3-area .blog-btn a:hover {
  background: #ff6b58;
  border-color: #ff6b58;
  color: #fff;
}

.aqui-blog-3-area.aqui-blog-6-area .blog-btn a:hover {
  background: #9b2cfa;
  border-color: #9b2cfa;
}

.aqui-blog-3-area.aqui-blog-8-area {
  background: #eef1f6;
  position: relative;
  z-index: 10;
}

.aqui-blog-3-area.aqui-blog-8-area .aqui-blog-8-shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.aqui-blog-3-area.aqui-blog-8-area .aqui-blog-8-shape-2 {
  position: absolute;
  right: 0;
  bottom: 340px;
  z-index: -1;
}

.aqui-blog-3-area.aqui-blog-8-area .blog-btn a {
  border-color: #db0f30;
  color: #db0f30;
}

.aqui-blog-3-area.aqui-blog-8-area .blog-btn a:hover {
  background: #db0f30;
  color: #fff;
}

.aqui-blog-item-3 {
  box-shadow: 0px 15px 50px 0px rgba(14, 17, 51, 0.1);
  border-radius: 10px;
  padding: 35px;
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-blog-item-3 {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .aqui-blog-item-3 {
    padding: 15px;
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-blog-item-3 {
    display: flex;
  }
}

.aqui-blog-item-3 .thumb {
  max-width: 120px;
  min-width: 120px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .aqui-blog-item-3 .thumb {
    max-width: 100%;
    min-width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-blog-item-3 .thumb {
    max-width: 120px;
    min-width: 120px;
  }
}

.aqui-blog-item-3 .thumb img {
  width: 100%;
  transition: all linear 0.3s;
}

.aqui-blog-item-3 .content {
  padding-right: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-blog-item-3 .content {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .aqui-blog-item-3 .content {
    padding-right: 0;
    margin-top: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-blog-item-3 .content {
    padding-right: 50px;
    margin-top: 0;
  }
}

.aqui-blog-item-3 .content .title {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-blog-item-3 .content .title {
    font-size: 18px;
    line-height: 28px;
  }
}

.aqui-blog-item-3 .content .title a {
  color: black;
}

.aqui-blog-item-3 .content .title a:hover {
  color: #ff6b58;
}

.aqui-blog-item-3 .content ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.aqui-blog-item-3 .content ul li {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #505056;
  margin-right: 22px;
}

.aqui-blog-item-3 .content ul li i {
  padding-right: 6px;
}

.aqui-blog-item-3 .content ul li a {
  color: #505056;
  font-size: 14px;
  font-weight: 400;
}

.aqui-blog-item-3:hover .thumb img {
  transform: scale(1.1);
}

.aqui-blog-item-3.aqui-blog-item-6 .content .title a:hover {
  color: #9b2cfa;
}

.aqui-blog-item-3.aqui-blog-item-8 {
  background: #fff;
}

.aqui-blog-item-3.aqui-blog-item-8 .content .title a:hover {
  color: #db0f30;
}

/*--------------------------------------------------------
/ 8. Single Blog Page
/---------------------------------------------------------*/
.single-p-banner {
  padding-top: 158px;
  background-position: top center;
}

.post-cate {
  position: relative;
  z-index: 2;
  display: inline-block;
  color: #fff;
  line-height: .8;
  text-transform: uppercase;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.post-cate:hover {
  color: #fff;
}

.single-p-banner .banner-title {
  line-height: 60px;
  margin-bottom: 16px;
}

.single-p-banner .bp-meta {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
}

.single-p-banner .bp-meta a i,
.single-p-banner .bp-meta a {
  color: #fff;
}

.single-post-area {
  position: relative;
}

.single-post-area p {
  line-height: 30px;
  margin: 0 0 30px;
}

.post-thumb {
  position: relative;
  margin: 42px 0 35px;
}

.post-thumb img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.article-title {
  font-size: 26px;
  line-height: 34px;
  color: #262628;
  margin: 0 0 15px;
}

.article-text {
  font-size: 20px;
  padding-bottom: 16px;
  color: #262628;
}

.itens-proibidos {
  font-size: 18px;
  color: #262628;

}

.itens-proibidos h3 {
  font-size: 22px;
  color: #262628;
  padding-top: 10px;
}

.itens-proibidos p {
  margin-bottom: 16px;
  margin-top: 16px;
}

.itens-proibidos ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

.itens-proibidos li {
  padding-left: 40px;
  line-height: 50px;
}

.itens-proibidos li::before {
  content: "•";
  padding-right: 8px;
  color: black;
  font-size: 28px;
}

.regras-da-comunidade p {
  margin-bottom: 18px;
  margin-top: 16px;
  color: #262628;
  font-size: 18px;
}

.regras-da-comunidade h3 {
  font-size: 24px;
  color: #262628;
  padding-top: 10px;

}
.premium-hero-card {
  position: relative;
  width: 100%;
  padding-right: 15px;
}
.aqui-premium-hero {
  background-image: url(../images/download-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-premium-hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.aqui-premium-hero::before {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 70%;
  background-image: url(../images/premium-guy.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-premium-hero::before {
    right: 0;
    width: 550px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-premium-hero::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .aqui-premium-hero::before {
    display: none;
  }
}

.aqui-premium-hero .download-shape-1 {
  position: absolute;
  left: 95px;
  top: 95px;
  z-index: -1;
  animation: linear 20s animationFramesFour infinite;
}

.aqui-premium-hero .download-shape-2 {
  position: absolute;
  left: 150px;
  bottom: 100px;
  z-index: -1;
  animation: linear 20s animationFramesTwo infinite;
}

.aqui-premium-hero .download-shape-3 {
  position: absolute;
  top: 140px;
  right: 250px;
  z-index: -1;
  animation: linear 20s animationFramesFive infinite;
}
.any-card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  min-height: 200px;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #eef0f4;
  box-shadow: 0px -3px 0px 0px rgba(255, 62, 102, 0.004), 0px 16px 16px 0px rgba(14, 17, 51, 0.1);
  border-radius: 10px;
}
.premium-feature-card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  min-height: 200px;
  width: 25%;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #eef0f4;
  box-shadow: 0px -3px 0px 0px rgba(255, 62, 102, 0.004), 0px 16px 16px 0px rgba(14, 17, 51, 0.1);
  border-radius: 10px;
}
.premium-feature-card-title {
  font-size: 22px;
  margin-bottom: .75rem;
}
.sobre-o-premium {
  font-size: 18px;
  color: #262628;

}

.sobre-o-premium h3 {
  font-size: 22px;
  color: #262628;
  margin-top: 20px;
}

.sobre-o-premium p {
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: 18px;
  line-height: 34px;
}

.sobre-o-premium ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

.sobre-o-premium li {
  padding-left: 40px;
  line-height: 34px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.sobre-o-premium li::before {
  content: "•";
  padding-right: 8px;
  color: black;
  font-size: 28px;
}

.sobre {
  font-size: 18px;
  color: #262628;

}

.sobre h3 {
  font-size: 22px;
  color: #262628;
  margin-top: 20px;
}

.sobre p {
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: 18px;
  line-height: 34px;
}

.sobre ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

.sobre li {
  padding-left: 40px;
  line-height: 30px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.sobre li::before {
  content: "•";
  padding-right: 8px;
  color: black;
  font-size: 28px;
}

.seguranca {
  font-size: 18px;
  color: #262628;

}

.seguranca h3 {
  font-size: 22px;
  color: #262628;
  margin-top: 20px;
}

.seguranca p {
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: 18px;
  line-height: 34px;
}

.seguranca ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

.seguranca li {
  padding-left: 40px;
  line-height: 30px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.seguranca li::before {
  content: "•";
  padding-right: 8px;
  color: black;
  font-size: 28px;
}

.promover {
  font-size: 18px;
  color: #262628;

}

.promover h3 {
  font-size: 22px;
  color: #262628;
  margin-top: 20px;
}

.promover p {
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: 18px;
  line-height: 34px;
}

.promover ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}

.promover li {
  padding-left: 40px;
  line-height: 30px;
  margin-bottom: 25px;
  margin-top: 25px;
}

.promover li::before {
  content: "•";
  padding-right: 8px;
  color: black;
  font-size: 28px;
}

.feature {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
  margin-bottom: 25px;
}



blockquote {
  position: relative;
  margin: 41px 0;
  padding: 67px 50px 40px;
  background: #f8f8f8;
  border-radius: 10px;
  -webkit-box-shadow: -4px 0px 0px 0px #04948c;
  -moz-box-shadow: -4px 0px 0px 0px #04948c;
  box-shadow: -4px 0px 0px 0px #04948c;
}

blockquote:before {
  position: absolute;
  left: 50px;
  top: 68px;
  content: ",,";
  font-family: 'Open Sans', sans-serif;
  font-size: 100px;
  line-height: 25px;
  color: #04948c;
  letter-spacing: -5px;
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

blockquote:after {
  position: absolute;
  right: 44px;
  bottom: 122px;
  content: ",,";
  font-family: 'Open Sans', sans-serif;
  font-size: 200px;
  line-height: 25px;
  color: #f0f0f0;
  letter-spacing: -10px;
}

blockquote p {
  font-size: 20px;
  line-height: 32px;
  color: #2c234d;
  font-weight: 600;
  margin: 0 0 18px;
}

blockquote cite {
  display: block;
  font-size: 14px;
  line-height: .8;
  color: #797781;
  font-style: normal;
}

.single-post-area blockquote p {
  line-height: 32px;
  margin: 0 0 18px;
}

.post-tags {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.post-tags h5 {
  font-size: 14px;
  color: #2c234d;
  font-weight: 600;
  margin: 7px 20px 0 0;
}

.post-tags a {
  display: inline-block;
  height: 30px;
  background: #f8f8f8;
  border-radius: 3px;
  text-align: center;
  font-size: 13px;
  color: #797781;
  line-height: 30px;
  padding: 0 18px;
  font-weight: 600;
  margin: 0 10px 0 0;
}

.post-tags a:hover {
  background: #04948c;
  color: #fff;
}

.post-share {
  position: relative;
  border-top: 1px solid #ebecf2;
  padding: 30px 0 0;
  margin: 20px 0 0;
  display: flex;
  justify-content: flex-start;
}

.post-share h5 {
  font-size: 14px;
  color: #2c234d;
  font-weight: 600;
  margin: 13px 20px 0 0;
}

.post-share a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #446bb9;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  font-size: 14px;
  margin-right: 6px;
}

.post-share a.fac {
  background: #446bb9;
}

.post-share a.twi {
  background: #00aced;
}

.post-share a.goo {
  background: #ea4335;
}

.post-share a:hover {
  -webkit-box-shadow: 0px 10px 20px 0px rgba(9, 111, 150, 0.3);
  -moz-box-shadow: 0px 10px 20px 0px rgba(9, 111, 150, 0.3);
  box-shadow: 0px 10px 20px 0px rgba(9, 111, 150, 0.3);
}

.post-admin {
  position: relative;
  margin: 84px 0;
  padding: 44px 40px 55px 150px;
  background: transparent;
  border-radius: 10px;
  -webkit-box-shadow: -4px 0px 0px 0px #04948c;
  -moz-box-shadow: -4px 0px 0px 0px #04948c;
  box-shadow: -4px 0px 0px 0px #04948c;
}

.post-admin img {
  position: absolute;
  left: 40px;
  top: 40px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.post-admin a {
  display: inline-block;
  font-size: 18px;
  line-height: 22px;
  color: #2c234d;
  font-weight: 700;
  margin: 0 0 7px;
}

.post-admin span {
  display: block;
  font-size: 14px;
  color: #797781;
  font-weight: 400;
  line-height: .8;
  margin-bottom: 27px;
}

.post-admin p {
  font-size: 16px;
  line-height: 26px;
  color: #5d5a67;
  margin: 0;
}

.comment-area {
  position: relative;
  margin: 80px 0 66px;
}

.comment-area h3 {
  font-size: 20px;
  line-height: .8;
  color: #2c234d;
  margin: 0 0 30px;
}

.comment-list {
  margin: 0;
  padding: 0;
}

.comment-list li {
  list-style: none;
  display: block;
  margin: 0 0 0;
}

.comment-list .children {
  margin: 0 0 0;
  padding-left: 100px;
}

.single-comment {
  position: relative;
  padding-left: 100px;
  padding-top: 7px;
  padding-bottom: 30px;
}

.c-border {
  border-bottom: 1px solid #ebecf2;
  margin-top: 24px;
}

.single-comment img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.children .single-comment img {
  width: 50px;
  height: 50px;
}

.children .single-comment {
  padding-left: 80px;
}

.single-comment h5 {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 7px;
}

.single-comment h5 a {
  color: inherit;
}

.single-comment h5 a:hover {
  color: #04948c;
}

.single-comment span {
  display: block;
  font-size: 13px;
  line-height: .8;
  font-weight: 600;
  color: #797781;
  margin: 0 0 24px;
}

.comment {
  position: relative;
  margin: 0 0 14px;
}

.comment p {
  font-size: 14px;
  line-height: 24px;
  color: #686875;
  margin: 0;
}

.single-comment .comment-reply-link {
  display: inline-block;
  font-size: 12px;
  line-height: .8;
  color: #04948c;
  font-weight: 600;
}

.single-comment .comment-reply-link i {
  font-size: 16px;
  margin-right: 11px;
  font-weight: 600;
  position: relative;
  top: 2px;
}

.single-comment .comment-reply-link:hover {
  color: #2c234d;
}

.comment-form-area {
  position: relative;
}

.comment-form-area h3 {
  color: #2c234d;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 9px;
}

.comment-form-area p {
  font-size: 14px;
  line-height: 24px;
  color: #686875;
  margin: 0 0 43px;
}

.comment-form {
  position: relative;
}

.comment-form input[type="text"],
.comment-form input[type="number"],
.comment-form input[type="url"],
.comment-form textarea,
.comment-form input[type="email"] {
  width: 100%;
  height: 56px;
  font-size: 14px;
  line-height: 56px;
  font-weight: 400;
  border-radius: 3px;
  border: none;
  background: #f5f5f7;
  color: #7e7c87;
  outline: none;
  border: 1px solid transparent;
  padding: 0 20px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.comment-form textarea {
  height: 180px;
  resize: none;
  line-height: 30px;
  padding-top: 14px;
}

.comment-form textarea::-moz-placeholder,
.comment-form input[type="text"]::-moz-placeholder,
.comment-form input[type="url"]::-moz-placeholder,
.comment-form input[type="number"]::-moz-placeholder,
.comment-form input[type="email"]::-moz-placeholder {
  color: #7e7c87;
  opacity: 1;
}

.comment-form textarea::-ms-input-placeholder,
.comment-form input[type="text"]::-ms-input-placeholder,
.comment-form input[type="url"]::-ms-input-placeholder,
.comment-form input[type="number"]::-ms-input-placeholder,
.comment-form input[type="email"]::-ms-input-placeholder {
  color: #7e7c87;
  opacity: 1;
}

.comment-form textarea::-webkit-input-placeholder,
.comment-form input[type="text"]::-webkit-input-placeholder,
.comment-form input[type="url"]::-webkit-input-placeholder,
.comment-form input[type="number"]::-webkit-input-placeholder,
.comment-form input[type="email"]::-webkit-input-placeholder {
  color: #7e7c87;
  opacity: 1;
}

.comment-form textarea:focus,
.comment-form input[type="url"]:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="number"]:focus,
.comment-form input[type="email"]:focus {
  background: transparent;
  border-color: #ece9f9;
  -webkit-box-shadow: 0px 14px 16px 0px rgba(11, 2, 55, 0.1);
  -moz-box-shadow: 0px 14px 16px 0px rgba(11, 2, 55, 0.1);
  box-shadow: 0px 14px 16px 0px rgba(11, 2, 55, 0.1);
}

.comment-form button,
.comment-form input[type="submit"] {
  height: 50px;
  border-radius: 3px;
  background: #04948c;
  color: #fff;
  text-align: center;
  border: none;
  outline: none;
  padding: 0 36px;
  font-size: 13px;
  line-height: 50px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.comment-form button:hover,
.contact-form input[type="submit"]:hover {
  -webkit-box-shadow: 0px 20px 30px 0px rgba(26, 8, 119, 0.24);
  -moz-box-shadow: 0px 20px 30px 0px rgba(26, 8, 119, 0.24);
  box-shadow: 0px 20px 30px 0px rgba(26, 8, 119, 0.24);
}

.save-comment {
  position: relative;
  margin: 5px 0 25px;
}

.save-comment input[type="checkbox"] {
  display: none;
}

.save-comment label {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 400;
  padding-left: 31px;
  position: relative;
  cursor: pointer;
  color: #686875;
  margin: 0 0 0;
}

.save-comment label:before {
  background: transparent;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  border-radius: 3px;
  top: 3px;
  width: 16px;
  border: 2px solid #ababb1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.save-comment input:checked+label::after {
  background: transparent;
  bottom: 0;
  font-family: 'ElegantIcons';
  content: "\4e";
  color: #04948c;
  font-size: 10px;
  left: 2px;
  position: absolute;
  top: -1px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.post-item-1 {
  position: relative;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(21, 14, 56, 0.08);
  -moz-box-shadow: 0px 2px 4px 0px rgba(21, 14, 56, 0.08);
  box-shadow: 0px 2px 4px 0px rgba(21, 14, 56, 0.08);
}

.post-item-1 img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.b-post-details {
  position: relative;
  padding: 30px 35px 37px;
}

.bp-meta {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin: 0 0 15px;
}

.bp-meta a {
  display: inline-block;
  font-size: 14px;
  line-height: .8;
  color: #505056;
  font-weight: 600;
  margin-right: 30px;
}

.bp-meta a i {
  color: #04948c;
  margin-right: 9px;
  position: relative;
  top: 1px;
}

.bp-meta a:last-child {
  margin-right: 0;
}

.bp-meta a:hover {
  color: #04948c;
}

.b-post-details h3 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 16px;
  padding-top: 10px;
  font-weight: 700;
}

.b-post-details h3 a {
  color: inherit;
}

.b-post-details h3 a:hover {
  color: #04948c;
}

.post-item-1:hover {
  -webkit-box-shadow: 0px 30px 50px 0px rgba(11, 2, 55, 0.1);
  -moz-box-shadow: 0px 30px 50px 0px rgba(11, 2, 55, 0.1);
  box-shadow: 0px 30px 50px 0px rgba(11, 2, 55, 0.1);
}

.b-post-details a.read-more {
  font-size: 14px;
  font-weight: 700;
  color: #505056;
}

.b-post-details a.read-more i {
  padding-left: 8px;
}

.b-post-details a.read-more:hover {
  color: #04948c;
}

/*===========================
    10.AQUI PROJECT css 
===========================*/
.aqui-project-area .aqui-project-box {
  background-image: url(../images/project-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-left: 70px;
  padding-top: 75px;
  padding-bottom: 85px;
  position: relative;
  overflow: hidden;
  border-radius: 48px;
}

@media (max-width: 767px) {
  .aqui-project-area .aqui-project-box {
    padding-left: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-project-area .aqui-project-box {
    padding-left: 70px;
  }
}

.aqui-project-area .aqui-project-box .aqui-project-thumb {
  position: absolute;
  right: 70px;
  bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-project-area .aqui-project-box .aqui-project-thumb {
    right: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-project-area .aqui-project-box .aqui-project-thumb {
    display: none;
  }
}

@media (max-width: 767px) {
  .aqui-project-area .aqui-project-box .aqui-project-thumb {
    display: none;
  }
}

.aqui-project-content {
  padding-right: 50px;
}

.aqui-project-content .title {
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  padding-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-project-content .title {
    font-size: 36px;
    line-height: 46px;
  }
}

@media (max-width: 767px) {
  .aqui-project-content .title {
    font-size: 30px;
    line-height: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-project-content .title {
    font-size: 36px;
    line-height: 46px;
  }
}

.aqui-project-content p {
  color: #fff;
  opacity: 0.8;
}

.aqui-project-content .input-box {
  display: flex;
}

@media (max-width: 767px) {
  .aqui-project-content .input-box {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-project-content .input-box {
    display: flex;
  }
}

.aqui-project-content .input-box input {
  width: 100%;
  height: 50px;
  padding-left: 30px;
  border-radius: 6px;
  border: 0;
}

.aqui-project-content .input-box button {
  margin-left: 10px;
  padding: 0 30px;
  border-radius: 6px;
  padding: 0 25px;
  background: #0e1133;
  border: 0;
  color: #fff;
  line-height: 50px;
}

@media (max-width: 767px) {
  .aqui-project-content .input-box button {
    margin-top: 20px;
    margin-left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-project-content .input-box button {
    margin-top: 0px;
    margin-left: 10px;
  }
}

.aqui-project-3-area.aqui-project-5-area {
  background: #eef1f6;
}

.aqui-project-3-box {
  background-image: url(../images/project-bg-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding: 55px 70px;
  box-shadow: 0px 40px 50px 0px rgba(138, 16, 0, 0.3);
  margin-bottom: -110px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

@media (max-width: 767px) {
  .aqui-project-3-box {
    text-align: center;
  }
}

.aqui-project-3-box .title {
  color: #fff;
  font-size: 46px;
  line-height: 56px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-project-3-box .title {
    font-size: 36px;
    line-height: 46px;
  }
}

@media (max-width: 767px) {
  .aqui-project-3-box .title {
    font-size: 35px;
    line-height: 46px;
    margin-bottom: 30px;
  }
}

.aqui-project-3-box a {
  background: #fff;
  color: black;
  border-color: #fff;
  line-height: 55px;
  padding: 0 40px;
}

/*===========================
    10.AQUI FOOTER css 
===========================*/
.aqui-footer-area {
  background: #eef1f6;
  padding-top: 40px;
  padding-bottom: 60px;
}

.aqui-footer-area.aqui-footer-3-area.aqui-footer-5-area {
  background: #fff;
}

.aqui-footer-area.aqui-footer-about-area {
  padding-top: 230px;
}

.aqui-footer-area.aqui-footer-about-area.aqui-footer-8-area {
  background: #fff;
}

.aqui-footer-area.aqui-footer-about-area.aqui-footer-8-area .footer-about-widget .social ul li a {
  border: 2px solid #e6e7ea;
}

.aqui-footer-area.aqui-footer-about-area.aqui-footer-8-area .footer-about-widget .social ul li a:hover {
  background: #db0f30;
  border-color: #db0f30;
  color: #fff;
}

.aqui-footer-area.aqui-footer-about-area.aqui-footer-8-area .footer-navigation ul li a:hover {
  color: #db0f30;
}

.aqui-footer-area.aqui-footer-about-area.aqui-footer-8-area .footer-widget-info ul li a i {
  color: #db0f30;
}

.aqui-footer-area.aqui-footer-about-area.aqui-footer-8-area .footer-copyright .apps-download-btn ul li a {
  background: #0e1133;
  color: #fff;
  border-color: black;
}

.aqui-footer-area.aqui-footer-about-area.aqui-footer-8-area .footer-copyright .apps-download-btn ul li a:hover {
  background: #fff;
  color: black;
}

.aqui-footer-area.aqui-footer-about-area.aqui-footer-8-area .footer-copyright .apps-download-btn ul li a.item-2 {
  background: #fff;
  color: black;
}

.aqui-footer-area.aqui-footer-about-area.aqui-footer-8-area .footer-copyright .apps-download-btn ul li a.item-2:hover {
  background: #0e1133;
  color: #fff;
  border-color: black;
}

.footer-about-widget {
  padding-right: 70px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .footer-about-widget {
    text-align: center;
    padding-right: 0;
  }
}

.footer-about-widget p {
  padding-top: 25px;
}

.footer-about-widget>a {
  font-size: 15px;
  font-weight: 500;
  color: black;
  margin-top: 15px;
}

.footer-about-widget>a i {
  padding-left: 6px;
}

.footer-about-widget .social ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.footer-about-widget .social ul li {
  display: inline-block;
}

.footer-about-widget .social ul li a {
  height: 36px;
  width: 36px;
  text-align: center;
  background: #fff;
  color: black;
  border-radius: 6px;
  line-height: 36px;
  margin-right: 5px;
}

.footer-about-widget .social ul li a:hover {
  background: #04948c;
  color: #fff;
}

.footer-about-widget.footer-about-widget-2 ul li a:hover {
  background: #ff3e66;
}

.footer-about-widget.footer-about-widget-3 ul li a:hover {
  background: #ff6b58;
}

.footer-about-widget.footer-about-widget-6 ul li a:hover {
  background: #9b2cfa;
}

.footer-about-widget.footer-about-widget-5 ul li a:hover {
  background: #801f82;
}

.footer-navigation {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .footer-navigation {
    margin-left: 12px;
  }
}

.footer-navigation .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-navigation ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.footer-navigation ul li a {
  color: #505056;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.footer-navigation ul li a:hover {
  color: #04948c;
}

.footer-navigation.footer-navigation-2 ul li a:hover {
  color: #ff3e66;
}

.footer-navigation.footer-navigation-3 ul li a:hover {
  color: #ff6b58;
}

.footer-navigation.footer-navigation-6 ul li a:hover {
  color: #9b2cfa;
}

.footer-navigation.footer-navigation-5 ul li a:hover {
  color: #801f82;
}

.footer-widget-info {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .footer-widget-info {
    margin-left: 12px;
  }
}

.footer-widget-info .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-widget-info ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.footer-widget-info ul li a {
  color: #505056;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.footer-widget-info ul li a i {
  position: absolute;
  left: 0;
  top: 0;
  color: #04948c;
}

.footer-copyright {
  padding-top: 24px;
  margin-top: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-copyright {
    display: block !important;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .footer-copyright {
    display: block !important;
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-copyright .apps-download-btn {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .footer-copyright .apps-download-btn {
    margin-bottom: 20px;
  }
}

.footer-copyright .apps-download-btn ul {
  padding: 0;
  list-style-type: none;
}

.footer-copyright .apps-download-btn ul li {
  display: inline-block;
  margin-right: 8px;
}

@media (max-width: 767px) {
  .footer-copyright .apps-download-btn ul li {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-copyright .apps-download-btn ul li {
    margin-bottom: 0px;
  }
}

.footer-copyright .apps-download-btn ul li a {
  background: #fff;
  color: black;
  line-height: 40px;
  padding: 0 23px;
  border-radius: 6px;
  border: 2px solid #fff;
}

.footer-copyright .apps-download-btn ul li a i {
  padding-right: 6px;
}

.footer-copyright .apps-download-btn ul li a:hover {
  background: transparent;
  color: black;
  border-color: #e7eaef;
}

.footer-copyright .apps-download-btn ul li a.item-2 {
  background: transparent;
  color: black;
  border-color: #e7eaef;
}

.footer-copyright .apps-download-btn ul li a.item-2:hover {
  background: #fff;
  color: black;
}

.aqui-error-area {
  padding-top: 80px;
  padding-bottom: 25px;
}

.aqui-error-content span {
  display: block;
  font-size: 50px;
  color: #db0f30;
  font-weight: 800;
  padding-top: 40px;
}

.aqui-error-content .title {
  font-size: 50px;
  font-weight: 800;
  color: black;
  padding-bottom: 11px;
}

.aqui-error-content p {
  line-height: 26px;
  color: #505056;
  font-size: 16px;
  padding: 0 50px;
}

.aqui-error-content a {
  border: 2px solid #04948c;
  line-height: 45px;
  padding: 0 35px;
  border-radius: 6px;
  margin-top: 30px;
}

.aqui-signup-area.aqui-signup-8-area {
  background: #eef1f6;
}

.aqui-signup-area.aqui-signup-8-area .aqui-signup-box form .input-box button {
  background: #db0f30;
}

.aqui-signup-box {
  background-image: url(../images/signup-bg.jpg);
  padding: 63px 100px 60px;
  border-radius: 10px;
  box-shadow: 0px 40px 50px 0px rgba(0, 24, 72, 0.3);
  overflow: hidden;
  position: relative;
  margin-bottom: -160px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-signup-box {
    padding: 30px 50px;
  }
}

@media (max-width: 767px) {
  .aqui-signup-box {
    padding: 30px;
  }
}

.aqui-signup-box .thumb {
  position: absolute;
  right: 70px;
  bottom: 30px;
  width: 160px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-signup-box .thumb {
    display: none;
  }
}

@media (max-width: 767px) {
  .aqui-signup-box .thumb {
    display: none;
  }
}

.aqui-signup-box span {
  color: #fff;
  font-weight: 500;
}

.aqui-signup-box .title {
  font-size: 46px;
  color: #fff;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .aqui-signup-box .title {
    font-size: 30px;
  }
}

.aqui-signup-box form {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-signup-box form {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .aqui-signup-box form {
    flex-direction: column;
  }
}

.aqui-signup-box form .input-box {
  margin-right: 10px;
  margin-top: 10px;
}

.aqui-signup-box form .input-box input {
  width: 300px;
  background: #fff;
  line-height: 55px;
  border-radius: 6px;
  padding-left: 30px;
  border: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-signup-box form .input-box input {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .aqui-signup-box form .input-box input {
    width: 100%;
  }
}

.aqui-signup-box form .input-box button {
  background: #04948c;
  line-height: 55px;
  border: 0;
  color: #fff;
  border-radius: 6px;
  padding: 0 45px;
  font-weight: 500;
}

.aqui_checkbox_common {
  margin-top: 15px;
}

.aqui_checkbox_common label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  font-weight: 400;
}

.aqui_checkbox_common label a {
  text-decoration: underline;
  color: #b3b6bc;
}

.aqui_checkbox_common input[type="checkbox"] {
  display: none;
}

.aqui_checkbox_common input[type="checkbox"]+label span {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: -1px 15px 0 0;
  vertical-align: middle;
  cursor: pointer;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
}

.aqui_checkbox_common input[type="checkbox"]+label span:before {
  color: #fff;
  content: "\f00c";
  font-family: 'Font Awesome 5 Pro';
  font-size: 11px;
  position: absolute;
  text-align: center;
  left: 3px;
  top: -1px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.aqui_checkbox_common input[type="checkbox"]:checked+label span {
  background: #2079ff;
  border-color: #2079ff;
}

.aqui_checkbox_common input[type="checkbox"]:checked+label span:before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.aqui_checkbox_common input[type="checkbox"]+label span,
.aqui_checkbox_common input[type="checkbox"]:checked+label span {
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.aqui_checkbox_common.checkbox_style2 input[type="checkbox"]+label span {
  border-radius: 3px;
}

/*===========================
    11.AQUI ABOUT css 
===========================*/
.aqui-about-box {
  background: #f0f1f7;
  padding: 70px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 767px) {
  .aqui-about-box {
    padding: 30px;
    text-align: center;
  }
}

.aqui-about-box .about-thumb {
  position: absolute;
  left: 0;
  top: -65px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-about-box .about-thumb {
    position: static;
  }
}

@media (max-width: 767px) {
  .aqui-about-box .about-thumb {
    display: none;
  }
}

.aqui-about-content {
  padding-right: 50px;
}

@media (max-width: 767px) {
  .aqui-about-content {
    padding-right: 0;
  }
}

.aqui-about-content span {
  font-size: 14px;
  font-weight: 500;
  color: #ff3e66;
}

.aqui-about-content .title {
  font-size: 44px;
  line-height: 54px;
  margin-top: 8px;
  margin-bottom: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-about-content .title {
    font-size: 32px;
    line-height: 42px;
  }
}

@media (max-width: 767px) {
  .aqui-about-content .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.aqui-about-service {
  position: relative;
  padding-left: 40px;
}

@media (max-width: 767px) {
  .aqui-about-service {
    text-align: left;
  }
}

.aqui-about-service .icon {
  position: absolute;
  left: 0;
  top: 5px;
}

.aqui-about-service .icon i {
  height: 26px;
  width: 26px;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  color: #fff;
  background: #31c369;
}

.aqui-about-service .title {
  font-size: 20px;
  font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-about-service .title {
    font-size: 16px;
  }
}

.aqui-about-service p {
  font-size: 15px;
  margin-top: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-about-service p {
    font-size: 14px;
  }
}

.aqui-about-3-area .aqui-traffic-title {
  padding-right: 100px;
}

@media (max-width: 767px) {
  .aqui-about-3-area .aqui-traffic-title {
    text-align: center;
    padding-right: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-about-3-area .aqui-traffic-title {
    text-align: left;
    padding-right: 50px;
  }
}

.aqui-about-3-area .aqui-traffic-title .title {
  margin-bottom: 15px;
}

.aqui-about-3-area .aqui-traffic-service {
  padding-left: 0;
  padding-right: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-about-3-area .aqui-traffic-service {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .aqui-about-3-area .aqui-traffic-service {
    text-align: center;
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-about-3-area .aqui-traffic-service {
    text-align: left;
    padding-right: 50px;
    padding-left: 0;
  }
}

.aqui-about-3-area .aqui-traffic-service .icon {
  position: static;
  background-image: -moz-linear-gradient(120deg, #04948c 0%, #84bcfa 100%);
  background-image: -webkit-linear-gradient(120deg, #04948c 0%, #84bcfa 100%);
  background-image: -ms-linear-gradient(120deg, #04948c 0%, #84bcfa 100%);
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  line-height: 50px;
  box-shadow: 0px 6px 10px 0px rgba(16, 73, 189, 0.3);
  margin-bottom: 23px;
}

.aqui-about-3-area .aqui-traffic-service.item-2 .icon {
  background-image: -moz-linear-gradient(120deg, #31c369 0%, #a0eac2 100%);
  background-image: -webkit-linear-gradient(120deg, #31c369 0%, #a0eac2 100%);
  background-image: -ms-linear-gradient(120deg, #31c369 0%, #a0eac2 100%);
}

.aqui-about-3-area .aqui-traffic-service.item-3 .icon {
  background-image: -moz-linear-gradient(120deg, #9b2cfa 0%, #d8aaff 100%);
  background-image: -webkit-linear-gradient(120deg, #9b2cfa 0%, #d8aaff 100%);
  background-image: -ms-linear-gradient(120deg, #9b2cfa 0%, #d8aaff 100%);
}

.aqui-about-3-area .aqui-traffic-service.item-4 .icon {
  background-image: -moz-linear-gradient(120deg, #f8452d 0%, #f7b8af 100%);
  background-image: -webkit-linear-gradient(120deg, #f8452d 0%, #f7b8af 100%);
  background-image: -ms-linear-gradient(120deg, #f8452d 0%, #f7b8af 100%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-about-thumb-3 {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .aqui-about-thumb-3 {
    margin-bottom: 40px;
  }
}

.aqui-about-thumb-3 img {
  width: 100%;
}

.aqui-about-top-title-area {
  padding-top: 227px;
}

.aqui-about-top-title {
  padding-right: 65px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-about-top-title {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .aqui-about-top-title {
    padding-right: 0;
  }
}

.aqui-about-top-title .title {
  font-size: 60px;
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-about-top-title .title {
    font-size: 52px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-about-top-title .title {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .aqui-about-top-title .title {
    font-size: 32px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-about-top-title .title {
    font-size: 40px;
  }
}

.aqui-about-top-title .title::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 20px;
  background: #ff6e85;
  z-index: -1;
}

.aqui-about-top-title p {
  font-size: 20px;
  color: black;
  padding-top: 18px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-about-top-title p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-about-top-title p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .aqui-about-top-title p {
    font-size: 16px;
  }
}

.aqui-about-page-area {
  padding-top: 462px;
  padding-bottom: 100px;
  background-image: url(../images/about-page-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 345px;
}

@media (max-width: 767px) {
  .aqui-about-page-area {
    margin-top: 80px;
    padding-top: 80px;
  }
}

.aqui-about-page-content {
  position: relative;
}

.aqui-about-page-content .title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.aqui-about-page-content p {
  color: #fff;
  padding-top: 15px;
  opacity: 0.7;
}

.aqui-about-page-content a {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  line-height: 40px;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 43px;
}

.aqui-about-page-content a:hover {
  background: #fff;
  color: #04948c;
}

.aqui-about-page-content::before {
  position: absolute;
  content: '';
  left: 0;
  top: -710px;
  height: 645px;
  width: 80vw;
  background-image: url(../images/about-page-thumb.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-about-page-content::before {
    width: 94vw;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-about-page-content::before {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .aqui-about-page-content::before {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-about-page-content::before {
    width: 100%;
    height: 400px;
    display: block;
  }
}

.aqui-how-it-work-content>.title {
  font-size: 44px;
}

.aqui-how-it-work-content p {
  font-size: 18px;
  padding-top: 9px;
}

.aqui-how-it-work-content .how-it-work-box {
  position: relative;
  padding-left: 70px;
  margin-top: 45px;
}

.aqui-how-it-work-content .how-it-work-box span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  background: #9AD4D1;
  color: #04948c;
  font-size: 22px;
  font-weight: 500;
}

.aqui-how-it-work-content .how-it-work-box .title {
  font-size: 18px;
  font-weight: 500;
}

.aqui-how-it-work-content .how-it-work-box:hover span {
  background: #04948c;
  box-shadow: 0px 14px 20px 0px rgba(0, 43, 130, 0.3);
  color: #fff;
}

.aqui-about-8-area {
  background-image: url(../images/background-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.aqui-about-8-box {
  padding: 50px 50px 145px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 40px 40px 0px rgba(14, 17, 51, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-about-8-box {
    padding: 50px 25px 145px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-about-8-box {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .aqui-about-8-box {
    margin-bottom: 30px;
    padding: 50px 20px 145px;
  }
}

.aqui-about-8-box .thumb {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.aqui-about-8-box .title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  margin-bottom: 14px;
}

@media (max-width: 767px) {
  .aqui-about-8-box .title {
    font-size: 24px;
    line-height: 34px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-about-8-box .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.aqui-about-8-box a {
  border: 2px solid #db0f30;
  color: #db0f30;
  background: #fff;
  margin-top: 30px;
}

.aqui-about-8-box a:hover {
  color: #fff;
  background: #db0f30;
  border-color: #db0f30;
}

/*===========================
    12.AQUI COUNTER css 
===========================*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-counter-area {
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .aqui-counter-area {
    padding-bottom: 100px;
  }
}

.aqui-counter-area.aqui-counter-5-area {
  background: #eef1f6;
}

.aqui-single-counter {
  padding: 30px;
  position: relative;
  background: #fff;
  height: 160px;
  background-image: -moz-linear-gradient(140deg, #ddf4fd 0%, #eaf9ff 100%);
  background-image: -webkit-linear-gradient(140deg, #ddf4fd 0%, #eaf9ff 100%);
  background-image: -ms-linear-gradient(140deg, #ddf4fd 0%, #eaf9ff 100%);
  border-radius: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-single-counter {
    padding: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-single-counter {
    margin-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .aqui-single-counter {
    margin-bottom: 90px;
  }
}

.aqui-single-counter .counter-content {
  background: #fff;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0px 30px 40px 0px rgba(0, 41, 57, 0.1);
  padding-top: 37px;
  padding-bottom: 40px;
}

.aqui-single-counter .counter-content .title {
  font-size: 40px;
  font-weight: 400;
  margin-top: 5px;
}

.aqui-single-counter .counter-content .title span {
  font-weight: 700;
}

.aqui-single-counter .counter-content p {
  font-size: 14px;
  font-weight: 500;
}

.aqui-single-counter.item-2 {
  background-image: -moz-linear-gradient(140deg, #fdead3 0%, #fff7ee 100%);
  background-image: -webkit-linear-gradient(140deg, #fdead3 0%, #fff7ee 100%);
  background-image: -ms-linear-gradient(140deg, #fdead3 0%, #fff7ee 100%);
}

.aqui-single-counter.item-2 .counter-content {
  box-shadow: 0px 30px 40px 0px rgba(56, 31, 0, 0.1);
}

.aqui-single-counter.item-3 {
  background-image: -moz-linear-gradient(140deg, #dafedb 0%, #f0fcf0 100%);
  background-image: -webkit-linear-gradient(140deg, #dafedb 0%, #f0fcf0 100%);
  background-image: -ms-linear-gradient(140deg, #dafedb 0%, #f0fcf0 100%);
}

.aqui-single-counter.item-3 .counter-content {
  box-shadow: 0px 30px 40px 0px rgba(0, 74, 1, 0.1);
}

.aqui-single-counter.item-4 {
  background-image: -moz-linear-gradient(140deg, #fedaf4 0%, #fceff7 100%);
  background-image: -webkit-linear-gradient(140deg, #fedaf4 0%, #fceff7 100%);
  background-image: -ms-linear-gradient(140deg, #fedaf4 0%, #fceff7 100%);
}

.aqui-single-counter.item-4 .counter-content {
  box-shadow: 0px 30px 40px 0px rgba(74, 0, 54, 0.1);
}

/*===========================
    13.AQUI VIDEO PLAYER css 
===========================*/
.aqui-video-player-slider .slick-arrow {
  position: absolute;
  right: 0;
  bottom: -90px;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border: 2px solid #e3e5e8;
  color: black;
  border-radius: 50%;
  z-index: 9;
  cursor: pointer;
}

.aqui-video-player-slider .slick-arrow:hover {
  background: #ff3e66;
  color: #fff;
  border-color: #ff3e66;
}

.aqui-video-player-slider .slick-arrow.prev {
  right: 60px;
}

.aqui-video-player-slider .slick-arrow.next {
  right: 0;
}

.aqui-video-player-slider .item img {
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-video-player-item {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .aqui-video-player-item {
    margin-bottom: 50px;
  }
}

.aqui-video-player-item .thumb {
  position: relative;
  overflow: hidden;
}

.aqui-video-player-item .thumb img {
  width: 100%;
}

.aqui-video-player-item .thumb .video-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.aqui-video-player-item .thumb .video-popup a {
  height: 90px;
  width: 90px;
  background: #fff;
  text-align: center;
  line-height: 90px;
  color: #ff3e66;
  border-radius: 50%;
  font-size: 20px;
  position: relative;
}

.aqui-video-player-item .thumb .video-popup a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  animation: linear infinite popup 1.5s;
}

.aqui-video-player-item .content {
  padding-left: 100px;
  padding-top: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-video-player-item .content {
    padding-left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-video-player-item .content {
    padding-left: 0px;
  }
}

@media (max-width: 767px) {
  .aqui-video-player-item .content {
    padding-left: 0px;
  }
}

.aqui-video-player-item .content .title {
  font-size: 30px;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .aqui-video-player-item .content .title {
    font-size: 26px;
  }
}

.aqui-video-player-item .content a {
  border-radius: 30px;
  border: 2px solid #e7eaef;
  background: #fff;
  color: black;
  margin-top: 33px;
}

.aqui-video-player-item .content a:hover {
  background: #ff3e66;
  border-color: #fff;
  color: #fff;
}

@keyframes popup {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  25% {
    transform: scale(1.1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }

  75% {
    transform: scale(1.3);
    opacity: 0.4;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.aqui-video-player-6-area .aqui-video-player-item .content a:hover {
  background: #9b2cfa;
  border-color: #9b2cfa;
}

.aqui-video-player-6-area .aqui-video-player-slider .slick-arrow:hover {
  background: #9b2cfa;
  border-color: #9b2cfa;
}

/*===========================
    14.AQUI DOWNLOAD css 
===========================*/
.aqui-download-area {
  background-image: url(../images/download-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-download-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.aqui-download-area::before {
  position: absolute;
  content: '';
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  height: 94%;
  width: 800px;
  margin: 8px;
  border-radius: 20px;
  background-image: url(../images/positive-man.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-download-area::before {
    right: 0;
    width: 550px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-download-area::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .aqui-download-area::before {
    display: none;
  }
}

.aqui-download-area .download-shape-1 {
  position: absolute;
  left: 95px;
  top: 95px;
  z-index: -1;
  animation: linear 20s animationFramesFour infinite;
}

.aqui-download-area .download-shape-2 {
  position: absolute;
  left: 150px;
  bottom: 100px;
  z-index: -1;
  animation: linear 20s animationFramesTwo infinite;
}

.aqui-download-area .download-shape-3 {
  position: absolute;
  top: 140px;
  right: 250px;
  z-index: -1;
  animation: linear 20s animationFramesFive infinite;
}

.aqui-download-content>span {
  font-size: 14px;
  font-weight: 500;
  color: #ff3e66;
}

.aqui-download-content .title {
  font-size: 44px;
  line-height: 54px;
  margin-top: 9px;
  margin-bottom: 13px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-download-content .title {
    font-size: 36px;
    line-height: 46px;
  }
}

@media (max-width: 767px) {
  .aqui-download-content .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.aqui-download-content ul {
  margin: 30px 0 0;
  padding: 0;
  list-style-type: none;
}

.aqui-download-content ul li {
  display: inline-block;
}

.aqui-download-content ul li a {
  background: #0e1133;
  color: #fff;
  padding-left: 22px;
  padding-right: 40px;
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  margin-right: 8px;
  border: 2px solid #0e1133;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-download-content ul li a {
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .aqui-download-content ul li a {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-download-content ul li a {
    margin-bottom: 0px;
  }
}

.aqui-download-content ul li a i {
  font-size: 36px;
  padding-right: 11px;
}

.aqui-download-content ul li a span {
  font-size: 14px;
  font-weight: 500;
}

.aqui-download-content ul li a span span {
  font-size: 24px;
  display: block;
  line-height: 18px;
}

.aqui-download-content ul li a:hover {
  background: #fff;
  color: black;
}

.aqui-download-content ul li a.item-2 {
  background: #fff;
  color: black;
}

.aqui-download-content ul li a.item-2:hover {
  background: #0e1133;
  color: #fff;
}

.aqui-sponser-area {
  position: relative;
  z-index: 10;
}

.aqui-sponser-area .sponser-shape {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 767px) {
  .aqui-sponser-box {
    flex-wrap: wrap;
  }
}

.aqui-sponser-box .sponser-item {
  background: #fff;
  height: 100px;
  width: 100px;
  text-align: center;
  line-height: 100px;
  border-radius: 6px;
  box-shadow: 0px 40px 60px 0px rgba(14, 17, 51, 0.14);
  margin: 30px 16px 0;
}

.aqui-sponser-box.item-2 .sponser-item {
  margin: 30px 28px 0;
}

@media (max-width: 767px) {
  .aqui-sponser-box.item-2 .sponser-item {
    margin: 30px 16px 0;
  }
}

.aqui-download-3-box {
  border-radius: 20px;
  background: #ebf2fc;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-download-3-box {
    margin: 30px 0 0;
  }
}

@media (max-width: 767px) {
  .aqui-download-3-box {
    margin: 30px 0 0;
  }
}

.aqui-download-3-box .content {
  padding: 50px;
}

@media (max-width: 767px) {
  .aqui-download-3-box .content {
    padding: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-download-3-box .content {
    padding: 50px;
  }
}

.aqui-download-3-box .content .title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}

.aqui-download-3-box .content a.main-btn {
  background: #fff;
  color: black;
  border-color: #fff;
  margin-top: 33px;
}

.aqui-download-3-box .content a.main-btn:hover {
  background: #ff6b58;
  border-color: #ff6b58;
  color: #fff;
}

.aqui-download-3-box .content a.main-btn i {
  padding-right: 6px;
}

.aqui-download-3-box .content a.main-btn.main-btn-2 {
  background: #ff6b58;
  border-color: #ff6b58;
  color: #fff;
}

.aqui-download-3-box .content a.main-btn.main-btn-2:hover {
  background: #fff;
  color: black;
  border-color: #fff;
}

.aqui-download-3-box.aqui-download-6-box a.main-btn:hover {
  background: #9b2cfa;
  border-color: #9b2cfa;
}

.aqui-download-3-box.aqui-download-6-box a.main-btn.main-btn-2 {
  background: #9b2cfa;
  border-color: #9b2cfa;
}

.aqui-download-3-box.aqui-download-5-box a.main-btn:hover {
  background: #801f82;
  border-color: #801f82;
}

.aqui-download-3-box.aqui-download-5-box a.main-btn.main-btn-2 {
  background: #801f82;
  border-color: #801f82;
}

/*===========================
    15.AQUI FUN FACT css 
===========================*/
.aqui-fun-fact-box {
  background-image: url(../images/fun-fact-bg.jpg);
  padding: 90px 70px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .aqui-fun-fact-box {
    padding: 30px;
  }
}

.aqui-fun-fact-box .aqui-fun-fact-content>.title {
  font-size: 44px;
  line-height: 54px;
  color: #fff;
  padding-right: 80px;
  padding-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .aqui-fun-fact-box .aqui-fun-fact-content>.title {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .aqui-fun-fact-box .aqui-fun-fact-content>.title {
    font-size: 28px;
    line-height: 38px;
    padding-right: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-fun-fact-box .aqui-fun-fact-content>.title {
    font-size: 36px;
    line-height: 46px;
    padding-right: 0;
  }
}

.aqui-fun-fact-box .aqui-fun-fact-content p {
  color: #fff;
  opacity: 0.8;
}

.aqui-fun-fact-box .aqui-fun-fact-content .aqui-fun-fact-item {
  margin-top: 36px;
}

@media (max-width: 767px) {
  .aqui-fun-fact-box .aqui-fun-fact-content .aqui-fun-fact-item {
    text-align: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-fun-fact-box .aqui-fun-fact-content .aqui-fun-fact-item {
    text-align: left;
  }
}

.aqui-fun-fact-box .aqui-fun-fact-content .aqui-fun-fact-item .title {
  font-size: 30px;
  color: #fff;
}

.aqui-fun-fact-box .aqui-fun-fact-content .aqui-fun-fact-item span {
  font-size: 14px;
  color: #a4a4b9;
}

.aqui-fun-fact-box .aqui-fun-fact-play {
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-fun-fact-box .aqui-fun-fact-play {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .aqui-fun-fact-box .aqui-fun-fact-play {
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .aqui-fun-fact-box .aqui-fun-fact-play {
    text-align: left;
  }
}

.aqui-fun-fact-box .aqui-fun-fact-play img {
  position: absolute;
  right: -40px;
  top: 0;
  z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .aqui-fun-fact-box .aqui-fun-fact-play img {
    position: static;
  }
}

@media (max-width: 767px) {
  .aqui-fun-fact-box .aqui-fun-fact-play img {
    display: none;
  }
}

.aqui-fun-fact-box .aqui-fun-fact-play a {
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 70px;
  background: #fff;
  border-radius: 50%;
  color: #ff6b58;
  position: relative;
  z-index: 5;
}

.aqui-fun-fact-box .aqui-fun-fact-play a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  animation: popup 1.5s linear infinite;
}

/*===========================
    15.AQUI SHOWCASE css 
===========================*/
.aqui-showcase-area {
  background: #eef1f6;
  padding-top: 90px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.aqui-showcase-area .showcase-shape-1 {
  position: absolute;
  left: 90px;
  top: 185px;
  z-index: -1;
  animation: linear 25s animationFramesFive infinite;
}

.aqui-showcase-area .showcase-shape-2 {
  position: absolute;
  left: 170px;
  bottom: 95px;
  z-index: -1;
  animation: linear 20s animationFramesOne infinite;
}

.aqui-showcase-area .showcase-shape-3 {
  position: absolute;
  top: 200px;
  right: 0;
  z-index: -1;
  animation: linear 25s animationFramesThree infinite;
}

.aqui-showcase-area .showcase-shape-4 {
  position: absolute;
  bottom: 250px;
  right: 195px;
  z-index: -1;
  animation: linear 25s animationFramesFour infinite;
}

.aqui-showcase-item {
  box-shadow: 0px 2px 3px 0px rgba(14, 17, 51, 0.1);
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-top: 30px;
  margin-bottom: 50px;
}

.aqui-showcase-item:hover {
  box-shadow: 0px 40px 40px 0px rgba(14, 17, 51, 0.1);
  transform: translateY(-10px);
}

.aqui-showcase-item a {
  display: block;
}

.aqui-showcase-item img {
  width: 100%;
}

.aqui-showcase-slider .slick-dots {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}

.aqui-showcase-slider .slick-dots li {
  display: inline-block;
}

.aqui-showcase-slider .slick-dots li button {
  font-size: 0;
  border: 0;
  background: #ccced9;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin: 0 3px;
}

.aqui-showcase-slider .slick-dots li.slick-active button {
  background: #ff6b58;
}

/*===========================
    16.AQUI CONTACT css 
===========================*/
.contact-section {
  position: relative;
  background: #f7f6fa;
  padding: 36px 0;
}

.contact--info-area {
  position: relative;
}

.contact--info-area h3 {
  font-size: 30px;
  color: #2c234d;
  font-weight: 800;
  line-height: .8;
  margin-bottom: 16px;
}

.contact--info-area>p {
  color: #686875;
  line-height: 24px;
  border-bottom: 1px solid #e5e4ed;
  margin-bottom: 18px;
  padding-bottom: 12px;
}

.single-info {
  position: relative;
  margin-bottom: 20px;
}

.single-info h5 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c234d;
}

.single-info p {
  position: relative;
  font-size: 16px;
  line-height: 22px;
  color: #04948c;
  margin: 0;
  padding-left: 30px;
}

.single-info p i {
  font-size: 20px;
  line-height: 25px;
  color: #04948c;
  position: absolute;
  left: 0;
  top: 0;
}

.ab-social h5 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2c234d;
}

.bisylms-map {
  position: relative;
  line-height: .8;
  overflow: hidden;
}

.bisylms-map iframe {
  width: 100%;
  height: 480px;
  border: none;
}

.contact-form {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 43px 50px 65px;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(11, 2, 55, 0.06);
  -moz-box-shadow: 0px 1px 3px 0px rgba(11, 2, 55, 0.06);
  box-shadow: 0px 1px 3px 0px rgba(11, 2, 55, 0.06);
}

.contact-form h4 {
  font-size: 24px;
  color: #2c234d;
  line-height: 30px;
  margin-bottom: 8px;
}

.contact-form p {
  font-size: 16px;
  color: #686875;
  line-height: 26px;
  position: relative;
  z-index: 3;
  margin: 0 0 41px;
}

.contact-form input[type="text"],
.contact-form input[type="number"],
.contact-form textarea,
.contact-form input[type="email"] {
  width: 100%;
  height: 56px;
  font-size: 14px;
  line-height: 56px;
  font-weight: 400;
  border-radius: 3px;
  border: none;
  background: #f5f5f7;
  color: #7e7c87;
  outline: none;
  border: 1px solid transparent;
  padding: 0 30px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-form textarea {
  height: 220px;
  resize: none;
  line-height: 30px;
  padding-top: 14px;
}

.contact-form textarea::-moz-placeholder,
.contact-form input[type="text"]::-moz-placeholder,
.contact-form input[type="number"]::-moz-placeholder,
.contact-form input[type="email"]::-moz-placeholder {
  color: #7e7c87;
  opacity: 1;
}

.contact-form textarea::-ms-input-placeholder,
.contact-form input[type="text"]::-ms-input-placeholder,
.contact-form input[type="number"]::-ms-input-placeholder,
.contact-form input[type="email"]::-ms-input-placeholder {
  color: #7e7c87;
  opacity: 1;
}

.contact-form textarea::-webkit-input-placeholder,
.contact-form input[type="text"]::-webkit-input-placeholder,
.contact-form input[type="number"]::-webkit-input-placeholder,
.contact-form input[type="email"]::-webkit-input-placeholder {
  color: #7e7c87;
  opacity: 1;
}

.contact-form textarea:focus,
.contact-form input[type="text"]:focus,
.contact-form input[type="number"]:focus,
.contact-form input[type="email"]:focus {
  background: transparent;
  border-color: #ece9f9;
  -webkit-box-shadow: 0px 14px 16px 0px rgba(11, 2, 55, 0.1);
  -moz-box-shadow: 0px 14px 16px 0px rgba(11, 2, 55, 0.1);
  box-shadow: 0px 14px 16px 0px rgba(11, 2, 55, 0.1);
}

.contact-form input[type="submit"] {
  height: 50px;
  border-radius: 3px;
  background: #04948c;
  color: #fff;
  text-align: center;
  border: none;
  outline: none;
  padding: 0 36px;
  font-size: 13px;
  line-height: 50px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-form input[type="submit"]:hover {
  -webkit-box-shadow: 0px 20px 30px 0px rgba(26, 8, 119, 0.24);
  -moz-box-shadow: 0px 20px 30px 0px rgba(26, 8, 119, 0.24);
  box-shadow: 0px 20px 30px 0px rgba(26, 8, 119, 0.24);
}

.condition-check {
  position: relative;
  margin: 10px 0 0;
}

.condition-check input[type="checkbox"] {
  display: none;
}

.condition-check label {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 400;
  padding-left: 31px;
  position: relative;
  cursor: pointer;
  color: #686875;
  margin: 0 0 0;
}

.condition-check label a {
  color: #04948c;
}

.condition-check label a:hover {
  color: #686875;
}

.condition-check label:before {
  background: transparent;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  border-radius: 3px;
  top: 3px;
  width: 16px;
  border: 2px solid #ababb1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.condition-check input:checked+label::after {
  background: transparent;
  bottom: 0;
  font-family: 'Font Awesome 5 Pro';
  content: "\f00c";
  color: #04948c;
  font-size: 10px;
  left: 3px;
  position: absolute;
  top: -1px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ab-social {
  position: relative;
}

.ab-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #04948c;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  line-height: 42px;
  font-size: 14px;
  margin-right: 2px;
}

.ab-social a.fac {
  background: #04948c;
}

.ab-social a.twi {
  background: #04948c;
}

.ab-social a.you {
  background: #04948c;
}

.ab-social a.lin {
  background: #04948c;
}

.ab-social a:hover {
  -webkit-box-shadow: 0px 10px 20px 0px rgba(9, 111, 150, 0.3);
  -moz-box-shadow: 0px 10px 20px 0px rgba(9, 111, 150, 0.3);
  box-shadow: 0px 10px 20px 0px rgba(9, 111, 150, 0.3);
}

/*# sourceMappingURL=style.css.map */