/* =========== Fonts ============ */
@import url("https://fonts.googleapis.com/css2?family=Besley:ital,wght@0,400;0,500;0,700;0,800;0,900;1,400;1,500;1,600;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=MedievalSharp&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gemunu+Libre:wght@200;300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;800;900&display=swap");

/* =========== Browser Reset ============ */
:root {
  /* Color Variables */
  --gold: rgba(175, 149, 74, 1);
  --text1: #1e140a;
  --text2: rgb(250, 249, 249);
  --grey1: rgb(107, 113, 119);
  --grey2: rgb(251, 247, 237);
  --grey3: #262626;
  --white: #fff;
  --shadow-300: 1px 5px 5px 1px rgba(0, 0, 0, 0.3);
  --shadow-500: 0 5px 5px rgba(0, 0, 0, 0.5);
  --transition-300: all 300ms ease-in-out;
  --transition-500: all 500ms ease-in-out;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", serif;
  font-size: 1.6rem;
  font-weight: 400;
  background-color: var(--grey2);
  color: var(--white);
  /*overflow: hidden;*/
}

a {
  text-decoration: none !important;
}

li {
  list-style: none !important;
}

img,
video {
  width: 100%;
  height: 100%;
}

/* =========== Custom Classes ============ */
.d-flex {
  display: flex;
  align-items: center;
}

.container {
  max-width: 114rem;
  margin: 0 auto;
}

.section {
  margin: 5rem 0;
  padding: 10rem 0 5rem;
  overflow: hidden;
}

.title {
  margin-bottom: 5rem;
}

.title h1 {
  font-size: 3rem;
  color: var(--text1);
  text-shadow: 5px 5px 0px rgba(37, 59, 112, 0.2);
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--gold);
  padding: 1.5rem 2.5rem;
  margin-top: 3rem;
  cursor: pointer;
  transition: var(--transition-500);
}

.btn:disabled,
.btn[disabled]{
  background-color: var(--gold);
  color: var(--grey1);
  cursor: not-allowed;
}


.btn:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-500);
  transform: translateY(-5px);
  opacity: 0.85;
}

.btn:disabled:hover,
.btn[disabled]:hover{
  transform: none;
}

.btn:active {
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }
}

@media (max-width: 567px) {
  .title h1 {
    font-size: 3rem;
  }

  .section {
    margin: 5rem 0;
    padding: 5rem 0 0;
  }

  .btn {
    font-size: 1.5rem;
  }
}

@media (max-width: 280px) {
  .title h1 {
    font-size: 2rem;
  }

  .section {
    margin: 3rem 0;
    padding: 3rem 0 0;
  }

  .btn {
    font-size: 1.2rem;
  }
}
/*
======================
Loader
++++++++++++++++++++++
*/
.spinner-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--grey2);
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  position: relative;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
}

.spinner::before,
.spinner:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.spinner:before {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    90deg,
    #f9fd05 0%,
    rgba(175, 149, 74, 1) 100%
  );
  animation: spin 0.5s infinite linear;
}
.spinner:after {
  width: 90%;
  height: 90%;
  background-color: var(--grey2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========== Navigation ============ */
.header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 0;
}

.navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 1rem 0;
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  justify-content: space-between;
}

.logo img {
  width: 5rem;
  height: 5rem;
}

.logo h1 {
  font-size: 3rem;
  letter-spacing: 0.05rem;
  color: var(--white);
  font-family: "MedievalSharp", cursive;
}

.nav-item:not(:last-child) {
  margin-right: 1rem;
}

.nav-link {
  display: inline-block;
  color: var(--gold);
  width: 3.5rem;
  height: 3.5rem;
  padding: 0.4rem;
  position: relative;
}

.nav-item i {
  font-size: 3rem;
  color: var(--gold);
}

.nav-link i:hover {
  transform: scale(1.5);
}

.nav-link img {
  border-radius: 50%;
}

.nav-link span {
  display: none;
}

.nav-link img:hover {
  transform: scale(1.5);
}

