:root {
  padding-top: 0% !important;

  /* COLORS */
  --black-color: #231f20;
  --white-color: #f7f7f7;
  --red-color: rgb(141, 18, 51);
  --gold-color: rgb(242, 221, 114);
  --yellow-color: #fbcc34;
  --green-color: rgb(18, 140, 45);
  --menta-color: #53b294;
  --brown-color: #aa7265;

  /* FONTS */

  --title: "Barlow", sans-serif;
  --subtitle: "Fjalla One", sans-serif;
  --paragraph: "Nanum Gothic", sans-serif;

  /* SHADOWS */
  --shadow: 0px 2px 6px rgba(141, 18, 51, 0.4);
  --shadow-light: 0px 2px 6px rgba(242, 221, 114, 0.4);
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  background: var(--white-color);
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

html h1 {
  font-size: 2rem;
  font-family: var(--title);
  font-weight: 700;
}

html h2 {
  font-size: 2.8rem;
  font-family: var(--subtitle);
  font-weight: 400;
}

html p,
label {
  font-size: 1.2rem;
  font-family: var(--paragraph);
  font-weight: 400;
}

/* HEADER */
header .main {
  width: 100vw;
}

.navbar-light {
  background-color: var(--white-color) !important;
}

nav img {
  width: 10rem;
}

nav ul li {
  font-size: 1.4rem;
}

nav ul .menu__services--items {
  background-color: var(--white-color);
  border: none;
}

/* /HEADER */
/* MAIN */
main {
  height: 100%;
  width: 100vw;
}

.chat {
  height: 60px;
  width: 60px;
  bottom: 40px;
  right: 30px;
  position: fixed;
  z-index: 10;
}

.chat a img {
  width: 100%;
}

/* Home */
#carousel {
  position: relative;
  width: 100vw;
}

#carousel .overlay {
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--gold-color);
  z-index: 1;
}

#carousel .overlay .title {
  position: absolute;
  top: 40%;
}

.overlay h1 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-transform: uppercase;
  background-color: rgba(141, 18, 51, 0.7);
}

.main img {
  max-height: 90vh;
  width: 100vw;
  object-fit: cover;
}

/* about us */
.about_us .container {
  height: 100%;
}

.about_us .about_us--picture {
  height: 100%;
}

.about_us .about_us img {
  height: 100%;
  width: 75%;
  border-radius: 20px;
  /* box-shadow: var(--shadow); */
}

.about_us h2 {
  color: var(--menta-color);
}

.about_us p {
  font-size: 1.5rem;
}

/* our services */
.our_services h2 {
  color: var(--brown-color);
}

.our_services .card {
  border: none;
  max-width: 400px;
}

.our_services .card h5 {
  font-size: 1.6rem;
}

.our_services .card p {
  font-size: 1.4rem !important;
}

.our_services img {
  border-radius: 15px;
  /* box-shadow: var(--shadow) */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* talk to us */
.talk_to_us {
  height: 100%;
  width: 100vw;
  background: var(--red-color);
}

.talk_to_us h2 {
  color: var(--gold-color);
}

.talk_to_us label {
  color: var(--white-color);
}

input {
  padding: 8px !important;
}

button[type="submit"] {
  padding: 8px !important;
  font-size: 1.2rem;
}

/* gallery */
.gallery {
  height: 100%;
  width: 100vw;
}

.gallery h2 {
  color: var(--red-color);
}

.gallery .card {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.item-picture {
  margin: 0px 0px;
  height: 300px;
  border: none;
}

.gallery img {
  border-radius: 15px;
  height: 100%;
  object-fit: cover;
}
/* /MAIN */

/* FOOTER */
footer {
  background: var(--red-color);
}

footer .container {
  color: var(--white-color);
  width: 100%;
}

footer ul {
  list-style: none;
  font-size: 1.3rem;
}

footer ul a {
  text-decoration: none;
  color: var(--white-color);
}

footer .profile {
  border-top: solid 1px;
  border-color: #f7f7f7;
}

footer .profile h6 {
  color: var(--white-color);
  font-size: 1.1rem;
}

footer .profile h6 span a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.603);
}

/* /FOOTER */

@media (min-width: 850px) {
  .overlay h1 {
    font-size: 8rem;
    text-transform: uppercase;
  }
}

@media (min-width: 550px) {
  .overlay h1 {
    font-size: 5rem;
    text-transform: uppercase;
  }
}
