@font-face {
  font-family: "Parchment";
  src: url("../fonts/Parchment.ttf");
}

body {
  background-color: white;
}

.bg-dark {
  background-color: #14171b !important;
}

.navbar-nav {
  gap: 25px;
}

.navbar-brand {
  padding: 0px;
}
.navbar-brand > div {
  height: 100%;
  font-family: "Parchment";
  font-size: 75px;
  line-height: 75px;
}

#main-screen {
  background-color: #14171b;
  background-image: linear-gradient(to bottom, #14171b 66.6%, white 66.6%);
  background-repeat: no-repeat;
  background-position: bottom;
  /* height: calc(100vh - var(--header-height)); */
}

.image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
}

.image-container {
  width: 100%;
  overflow: hidden;
}

.main-image {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: cover;
}

.rounded-image {
  border-radius: 20px;
}

.btn-rounded {
  color: #14171b;
  background-color: white;
  border-radius: 50px;
  font-weight: 500;
  border: none;
  padding: 7px 25px;
  transition: 0.2s ease-in;
}

.btn-rounded:hover,
.btn-rounded:active {
  color: #14171b !important;
  background-color: rgba(255, 255, 255, 0.85) !important;
  border: none !important;
}

.btn-dark {
  color: white;
  background-color: #14171b;
  border: 1px solid #14171b !important;
}

.btn-dark:hover,
.btn-dark:active {
  color: #14171b !important;
  background-color: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid #14171b !important;
}

.fw-600 {
  font-weight: 600;
}

.link {
  text-decoration: none;
  color: white;
}

#contacts {
  background: linear-gradient(to bottom, white 66.6%, #14171b 66.6%);
}

.contact-form {
  background-color: white;
  border-radius: 20px;
  border: 1px solid #80808029;
}

.footer {
  background-color: #14171b !important;
}

.pt-10 {
  padding-top: 100px;
}

@media (max-width: 1200px) {
  .pt-10 {
    padding-top: 50px;
  }
}

.service-card {
  height: 300px;
  position: relative;
  border-radius: 20px;
  border: 1px solid #80808029;
}

.card-img-top {
  min-height: 250px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
}

.card-body {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  text-align: start;
  justify-content: space-between;
  gap: 10px;
  padding: 25px;
}

.card-body > .btn {
  width: max-content !important;
}

.card-title {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .card-title {
    font-size: 1.5rem;
  }
}

.bg-primary {
  background-color: #fff5e9 !important;
}

.bg-secondary {
  background-color: aliceblue !important;
}

.card-gap {
  margin-bottom: 3rem !important;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

h1 {
  letter-spacing: .05rem;
}

@media (max-width: 992px) {
  .navbar .btn-rounded {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.55) !important;
    padding: 8px 0 !important;
  }

  .navbar-nav {
    gap: 0;
  }
}

@media (max-width: 450px) {
  .card-title {
    font-size: 1.5rem;
  }
}