@media only screen and (max-width: 540px) {
  .navigation {
    padding: 0;
  }
  .nav {
    max-width: 540px;
    padding: 1rem;
  }

  .logo img {
    width: 3rem;
    height: 3rem;
  }

  .logo h1 {
    font-size: 2.5rem;
    color: var(--white);
  }

  .nav-item:not(:last-child) {
    margin-right: 0.5rem;
  }

  .nav-link {
    width: 3rem;
    height: 3rem;
    padding: 0.5rem;
  }

  .nav-item i {
    font-size: 2.5rem;
    color: var(--gold);
  }

  .nav-link i:hover {
    transform: scale(1.3);
  }

  .nav-item img {
    width: 3rem;
    height: 3rem;
  }

  .nav-link img:hover {
    transform: scale(1.3);
  }
}

@media (max-width: 280px) {
  .header .logo h1 {
    font-size: 1.8rem;
  }

  .header .nav-item i {
    font-size: 2rem;
  }

  .nav-link img {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.2rem;
  }
}

/* =========== Video Slider ============ */
.swiper-container {
  width: 100%;
  height: 100vh;
}

.header .swiper-slide img {
  object-fit: cover;
  opacity: 0.4;
  width: 100%;
}

.header-wrapper {
  background-color: rgb(7, 6, 1);
  height: 100%;
}

.header .content {
  width: 80%;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.content h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 5px 5px 0px rgba(1, 6, 17, 0.2);
}

.content .center h2 {
  text-shadow: 5px 5px 0px rgba(1, 6, 17, 0.2);
  font-weight: 800;
  transition: var(--transition-500);
}

.content .btn {
  position: relative;
  display: inline-block;
  padding: 0.7rem 2rem;
  background-color: transparent;
  text-decoration: none;
  color: var(--text2);
  font-weight: 700;
  margin: 1rem 0.1rem;
  border: 1.5px solid white;
  border-radius: 0;
}

.content .btn::after {
  content: "";
  position: absolute;
  top: -12%;
  left: -3%;
  width: 105%;
  height: 120%;
}

.center p {
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 400;
  width: 80%;
  margin: 1rem auto;
  font-family: "Barlow", sans-serif;
}

.content .bottom {
  display: flex;
  flex-direction: column;
  margin: 1rem;
}

.content .bottom p,
.content .bottom h3 {
  line-height: 2rem;
}

.bottom .bottom-location {
  margin-top: 1rem;
}

@media (max-width: 1280px) {
  .content h1 {
    font-size: 4rem;
    margin-bottom: 0;
  }

  .content p {
    font-size: 1.5rem;
    line-height: 1.7rem;
  }

  .content .btn {
    padding: 0.3rem 1.5rem;
    font-weight: 500;
    font-size: 1.3rem;
    margin: 0 0.1rem;
    border: 1.5px solid white;
  }

  .bottom h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .content h1 {
    font-size: 3.5rem;
  }

  .content h2 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1.5rem;
    line-height: 1.7rem;
  }

  .content .bottom {
    margin-top: 1rem;
  }

  .content .bottom h3 {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }

  .content .bottom p {
    font-size: 1.1rem;
    line-height: 1.2rem;
  }

  .bottom .bottom-location {
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 3.2rem;
  }

  .content p {
    font-size: 1.4rem;
    line-height: 1.6rem;
    padding: 0;
    width: 80%;
  }

  .content .btn {
    padding: 0.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1rem 0.1rem;
  }

  .content .bottom p {
    width: 100%;
  }

  .bottom h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 567px) {
  .header .content {
    display: flex;
    flex-direction: column;
    padding: 10px;
  }

  .content .center {
    margin: 2rem auto;
    margin-bottom: 0;
  }

  .content h1 {
    font-size: 3rem;
    line-height: 3.1rem;
  }

  .content p {
    width: 90%;
    font-size: 1.2rem;
    line-height: 1.3rem;
  }

  .content .btn {
    padding: 0.4rem 1rem;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 1rem 0.1rem;
    letter-spacing: 0.1rem;
  }

  .bottom {
    width: 100%;
    margin: 0 auto;
  }

  .bottom h3 {
    line-height: 1.3rem;
  }

  .bottom-hours p,
  .bottom-location p {
    width: 100%;
    font-size: 1rem;
    line-height: 1.1rem;
  }
}

