.default {
  --bg-topbar: #26652D;
  --bg-primary-button: #096721;
  --bg-topbar-button: #B1ECBF;
  --text-color-light: #FAFAFA;
  --profile-title-color: #2A362D;
  --text-color: #656E67;
  --title-color: #005515;

  --occupation-icon-color: #10dd43;
  --address-icon-color: #005515;
  --softplan-footer-color: #909AA5;

  --bg-gradient-occupation-0: #16351FC7;
  --bg-gradient-occupation-1: #1A231D;

  --bg-gradient-contacts-0: #FFFFFF;
  --bg-gradient-contacts-1: #CCDCD0A1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  font-family: "Open Sans", "Arial", Helvetica, sans-serif;
  font-size: 14px;
  color: var(--text-color);
}

html {
  scroll-behavior: smooth;
}

body {
  background-image: linear-gradient(to bottom, var(--bg-gradient-contacts-0), var(--bg-gradient-contacts-1));
}

h1 {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 32px;
  font-weight: 700;
  color: var(--title-color);
  text-transform: uppercase;
  margin-bottom: 6px;
}

h1 i.fal,
h1 i.fad {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  font-size: 32px;
  color: var(--title-color);
  margin-right: 10px;
}

button {
  height: 35px;
  padding: 0 32px;
  border-radius: 4px;
  text-transform: uppercase;
  background-color: #02721E;
  color: white;
}

button:hover {
  filter: brightness(105%);
}

button:active {
  filter: brightness(90%);
}

.city-name {
  text-transform: capitalize;
}

.opacity-50 {
  opacity: .5;
}

button.disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

.topbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  padding: 0 32px;
  background-color: var(--bg-topbar);
}

@media (max-width: 576px) {
  .topbar {
    display: none;
  }
}

.topbar .logo {
  width: 35px;
  height: 35px;
}

.topbar button {
  color: var(--profile-title-color);
  background-color: var(--bg-topbar-button);
  font-weight: 600;
  text-transform: none;
}

.header-image {
  height: 230px;
  background-color: var(--bg-topbar);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 0 70px;
}

.container-profile,
.container-presentation,
.container-address,
.container-address-map,
.container-contact,
.container-team {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* PROFILE SECTION */
.container-header {
  display: flex;
  align-items: end;
  justify-content: center;
  flex-wrap: wrap;
}

.container-header a {
  padding-bottom: 36px;
}

.container-profile {
  align-items: center;
  padding: 40px 0;
}

.container-profile .profile-pic {
  width: 182px;
  height: 182px;
  background-color: darkgrey;
  border-radius: 50%;
  margin-bottom: 5px;
}

.container-profile h1 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 0;
  color: var(--profile-title-color);
}

.container-profile h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-color);
}

.container-profile .action-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.container-profile .action-buttons button {
  background-color: var(--bg-primary-button);
  height: 48px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-color-light);
}

.container-profile .action-buttons .whatsapp-icon {
  width: 35px;
  height: 35px;
}

/* OCCUPATION AREA SECTION */
.container-occupation {
  display: flex;
  flex-direction: column;
  padding: 20px 40px;
  color: var(--text-color-light);
  background-image: linear-gradient(to bottom, var(--bg-gradient-occupation-0), var(--bg-gradient-occupation-1));
}

.container-occupation h1 {
  color: var(--text-color-light);
}

.container-occupation .occupation-grid {
  display: grid;
  grid-template-columns: repeat(4, min-content);
  grid-template-rows: repeat(auto-fill, min-content);
  grid-row-gap: 2em;
  align-self: center;
}

@media (max-width: 992px) {
  .container-occupation .occupation-grid {
    grid-template-columns: repeat(3, min-content);
  }
}

@media (max-width: 768px) {
  .container-occupation .occupation-grid {
    grid-template-columns: repeat(2, min-content);
  }
}

@media (max-width: 576px) {
  .container-occupation .occupation-grid {
    grid-template-columns: repeat(1, min-content);
  }
}

.container-occupation .occupation-grid .occupation-grid-item .public-page-area-div-img {
  text-align: center;
}

.container-occupation .occupation-grid .occupation-grid-item .public-page-area-img {
  width: 40px;
}

.container-occupation .occupation-grid .occupation-grid-item .occupation-label {
  font-size: 14px;
  color: var(--text-color-light);
  font-weight: bold;
  text-align: center;
}

.container-occupation .occupation-grid .occupation-grid-item {
  width: 180px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 10px;
}

