@import './swiper-bundle.min.css';
@import './banner.css';
@import './owl.carousel.min.css';
@import './owl.theme.default.css';
@import './hamburgers.css';
@import './magnific-popup.css';
@import './component.css';

/*=== GERAL =================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --hue: 190;
  --bg-primary: hsl(55, 94%, 55%);
  --primary-color: hsl(var(--hue), 100%, 26%);
  font-size: 62.5%;
  --btn-color-primary: hsl(56, 100%, 62%);
  --btn-color-primary-h: hsl(56, 94%, 50%);

  /* 1rem = 10px */
}

html {
  /* chrome://flags/#smooth-scrolling */
  scroll-behavior: smooth;
}

body {
  font-family: 'Mulish', sans-serif;
  font-size: 1.6rem;

  background: #fff;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

p {
  line-height: 1.5;
}

img {
  max-width: 100%;
}

strong {
  font-weight: 800;
}

section {
  padding-block: 10rem;
}

.center {
  text-align: center !important;
}

.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 10px;
  margin: 0 auto;
}

.container-full {
  width: 100%;
}

#top-bar {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 50px;
  padding: 1rem 0 0 0;
}

#top-bar .container {
  display: flex;
  gap: 20px;
  position: relative;
  align-items: center;
}

#top-bar .social {
  position: relative;
}

#top-bar .social::after {
  content: '';
  width: 1px;
  height: 30px;
  background: #fff;
  position: absolute;
  top: 0;
  right: -10px;
}

.page-int #top-bar .social::after {
  background: #000;
}

#top-bar .social a {
  text-decoration: none;
}

#top-bar .social a:hover path {
  stroke: var(--btn-color-primary-h);
}

#top-bar .phone {
  position: relative;
}

#top-bar .phone::after {
  content: '';
  width: 1px;
  height: 30px;
  background: #fff;
  position: absolute;
  top: 0;
  right: -10px;
}

.page-int #top-bar .phone::after {
  background: #000;
}

#top-bar .phone a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
}

#top-bar .search {

  position: relative;
}

#top-bar .search a {
  display: inline-block;
  margin-top: 3px;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-end {
  justify-content: end !important;
}

h2 {
  font-size: 4.7rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

h2>strong {
  font-weight: 700;
}

#header {
  position: absolute;
  width: 100%;
  z-index: 2;
  top: calc(70px - 10px);
}

#header .container {
  background: #FFFFFF;
  border-bottom: 2.5px solid #C6C5C1;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;

  display: flex;
  padding: 0 3rem;
}

#header .primary-menu {
  /* display: flex; */
  align-items: center;
}

.menu-mobile {
  display: none;
}

#header .primary-menu ul.menu-container {
  list-style: none;
  margin: 0;
  width: 100%;
}

#header .primary-menu ul.menu-container>li {
  margin-left: 20px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
}

#header .primary-menu ul.menu-container>li .menu-link {
  text-transform: none;
  letter-spacing: 0;
  padding-top: 29px;
  padding-bottom: 29px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #000;
}

#header .primary-menu ul.menu-container>li.current a {
  font-weight: 700;
}

#header .budget-link {
  margin-top: 25px;
}

#header .budget-link a.btn {
  background: var(--btn-color-primary);
  border-radius: 50px;
  display: flex;
  color: #000;
  gap: 20px;
  padding: 1rem 2rem;

  -webkit-transition: padding .4s ease, margin .4s ease, opacity .2s .2s ease;
  transition: padding .4s ease, margin .4s ease, opacity .2s .2s ease;
}

#header .budget-link a.btn:hover {
  background: var(--btn-color-primary-h);
}

#header #logo {
  padding: 1rem 0;
}

#header #logo img {
  height: 70px;
}

section#about {
  margin-top: -15%;
  position: relative;
  z-index: 1;
}

section#about .container {
  display: flex;
}

section#about .container div {
  flex: 1;
}