@media (max-width: 500px) {
  .content .center {
    margin: 0.5rem auto;
  }

  .bottom {
    margin-bottom: 3rem;
    margin-top: 0;
  }

  .bottom h3 {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
}

@media (max-width: 425px) {
  .content .center h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    padding: 0.1rem;
  }

  .content .btn {
    margin: 0.1rem;
    letter-spacing: 0.05rem;
    font-size: 1rem;
  }
}

@media (max-width: 414px) {
  .content .center h2 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .bottom {
    margin-bottom: 2rem;
    margin-top: 0;
  }

  .bottom h3 {
    font-size: 1.1rem;
    line-height: 1.2rem;
  }

  .bottom p {
    font-size: 0.8rem;
    line-height: 1rem;
  }
}

@media (max-width: 375px) {
  .content .center h2 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .content .btn {
    margin: 0.1rem;
    letter-spacing: 0.05rem;
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .content .center h2 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .content .btn {
    margin: 0.1rem;
    letter-spacing: 0.05rem;
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .content .center h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 280px) {
  .content .center h1 {
    font-size: 2rem;
  }

  .content .center h2 {
    font-size: 1.2rem;
  }

  .content .center p {
    font-size: 1rem;
    padding: 0.1rem;
  }
}

/*
=======================================
Main
+++++++++++++++++++++++++++++++++++++++
*/

/*=============== slider2: menu ================*/
#menu {
  overflow: hidden;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.menu .title {
  text-align: center;
  margin-bottom: 10rem;
}

.menu .row-container,
.menu .swiper-container {
  position: relative;
  width: 100%;
  height: 470px;
}

.menu .swiper-wrapper {
  position: relative;
  margin: 3rem 0;
  padding-bottom: 3rem;
}

.menu .swiper-slide {
  position: relative;
  width: 300px;
  height: 430px;
  background-color: var(--grey2);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.menu .swiper-slide .imgBx {
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.menu .swiper-slide .imgBx img {
  border-radius: 0.5rem;
}

.menu .swiper-slide .imgContent {
  color: #111;
  font-size: 1.3rem;
  position: relative;
  margin-top: 0;
  padding: 2rem;
  padding-bottom: 0.5rem;
  text-align: center;
  visibility: visible;
  opacity: 1;
  transition: 0.5s ease-in-out;
  background-color: var(--grey2);
  font-family: "Barlow", sans-serif;
  line-height: 1.5rem;
}

.imgContent h2 {
  margin-bottom: 1rem;
}
/*
.menu .swiper-slide:hover .imgContent {
  visibility: visible;
  opacity: 1;
  margin-top: -40px;
  transition-delay: 0.3s;
}

.custom-next,
.custom-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--gold);
  color: var(--white);
  font-size: 2.5rem;
  border-radius: 1rem;
  border: 2px solid white;
  height: 4rem;
  width: 4rem;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
}

.custom-next {
  right: 0rem;
}

.custom-prev {
  left: 0rem;
}
*/
.custom-next,
.custom-prev {
  position: absolute;
  top: -15%;
  transform: translateY(0%);
  background-color: var(--gold);
  color: var(--white);
  font-size: 2.5rem;
  border-radius: 1rem;
  border: 1px solid white;
  height: 4rem;
  width: 4rem;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
}

.custom-next {
  right: 10px;
}

.custom-prev {
  left: auto;
  right: 70px;
}

.swiper-pagination-bullet {
  width: 30px;
  height: 7px;
  border-radius: 5px;
  margin-top: 1rem;
}

.swiper-pagination-bullet-active {
  background-color: var(--gold);
}

.swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}

.menu .explore {
  text-align: center;
  margin-top: 3rem;
  z-index: 999;
}

@media (max-width: 1200px) {
  .custom-next,
  .custom-prev {
    top: -15%;
    transform: translateY(0%);
  }

  .custom-next {
    right: 10px;
  }

  .custom-prev {
    left: auto;
    right: 70px;
  }
}

@media (max-width: 768px) {
  .menu .title h1 {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .custom-next {
    right: 10px;
    height: 3rem;
    width: 3rem;
    top: -3%;
    transform: translateY(0%);
    border: 0px solid white;
  }

  .custom-prev {
    left: auto;
    right: 40px;
    height: 3rem;
    width: 3rem;
    top: -3%;
    transform: translateY(0%);
    border: 0px solid white;
  }

  .menu .title {
    margin-bottom: 5rem;
  }

  .menu .explore {
    margin-top: 4rem;
  }
}

@media (max-width: 425px) {
  .menu .custom-pagination {
    margin: 1rem 0;
    padding: 0 1rem;
  }
  .custom-next {
    top: -5.5%;
    transform: translateY(0%);
  }

  .custom-prev {
    display: none;
  }
}

@media (max-width: 320px) {
  .menu .container {
    padding: 0 1rem;
  }

  .custom-next {
    top: -5.5%;
    transform: translateY(0%);
  }

  .custom-prev {
    display: none;
  }

  .menu .title h1 {
    font-size: 2.7rem;
  }

  .menu .swiper-wrapper {
    margin: 1rem 0;
    padding: 3rem 0;
  }

  .menu .swiper-slide {
    width: 300px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  }

  .menu .swiper-slide .imgBx {
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .menu .swiper-slide .imgContent {
    font-size: 1.2rem;
    padding: 2rem;
    margin-top: 1rem;
  }

  .imgContent h2 {
    font-size: 2rem;
    line-height: 2.1rem;
  }
}

@media (max-width: 280px) {
  #menu {
    padding-bottom: 2rem;
  }

  .custom-next {
    top: -5%;
    transform: translateY(0%);
  }

  .custom-prev {
    display: none;
  }

  .menu .container {
    margin: 0;
    padding: 0 1rem;
  }

  .menu .title {
    margin-bottom: 2rem;
  }

  .menu .title h1 {
    font-size: 2rem;
  }

  .menu .swiper-wrapper {
    margin: 2rem;
    padding-bottom: 3rem;
  }

  .menu .swiper-slide {
    width: 250px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  }

  .menu .swiper-slide .imgBx {
    z-index: 1;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  }

  .menu .swiper-slide .imgContent {
    font-size: 1.1rem;
    padding: 5px;
    margin-top: 2rem;
  }

  .menu .explore {
    text-align: center;
    margin-top: 1rem;
  }
}

/*
+++++++++++++++++
Reservation
+++++++++++++++++
*/
#reservation {
  background-image: url("/images/mannatable.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

.reservation {
  padding: 2rem 0;
}

.reservation .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.reservation form {
  /* padding-top: 2rem;
  margin: 1rem 2rem;*/
  border-radius: 1rem;
  width: 70%;
  background: rgba(44, 27, 1, 0.5);
  padding: 5rem 0;
}

.inputBox {
  position: relative;
  text-align: center;
}

.inputBox input {
  outline: none;
  border-radius: 0.2rem;
  border: none;
  box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, 0.3);
  margin: 2rem 0;
  padding: 0 1rem;
  background: none;
  height: 4rem;
  width: 90%;
  font-size: 1.8rem;
  color: rgb(253, 253, 252);
}

.inputBox input:focus ~ h3,
.inputBox input:valid ~ h3 {
  font-size: 1.6rem;
  top: -1rem;
}

.inputBox h3 {
  position: absolute;
  top: 2.5rem;
  left: 6%;
  color: rgb(253, 253, 252);
  font-weight: 500;
  font-size: 1.7rem;
}

.reservation .note {
  text-align: center;
}

.note h4 {
  font-weight: 300;
}

.recaptcha-wrapper {
  position: relative;
  text-align: center;
}

#recaptcha-element {
  display: inline-block;
  margin-top: 1.5em;
}

.submit-btn {
  position: relative;
  text-align: center;
}

.btn {
  border: none;
  border-radius: 0.5rem;
  font-family: "Besley", serif;
}

@media (max-width: 768px) {
  .note h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  #reservation {
    background-image: url("/images/mannatable_small.png");
  }

  .reservation form {
    width: 90%;
  }

  .note h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 280px) {
  .reservation form {
    padding: 2rem 0;
  }

  .inputBox input:focus ~ h3,
  .inputBox input:valid ~ h3 {
    font-size: 1.3rem;
    top: -1rem;
  }

  .inputBox h3 {
    font-weight: 400;
    font-size: 1.5rem;
  }

  .inputBox input {
    font-size: 1.4rem;
    margin: 1rem 0;
  }
}
/*
+++++++++++++++++
Contact Us
+++++++++++++++++
*/
.contact {
  padding: 2rem 0;
}

.contact .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact div {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text1);
}

.map {
  height: 500px;
  margin-bottom: 5px;
}

.map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 567px) {
  .contact .title {
    width: 90%;
  }

  .map {
    height: 350px;
  }
}

