* {
  /* -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none; */
}

*:focus, *:active, * {
  outline:0 !important;
  -webkit-tap-highlight-color: transparent;
}

input:focus, textarea:focus {
  outline: none;
}

@font-face {
  font-family: Outfit;
  src: url("fonts/Outfit.ttf");
}

@font-face {
  font-family: Muli-Regular;
  src: url("fonts/Muli-Regular.ttf");
}

@font-face {
  font-family: Muli-Light;
  src: url("fonts/Muli-Light.ttf");
}

@font-face {
  font-family: Overpass;
  src: url("fonts/Overpass.ttf");
}

@font-face {
  font-family: IvyMode-Light;
  src: url("fonts/IvyMode-Light.ttf");
}

@font-face {
  font-family: Italiana-Regular;
  src: url("fonts/Italiana-Regular.ttf");
}

.only-desktop {
  display: block;
}

.only-mobile {
  display: none;
}

body {
  margin: 0;
  font-family: Muli-Regular;
  background-color: #000000;
  overflow-x: hidden;
}

.andaluzia-header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  transition: all 0.3s linear;
}

.andaluzia-header.has-background,
.andaluzia-header.opened-menu {
  background-color: #000000;
  box-shadow: 0px 0px 26px #000000;
}

.andaluzia-header-content {
  width: 1280px;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.andaluzia-header-logo {
  width: 210px;
  height: 54px;
  background-image: url("../img/logo.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.andaluzia-header-menu {
  display: flex;
  gap: 30px;
}

.andaluzia-header-menu-item {
  color: #FFF;
  font-family: Muli-Regular;
  font-family: Outfit;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s linear;
}

.andaluzia-header-menu-item:hover {
  color: #edc34f;
}

.andaluzia-header-back-btn {
  width: 40px;
  height: 40px;
  background-color: #ffc002;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0px;
  text-decoration: none;
  background-image: url("../img/icon-left.svg");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: 4px;
}

.andaluzia-banner {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  background-image: url("../img/banner.png");
  background-size: cover;
  background-position: center;
}

.andaluzia-banner:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(0 0 0 / 80%);
  z-index: 1;
}

.andaluzia-banner-product {
  width: 100%;
  height: 570px;
  padding-top: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.andaluzia-banner-product:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(0 0 0 / 60%);
  z-index: 1;
}


.andaluzia-banner-content {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.andaluzia-banner-item {
  width: 100%;
}

.andaluzia-banner-item-title {
  font-family: Outfit;
  font-weight: bold;
  color: #FFF;
  font-size: 62px;
  width: 80%;
  line-height: 70px;
  text-shadow: 0px 0px 16px #352419;
}

.andaluzia-banner-item-title.center {
  width: 100%;
  text-align: center;
}

.andaluzia-banner-item-subtitle {
  font-family: Outfit;
  margin-top: 30px;
  font-size: 22px;
  display: block;
  color: #ffffff;
  text-shadow: 0px 0px 16px #352419;
  margin-left: 0;
  width: 60%;
  line-height: 32px;
}

.andaluzia-banner-item-subtitle.center {
  width: 100%;
  text-align: center;
}

.andaluzia-banner-cta {
  background-color: #ffc100;
  border: 0;
  text-transform: uppercase;
  padding: 20px 70px 20px 30px;
  margin-top: 40px;
  color: #000000;
  font-family: Outfit;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}

.andaluzia-banner-cta:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  right: 10px;
  top: 10px;
  border-radius: 100px;
  /* background-color: #d2a52b; */
  background-image: url("../img/icon-arrow-right-black.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.andaluzia-servicos {
  background-color: #FFFFFF;
}

.andaluzia-servicos-content {
  padding: 90px 0px 0px 0px;
  max-width: 1280px;
  width: 100%;
  margin: auto;
  display: block;
}

.andaluzia-servicos-title {
  font-family: Outfit;
  font-weight: bold;
  color: #000000;
  font-size: 60px;
  display: block;
  text-align: center;
  margin-bottom: 90px;
}

.andaluzia-servicos-title:after {
  content: "";
  display: block;
  width: 200px;
  margin: auto;
  height: 3px;
  background-color: #e7ab00;
}

.andaluzia-servicos-flex {
  display: flex;
  max-width: 1280px;
  width: 100%;
  margin: auto;
  gap: 60px;
  padding-bottom: 90px;
  padding-top: 90px;
}

.andaluzia-servicos-banner-desktop {
  position: relative;
  background-image: url("../img/servicos-bg-shape.svg");
  background-repeat: no-repeat;
  background-position: left 60px bottom 40px;
  background-size: auto;
  padding-right: 100px;
  padding-bottom: 180px;
  width: 50%;
}

.andaluzia-servicos-banner-mobile {
  width: 100%;
  display: none;
}

.andaluzia-servicos-banner-img-1 {

}

.andaluzia-servicos-banner-img-1 img {
  width: 100%;
}

.andaluzia-servicos-banner-img-2 {
  position: absolute;
  width: 100%;
  max-width: 385px;
  bottom: 0;
  right: 0;
}

.andaluzia-servicos-banner-img-2 img {
  width: 100%;
}

.andaluzia-servicos-experience-counter {
  position: absolute;
  top: 0;
  left: 0;
  height: 152px;
  width: 152px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  background-color: #e7ab00;
  border: 6px solid #FFFFFF;
  transform: translate(-50%, -6px);
  border-radius: 50%;
}

.andaluzia-servicos-experience-counter-number {
  font-size: 38px;
  color: #000000;
  text-align: center;
  width: 100%;
  margin-bottom: 5px;
  font-family: Outfit;
  font-weight: bold;
}

.andaluzia-servicos-experience-counter p {
  font-weight: 600;
  line-height: 16px;
  text-transform: capitalize;
  color: #000000;
  text-align: center;
  margin-bottom: 0;
  font-size: 11px;
}

.andaluzia-servicos-feedback-counter {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(-180deg) translate(20px, -20px);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
}

.andaluzia-servicos-feedback-counter-number {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e7ab00;
  border-radius: 50%;
  margin: 0 0 15px 0;
  transition: all 0.3s ease-in-out;
  font-family: Outfit;
  font-weight: bold;
}


.andaluzia-servicos-feedback-counter h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: capitalize;
  width: calc(100% - 75px);
}

.andaluzia-servicos-info {
  width: 50%;
}

.andaluzia-servicos-info-label {
  display: block;
  padding-left: 40px;
  color: #7c877f;
  font-family: 'Outfit';
  font-weight: bold;
  margin-bottom: 20px;
  background-image: url("../img/icon-sub-heading.svg");
  background-repeat: no-repeat;
  background-position: 0px;
}

.andaluzia-servicos-info-title {
  font-family: Outfit;
  font-weight: bold;
  color: #192324;
  font-size: 50px;
  display: block;
  line-height: 60px;
}

.andaluzia-servicos-info-title-grey {
  color: #797979;
}

.andaluzia-servicos-info-description {
  margin-top: 30px;
  line-height: 28px;
  color: #283132;
}

.andaluzia-servicos-items {
  display: block;
  margin-top: 40px;
}

.andaluzia-servicos-item {
  background-image: url("../img/icon-check.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  padding-left: 30px;
  margin-top: 25px;
  height: 20px;
  line-height: 20px;
  background-position: -2px -2px;
  font-family: Outfit;
  color: #283132;
}

.andaluzia-servicos-item b {
  font-weight: bold;
}

.andaluzia-sobre-nos {
  background: linear-gradient(180deg, #191919 550px, #FFFFFF 40%);
}

.andaluzia-sobre-nos-header {
  /* background-color: #191919; */
}

.andaluzia-sobre-nos-header-content {
  display: flex;
  max-width: 1280px;
  width: 100%;
  margin: auto;
  gap: 60px;
  padding-top: 90px;
  align-items: center;
}

.andaluzia-sobre-nos-header-item {
  width: 50%;
}

.andaluzia-sobre-nos-header-label {
  display: block;
  padding-left: 40px;
  color: #FFFFFF;
  font-family: 'Outfit';
  font-weight: bold;
  margin-bottom: 20px;
  background-image: url("../img/icon-sub-heading-grey.svg");
  background-repeat: no-repeat;
  background-position: 0px;
}

.andaluzia-sobre-nos-header-title {
  font-family: Outfit;
  font-weight: bold;
  color: #ffffff;
  font-size: 50px;
  display: block;
  line-height: 60px;
}

.andaluzia-sobre-nos-header-title-grey {
  color: #797979;
}

.andaluzia-sobre-nos-header-description {
  color: #FFFFFF;
  line-height: 28px;
}

.andaluzia-sobre-nos-content {
  display: block;
  max-width: 1280px;
  width: 100%;
  margin: auto;
  padding-top: 90px;
  padding-bottom: 90px;
  /* padding-bottom: 200px; */
}


.andaluzia-sobre-nos-box {
  background-color: #f8f8f8;
  padding: 45px 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 150px;
}

.andaluzia-sobre-nos-box-item {
  position: relative;
  width: calc(50% - 75px);
}

.andaluzia-sobre-nos-box-item-icon {
  position: relative;
  width: 95px;
  height: 95px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #ebebeb;
  background-color: #e7ab03;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.andaluzia-sobre-nos-box-item-icon.vision {
  background-image: url("../img/icon-our-vision.svg");
}

.andaluzia-sobre-nos-box-item-icon.mission {
  background-image: url("../img/icon-our-mission.svg");
}

.andaluzia-sobre-nos-box-item-title {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-family: 'Outfit';
  font-weight: bold;
}

.andaluzia-sobre-nos-box-item-text {
  margin-top: 30px;
  line-height: 28px;
  color: #283132;
  font-size: 15px;
}

.andaluzia-projetos {
  background-color: #e9e9e9;
}

.andaluzia-projetos-content {
  display: block;
  max-width: 1280px;
  width: 100%;
  margin: auto;
  padding: 90px 0px;
}

.andaluzia-projetos-label {
  display: block;
  padding-left: 40px;
  color: #000000;
  font-family: 'Outfit';
  font-weight: bold;
  margin-bottom: 20px;
  background-image: url("../img/icon-sub-heading-black.svg");
  background-repeat: no-repeat;
  background-position: 0px;
}

.andaluzia-projetos-title {
  font-family: Outfit;
  font-weight: bold;
  color: #192324;
  font-size: 50px;
  display: block;
  line-height: 60px;
}

.andaluzia-projetos-title-grey {
  color: #797979;
}

.andaluzia-projetos-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.andaluzia-projetos-item {
  cursor: pointer;
  flex: 0 0 auto;
  width: calc(50% - 15px);
  position: relative;
}

.andaluzia-projetos-item-thumb {
  width: 100%;
}

.andaluzia-projetos-item-data {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 111.33%);
  background: linear-gradient(360deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
}

.andaluzia-projetos-item-data-label {
  font-family: Outfit;
  font-size: 16px;
  color: #FFF;
  margin-bottom: 12px;
  display: block;
}

.andaluzia-projetos-item-data-title {
  font-family: Outfit;
  font-size: 22px;
  color: #FFF;
  font-weight: bold;
}

.andaluzia-projetos-item-data-link {
  cursor: pointer;
  background-image: url("../img/icon-right-white.svg");
  border-radius: 100px;
  border: 2px solid #FFF;
  width: 60px;
  height: 60px;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 30px;
  bottom: 30px;
}


.andaluzia-services {
  background-color: #edc34f;
}

.andaluzia-services-content {
  padding: 90px 0px;
  max-width: 1280px;
  width: 100%;
  margin: auto;
  display: block;
  justify-content: space-between;
  align-items: center;
}

.andaluzia-services-title {
  font-family: Outfit;
  font-weight: bold;
  color: #2f2816;
  font-size: 60px;
  display: block;
  text-align: center;
  margin-bottom: 50px;
}

.andaluzia-services-title:after {
  content: "";
  display: block;
  width: 210px;
  height: 4px;
  background-color: #e7ab00;
  margin: auto;
}

.andaluzia-services-items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.andaluzia-services-item {
  width: 33%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.andaluzia-services-item img {
  width: 100%;
}

.andaluzia-services-item-info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 10px;
  text-align: center;
}

.andaluzia-services-item-info-title {
  font-family: Outfit;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  color: #FFF;
  font-size: 26px;
  text-align: center;
}

.andaluzia-services-item-info-title:after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background-color: #edc44e;
  margin: auto;
  margin-top: 15px;
  border-radius: 100px;
}

.andaluzia-services-item-info-description {
  color: #FFF;
  line-height: 28px;
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
  min-height: 85px;
}

.andaluzia-services-item-info-btn {
  cursor: pointer;
  border: 0;
  border-radius: 100px;
  margin-top: 20px;
  padding: 6px 30px 6px 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #2f2816;
  font-family: 'Outfit';
  background-color: #ecc44e;
  background-image: url("../img/icon-right-marrom.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: calc(100% - 6px);
}

.andaluzia-header-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  position: absolute;
  top: 15px;
  right: 15px;
  border: 0;
  cursor: pointer;
  background-image: url("../img/icon-menu.svg");
  background-color: #ffc002;
  background-size: 22px;
  background-position: center;
  background-repeat: no-repeat;
}

.andaluzia-quem-somos {
  background-image: url("../img/quem-somos-banner.png");
  background-position: 0;
}

.andaluzia-quem-somos-content {
  padding: 90px 0px;
  max-width: 1280px;
  width: 100%;
  margin: auto;
}

.andaluzia-quem-somos-title {
  font-family: Outfit;
  font-weight: bold;
  color: #d3c398;
  font-size: 60px;
  display: block;
  /* text-align: center; */
  margin-bottom: 50px;
}

.andaluzia-quem-somos-title:after {
  content: "";
  display: block;
  width: 210px;
  height: 4px;
  background-color: #e7ab00;
  /* margin: auto; */
}

.andaluzia-quem-somos-text {
  color: #e3d7b5;
  line-height: 36px;
  margin-top: 30px;
  font-size: 22px;
}

.andaluzia-quem-somos-gallery {
  margin-top: 50px;
  width: calc(100% + 30px);
  position: relative;
}

.andaluzia-quem-somos-gallery-item {
  /* padding: 15px; */
  /* padding-right: 30px; */
  margin-right: 30px;
}

.andaluzia-quem-somos-gallery-item img {
  width: 100%;
  border-radius: 10px;
}

.andaluzia-quem-somos-gallery .slick-arrow {
  position: absolute;
  z-index: 10;
  width: 46px;
  height: 46px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s;
  font-size: 0;
  border-radius: 100px;
  border: 0;
  top: 50%;
  margin-top: -23px;
  cursor: pointer;
  background-color: #edc34f;
  background-size: 26px;
  background-position: center;
  background-repeat: no-repeat;
}

.andaluzia-quem-somos-gallery .slick-prev {
  left: -23px;
  background-image: url("../img/icon-arrow-left.svg");
}

.andaluzia-quem-somos-gallery .slick-next {
  right: 7px;
  background-image: url("../img/icon-arrow-right.svg");
}

.andaluzia-services-content {
  padding: 90px 0px;
  max-width: 1280px;
  width: 100%;
  margin: auto;
  display: block;
}

.andaluzia-clientes {
  background-color: #FFF;
}

.andaluzia-clientes-content {
  padding: 90px 0px;
  display: block;
  max-width: 1280px;
  width: 100%;
  margin: auto;
}

.andaluzia-clientes-label {
  display: block;
  padding-left: 40px;
  color: #000000;
  font-family: 'Outfit';
  font-weight: bold;
  margin-bottom: 20px;
  background-image: url("../img/icon-sub-heading-black.svg");
  background-repeat: no-repeat;
  background-position: 0px;
}

.andaluzia-clientes-title {
  font-family: Outfit;
  font-weight: bold;
  color: #192324;
  font-size: 50px;
  display: block;
  line-height: 60px;
}

.andaluzia-clientes-title-grey {
  color: #797979;
  display: block;
}

.andaluzia-clientes-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 80px;
}

.andaluzia-clientes-item {
  width: 200px;
}





.andaluzia-projeto {
  background-color: #FFFFFF;
}

.andaluzia-projeto-content {
  max-width: 1280px;
  width: 100%;
  padding: 90px 0px;
  margin: auto;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  z-index: 2;
}

.andaluzia-projeto-sidebar {
  width: 370px;
}

.andaluzia-projeto-infos {
  border: 1px solid #eaf0ec;
  padding: 30px;
  display: flex;
  gap: 30px;
  flex-direction: column;
}

.andaluzia-projeto-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.andaluzia-projeto-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: #eaf0ec;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.andaluzia-projeto-info-icon.area {
  background-image: url("../img/icon-projeto-area.svg");
}