section#about .container div.image {
  position: relative;
}

section#about .container div.image span {
  position: absolute;
  z-index: 1;
  top: 10%;
  right: 10%;
}

section#about .container div.image img {
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
  border-radius: 10px;
  max-height: 455px;
}

section#about .container div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section#about .container div:last-child p {
  font-weight: 300;
  margin-bottom: 10px;
}

section#about .container div:last-child a {
  color: #000;
  font-weight: 300;
}

section#about .container div:last-child a:hover {
  color: var(--btn-color-primary-h);
}

@media(min-width:1450px) {
  section#about {
    margin-top: -10%;
    position: relative;
    z-index: 1;
  }
}

section#services {
  position: relative;
  background: var(--bg-primary) url(../images/bg-servico.jpg) center top no-repeat;
  background-size: cover;
  padding: 7rem 0;
}

section#services::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 30px;
  top: -1px;
  background: url(../images/shape-seta.svg) center no-repeat;
}

section#services .container-full {
  display: flex;
  gap: 20px;
}

section#services .container-full .box:first-child {
  width: 20%;
  margin-left: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#services .container-full .box:first-child p {
  font-size: 1.5rem;
}

section#services .container-full .box:first-child a.btn-service {
  background: #fff;
  border-radius: 50px;
  display: flex;
  color: #000;
  gap: 20px;
  padding: 1rem 2rem;
  margin-top: 20px;
  font-size: 1.5rem;

  display: flex;
  align-items: center;
  -webkit-transition: padding .4s ease, margin .4s ease, opacity .2s .2s ease;
  transition: padding .4s ease, margin .4s ease, opacity .2s .2s ease;
}

section#services .container-full .box:first-child a.btn-service:hover {
  filter: brightness(0.9);
}

section#services .container-full .box:last-child {
  width: 75%;
}

.listing-services {
  display: flex;
  gap: 20px;  
}

.card-service {
  /* filter: drop-shadow(0px 3px 20px rgba(0, 0, 0, 0.2)); */
  border-radius: 10px;
  width: 250px;
  height: 378px;
  position: relative;
}

.card-service::after {
  content: '';
  border-radius: 10px;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 0;
  -webkit-transition: padding .4s ease, margin .4s ease, opacity .2s .2s ease;
  transition: padding .4s ease, margin .4s ease, opacity .2s .2s ease;
}

.card-service:hover .detail {
  display: none;
}

.card-service:hover .overlay {
  opacity: 1;
}

.card-service .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 10px;
  z-index: 1;
  display: flex;
  opacity: 0;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.card-service:hover .overlay a {
  color: #fff;
  display: flex;
  border-radius: 5px;
  padding: 0.8rem 1rem;
  border: 1px solid #fff;
}

.card-service:hover .overlay a path {
  stroke: #fff;
}

.card-service:hover .overlay a:hover {
  color: #000;
  border-color: #000;
  background: var(--btn-color-primary-h);
}

.card-service:hover .overlay a:hover path {
  stroke: #000;
}

.card-service .detail {
  position: relative;
  z-index: 1;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.card-service .detail h3 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.card-service .detail p {
  color: #fff;
  line-height: 1;
  font-weight: 300;
}

.cardCarousel {
  padding-bottom: 50px !important;
}

.cardCarousel .swiper-pagination {
  top: 95%;
}

.swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
  display: inline-block;
  border-radius: 50%;
  background: #fff !important;
  opacity: 1 !important;
}

.cardCarousel .swiper-pagination-bullet-active {
  opacity: 1;
  width: 33px !important;
  border-radius: 10px;
  background: #000 !important;
}

@media(min-width:1450px) {
  section#services .container-full .box:first-child {
    width: 15%;
    margin-left: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  section#services .container-full .box:last-child {
    width: 70%;
    /* margin-left: 5%; */
  }
}

#services-delivered .container .title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#services-delivered .container .title div:first-child {
  border-right: 1px solid #000;
  padding-right: 20px;
  margin-right: 20px;
}

