*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  position: relative;
  font-size: 62, 5%;
  font-family: "Kalam", cursive;
  font-family: "Montserrat", sans-serif;
  background-color: #2C3333;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.wrapper-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 3.5rem;
  padding: 10px 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #CBE4DE;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  min-width: 220px;
  border-bottom: 1px solid #fff;
}

.shadow-img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.nav {
  position: fixed;
  top: 0;
  display: inline-flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100px;
  transition: 0.6s linear;
  z-index: 100;
}
.nav__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}
.nav__title p {
  color: #CBE4DE;
  text-decoration: none;
  margin: 0;
}
.nav__img {
  height: 75px;
  width: 75px;
  margin: 10px;
  margin-right: 30px;
  border-radius: 50%;
  transition: scale 0.3s;
}
.nav__img:hover {
  scale: 1.3;
}
.nav__item {
  position: relative;
  padding: 5px 10px;
  color: #CBE4DE;
  font-size: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav__item:hover {
  color: #0E8388;
}
.nav__item::after, .nav__item::before {
  content: "";
  position: absolute;
  width: 0;
  bottom: 0;
  border-bottom: 2px solid #CBE4DE;
  transition: width 0.3s;
}
.nav__item::before {
  right: 50%;
}
.nav__item::after {
  left: 50%;
}
.nav__item:hover::after, .nav__item:hover::before {
  width: 50%;
}

.nav-mobile {
  background-color: #2C3333;
  height: 200px;
}
.nav-mobile .nav__title {
  display: none;
}
.nav-mobile .nav__buttons {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nav-mobile .nav__buttons .nav__item {
  display: flex;
  padding: 10px 20px;
}

.burger-btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
  padding: 2em;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 100;
}
.burger-btn:focus {
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
}
.burger-btn__box {
  position: absolute;
  width: 40px;
  height: 40px;
}
.burger-btn__bars, .burger-btn__bars::after, .burger-btn__bars::before {
  position: absolute;
  right: 0;
  height: 3px;
  content: "";
  background-color: #CBE4DE;
}
.burger-btn__bars {
  width: 100%;
}
.burger-btn__bars::after {
  top: 10px;
  width: 60%;
}
.burger-btn__bars::before {
  top: 20px;
  width: 30%;
}

.shadow-nav {
  background-color: rgba(0, 0, 0, 0.8);
}

.header {
  position: relative;
}
.header__img {
  position: relative;
  background-image: url("../img/header-bg-mini.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
}
.header__text {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5px 15px;
  text-align: center;
  color: #CBE4DE;
  font-size: 1.5rem;
  text-transform: uppercase;
  z-index: 1;
}
.header__text h1 {
  padding: 5px;
  letter-spacing: 10px;
  font-weight: bold;
}
.header__text p {
  padding: 5px;
  font-size: 1.2rem;
  letter-spacing: 5px;
}
.header .arrow {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%);
  font-size: 4rem;
  color: #CBE4DE;
  cursor: pointer;
  z-index: 99;
}

.aboutus {
  position: relative;
  overflow: hidden;
}
.aboutus__text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  color: #CBE4DE;
  margin: 10px;
}
.aboutus .cards {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  margin: 10px 20px;
}
.aboutus .cards .card {
  position: relative;
  width: 100%;
  height: 25em;
  margin: 5px;
  text-align: center;
  perspective: 800px;
  background-color: #2C3333;
  border: none;
  transition: 0.5s;
}
.aboutus .cards .card:hover .card__back-text {
  transform: rotateY(0deg);
  opacity: 1;
}
.aboutus .cards .card:hover .card__img {
  transform: rotateY(180deg);
}
.aboutus .cards .card__img {
  position: relative;
  height: 100%;
  height: 100%;
  background-image: url("../img/aboutus-mini.jpg");
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  transition: 0.5s;
}
.aboutus .cards .card__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  text-shadow: 2px 2px 1px black;
  color: rgb(0, 0, 0);
  text-decoration: underline;
}
.aboutus .cards .card__title p {
  position: absolute;
  bottom: 0;
}
.aboutus .cards .card__back-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 10px 20px;
  font-size: 1.5rem;
  background-color: #2E4F4F;
  color: #CBE4DE;
  text-shadow: 2px 2px 1px black;
  border-radius: 20px;
  transition: 0.5s;
  overflow: auto;
  opacity: 0;
  rotate: Y 180deg;
}

.services {
  position: relative;
  background-color: #2E4F4F;
}
.services__info-text p {
  font-size: 1.6rem;
  color: #CBE4DE;
  text-align: center;
  margin-bottom: 30px;
}
.services .accordion {
  --bs-accordion-active-bg: white;
}
.services .accordion-button {
  transition: background-color 0.5s;
}
.services .accordion-button:hover {
  background-color: #CBE4DE;
}
.services .accordion-header .services-accordion-title {
  width: 100%;
  text-align: center;
  font-size: 1.3rem;
  margin: 0;
  padding: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
}
.services .accordion-body {
  font-size: 1.2rem;
  background-color: #CBE4DE;
}
.services .accordion-item {
  border-radius: 50px;
  overflow: hidden;
}
.services__text {
  padding: 20px;
  text-align: center;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #CBE4DE;
}

