* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  background-color: #ffffff;
  color: #999;

  line-height: 1.5;
  margin: 0;
  padding: 0;
}


.errorlist {
  color: red;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-top: 0;
}

a {
  text-decoration: none !important;
  transition: 0.3s all ease;
}

.text-black {
  color: #000;
}

.content {
  padding: 7rem 0;
}

/* =========================
   GALLERY
========================= */

.gallery-container {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  padding-bottom: 80px;

  /* width: 100%; */
}

.gallery-item {
  width: 100%;
}

.gallery-img {
  width: 100%;

  height: 320px;

  object-fit: cover;

  border-radius: 10px;

  cursor: pointer;

  transition: 0.3s;

  display: block;
}

.gallery-img:hover {
  transform: scale(1.02);
}

/* =========================
   TYPOGRAPHY
========================= */

h2 {
  font-size: 3.5rem;
  font-weight: 700;
}

h3 {
  font-size: 2rem;
  font-weight: 700;
}

/* =========================
   FORMS
========================= */

.form-control {
  border: 1px solid #d9d9d9;
  border-radius: 0;

  height: 55px;
}

.form-control:focus,
.form-control:active {
  outline: none;
  box-shadow: none;
  border-color: #000;
}

.col-form-label {
  color: #000;
}

.btn {
  height: 55px;
}

.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none;
}

label.error {
  font-size: 12px;
  color: red;
}

#message {
  resize: vertical;
}

#form-message-warning {
  display: none;
  color: #B90B0B;
}

#form-message-success {
  display: none;

  color: #55A44E;

  font-size: 18px;

  font-weight: bold;
}

.submitting {
  float: left;

  width: 100%;

  padding: 10px 0;

  display: none;

  font-weight: bold;

  font-size: 12px;

  color: #000;
}

/* =========================
   ROOT VARIABLES
========================= */

:root {
  --dl-color-gray-black: #000000;
  --dl-color-gray-white: #FFFFFF;

  --dl-size-size-maxwidth: 1400px;

  --dl-space-space-unit: 16px;
  --dl-space-space-twounits: 32px;
  --dl-space-space-threeunits: 48px;

  --dl-radius-radius-radius4: 4px;
}

/* =========================
   UI
========================= */

.button {
  color: var(--dl-color-gray-black);

  display: inline-block;

  padding: 0.5rem 1rem;

  border: 1px solid var(--dl-color-gray-black);

  border-radius: 4px;

  background-color: var(--dl-color-gray-white);
}

.input,
.textarea {
  color: var(--dl-color-gray-black);

  padding: 0.5rem;

  border: 1px solid var(--dl-color-gray-black);

  border-radius: 4px;

  background-color: var(--dl-color-gray-white);
}

.list {
  width: 100%;

  margin: 1em 0;

  padding-left: 1.5rem;

  list-style-type: none;
}

.list-item {
  display: list-item;
}

.teleport-show {
  display: flex !important;
  transform: none !important;
}

.Heading {
  font-size: 32px;

  font-family: Inter;

  font-weight: 700;

  line-height: 1.15;
}

.Content {
  font-size: 16px;

  font-family: Inter;

  font-weight: 400;

  line-height: 1.15;
}

/* =========================
   MODAL
========================= */

.modal {
  display: none;

  position: fixed;

  z-index: 9999;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  overflow: auto;

  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;

  display: block;

  width: 80%;

  max-width: 700px;
}

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.card-text {
  display: -webkit-box;

  -webkit-line-clamp: 5;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 767px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-img {
    height: 240px;
  }
}

@media (max-width: 479px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }

  .gallery-img {
    height: auto;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}