#services-delivered .container .title div:last-child {
  font-size: 2rem;
  font-weight: 300;
}

#services-delivered .container .title div:first-child h2 strong {
  background: url(../images/linhe-title.svg) bottom center no-repeat;
}

#services-delivered .listing-services-delivered {
  margin-top: 80px;
}

#services-delivered .listing-services-delivered #olwService .item .image img {
  display: block;
  object-position: top;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

#services-delivered .listing-services-delivered #olwService .item .detail {
  display: flex;
  padding: 2rem 0;
  justify-content: space-between;
}

#services-delivered .listing-services-delivered #olwService .item .detail a:hover path {
  stroke: #F6E82E;
}

#services-delivered .listing-services-delivered #olwService .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

#services-delivered .listing-services-delivered #olwService .owl-dots .owl-dot.active span {
  background: #F6E82E;
  width: 33px;
}

section#team {
  background: linear-gradient(180deg, #F2F2F2 0%, rgba(242, 242, 242, 0) 100%);
  position: relative;
  padding-block: 2rem;
  padding-block-start: 5rem;
}

section#team::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 30px;
  top: -1px;
  background: url(../images/shape-seta.svg) center no-repeat;
}

section#team .title {
  max-width: 900px;
  margin: 0 auto;
  font-size: 2.5rem;
  font-weight: 300;
}

section#team .listing-team {
  margin-top: 40px;
}

section#team .listing-team #olwTeam .item .image img {
  border-radius: 5px;
  filter: grayscale(100);
}

section#team .listing-team #olwTeam .item:hover .image img {
  filter: grayscale(0);
}

section#team .listing-team #olwTeam .item .detail {
  margin-top: 10px;
}

section#team .listing-team #olwTeam .item .detail p {
  font-weight: 300;
}

section#team .listing-team #olwTeam .owl-dots {
  margin-top: 30px;
}

section#team .listing-team #olwTeam .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

section#team .listing-team #olwTeam .owl-dots .owl-dot.active span {
  background: #F6E82E;
  width: 33px;
}

section#team .listing-team #olwTeam .owl-nav {
  font-size: 3rem;
  position: absolute;
  top: -70px;
  right: 0;
}

section#team .listing-team #olwTeam .owl-nav:hover {
  background: transparent;
}

section#team .listing-team #olwTeam .owl-nav [class*='owl-'] {
  width: 30px;
  height: 30px;
  background: transparent;
}

section#team .listing-team #olwTeam .owl-nav [class*='owl-']:hover {
  background: transparent;
  color: #000;
}

section#customers {
  padding-block: 2rem;
}

section#customers .container {
  display: flex;
  gap: 20px;
  border-top: 1px solid rgba(217, 217, 217, 0.5);
  position: relative;
  padding-top: 5rem;
}

section#customers .container .title h2 {
  font-size: 3.3rem;
}

section#customers .container .title {
  width: 30%;
}

section#customers .listing-customers {
  width: 70%;
  position: relative;

}

section#customers .listing-customers #olwCustomers .item {
  border: 1px solid #D9D9D9;
  border-radius: 5px;
}

section#customers .listing-customers #olwCustomers .owl-dots {
  margin-top: 30px;
}

section#customers .listing-customers #olwCustomers .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

section#customers .listing-customers #olwCustomers .owl-dots .owl-dot.active span {
  background: #F6E82E;
  width: 33px;
}

section#customers .listing-customers #olwCustomers .owl-nav {
  font-size: 3rem;
  position: absolute;
  top: -70px;
  right: 0;
}

section#customers .listing-customers #olwCustomers .owl-nav:hover {
  background: transparent;
}

section#customers .listing-customers #olwCustomers .owl-nav [class*='owl-'] {
  width: 30px;
  height: 30px;
  background: transparent;
}

section#customers .listing-customers #olwCustomers .owl-nav [class*='owl-']:hover {
  background: transparent;
  color: #000;
}

footer .footer-widgets-wrap {
  background: #F3EFEF;
  padding: 4rem 0;
}

footer .footer-widgets-wrap .container {
  display: flex;
  justify-content: space-between;
}

footer .footer-widgets-wrap .container h4 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

footer .footer-widgets-wrap .container ul>li {
  margin-bottom: 1rem;
}

footer .footer-widgets-wrap .container ul>li a {
  color: #000;
}

footer .footer-widgets-wrap .container ul>li a:hover {
  color: #666;
}

footer .footer-widgets-wrap .container .info a {
  color: #000;
  display: flex;
  gap: 20px;
  margin-bottom: 5px;
}

footer .footer-widgets-wrap .container .info a:hover {
  color: #666;
}

footer .footer-widgets-wrap .container .info address {
  display: flex;
  margin: 5px 0;
}

footer .footer-widgets-wrap .container .social a path {
  stroke: #000;
}

footer .footer-widgets-wrap .container .social a:hover path {
  stroke: var(--btn-color-primary-h);
}

#copyrights {
  padding: 2rem 0;
}

#copyrights .container {
  display: flex;
  justify-content: space-between;
  font-weight: 300;
  font-size: 1.3rem;
}

#copyrights .container span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width:800px) {
  #top-bar {
    position: relative;
    /* background: var(--bg-primary); */
  }

  .banners {
    margin-top: 5rem;
    flex-direction: column;
    gap: 20px;
  }

  #header .container {
    border-radius: 0;
  }

  section#about .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  #top-bar .social a path,
  .search a path {
    stroke: #000;
  }

  #top-bar .phone a {
    color: #000;
  }

  #top-bar .phone a path {
    stroke: #000;
  }

  #top-bar .social,
  .search {
    border-color: #000;
  }

  #header .budget-link a.btn {
    display: none;
  }

  section#services .container-full .box:first-child {
    width: 100%;
    margin-left: 0;
  }

  section#services .container-full .box:last-child {
    width: 100%;
  }

  section#services .container-full {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }

  #header {
    top: calc(70px - 69px);
    position: relative;
  }

  .menu-mobile {
    border: 1px solid var(--bg-primary);
    background: var(--bg-primary);
    height: 100%;
    border-radius: 5px;
    margin-top: 20px;
    right: 0;
    margin-right: -50%;
  }

  .primary-menu {
    width: 100%;
    position: absolute;
    left: 0;
    background: hsl(55deg 25% 90%);
    top: 100%;
    display: none;
  }

  #header .primary-menu ul.menu-container {
    padding: 0;
  }

  #header .primary-menu ul.menu-container>li {
    float: none;
    padding: 1rem;
    margin-top: 0;
    margin-left: 0;
    border-bottom: 1px solid rgb(255 255 255 / 34%);
  }

  #header .primary-menu ul.menu-container>li .menu-link {
    padding: 1rem 0;
  }

  #services-delivered .container .title {
    flex-direction: column;
  }

  #services-delivered .container .title div:first-child {
    border: 0;
    text-align: center;
  }

  #services-delivered .container .title div:last-child {
    font-size: 1.5rem;
    text-align: center;
  }

  #services-delivered .listing-services-delivered {
    margin-top: 50px;
  }

  section#team .title {
    font-size: 1.5rem;
  }

  section#team .listing-team #olwTeam .item .detail {
    text-align: center;
  }

  section#customers .container {
    flex-direction: column;
  }

  section#customers .container .title,
  section#customers .listing-customers {
    width: 100%;
    text-align: center;
  }

  footer .footer-widgets-wrap .container,
  #copyrights .container {
    flex-direction: column;
    gap: 20px;
  }

  h2 {
    font-size: 3rem;
  }

  .card-service {
    background-size: cover;
    width: 100%;
    background-position: center top;
  }

  .card-service::after {
    left: 0;
  }

  .mobile-is-active {
    display: block;
  }

  .menu-mobile {
    display: block;
  }

  section#about .container div.image span {
    top: 84%;
    right: 32%;
  }

  section#about .container div:last-child {
    margin-top: 40px;
  }

  footer .footer-widgets-wrap .container h4 {
    font-size: 1.5rem;
  }

  footer .footer-widgets-wrap {
    text-align: center;
  }

  footer .footer-widgets-wrap .container .info a {
    justify-content: center;
  }
}

