/*General Styles*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

.text-esteban {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  color: #555;
}

ul,
nav {
  list-style: none;
}

a {
  text-decoration: none;
  opacity: 0.75;
  color: #fff;
}

a:hover {
  opacity: 1;
}

a.btn {
  border-radius: 4px;
  margin-top: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  background-color: #e07e7b;
  opacity: 1;
  transition: all 400ms;
}

a.btn:hover {
  background-color: #ce5856;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 80px;
}

section:not(.hero):nth-child(even) {
  background-color: #f5f5f5;
}

hr {
  width: 250px;
  height: 3px;
  background-color: #e07e7b;
  border: 0;
  margin-bottom: 50px;
}

section h3.title {
  text-transform: capitalize;
  font: bold 48px "Amatic SC", sans-serif;
  margin-bottom: 30px;
  text-align: center;
}

section p {
  max-width: 775px;
  line-height: 2;
  padding: 0 20px;
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 800px) {
  section {
    padding: 50px 20px;
  }
}

/*Header Styles*/

.header-item a,
.header-last-item a {
  color: white;
}


.header-item {
  border-right: none;
}

.navigation {
  display: none;
}

header .navigation.active {
  width: 50%;
  height: calc(100% - 68px);
  position: fixed;
  top: 68px;
  left: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  background: rgb(161, 58, 58);
  /* #fff */
  border-radius: 5px;
}

.menutoggle {
  position: relative;
  width: 40px;
  height: 40px;
  background: url(https://i.postimg.cc/qq7WKZ1m/menu.png);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.menutoggle.active {
  background: url(https://i.postimg.cc/yNcK65Gc/close.png);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
}

/* header */
header {
  position: absolute;
  width: 100%;
  /* display: flex;
	justify-content: space-between;
	align-items: center; */
  padding: 35px 100px 0;
  animation: 1s fadein 0.5s forwards;
  opacity: 0;
  color: #fff;
  z-index: 2;
}

@keyframes fadein {
  100% {
    opacity: 1;
  }
}

header h2 {
  font-family: "Amatic SC", sans-serif;
}

/*Hero Styles*/

.hero {
  position: relative;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  color: #000000f0;
  height: 100vh;
}

.hero .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}

.hero h1 {
  font: 40px "Arial", sans-serif;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.64)
  margin-bottom: 15px;
}

.hero a.btn {
  padding: 20px 46px;
}

.hero-content-area {
  opacity: 0;
  margin-top: 100px;
  animation: 1s slidefade 1s forwards;
}

@keyframes slidefade {
  100% {
    opacity: 1;
    margin: 0;
  }
}

@media (max-width: 800px) {
  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero h3 {
    font-size: 24px;
  }

  .hero a.btn {
    padding: 15px 40px;
  }
}

/*Footer Section*/

footer {
  position: absolute;
  bottom: 1rem;
}

footer ul {
  display: flex;
}

footer ul li {
  margin-left: 16px;
}

footer p {
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0.6;
  align-self: center;
}

@media (max-width: 1100px) {
  footer {
    flex-direction: column;
  }

  footer p {
    text-align: center;
    margin-bottom: 20px;
  }

  footer ul li {
    margin: 0 8px;
  }
}

@media only screen and (min-width: 885px) {
  .menutoggle {
    display: none;
  }

  header .navigation {
    display: grid;
  }

  .header-item {
    border-right: solid 3px rgb(177, 36, 36);
    text-align: center;
    display: block;
    padding: 10px;
    white-space: wrap;
  }

  .header-last-item {
    text-align: center;
    padding-top: 10px;
  }

  header nav {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-gap: 10px;
  }
}

@media only screen and (min-width: 1100px) {
  .header-item {
    white-space: nowrap;
  }
}

nav li ul {
  background-color: white;
  visibility: hidden;
  opacity: 0;
  min-width: 10rem;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: 0.5rem;
  display: none;
  padding: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

nav li:hover>ul,
nav li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}

nav li ul li {
  clear: both;
  width: 100%;
  padding: 10px 20px;
  text-align: left;
}

.dropdown-option {
  color: black !important;
  font-weight: bold;
}

.dropdown-option:hover {
  color: rgb(177, 36, 36) !important;
}