* {
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li a {
  text-decoration: none;
}

.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

.font-times-new-roman {
  font-family: "Times New Roman", serif;
}

.garibaldi-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 38px;
  font-weight: bolder;
}

.garibaldi-subtitle {
  color: #D9A24F;
  font-size: 16px;
  font-weight: bolder;
}

.primary-filled-button {
  display: block;
  padding: 8px 20px;
  border: none;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.primary-filled-button {
  background-color: #D9A24F;
  color: #FFFFFF;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
.primary-filled-button:hover {
  background-color: #FFFFFF;
  color: #D9A24F;
  border: 1px solid #D9A24F;
}

.wrapper {
  background-color: #000000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url("../img/resources/home-bg.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 1200px) {
  .wrapper {
    background-size: cover;
  }
}
.header--nav {
  padding: 10px;
  position: relative;
}
.header--nav-up {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header--nav-up--contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 40px;
}
.header--nav-up--contact-item {
  color: #FFFFFF;
  text-decoration: none;
}
.header--nav-up--contact-item i {
  color: #D9A24F;
}
.header--nav-up--social-media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
}
.header--nav-up--social-media a {
  color: #D9A24F;
  text-decoration: none;
}
.header--nav-up--social-media a i {
  font-size: 1.25em;
  transition: all 0.3s ease;
}
.header--nav-up--social-media a i:hover {
  color: #FFFFFF;
}
.header--nav hr {
  position: absolute;
  margin: 10px 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 1px;
  color: white;
}
.header--nav-down {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.header--nav-down--logo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header--nav-down--logo img {
  height: 100%;
  display: block;
}
.header--nav-down--menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 40px;
}
.header--nav-down--menu li a {
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.header--nav-down--menu li a:hover {
  color: #D9A24F;
}
.header--nav-down--menu li::after {
  content: "";
  display: block;
  margin-top: 15px;
  width: 0;
  height: 3.5px;
  background-color: #D9A24F;
  transition: all 0.3s ease;
}
.header--nav-down--menu li.active::after {
  width: 100%;
}
.header--nav-down--menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #D9A24F;
}
.header--nav-down-up-item {
  display: none;
}

@media (max-width: 576px) {
  .header--nav-up {
    display: none;
    flex-direction: column;
    row-gap: 10px;
  }
  .header--nav-up--contact {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    column-gap: 0;
    row-gap: 10px;
  }
  .header--nav-up-hr {
    display: none;
  }
  .header--nav-down {
    flex-wrap: wrap;
  }
  .header--nav-down a > img {
    height: 75%;
  }
  .header--nav-down--menu {
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    width: 100%;
    background-color: rgb(0, 0, 0);
    border: 1px solid #FFFFFF;
    border-top: none;
    z-index: 1000;
    border-radius: 0 0 25px 25px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    gap: 25px;
    padding: 30px 0;
  }
  .header--nav-down--menu li::after {
    margin-top: 5px;
  }
  .header--nav-down--menu.open {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }
  .header--nav-down--menu-toggle {
    display: block;
  }
  .header--nav-down-up-item {
    display: block;
  }
  .header--nav-down-up-item a {
    text-decoration: underline;
  }
}
.home {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.home--image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home--image img {
  width: 300px;
}
.home--content {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.home--content h1 {
  color: #FFFFFF;
  font-size: 4rem;
  text-align: center;
}
.home--content h1 span {
  font-size: 4rem;
  font-weight: 400;
  color: #D9A24F;
}
.home--content button {
  margin-top: 20px;
}
.home--types {
  position: relative;
  margin-top: 100px;
}
.home--types--list {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.home--types--list li {
  min-width: 250px;
  max-width: 250px;
  background-color: #000000;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.home--types--list li img {
  width: 50px;
}
.home--types--list li i {
  font-size: 48px;
}
.home--types--list li p {
  margin: 0;
  font-size: 12px;
  line-height: 0.9;
}
.home--types--list li p span {
  font-size: 24px;
  font-weight: 700;
}
.home--types--list li:hover {
  background-color: #EBB053;
}

@media (max-width: 1250px) {
  .home {
    height: 100%;
  }
  .home--types {
    margin-bottom: 50px;
  }
  .home--types--list {
    position: relative;
    top: 0;
    left: 0;
    flex-direction: column;
  }
  .home--types--list li {
    border: 1px solid #FFFFFF;
  }
}
@media (max-width: 992px) {
  .home--image img {
    width: 200px;
  }
  .home--content h1 {
    font-size: 2.5rem;
  }
  .home--content h1 span {
    font-size: 2.5rem;
  }
}
.about {
  margin-top: 125px;
  margin-bottom: 125px;
}
.about--content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 100%;
}
.about--content p {
  color: #8F8F8F;
  font-size: 20px;
}
.about--content--points--item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.about--content--points--item i {
  color: #D9A24F;
  font-size: 24px;
}
.about--image {
  position: relative;
  width: 100%;
}
.about--image img {
  position: inherit;
  width: 100%;
  max-height: 500px;
  min-height: 500px;
  object-fit: cover;
  object-position: bottom;
}
.about--image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3%;
  background-color: #EBB053;
  z-index: 100;
}
.about--image-overlay {
  position: absolute;
  bottom: 75px;
  left: -25px;
  background-color: #F5F5F5;
  padding: 16px 30px;
}
.about--image-overlay h6 {
  margin: 0;
  font-weight: 700;
}
.about--image-overlay p {
  margin: 0;
}
.about--image-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8%;
  background-color: #EBB053;
}

@media (max-width: 992px) {
  .about {
    margin: 50px 0;
  }
  .about--content {
    height: 100%;
  }
}
.services {
  background-color: #F5F5F5;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
.services--title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.services--item {
  position: relative;
  background-color: #FFFFFF;
  min-height: 275px;
  max-height: 275px;
  padding: 32px 16px;
}
.services--item img {
  width: 75px;
}
.services--item i {
  font-size: 56px;
  color: #D9A24F;
}
.services--item h6 {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 700;
}
.services--item p {
  color: #8F8F8F;
  margin-bottom: 0;
}
.services--item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3%;
  background-color: #EBB053;
}

@media (max-width: 992px) {
  .services--item {
    min-height: 350px;
    max-height: 350px;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 50px 0;
  }
  .services--item {
    min-height: 250px;
    max-height: 250px;
  }
}
.call-us {
  height: 75vh;
  background-image: url("../img/resources/world.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.call-us::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 1;
}
.call-us > * {
  position: relative;
  z-index: 2;
}
.call-us--content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #171717;
}
.call-us--content img {
  width: 20%;
}
.call-us--content h3 {
  font-weight: 700;
}
.call-us--content h2 {
  color: #D9A24F;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 768px) {
  .call-us--content img {
    width: 50%;
  }
}
.team {
  background-color: #F5F5F5;
  padding-top: 100px;
  padding-bottom: 450px;
  position: relative;
}
.team--content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}
.team--card {
  min-height: 500px;
  max-height: 500px;
  max-width: 300px;
  min-width: 300px;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.team--card--image {
  position: relative;
  width: 100%;
  height: 400px;
}
.team--card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team--card--image-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 10%;
  background-color: #EBB053;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team--card--image-overlay p {
  margin: 0;
}
.team--card--content {
  padding: 16px;
  background-color: #FFFFFF;
}
.team--card--content h6 {
  margin: 0;
  font-weight: 700;
}
.team--card--content p {
  margin: 0;
  color: #8F8F8F;
  font-size: 14px;
}
.team--card--content span {
  color: #D9A24F;
  font-size: 14px;
}
.team--subteam--content {
  position: absolute;
  bottom: -200px;
}