@media (max-width: 280px) {
  .contact .title {
    font-size: 2rem;
  }

  .contact div {
    margin-bottom: 0;
    padding: 0.5rem 0;
  }

  .contact h3 {
    font-size: 1.5rem;
  }

  .contact p,
  .contact .hours li {
    font-size: 1.2rem;
  }

  .map {
    height: 300px;
  }
}

/*
+++++++++++++++++
Banner gift-card
+++++++++++++++++
*/
.banner {
  display: flex;
  background-color: var(--gold);
  height: 50%;
  margin-bottom: 0;
  justify-content: space-evenly;
  padding: 2rem 0;
}

.banner .left img {
  border-radius: 1rem;
  width: 500px;
  height: 344px;
}

.banner .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.banner h1 {
  font-size: 4rem;
  color: var(--black);
}

@media (max-width: 1024px) {
  .banner .left img {
    width: 400px;
    height: 275px;
  }

  .banner h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 820px) {
  .banner .left img {
    width: 300px;
    height: 206px;
  }
}

@media (max-width: 768px) {
  .banner .right h3 {
    font-size: 1.8rem;
  }

  .banner h1 {
    font-size: 2.7rem;
  }

  .banner p {
    font-size: 1.2rem;
  }
}

@media (max-width: 635px) {
  .banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .banner .left img {
    width: 270px;
    height: 185px;
  }

  .banner p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 320px) {
  .banner .right h3 {
    font-size: 1.5rem;
  }

  .banner h1 {
    font-size: 2.5rem;
  }

  .banner p {
    font-size: 1.1rem;
  }
}