.andaluzia-projeto-info-icon.duracao {
  background-image: url("../img/icon-projeto-duracao.svg");
}

.andaluzia-projeto-info-icon.categoria {
  background-image: url("../img/icon-projeto-categoria.svg");
}

.andaluzia-projeto-info-icon.empresa {
  background-image: url("../img/icon-projeto-empresa.svg");
}

.andaluzia-projeto-info-icon.localizacao {
  background-image: url("../img/icon-projeto-localizacao.svg");
}

.andaluzia-projeto-info-icon.telefone {
  background-image: url("../img/icon-projeto-telefone.svg");
}

.andaluzia-projeto-info-icon.email {
  background-image: url("../img/icon-projeto-email.svg");
}

.andaluzia-projeto-info-text {
  width: calc(100% - 70px);
}

.andaluzia-projeto-info-text-title {
  display: block;
  font-weight: bold;
  font-family: 'Outfit';
  margin-bottom: 10px;
}

.andaluzia-projeto-info-text-value {
  color: #7c877f;
  font-size: 14px;
}

.andaluzia-projeto-contact {
  border: 1px solid #eaf0ec;
  /* padding: 30px; */
  margin-top: 50px;
}

.andaluzia-projeto-contact img {
  width: 100%;
}

.andaluzia-projeto-contact-body {
  padding: 30px;
}

.andaluzia-projeto-contact-body-title {
  font-family: 'Outfit';
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

.andaluzia-projeto-contact-body-subtitle {
  font-family: 'Outfit';
  line-height: 22px;
  color: #283132;
  font-size: 13px;
}

.andaluzia-projeto-contact-body-infos {
  display: flex;
  gap: 20px;
  flex-direction: column;
  margin-top: 30px;
}

.andaluzia-projeto-contact-body-infos .andaluzia-projeto-info-text-title {
  margin-bottom: 0px;
}

.andaluzia-projeto-body {
  width: calc(100% - 430px);
}

.andaluzia-projeto-cover {
  width: 100%;
}

.andaluzia-projeto-title {
  font-family: Outfit;
  font-weight: bold;
  color: #192324;
  font-size: 50px;
  display: block;
  line-height: 60px;
  margin-top: 40px;
}

.andaluzia-projeto-text {
  margin-top: 30px;
  line-height: 28px;
  color: #283132;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: Outfit;
}

.andaluzia-projeto-text strong {
  font-weight: bold;
}

.andaluzia-projeto-gallery-block {
  display: none;
}

.andaluzia-projeto-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.andaluzia-projeto-gallery-item {
  width: 190px;
  height: 190px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.andaluzia-projeto-gallery-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}

.andaluzia-projeto-gallery-modal-header {
  width: 100%;
  height: 115px;
  background-color: #000;
}

.andaluzia-projeto-gallery-modal-header-content {
  width: 100%;
  height: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: right;
  margin: auto;
  /* padding-right: 35px; */
}

.andaluzia-projeto-gallery-modal-image {
  position: absolute;
  top: 165px;
  bottom: 50px;
  left: 70px;
  right: 70px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.andaluzia-projeto-gallery-modal-header-close {
  width: 40px;
  height: 40px;
  border: 0;
  background-color: #ffc002;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0px;
  text-decoration: none;
  background-image: url("../img/icon-close.svg");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
}

.andaluzia-contato {
  background-color: #191919;
  background-image: url("../img/contact-background.jpeg");
  background-size: 100%;
}

.andaluzia-contato-content {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: auto;
  padding: 90px 0px;
}

.andaluzia-contato-mini-title {
  display: block;
  padding-left: 40px;
  color: #FFFFFF;
  font-family: 'Outfit';
  font-weight: bold;
  margin-bottom: 20px;
  background-image: url("../img/icon-sub-heading-grey.svg");
  background-repeat: no-repeat;
  background-position: 0px;
}

.andaluzia-contato-title {
  font-family: Outfit;
  font-weight: bold;
  color: #ffffff;
  font-size: 50px;
  display: block;
  line-height: 60px;
}

.andaluzia-contato-title b {
  color: #797979;
}

.andaluzia-contato-header {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

.andaluzia-contato-subtitle {
  font-weight: 500;
  font-size: 22px;
  color: #FFF;
  line-height: 30px;
  margin-top: 20px;
  width: 480px;
}

.andaluzia-contato-btn {
  height: 58px;
  text-decoration: none;
  background-color: #ffc100;
  border: 0;
  text-transform: uppercase;
  padding: 20px 70px 20px 30px;
  margin-top: 40px;
  color: #000000;
  font-family: Outfit;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  cursor: pointer;
  background-image: url("../img/icon-whatsapp.svg");
  background-size: 20px;
  background-position: calc(100% - 20px);
  background-repeat: no-repeat;
}

.andaluzia-contato-social {
  display: flex;
  margin-top: 50px;
  border-radius: 100px;
}

.andaluzia-contato-social-icon {
  width: 50px;
  height: 50px;
  border: 1px solid white;
  border-radius: 100px;
  margin-right: 10px;
  cursor: pointer;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.andaluzia-contato-social-icon.whatsapp {
  background-image: url("../img/icon-whatsapp-white.svg");
}

.andaluzia-contato-social-icon.instagram {
  background-image: url("../img/icon-instagram-white.svg");
}

.andaluzia-contato-social-icon.linkedin {
  background-image: url("../img/icon-linkedin-white.svg");
}

.andaluzia-footer {
  background-color: #000000;
}

.andaluzia-footer-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  margin: auto;
  padding: 30px 0px;
  justify-content: space-between;
  align-items: center;
}

.andaluzia-footer-copyright {
  color: #FFF;
  font-size: 13px;
}

.andaluzia-footer-logo {
  width: 105px;
  height: 30px;
  font-size: 0px;
  cursor: pointer;
  background-image: url("../img/powered-logo.png");
  background-size: 110px;
  background-repeat: no-repeat;
  background-position: center;
}


@media screen and (max-width: 768px) {
  .only-desktop {
    display: none;
  }
  
  .only-mobile {
    display: block;
  }

  .andaluzia-header {
    height: 100px;
  }

  .andaluzia-header-logo {
    width: 160px;
  }
  
  .andaluzia-header-content {
    width: 100%;
    padding: 0px 15px;
  }

  .andaluzia-header-menu-btn {
    display: block;
    top: 30px;
  }

  .andaluzia-header-menu {
    position: fixed;
    z-index: 9999;
    gap: 0;
    flex-direction: column;
    top: 100px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    border-top: 1px solid #171717;
    display: none;
  }

  .andaluzia-header-menu-item {
    padding: 20px 25px;
    border-bottom: 1px solid #171717;
  }

  .andaluzia-banner {
    background-position: right;
  }

  .andaluzia-banner-content {
    padding: 0px 25px;
  }

  .andaluzia-banner-item-title {
    width: 100%;
    font-size: 33px;
    line-height: 47px;
    text-align: center;
  }

  .andaluzia-banner-item-subtitle {
    margin-left: unset;
    text-align: center;
    line-height: 32px;
    width: 100%;
  }

  .andaluzia-banner-cta {
    font-size: 12px;
    height: 58px;
    width: 100%;
  }

  .andaluzia-services-content {
    padding: 50px 0px;
  }

  .andaluzia-services-title {
    font-size: 43px;
  }

  .andaluzia-services-title:after {
    width: 120px;
  }

  .andaluzia-services-items {
    padding: 0px 25px;
    flex-direction: column;
  }

  .andaluzia-services-item {
    width: 100%;
  }

  .andaluzia-services-item-info {
    padding: 35px 10px;
  }

  .andaluzia-services-item-info-title {
    font-size: 18px;
  }

  .andaluzia-services-item-info-description {
    margin-top: 20px;
    font-size: 14px;
    line-height: 23px;
    min-height: unset;
  }

  .andaluzia-quem-somos-title {
    font-size: 43px;
    text-align: center;
  }

  .andaluzia-quem-somos-title:after {
    width: 120px;
    margin: auto;
  }

  .andaluzia-quem-somos-content {
    padding: 50px 25px;
  }

  .andaluzia-quem-somos-text {
    font-size: 16px;
    line-height: 34px;
    text-align: center;
  }

  .andaluzia-quem-somos-gallery {
    width: 100%;
  }

  .andaluzia-quem-somos-gallery-item {
    margin-right: 0px;
  }

  .andaluzia-quem-somos-gallery .slick-arrow {
    display: block;
    width: 34px;
    height: 34px;
    margin-top: -17px;
    background-size: 20px;
  }

  .andaluzia-quem-somos-gallery .slick-prev {
    left: -17px;
  }

  .andaluzia-quem-somos-gallery .slick-next {
    right: -17px;
  }

  .andaluzia-servicos-flex {
    flex-direction: column-reverse;
    padding: 60px 30px;
  }

  .andaluzia-servicos-info {
    width: 100%;
  }

  .andaluzia-servicos-info-title {
    font-size: 42px;
    line-height: 50px;
  }

  .andaluzia-servicos-item {
    background-size: 35px;
    padding-left: 50px;
    margin-top: 25px;
    height: unset;
    background-position: 0px;
  }

  .andaluzia-servicos-item b {
    display: block;
  }

  .andaluzia-servicos-banner-desktop {
    width: 100%;
    padding-right: 0px;
    padding-bottom: 160px;
    display: none;
  }

  .andaluzia-servicos-banner-mobile {
    display: block;
  }

  .andaluzia-servicos-experience-counter {
    transform: unset;
    left: 50%;
    margin-left: -76px;
    top: -76px;
  }

  .andaluzia-servicos-feedback-counter {
    display: none;
  }

  .andaluzia-sobre-nos {
    background: #191919;
  }

  .andaluzia-sobre-nos-content {
    width: calc(100% - 60px);
    padding-top: 0;
    padding-bottom: 60px;
  }

  .andaluzia-sobre-nos-box {
    flex-direction: column;
    text-align: center;
    padding: 45px 20px;
  }

  .andaluzia-sobre-nos-box-item-icon {
    margin: auto;
    margin-bottom: 20px;
  }

  .andaluzia-sobre-nos-box-item {
    width: 100%;
  }

  .andaluzia-sobre-nos-header-content {
    padding: 60px 30px;
    display: block;
  }

  .andaluzia-sobre-nos-header-item {
    width: 100%;
  }

  .andaluzia-projetos-content {
    padding: 60px 30px;
  }

  .andaluzia-projetos-item {
    width: 100%;
  }

  .andaluzia-projetos-item-data {
    padding: 20px;
    padding-right: 70px;
    justify-content: start;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
  }

  .andaluzia-projetos-item-data-title {
    line-height: 32px;
  }

  .andaluzia-projetos-item-data-link {
    width: 30px;
    height: 30px;
    background-size: 16px;
    bottom: unset;
    top: 20px;
    right: 20px;
  }

  .andaluzia-clientes-content {
    padding: 60px 30px;
  }

  .andaluzia-clientes-title-grey {
    display: inline;
  }

  .andaluzia-clientes-item {
    width: calc(50% - 25px);
  }

  .andaluzia-projeto-contact {
    margin-top: 0px;
  }

  .andaluzia-projeto-content {
    padding: 60px 30px;
    flex-direction: column;
  }

  .andaluzia-projeto-sidebar {
    width: 100%;
  }

  .andaluzia-projeto-infos {
    width: 100%;
  }

  .andaluzia-projeto-body {
    width: 100%;
  }

  .andaluzia-projeto-title {
    font-size: 36px;
    line-height: 44px;
  }

  .andaluzia-banner-item-subtitle.center {
    font-size: 14px;
    margin-top: 10px;
  }

  .andaluzia-projeto-gallery {
    margin-top: 30px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eaf0ec;
  }

  .andaluzia-projeto-gallery-item {
    width: 100%;
    height: 200px;
  }

  .andaluzia-projeto-gallery-modal-header {
    height: 100px;
  }

  .andaluzia-projeto-gallery-modal-header-content {
    padding: 0px 15px;
  }

  .andaluzia-projeto-gallery-modal-image {
    position: absolute;
    top: 100px;
    bottom: 0px;
    left: 0px;
    right: 0px;
  }

  .andaluzia-contato {
    background-size: cover;
    background-position: center;
  }

  .andaluzia-contato-content {
    padding: 60px 30px;
  }

  .andaluzia-contato-title {
    /* font-size: 30px; */
    /* text-align: center; */
  }

  .andaluzia-contato-title:after {
    margin: 20px auto;
  }

  .andaluzia-contato-header {
    display: block;
  }

  .andaluzia-contato-subtitle {
    width: 100%;
    font-size: 18px;
    /* text-align: center; */
    margin-top: 40px;
  }

  .andaluzia-contato-social {
    justify-content: center;
  }

  .andaluzia-contato-btn {
    display: block;
    text-align: center;
    margin-top: 50px;
  }

  .andaluzia-footer-content {
    padding: 30px 25px;
  }

  .andaluzia-footer-copyright {
    font-size: 10px;
    width: 180px;
    line-height: 14px;
  }
}