@media (max-width: 992px) {
  .team {
    padding-bottom: 125px;
  }
  .team--subteam--content {
    position: relative;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .team {
    padding: 50px 0;
  }
}
.contact {
  padding: 0 75px;
  background-color: #F5F5F5;
}
.contact--background {
  padding: 250px 0 100px 0;
  height: 100%;
  background-color: #000000;
  background-image: linear-gradient(rgba(10, 10, 10, 0.8), rgba(0, 0, 0, 0.9)), url("../img/resources/home-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.contact--content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.contact--content--item {
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 20px;
}
.contact--content--item-icon {
  color: #D9A24F;
  font-size: 32px;
}
.contact--content--item-text h6 {
  margin: 0;
  color: #D9A24F;
  font-weight: 700;
}
.contact--content--item-text p {
  margin: 0;
  color: #FFFFFF;
  font-weight: 700;
}
.contact--content--item-text a {
  margin: 0;
  color: #FFFFFF;
  font-weight: 700;
}
.contact--form h2 {
  color: #FFFFFF;
  font-weight: 600;
}
.contact--form--input {
  background-color: #000000;
  border: 1px solid #D9A24F;
  padding: 10px;
  color: #FFFFFF;
}
.contact--form--input::-webkit-input-placeholder {
  color: #FFFFFF;
}
.contact--form--textarea {
  background-color: #000000;
  border: 1px solid #D9A24F;
  padding: 10px;
  color: #FFFFFF;
}
.contact--form--textarea::-webkit-input-placeholder {
  color: #FFFFFF;
}
.contact--form--textarea {
  resize: none;
}

@media (max-width: 992px) {
  .contact {
    padding: 0;
  }
  .contact--background {
    padding: 100px 0 50px 0;
  }
}
.footer {
  padding: 75px 0 0 0;
  background-color: #171717;
}
.footer--logo {
  width: 150px;
}
.footer--description {
  color: #FFFFFF;
}
.footer--description span {
  color: #D9A24F;
}
.footer--list li {
  margin-bottom: 10px;
}
.footer--list li a {
  text-decoration: none;
  color: #FFFFFF;
}
.footer--list li a:hover {
  color: #D9A24F;
}

/*# sourceMappingURL=styles.css.map */