@media (max-width: 280px) {
  .banner .left img {
    width: 250px;
    height: 172px;
  }

  .banner .right h3 {
    font-size: 1.5rem;
  }

  .banner h1 {
    font-size: 2.2rem;
  }

  .banner p {
    font-size: 1rem;
  }
}
/*
==========================================
Footer
==========================================
*/

.footer {
  background-color: var(--grey3);
  padding: 3rem 1rem;
  line-height: 2rem;
  margin: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
}

.footer-center a:link,
.footer-center a:visited {
  display: block;
  color: var(--white);
  font-size: 1.4rem;
  transition: 0.6s;
}

.footer-center a:hover {
  color: var(--gold);
}

.footer-center p,
.footer-center div {
  color: var(--grey1);
  font-size: 1.4rem;
}

.footer-center h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.footer-center span {
  margin-right: 1rem;
}

.footer-center h5 {
  color: var(--grey1);
  font-size: 1.4rem;
  margin-top: 1rem;
  font-weight: 300;
}

@media only screen and (max-width: 998px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }
}

@media only screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}

@media only screen and (max-width: 280px) {
  footer .container {
    padding: 1.5rem 0.7rem;
    line-height: 1.8rem;
    margin: 0;
  }

  .footer-center p,
  .footer-center a {
    font-size: 1.3rem;
  }
}