.page-int #top-bar #header {
  top: 3%;

}

.page-int #top-bar .social a path,
.page-int #top-bar .search a path,
.page-int #top-bar .phone a path {
  stroke: #000;
}

.page-int #top-bar .phone a {
  color: #000;
}

.page-int #top-bar .social,
.page-int #top-bar .search {
  border-color: #000;
}

#page-title {
  height: 388px;
  background: var(--bg-primary) url(../images/noise.png);
}

#page-title .container {
  display: flex;
  align-items: center;
  margin-top: 40px;
  height: 100%;
  gap: 20px;
}

#page-title .container h1 {
  color: #000;
  width: inherit;
  font-size: 4.7rem;
  border-right: 1px solid #000;
  padding-right: 30px;
}

#page-title .container span {
  font-weight: 300;
}

#about-inner p {
  margin-bottom: 2rem;
  font-weight: 300;
}

.banners {
  margin-top: 10rem;
  display: flex;
  gap: 50px;
}

section#customers-inner .container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

section#customers-inner .card-customer {
  background: #FFFFFF;
  width: 31%;
  border-radius: 5px;
  padding: 1rem;
  border: 1px solid rgba(217, 217, 217, 0.8);
  cursor: pointer;
}

section#customers-inner .card-customer .image {
  position: relative;
}

section#customers-inner .card-customer .image img {
  border-radius: 5px;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

section#customers-inner .card-customer .image .overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 51.04%, rgba(0, 0, 0, 0.77) 100%);
  width: 100%;
  height: 100%;
  border-radius: 5px;
  position: absolute;
  top: 0;
}

section#customers-inner .card-customer .detail {
  padding: 2rem;
}

section#customers-inner .card-customer .detail span {
  display: block;
}

section#customers-inner .card-customer .detail h3 {
  font-size: 2.5rem;
  font-weight: 700;
}

section#customers-inner .card-customer a.btn-customer {
  background: var(--btn-color-primary);
  border-radius: 50px;
  display: flex;
  width: fit-content;
  color: #000;
  gap: 20px;
  align-items: center;
  padding: 1rem 2rem;

  -webkit-transition: padding .4s ease, margin .4s ease, opacity .2s .2s ease;
  transition: padding .4s ease, margin .4s ease, opacity .2s .2s ease;
}

section#customers-inner .card-customer a.btn-customer:hover {
  background: var(--btn-color-primary-h);
}

.pagination-box {
  max-width: 800px;
  margin: 4rem auto 0 auto;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
}

.page-item.active .page-link {
  z-index: 1;
  color: #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 20px;
  text-align: center;
  background-color: var(--btn-color-primary);
  border-color: #000;
  font-weight: 700;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  font-size: 2rem;
  font-weight: 300;
  color: #000;
  background-color: #fff;
  border: 0;
}

#top-bar .search .button {
  display: inline-block;
  /* margin: 4px 2px; */
  font-size: 3rem;
  /* padding-left: 22px; */
  /* padding-right: 22px; */
  /* height: 40px; */
  /* line-height: 40px; */
  text-align: center;
  text-align: center;
  cursor: pointer;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#top-bar .search .button path {
  stroke: #fff;
}

#top-bar .search .button:hover {
  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  color: black;
}

.page-int .search .button path {
  stroke: #000 !important;
}

.search-container {
  position: relative;
  display: inline-block;
  /* margin: 4px 2px; */
  height: 40px;
  width: 40px;
  vertical-align: bottom;
}