.hrpayroll {
  text-align: center;
  margin: 20px 0;
}
.hrpayroll p {
  margin: 0;
}
.hrpayroll__text {
  font-size: 1.6rem;
  padding: 10px 20px;
  color: #CBE4DE;
}
.hrpayroll__btn button {
  padding: 7px 20px;
  font-size: 1.3rem;
  border-radius: 5px;
  color: #CBE4DE;
  background-color: #b49d9d;
}
.hrpayroll__hidden {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  height: 0;
  color: #CBE4DE;
}
.hrpayroll__hidden .hrpayroll-list {
  width: 45%;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  line-height: 2.4rem;
  transition: all 1s;
}
.hrpayroll__hidden .accounting-list {
  width: 45%;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  line-height: 2.4rem;
  border-left: 1px solid #fff;
}
.hrpayroll__hidden .list-title {
  position: relative;
  display: flex;
  justify-content: center;
  font-size: 3rem;
  color: #CBE4DE;
  text-transform: uppercase;
}
.hrpayroll__hidden .list-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  border-bottom: 1px solid #fff;
}
.hrpayroll__hidden .list-title p {
  margin: 0;
}
.hrpayroll .hrpayroll--active {
  position: relative;
  padding: 10px 20px;
  height: auto;
  overflow: visible;
}

.contact {
  position: relative;
}
.contact__img {
  background-image: url("../img/contact-mini.jpg");
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.contact__text {
  position: relative;
  padding: 0 50px;
  color: #CBE4DE;
  text-align: center;
  z-index: 1;
}
.contact__text .contact-flex {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.contact__text .contact-flex .info-text {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.contact__text .contact-flex .info-text h3 {
  font-size: 3rem;
  padding: 10px 20px;
  color: #CBE4DE;
  border-bottom: 1px solid #fff;
  text-transform: uppercase;
}
.contact__text .contact-flex .info-text h5 {
  font-size: 1.6rem;
  padding: 5px 10px;
  font-weight: bold;
  text-transform: uppercase;
}
.contact__text .contact-flex .info-text p {
  font-size: 1.4rem;
}

.map {
  text-align: center;
}
.map .map-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}
.map .map-screen iframe {
  border-radius: 25px;
  height: 90%;
  width: 70%;
}

.realization {
  background-image: linear-gradient(205deg, rgb(44, 51, 51) 15%, rgba(188, 194, 208, 0.7) 50%, rgb(44, 51, 51) 85%);
}
.realization div {
  text-align: center;
  box-shadow: 0 0 5px 5px rgb(44, 51, 51);
}
.realization h6 {
  margin: 0;
  padding-top: 5px;
  font-size: 1.3rem;
  color: black;
}
.realization h6 p {
  font-size: 1rem;
  font-family: "Kalam";
  margin: 0;
  padding-bottom: 5px;
}
.realization h6 p a {
  text-decoration: none;
  color: black;
  transition: background-color 0.3s;
}
.realization h6 p a:hover {
  color: #f5eded;
}

/* ----------------------------------------------
 * Generated by Animista on 2023-5-19 19:50:49
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation pulsate-bck
 * ----------------------------------------
 */
@keyframes pulsate-bck {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.pulsate-bck {
  animation: pulsate-bck 1s ease-in-out 1s infinite both;
}

@media (max-width: 992px) {
  .nav__item {
    display: none;
  }
  .header__text h1 {
    padding: 5px;
    font-size: 1.6rem;
    letter-spacing: 5px;
  }
  .header__text p {
    padding: 5px;
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
  .services__acc-box {
    flex-direction: column;
  }
  .hrpayroll__hidden {
    flex-direction: column;
  }
  .hrpayroll__hidden .list-title {
    font-size: 2.5rem;
  }
  .hrpayroll .accounting-list {
    border: none;
  }
}
@media (min-width: 992px) {
  .burger-btn {
    display: none;
  }
}
@media (min-width: 768px) {
  .header__img {
    background-image: url("../img/header-bg-big.jpg");
  }
  .contact__img {
    background-image: url("../img/contact-big.jpg");
  }
}
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
  }
  .realization h6 {
    color: #CBE4DE;
  }
}
@media (max-width: 576px) {
  .nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .nav__title {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
  }
  .nav__img {
    height: 55px;
    width: 55px;
    margin: 0;
    cursor: default;
  }
  .nav__img:hover {
    scale: 1;
  }
  .hrpayroll__header {
    font-size: 2rem;
  }
}
@media (min-width: 576px) {
  .burger-btn {
    right: 10px;
  }
  .burger-btn__bars {
    width: 100%;
  }
  .burger-btn__bars::after {
    top: 10px;
    width: 60%;
  }
  .burger-btn__bars::before {
    top: 20px;
    width: 30%;
  }
}
@media (max-width: 1200px) {
  .contact-flex {
    flex-direction: column;
    align-items: center;
  }
  .contact-flex .info-text {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */