* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cormorant", serif;
}

article {
  height: 25vh;
  width: 100%;
  display: flex;
}
article .left-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  border: 2px solid rgb(214, 208, 189);
  border-right: none;
  padding: 0 5rem;
}
article .left-container h1 {
  font-size: 2rem;
}
article .right-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgb(214, 208, 189);
  width: 50%;
  padding: 0 5rem;
  font-family: "Poppins", sans-serif;
  text-align: right;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
  width: 100%;
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.title h1 {
  font-size: 4rem;
}
.title h1::after {
  content: "";
  display: block;
  border-bottom: 1px solid #000;
  padding-bottom: 1.3rem;
  transform: scaleX(0.2);
}

#rooms {
  overflow: hidden;
}
#rooms .king-room {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background-color: rgb(246, 243, 234);
}
#rooms .king-room .left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 63%;
  height: 100%;
  border-right: none;
  padding: 0 3rem;
}
#rooms .king-room .left .img-container {
  position: relative;
  display: flex;
  height: 70%;
  justify-content: right;
  align-items: flex-end;
  width: 100%;
}
#rooms .king-room .left img:nth-child(1) {
  width: 55%;
  height: 100%;
  position: relative;
  right: 0;
  object-fit: cover;
}
#rooms .king-room .left img:nth-child(2) {
  position: absolute;
  z-index: 1;
  top: -4rem;
  left: 2rem;
  width: 50%;
  height: 80%;
}
#rooms .king-room .right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  text-align: right;
}
#rooms .king-room .right .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: start;
  padding-right: 4rem;
}
#rooms .king-room .right .text h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
}
#rooms .king-room .right .text p {
  font-size: 1rem;
  margin-bottom: 2rem;
}
#rooms .king-room .right .text a {
  width: 100%;
}
#rooms .king-room .right .text a button {
  width: 100%;
  background-color: rgb(75, 113, 85);
  color: rgb(246, 243, 234);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
#rooms .king-room .right .text button:hover {
  background-color: white;
  color: rgb(75, 113, 85);
  border: 1px solid rgb(75, 113, 85);
  transform: scale(1.1);
}
#rooms .king-room .right .text button:active {
  transform: scale(0.9);
  transition: 0.2s;
}
#rooms .queen-room {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background-color: rgb(246, 243, 234);
}
#rooms .queen-room .left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 100%;
  border-right: none;
  padding: 0 3rem;
}
#rooms .queen-room .left .text {
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: start;
}
#rooms .queen-room .left .text h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
}
#rooms .queen-room .left .text p {
  font-size: 1rem;
  margin-bottom: 2rem;
}
#rooms .queen-room .left .text a {
  width: 100%;
}
#rooms .queen-room .left .text a button {
  width: 100%;
  background-color: rgb(75, 113, 85);
  color: rgb(246, 243, 234);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
#rooms .queen-room .left .text button:hover {
  background-color: white;
  color: rgb(75, 113, 85);
  border: 1px solid rgb(75, 113, 85);
  transform: scale(1.1);
}
#rooms .queen-room .left .text button:active {
  transform: scale(0.9);
  transition: 0.2s;
}
#rooms .queen-room .right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  text-align: right;
}
#rooms .queen-room .right .img-container {
  position: relative;
  display: flex;
  height: 90%;
  justify-content: left;
  width: 100%;
  margin-right: 7rem;
}
#rooms .queen-room .right img:nth-child(1) {
  width: 75%;
  height: 100%;
}
#rooms .queen-room .right img:nth-child(2) {
  width: 60%;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 10rem;
}

#feature .container-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  width: 100%;
  gap: 3rem;
}
#feature .container-1 .box {
  width: 25%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  gap: 1rem;
  border: 1px solid rgb(214, 208, 189);
  transition: transform 0.5s ease-in-out;
}
#feature .container-1 .box h3 {
  letter-spacing: 3px;
  margin-top: 1rem;
  color: black;
  cursor: pointer;
}
#feature .container-1 .box h3::after {
  content: "";
  display: block;
  border-bottom: 1px solid #000;
  padding-bottom: 0.5rem;
  transform: scaleX(1);
  transition: transform 0.5s ease-in-out;
}
#feature .container-1 .box img {
  width: 30%;
}
#feature .container-1 .box:hover {
  transform: scale(1.02);
  transition: 0.25s ease-in-out;
  border-color: rgb(75, 113, 85);
}
#feature .container-1 .box:hover h3::after {
  transform: scaleX(0);
  transition: 0.5s ease-in-out;
}

.swiper {
  width: 100%;
  height: 90vh;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 34, 21, 0.8);
  z-index: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: rgb(246, 243, 234);
}

.swiper-pagination-bullet {
  background-color: rgb(246, 243, 234);
}

.swiper-pagination-bullet-active {
  background-color: rgb(75, 113, 85);
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  padding: 0.5rem;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: white;
}
.text-overlay p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.text-overlay h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.text-overlay button {
  background-color: transparent;
  color: rgb(246, 243, 234);
  border: 0.05rem solid white;
  padding: 0.8rem 4.5rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  margin-top: 3rem;
  font-family: "Poppins", sans-serif;
}
.text-overlay button:hover {
  background-color: white;
  color: rgb(75, 113, 85);
  border: 1px solid rgb(75, 113, 85);
  transform: scale(1.1);
}
.text-overlay button:active {
  transform: scale(0.9);
  transition: 0.2s;
}

#book input[type=date] {
  border: none;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
  width: 70%;
  text-transform: uppercase;
}
#book input[type=number] {
  border: none;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
  width: 70%;
}
#book .dropdown {
  position: absolute;
  bottom: 120%;
  right: 0;
  background-color: #f9f9f9;
  padding: 0.4rem;
  display: none;
  transition: opacity 0.3s ease-in-out;
}
#book .dropdown input,
#book .dropdown button,
#book .dropdown select {
  display: block;
  margin-bottom: 0.7rem;
  padding: 0.4rem;
  font-size: 1rem;
}
#book .dropdown button,
#book .dropdown select {
  cursor: pointer;
}
#book .dropdown button {
  margin-bottom: 0;
}
#book #phone {
  width: 100%;
}
#book #phone::-webkit-inner-spin-button,
#book #phone input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  /* Add any additional styling as needed */
}

.ml12 .letter {
  display: inline-block;
  line-height: 1em;
}

#news {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  margin-top: 5rem;
}
#news .news-title {
  height: 15%;
  width: 87%;
}
#news .news-title h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}
#news .news-title h1 span {
  color: rgb(75, 113, 85);
  font-family: Allura;
  font-size: 6rem;
  font-weight: 100;
}
#news .news-content {
  height: 80%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
#news .news-content .content-box {
  width: 27%;
  height: 90%;
}
#news .news-content .content-box:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in-out;
}
#news .news-content .content-box .content-img {
  height: 70%;
  width: 100%;
  background-color: aqua;
  background-image: url(../img/news1.jpg);
  background-size: cover;
  background-position: center;
}
#news .news-content .content-box .content-img.second {
  background-image: url(../img/news2.jpg);
}
#news .news-content .content-box .content-img.third {
  background-image: url(../img/news3.jpg);
}
#news .news-content .content-box .box-date {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}
#news .news-content .content-box .box-date h3 {
  font-weight: bold;
  font-size: 0.95rem;
  font-family: arial;
  color: rgb(75, 113, 85);
}
#news .news-content .content-box .box-date h4 {
  opacity: 0.55;
}
#news .news-content .content-box .content-text {
  font-size: 1.1rem;
}
#news .news-content .content-box .content-button {
  padding: 1.4rem 0;
  display: inline-block;
}
#news .news-content .content-box .content-button h3 {
  font-weight: bold;
  font-size: 0.8rem;
  font-family: arial;
  color: rgb(75, 113, 85);
  letter-spacing: 0.1rem;
  display: inline;
  cursor: pointer;
}
#news .news-content .content-box .content-button i {
  color: rgb(75, 113, 85);
}

#letter {
  margin-top: 4rem;
  border: 1px solid rgb(214, 208, 189);
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#letter .content {
  height: 65%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
}
#letter .content p {
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-align: center;
  color: rgb(75, 113, 85);
  height: 20%;
}
#letter .content h1 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  height: 40%;
}
#letter .content .input {
  width: 100%;
  display: flex;
  height: 40%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  justify-content: center;
  align-items: center;
  position: relative;
}
#letter .content .input input {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  padding-left: 15%;
}
#letter .content .input button {
  position: absolute;
  right: 2%;
  background-color: rgb(75, 113, 85);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: white;
  padding: 0.7rem 1.8rem;
  border: none;
  cursor: pointer;
}
#letter .content .input button:hover {
  background-color: white;
  color: rgb(75, 113, 85);
  border: 1px solid rgb(75, 113, 85);
}
#letter .content .input button:active {
  transform: scale(0.95);
  transition: 0.05s;
}
#letter .content .input i {
  color: rgb(75, 113, 85);
  position: absolute;
  left: 4%;
  font-size: 2rem;
}