.container-occupation .occupation-grid .occupation-grid-item .occupation-icon {
  width: 40px;
  margin-right: 10px;
}

.container-occupation .occupation-grid .occupation-grid-item h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  width: 180px;
  text-align: center;
  color: var(--text-color-light);
}

/* ADDRESS SECTION */
.container-address .contacts-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 100px;
}

@media (max-width: 576px) {
  .container-address .contacts-wrapper {
    flex-direction: column;
  }
}

.container-address .contacts-wrapper .contacts,
.container-address .contacts-wrapper .social-networks {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.container-address .contacts-wrapper .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--profile-title-color);
}

.container-address .contacts-wrapper .contact-item i {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary-button);
}

.container-address .contacts-wrapper .contact-item .contact-address {
  color: var(--profile-title-color);
}

.container-address .contacts-wrapper .contact-item .contact-address .adress-extra {
  font-weight: lighter;
}

/* TEAM SECTION */
.container-team .team-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.container-team .team-wrapper .team-member {
  display: flex;
  flex-direction: column;
  align-items: center
}

.container-team .team-wrapper .team-member picture {
  border: solid 6px var(--occupation-icon-color);
  border-radius: 50%;
  display: inherit;
}

/*.container-team .team-wrapper .team-member picture:hover {*/
/*  border: solid 6px var(--occupation-icon-color);*/
/*  filter: brightness(90%);*/
/*  cursor: pointer;*/
/*}*/

.container-team .team-wrapper .team-member img {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  background-color: darkgrey;
}

/*.container-team .team-wrapper .team-member img:hover {*/
/*  width: 152px;*/
/*  height: 152px;*/
/*  border-radius: 50%;*/
/*  border: solid 6px var(--occupation-icon-color);*/
/*  filter: brightness(90%);*/
/*  cursor: pointer;*/
/*}*/

.container-team .team-wrapper .team-member h2 {
  max-width: 250px;
  font-size: 24px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #2A362D;
}

.container-team .team-wrapper .team-member .modal h2 {
  max-width: none;
}

.container-team .team-wrapper .team-member span {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--title-color);
}

.container-team .team-wrapper .team-member .presentation {
  border: 3px solid #BEC1BE;
  border-radius: 10px;
  padding: 16px;
  margin-top: 10px;
}

.team-member-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CONTACT SECTION */
.container-contact .contact-form-line {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 10px;
}

@media (max-width: 670px) {
  .container-contact .contact-form-line {
    flex-direction: column;
  }
}

.container-contact .contact-form-line .control-group {
  flex: 1;
}

.container-contact .contact-form .control-group input,
.container-contact .contact-form .control-group textarea {
  width: -webkit-fill-available;
}

.container-contact .contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.container-contact .contact-form-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0;
}

.container-contact .contact-form .control-group:not(.error) input,
.container-contact .contact-form .control-group:not(.error) textarea {
  display: block;
  padding: 10px;
  border: 1px solid #d7d7d7;
  box-shadow: 0px 0px 8px 1px rgba(42, 54, 45, 0.2);
  border-radius: 4px;
  width: 100%;
}

.container-contact .contact-form .control-group input:focus,
.container-contact .contact-form textarea:focus {
  outline: none;
}

.contact-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-modal-content > * {
  margin: 0;
}

.contact-modal-content button {
  background-color: var(--bg-primary-button);
}

/* MODALS */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-container {
  display: flex;
  flex-direction: column;
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: none;
  border-radius: 10px;
  width: 60%;
}

.close {
  align-self: end;
  color: black;
  font-size: 20px;
  font-weight: bold;
  clear: both;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.error-recaptcha {
  color: #b94a48;
  display: block;
  margin: 8px 0;
  max-width: 318px;
}

.hidden {
  display: none;
}

.alert-error button.close {
  padding: 10px 15px 10px 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  top: -2px;
  right: -21px;
  float: right;
}

.box-message .row-fluid div {
  display: flex;
}

.box-message .row-fluid div .alert-error {
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
}

.box-message .row-fluid div .alert-error div {
  font-weight: 1000;
}

.message-remaining-characters {
  margin-top: 12px;
  float: right;
  font-weight: 600;
}

div.alert-error {
  border-radius: 5px;
}

.alert div{
  color: #b94a48 !important;
}

.control-group.error div textarea {
  border: 1px solid;
}

.container-presentation article {
  word-break: break-word;
  text-align: justify;
}

.container-contact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container-contact-top button {
  align-self: auto;
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  font-size: 32px;
}

@media (max-width: 991px) {
  body {
    display: unset;
  }
}

