:root {
  --bg-header: #0A0A0A;
  --bg-body: #111111;
}

.btn-primary-custom {
  background: linear-gradient(0.25turn, #866645, #C5B275, #866645);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s;
}
.btn-primary-custom:hover {
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-primary-custom {
    font-size: 0.8rem;
  }
  .btn-primary-custom:hover {
    font-size: 0.9rem;
  }
}

header {
  padding: 1rem 0;
  height: 100%;
  background: var(--bg-header);
}
header img {
  width: 100px;
}
@media screen and (max-width: 767px) {
  header img {
    width: 70px;
  }
}

#jumbo .container-jumbo {
  position: relative;
}
#jumbo .container-jumbo .container-image {
  opacity: 0.7;
}
#jumbo .container-jumbo .container-image img {
  width: 100%;
  max-width: 100%;
  height: 800px;
}
@media screen and (max-width: 767px) {
  #jumbo .container-jumbo .container-image img {
    height: 400px;
  }
}
#jumbo .container-jumbo .container-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  #jumbo .container-jumbo .container-text {
    text-align: center;
  }
}

#about img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  #about .row {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}

#whatwedo {
  border-top: 1px solid #866645;
  border-bottom: 1px solid #866645;
  background-image: url("../images/bgimage.jpg");
  background-attachment: scroll;
  background-position: right;
  background-repeat: no-repeat;
}
#whatwedo .row-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 75%;
  margin: auto;
}
#whatwedo .row-list .image-list {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
}
#whatwedo .row-list .image-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#whatwedo .row-list .description-list {
  font-size: 1.2rem;
  font-weight: bold;
}
#whatwedo .row-list:nth-child(even) {
  justify-content: end;
}
@media screen and (max-width: 767px) {
  #whatwedo {
    background-position: center;
  }
  #whatwedo .row {
    gap: 1rem;
  }
  #whatwedo .row .row-list {
    margin: 0;
    flex-grow: 1;
    gap: 1rem;
  }
  #whatwedo .row .row-list .image-list {
    width: 100px;
    height: 100px;
  }
  #whatwedo .row .row-list .description-list {
    font-size: 1rem;
  }
}

footer .row .col-6:last-child {
  border-left: 1px solid white;
}
footer .row ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 2rem;
}
footer .row ul li {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  footer a {
    font-size: 0.9rem;
  }
}
footer .copiright {
  text-align: center;
  border-top: 1px solid white;
  padding: 1rem 0;
}

.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  display: none;
}
.custom-modal .container-modal {
  width: 50%;
  background-color: #0A0A0A;
  border-radius: 5px;
  border: 1px solid white;
}
.custom-modal .container-modal > div {
  padding: 1rem;
}
.custom-modal .container-modal .header-modal {
  border-bottom: 1px solid white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-modal .container-modal .header-modal .btn-close {
  cursor: pointer;
  color: white;
}
.custom-modal.show {
  display: flex;
}

body {
  background-color: var(--bg-body);
  color: white;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}

a {
  color: white;
}

/*# sourceMappingURL=main.css.map */