#footer {
  height: 70vh;
  width: 100%;
  margin-top: 7rem;
  position: relative;
}
#footer .container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-image: url(../img/footer.jpg);
  background-size: cover;
  background-position: center;
}
#footer .container .text {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 50%;
  height: 60%;
  position: relative;
  z-index: 2;
}
#footer .container .text a {
  text-align: center;
}
#footer .container .text a img {
  width: 25%;
}
#footer .container .text .address {
  display: flex;
  flex-direction: column;
  color: rgb(246, 243, 234);
  text-align: center;
  gap: 0.4rem;
}
#footer .container .text .address p {
  text-align: center;
  font-size: 0.9rem;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: lighter;
  opacity: 0.8;
}
#footer .container .text .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  gap: 1rem;
}
#footer .container .text .social-media i {
  color: rgb(246, 243, 234);
  opacity: 0.8;
  font-size: 1.2rem;
}
#footer .container .text .social-media i:hover {
  color: rgb(75, 113, 85);
}
#footer .container .navbar-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 11%;
  border-top: 1px solid rgb(214, 208, 189);
  border-bottom: 1px solid rgb(214, 208, 189);
  position: relative;
  z-index: 2;
}
#footer .container .navbar-footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 100%;
  gap: 5rem;
}
#footer .container .navbar-footer ul li {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .container .navbar-footer ul li a {
  color: rgb(246, 243, 234);
  font-size: 1rem;
  text-decoration: none;
  opacity: 0.8;
}
#footer .container .navbar-footer ul li a:hover {
  color: rgb(75, 113, 85);
}
#footer .container .copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  height: 11%;
}
#footer .container .copyright p {
  color: rgb(246, 243, 234);
  font-size: 1rem;
  text-align: center;
  opacity: 0.8;
}
#footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 17, 8, 0.85);
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  #book-mobile {
    display: none;
    width: 80vw;
    height: 60vh;
    flex-direction: column;
    align-items: center;
    position: fixed;
    z-index: 100;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
  }
  #book-mobile .container {
    display: flex;
    flex-wrap: wrap;
    height: 40%;
  }
  #book-mobile .container input {
    height: 50%;
    border-radius: 0.3rem;
    border: 1px solid rgb(75, 113, 85);
    padding: 0.5rem;
  }
  #book-mobile .container div {
    width: 50%;
  }
  #book-mobile .box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50%;
  }
  #book-mobile .box input {
    width: 80%;
  }
  #book-mobile .container-bottom {
    display: flex;
    justify-content: center;
    height: 60%;
    width: 100%;
  }
  #book-mobile .container-bottom .dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 0.7rem;
  }
  #book-mobile .container-bottom .dropdown input {
    padding: 0.4rem;
    height: 100%;
    width: 90%;
  }
  #book-mobile .container-bottom .dropdown button {
    padding: 0.4rem;
    width: 100%;
    background-color: rgb(75, 113, 85);
    color: rgb(246, 243, 234);
    border: none;
    font-size: 2rem;
    font-weight: 600;
  }
  #book-mobile .container-bottom .dropdown select {
    width: 90%;
    height: 100%;
    border-radius: 0.3rem;
    border: 1px solid rgb(75, 113, 85);
    padding: 0.5rem;
  }
}
@media only screen and (max-width: 767px) {
  article {
    height: auto;
    flex-direction: column;
  }
  article .left-container,
  article .right-container {
    width: 100%;
    border: none;
    border-bottom: 2px solid rgb(214, 208, 189);
    padding: 2rem;
    text-align: center;
  }
  article .right-container {
    text-align: left;
  }
  .title h1 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  #rooms .king-room {
    flex-direction: column;
    height: auto;
  }
  #rooms .king-room .left,
  #rooms .king-room .right {
    width: 100%;
    height: auto;
    padding: 2rem;
    text-align: center;
    border: none;
  }
  #rooms .king-room .left .img-container,
  #rooms .king-room .right .img-container {
    height: 50%;
    align-items: center;
  }
  #rooms .king-room .left .img-container img:nth-child(1),
  #rooms .king-room .right .img-container img:nth-child(1) {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #rooms .king-room .left .img-container img:nth-child(2),
  #rooms .king-room .right .img-container img:nth-child(2) {
    position: static;
    width: 70%;
    height: 60%;
    margin-top: 2rem;
  }
  #rooms .king-room .left .text,
  #rooms .king-room .right .text {
    padding-right: 0;
    text-align: center;
  }
  #rooms .king-room .left .text h1,
  #rooms .king-room .right .text h1 {
    font-size: 3.5rem;
  }
  #rooms .king-room .left .text p,
  #rooms .king-room .right .text p {
    font-size: 1rem;
  }
  #rooms .king-room .left .text button,
  #rooms .king-room .right .text button {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
  #rooms .king-room .left {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  #rooms .queen-room {
    flex-direction: column-reverse;
    height: auto;
  }
  #rooms .queen-room .left,
  #rooms .queen-room .right {
    width: 100%;
    height: auto;
    padding: 2rem;
    text-align: center;
    border: none;
  }
  #rooms .queen-room .left .img-container,
  #rooms .queen-room .right .img-container {
    height: 50%;
    align-items: center;
  }
  #rooms .queen-room .left .img-container img:nth-child(1),
  #rooms .queen-room .right .img-container img:nth-child(1) {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #rooms .queen-room .left .img-container img:nth-child(2),
  #rooms .queen-room .right .img-container img:nth-child(2) {
    position: static;
    width: 120%;
    height: 60%;
    margin-top: 2rem;
  }
  #rooms .queen-room .left .text,
  #rooms .queen-room .right .text {
    padding-right: 0;
    padding-left: 0;
    text-align: center;
  }
  #rooms .queen-room .left .text h1,
  #rooms .queen-room .right .text h1 {
    font-size: 3.5rem;
  }
  #rooms .queen-room .left .text p,
  #rooms .queen-room .right .text p {
    font-size: 1rem;
  }
  #rooms .queen-room .left .text button,
  #rooms .queen-room .right .text button {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
  #rooms .queen-room .right {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  #feature .container-1 {
    height: auto;
    flex-direction: column;
  }
  #feature .container-1 .box {
    width: 100%;
    margin-bottom: 2rem;
    flex-direction: column;
    padding: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  .text-overlay h2 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  #header {
    height: 100vh;
    justify-content: center;
    align-items: center;
  }
  #header .container-left {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  #header .container-left .text {
    height: 100%;
    width: 80%;
    margin: 0;
  }
  #header .container-left .container {
    width: 100%;
    height: fit-content;
    margin-top: 0;
  }
  #header .container-left .text h2 span {
    font-size: 3.5rem;
  }
  #header .container-left .text h1 span {
    font-size: 3rem;
  }
  #header .container-left .text h2 {
    font-size: 3.5rem;
  }
  #header .container-left .text h1 {
    font-size: 3rem;
  }
  #header .container-left .text p {
    font-size: 1.5rem;
  }
  #book {
    width: 80vw;
    height: 7vh;
    position: fixed;
    top: 90vh;
    left: 10vw;
    border-radius: 3px;
    background-color: rgb(75, 113, 85);
    color: rgb(246, 243, 235);
    font-weight: bolder;
    font-size: 1.7rem;
    z-index: 50;
  }
  #book:active {
    color: rgb(75, 113, 85);
    background-color: white;
    border: 1px solid rgb(75, 113, 85);
  }
  #book .box {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  #header .navbar ul {
    display: none;
  }
  .menu-btn {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: absolute;
    top: 0;
    right: 5%;
    z-index: 100;
  }
  .navbar ul {
    position: absolute;
    flex-direction: column;
    justify-content: space-evenly;
    top: 100%;
    right: -100%;
    height: 91vh;
    width: 60vw;
    background-color: rgb(75, 113, 85);
    border-top: 1px solid rgb(246, 243, 235);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.4);
  }
  .navbar ul li a {
    font-size: 1.5rem;
  }
  .menu-btn i {
    font-size: 2rem;
    color: rgb(246, 243, 234);
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
  }
}
@media only screen and (max-width: 768px) {
  #news {
    height: auto;
  }
  #news .news-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #news .news-title h1 {
    font-size: 3rem;
  }
  #news .news-title h1::after {
    content: "";
    display: block;
    border-bottom: 1px solid #000;
    padding-bottom: 1.3rem;
    transform: scaleX(0.3);
  }
  #news .news-title h1 span {
    font-size: 3rem;
    font-family: "Cormorant", serif;
    font-weight: bold;
    color: black;
  }
  #news .news-content {
    flex-direction: column;
    width: 93%;
  }
  #news .news-content .content-box {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #news .news-content .content-box .content-img {
    width: 100%;
    height: 50vh;
  }
}
@media only screen and (max-width: 768px) {
  #letter .content {
    width: 90%;
  }
  #letter .content h1 {
    font-size: 1.6rem;
  }
  #letter .content .input {
    height: 20%;
  }
  #letter .content .input input {
    font-size: 0.8rem;
  }
  #letter .content .input button {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  #letter .content .input i {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  #footer {
    overflow: hidden;
  }
  #footer .container .text a img {
    width: 60%;
  }
  #footer .container .text .address p {
    font-size: 0.7rem;
  }
  #footer .container .text .social-media i {
    font-size: 1rem;
  }
  #footer .container .navbar-footer ul {
    gap: 1.1rem;
    width: 90%;
  }
  #footer .container .navbar-footer ul li a {
    font-size: 0.9rem;
  }
  #footer .container .copyright p {
    font-size: 0.7rem;
  }
}/*# sourceMappingURL=style.css.map */