.mglass {
  display: inline-block;
  pointer-events: none;
  /* -webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg); */
}

.searchbutton {
  position: absolute;
  font-size: 22px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.search:focus+.searchbutton {
  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  background-color: white;
  color: black;
}

.search-int {
  position: absolute;
  left: 49px;
  /* Button width-1px (Not 50px/100% because that will sometimes show a 1px line between the search box and button) */
  background-color: white;
  outline: none;
  border: none;
  padding: 0;
  width: 0;
  height: 100%;
  z-index: 10;
  font-family: 'Mulish', sans-serif;
  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
}

.search-int:focus {
  width: 363px;
  /* Bar width+1px */
  padding: 0 16px 0 0;
}

.expandright {
  left: auto;
  right: 49px;
  /* Button width-1px */
}

.expandright:focus {
  padding: 0 0 0 16px;
}

#service-inner .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

#service-inner .container .card-service {
  background-size: cover;
  /* flex: 1 1 25%; */
  width: 31%;
}

#service-inner .container .card-service .detail {
  padding: 4rem;
}

section#service-int-inner {
  margin-top: -15%;
}

section#service-int-inner .container {
  max-width: 1060px;
  margin: 0 auto;
}

section#service-int-inner .image {
  margin-bottom: 2rem;
  border: 3px solid #FFFFFF;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.15));
  border-radius: 10px;
  height: 336px;
  background-repeat: no-repeat;
  background-size: cover;
}


section#service-int-inner .detail {
  font-weight: 300;
}

section#service-int-inner .detail h1 {
  font-size: 4.7rem;
  margin-bottom: 2rem;
}

section#service-int-inner .detail .info {
  margin-top: 20px;
}

section#service-int-inner .detail .info ul {
  padding-left: 2rem;
}

section#service-int-inner .detail .info ul>li {
  margin-bottom: 1rem;
  list-style-image: url(../images/arrow-right.svg);
  padding-inline-start: 1ch;
}

section#services-int {
  position: relative;
  background: #F5F5F5;
  background-size: cover;
  padding: 7rem 0;
}

section#services-int h2 {
  font-size: 3rem;
}

section#services-int::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 30px;
  top: -1px;
  background: url(../images/shape-seta.svg) center no-repeat;
}

section#services-int .container {
  display: flex;
  gap: 20px;
}

section#services-int .container .box:first-child {
  width: 20%;
  margin-left: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#services-int .container .box:first-child p {
  font-size: 1.5rem;
}

section#services-int .container .box:first-child a.btn-service {
  background: var(--btn-color-primary);
  border-radius: 50px;
  display: flex;
  color: #000;
  gap: 20px;
  padding: 1rem 2rem;
  margin-top: 20px;
  font-size: 1.5rem;

  display: flex;
  align-items: center;
  -webkit-transition: padding .4s ease, margin .4s ease, opacity .2s .2s ease;
  transition: padding .4s ease, margin .4s ease, opacity .2s .2s ease;
}

section#services-int .container .box:first-child a.btn-service:hover {
  filter: brightness(0.9);
}

section#services-int .container .box:last-child {
  width: 75%;
  padding-right: 3rem;
}
section#services-int .container .box:last-child .card-service{
  width: 290px;
}

section#services-int .cardCarouselInt .swiper-pagination-bullet-active {
  opacity: 1;
  width: 33px !important;
  border-radius: 10px;
  background: #000 !important;
}

section#services-int .cardCarouselInt {
  padding-bottom: 50px !important;
}

section#services-int .cardCarouselInt .swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
  display: inline-block;
  border-radius: 50%;
  background: var(--btn-color-primary) !important;
  opacity: 1 !important;
}

section#services-int .cardCarouselInt .swiper-pagination-bullet-active {
  opacity: 1;
  width: 33px !important;
  border-radius: 10px;
  background: #000 !important;
}

section#contact-inner {
  margin-top: -10%;
}

section#contact-inner .container {
  display: flex;
}

section#contact-inner .container div {
  flex: 1;
}

section#contact-inner .box-form {
  background: #FFFFFF;
  padding: 3rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

section#contact-inner .box-form h2 {
  font-size: 2.9rem;
  font-weight: 700;
}

.form-group {
  margin-bottom: 2rem;
}

.form-control {
  background: rgba(217, 217, 217, 0.14);
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  padding: 1rem;
  width: 100%;
}

section#contact-inner .box-form button {
  display: flex;
  background: #F8E720;
  border-radius: 50px;
  color: #000;
  border: 0;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 1.7rem;
  padding: 1rem 3rem;
  cursor: pointer;
}

section#contact-inner .box-form button:hover {
  filter: brightness(0.8);
}

section#contact-inner .info {
  padding: 0 4rem;
  margin-top: 240px;
}

section#contact-inner .info .box {
  display: flex;
  font-size: 2.2rem;
  justify-content: space-between;
}

section#contact-inner .info .box a {
  display: flex;
  gap: 10px;
  color: #000;
}

section#contact-inner .info address {
  display: flex;
  margin: 1rem 0;
  font-size: 2.2rem;
}

section#contact-inner .whastapp-contact {
  display: flex;
  border-top: 1px solid rgba(217, 217, 217, 0.9);
  margin-top: 2rem;
  padding-top: 1rem;
  justify-content: center;
  align-items: center;
}

section#contact-inner .whastapp-contact h2 {
  font-size: 3rem;
}

section#contact-inner .whastapp-contact span {
  flex: 1;
}

section#contact-inner .whastapp-contact a {
  background: #00D654;
  padding: 1rem 2rem;
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #fff;
}

section#contact-inner .whastapp-contact a:hover {
  filter: brightness(0.9);
}

section#customers-int-inner .container {
  max-width: 1060px;
  margin: -10% auto 0 auto;
}

section#customers-int-inner .image {
  margin-bottom: 2rem;
}

section#customers-int-inner .image img {
  border: 4px solid #FFFFFF;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.15));
  border-radius: 10px;
}

section#customers-int-inner .detail h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

section#customers-int-inner .info-project {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

section#customers-int-inner .info-project span {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  width: fit-content;
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
}

section#gallery {
  background: #F5F5F5;
  padding-block: 5rem;
}

section#gallery h2 {
  font-weight: 600;
  font-size: 3rem;
}
section#gallery #olwGalleryImages .item{
  position: relative;
}
section#gallery #olwGalleryImages .item .overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(27 25 25 / 45%);
  opacity: 0;
  z-index: 1;
  top: 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#gallery #olwGalleryImages .item:hover .overlay{
  opacity: 1;
}
section#gallery #olwGalleryImages .item img {
  border-radius: 5px;
}

section#gallery #olwGalleryImages {
  margin-top: 3rem;
}

section#gallery #olwGalleryImages .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: #F6E82E;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}


section#gallery #olwGalleryImages .owl-dots .owl-dot.active span {
  background: #000;
  width: 33px;
}

section#gallery #olwGalleryImages .owl-nav [class*='owl-'] {
  color: #000;
  top: 20%;
  font-size: 2.8rem;
  margin: 5px;
  padding: 3px 4px;
  background: var(--btn-color-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  position: absolute;
}

section#gallery #olwGalleryImages .owl-prev {
  right: auto;
  left: -20px;
}

section#gallery #olwGalleryImages .owl-nav .owl-next {
  right: -20px;
  left: auto;
}

section#video .container {
  max-width: 748px;
  margin: 0 auto;
}

section#video h2 {
  font-weight: 600;
  font-size: 3rem;
}
section#video iframe{
  width: 100%;
  border: 5px solid #FFFFFF !important;
filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.15));
border-radius: 10px;
}
section#contact-inner .map iframe{
  border: 5px solid #FFFFFF !important;
filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.15));
border-radius: 10px;
}
.wp-mobile {
  display: none !important;
}
@media(max-width:800px) {

  .wp-mobile {
    display: block !important;
  }
  .wp-pc {
    display: none !important;
  }

  #top-bar .social::after {
    background: #000;
  }

  .search .button path {
    stroke: #000 !important;
  }

  #top-bar .phone::after {
    background: #000;
  }

  #page-title {
    height: 200px;
  }

  section {
    padding-block: 5rem;
  }

  #page-title .container {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 0;
    gap: 0;
    text-align: center;
  }

  #page-title .container h1 {
    border: 0;
    width: 100%;
    font-size: 3.7rem;
    padding: 0;
  }

  .search-int:focus {
    width: 300px;
    /* Bar width+1px */
    padding: 0 16px 0 0;
    background-color: #ccc;
  }

  #service-inner .container .card-service {
    width: 100%;
  }

  section#customers-inner .card-customer {
    width: 100%;
  }

  section#services-int .container .box:first-child {
    width: 100%;
    text-align: center;
  }

  section#services-int .container {
    flex-direction: column;
  }

  section#services-int .container .card-service {
    width: 100%;
  }

  section#services-int .container .box:last-child {
    width: 100%;
    padding: 0;
  }

  #page-title.title-service {
    height: 100px;
  }

  section#service-int-inner .detail {
    text-align: center;
  }

  section#service-int-inner .detail h1 {
    font-size: 3.7rem;
  }

  section#contact-inner .container,
  section#contact-inner .info .box {
    flex-direction: column;
    justify-content: center;
  }

  section#contact-inner .info .box a {
    justify-content: center;
  }

  section#contact-inner .whastapp-contact {
    flex-direction: column;
  }

  section#contact-inner .info {
    margin-top: 3rem;
  }

  section#contact-inner {
    margin-top: -28%;
  }

  section#contact-inner .info address {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
  }

  section#contact-inner .container,
  section#contact-inner .info .box {
    text-align: center;
  }

  section#contact-inner .info {
    padding: 0;
    text-align: center;
  }

  

  section#customers-int-inner .info-project {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  section#customers-int-inner {
    margin-top: -30%;
  }

  section#customers-int-inner .container {
    text-align: center;
  }

  section#customers-int-inner .info-project span {
    width: 100%;
  }
  section#service-int-inner .image {
    height: 206px;
  }
  
}
.mb-15 {
  margin-bottom: 15% !important;
}

/*=== result search =================================*/
section#result {
  padding: 5rem 0;
}
section#result .container .box{
  margin-bottom: 2rem;
}
section#result .container .box .card-result {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

section#result .container .box .card-result .image {
  position: relative;
  width: 20%;
}

section#result .container .box .card-result .image span {
  position: absolute;
  top: 20px;
  left: 20px;
}

section#result .container .box .card-result .image img {
  object-fit: cover;
  max-width: 250px;
  border-radius: 5px;
  height: 100%;
  border: 10px solid #FFFFFF;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  border-radius: 10px;
}

section#result .container .box .card-result .detail {
  font-weight: 300;
}

section#result .container .box .card-result .detail h3 {
  font-size: 2rem;
}

section#result .container .box .card-result .detail .meta {
  display: flex;
  align-items: center;
}

section#result .container .box .card-result .detail .meta path {
  stroke: #000;
}

section#result .container .box .card-result .detail a {
  display: block;
  color: var(--dark-blue);
  font-size: 1.5rem;
  margin-top: 1rem;
}

section#result .container .box .card-result .detail a:hover {
  color: var(--light-blue);
}

section#result {
  margin: 2rem auto;
}

@media(max-width:900px) {
  section#result .container .box .card-result {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  section#result .container .box .card-result .image{
    width: 100%;
  }
  section#services-int .container .box:last-child .card-service{
    width: 100%;
  }
  
}