/*/ FONTS IMPORT /*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@700&display=swap");
@font-face {
  font-family: "Eurostile", sans-serif;
  src: url("../font/eurostile.woff");
}
/*/ COLOR /*/
/*/ BACKGROUND COLOR /*/
.bg-white {
  background-color: #fff;
}
.bg-pattern {
  background-color: #00333D;
  font-family: "Eurostile", sans-serif;
  position: relative;
  min-height: 100vh;
}
.bg-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: url(../img/background-pattern.svg);
  background-repeat: repeat;
  background-size: 65%;
  opacity: 0.5;
}

a {
  transition: 0.2s ease-in;
}

hr {
  border: 1px solid #F3F8F9;
}

/*/ THEME EMPLOYEE /*/
.theme-employee {
  color: #00333D;
  font-size: 20px;
  padding-bottom: 50px;
}
.theme-employee-logo {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 14px;
}
.theme-employee-wrapper {
  padding-top: 90px;
  border-radius: 22px 22px 50px 50px;
  position: relative;
  margin-top: 32px;
}
.theme-employee-wrapper-image {
  background-color: #F3F8F9;
  border-radius: 50%;
  width: 255px;
  height: 255px;
  margin: 0 auto;
  margin-top: -212.5px;
  margin-bottom: 8px;
  overflow: hidden;
  border: 12px solid #F3F8F9;
}
.theme-employee-wrapper-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-employee-wrapper-name {
  font-size: 28px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  text-align: center;
  padding: 0 10px;
}
.theme-employee-wrapper-function {
  font-size: 20px;
  text-align: center;
  padding: 0 10px;
}
.theme-employee-wrapper-contact {
  display: flex;
  flex-direction: column;
  padding: 0 60px;
}
.theme-employee-wrapper-contact a {
  color: #00333D;
  margin-bottom: 20px;
}
.theme-employee-wrapper-contact a i {
  color: #ED702B;
  padding-right: 16px;
}
.theme-employee-wrapper-contact a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.theme-employee-wrapper-contact div {
  color: #00333D;
  margin-bottom: 20px;
}
.theme-employee-wrapper-contact div i {
  color: #ED702B;
  padding-right: 16px;
}
.theme-employee-wrapper-contact-link i {
  padding-top: 4px;
  font-size: 24px;
}
.theme-employee-wrapper-socials {
  text-align: center;
  padding: 15px 0 28px 0;
}
.theme-employee-wrapper-socials .fa-linkedin-in {
  color: #0A66C2;
}
.theme-employee-wrapper-socials .fa-instagram {
  color: #C13584;
}
.theme-employee-wrapper-socials .fa-facebook {
  color: #1877F2;
}
.theme-employee-wrapper-socials a {
  margin: 0 10px;
  background-color: #F3F8F9;
  border-radius: 50%;
  padding: 10px;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}
.theme-employee-wrapper-socials a:hover {
  text-decoration: none;
  scale: 1.1;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 6px 20px 0 rgba(0, 0, 0, 0.07);
}
.theme-employee-wrapper-socials a i {
  width: 35px;
  font-size: 30px;
}
.theme-employee-wrapper-button {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, rgb(224, 49, 38) 0%, rgb(238, 117, 44) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
  padding: 30px 0;
  border-radius: 0 0 22px 22px;
}
.theme-employee-wrapper-button__hidden {
  display: none;
}
.theme-employee-wrapper-button:hover {
  background-size: 300% 100%;
  background-position: 100% 0;
  color: #fff;
  text-decoration: none;
}
.theme-employee-wrapper-button i {
  padding-right: 5px;
}

@media screen and (max-width: 992px) {
  .bg-pattern::before {
    background-size: cover;
  }
}
@media screen and (max-width: 568px) {
  .theme-employee {
    padding-bottom: 0;
    font-size: 18px;
  }
  .theme-employee-wrapper {
    margin: 0 -15px;
  }
  .theme-employee-wrapper-contact {
    padding: 0 24px;
  }
  .theme-employee-wrapper-contact-link-at {
    word-break: break-all;
  }
}/*# sourceMappingURL=style.css.map */