/*=========================================
    GOOGLE VARIABLES
=========================================*/

:root {
  --gold: #c8a96a;
  --gold-light: #e2c58f;

  --black: #090909;
  --dark: #111111;
  --gray: #1a1a1a;

  --white: #ffffff;
  --text: #d8d8d8;

  --glass: rgba(255, 255, 255, 0.05);

  --transition: 0.4s ease;

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/*=========================================
    RESET
=========================================*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;

  background: var(--black);

  color: var(--white);

  overflow-x: hidden;
}

img {
  width: 100%;

  display: block;
}

a {
  text-decoration: none;

  color: inherit;
}

ul {
  list-style: none;
}

section {
  padding: 120px 8%;

  position: relative;
}

.container {
  max-width: 1300px;

  margin: auto;
}

/*=========================================
    SCROLLBAR
=========================================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);

  border-radius: 20px;
}

/*=========================================
    LOADER
=========================================*/

#loader {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: #000;

  display: flex;

  justify-content: center;

  align-items: center;

  z-index: 99999;
}

.loader-logo {
  text-align: center;
}

.loader-logo h1 {
  font-family: "Cormorant Garamond", serif;

  font-size: 60px;

  letter-spacing: 5px;

  color: var(--gold);
}

.loader-logo p {
  margin-top: 10px;

  letter-spacing: 3px;

  color: #bbb;
}

.loading-bar {
  margin-top: 35px;

  width: 300px;

  height: 4px;

  background: #222;

  overflow: hidden;

  border-radius: 10px;
}

.loading-bar span {
  display: block;

  height: 100%;

  width: 0;

  background: linear-gradient(90deg, var(--gold), #fff, var(--gold));

  animation: loading 3s linear infinite;
}

@keyframes loading {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

/*=========================================
    CURSOR
=========================================*/

.cursor {
  width: 10px;
  height: 10px;

  background: var(--gold);

  border-radius: 50%;

  position: fixed;

  pointer-events: none;

  z-index: 9999;

  transform: translate(-50%, -50%);
}

.cursor2 {
  width: 40px;
  height: 40px;

  border: 1px solid var(--gold);

  border-radius: 50%;

  position: fixed;

  pointer-events: none;

  z-index: 9998;

  transform: translate(-50%, -50%);

  transition: 0.15s;
}

/*=========================================
    NAVBAR
=========================================*/

header {
  position: absolute;

  top: 0;

  width: 100%;

  z-index: 1000;
}

.navbar {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 30px 8%;

  transition: 0.4s;
}

.navbar.active {
  background: rgba(0, 0, 0, 0.8);

  backdrop-filter: blur(18px);

  position: fixed;

  width: 100%;

  top: 0;

  left: 0;
}

.logo h2 {
  font-size: 40px;

  font-family: "Cormorant Garamond";

  letter-spacing: 2px;

  color: var(--gold);
}

.navbar ul {
  display: flex;
  margin-right: 20px;
  gap: 30px;
}

.navbar ul li a {
  position: relative;

  font-size: 15px;

  transition: 0.4s;
}

.navbar ul li a:hover {
  color: var(--gold);
}

.navbar ul li a::after {
  content: "";

  position: absolute;

  bottom: -6px;

  left: 0;

  width: 0;

  height: 2px;

  background: var(--gold);

  transition: 0.4s;
}

.navbar ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;

  font-size: 28px;

  cursor: pointer;
}

@media (max-width: 992px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    border-radius: 0 0 0 40px;
    width: 30%;

    background: #111;

    display: none;

    flex-direction: column;

    padding: 30px 50px;
  }
  .logo h2 {
    font-size: 30px;
  }
  .nav-menu.show {
    display: flex;
  }

  .menu-toggle {
    margin-left: 40px;
    display: block;
    cursor: pointer;
  }
}
/*=========================================
    BUTTON
=========================================*/

.btn-gold {
  padding: 15px 35px;

  background: var(--gold);

  border-radius: 40px;
  text-align: center;

  font-weight: 600;

  transition: 0.4s;

  display: inline-block;

  color: #000;
}

.btn-gold:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(200, 169, 106, 0.4);
}

.btn-outline {
  padding: 15px 35px;

  border: 1px solid var(--gold);

  border-radius: 40px;

  margin-left: 15px;

  transition: 0.4s;
}

.btn-outline:hover {
  background: var(--gold);

  color: #000;
}

/*=========================================
    HERO
=========================================*/

.hero {
  height: 100vh;

  overflow: hidden;

  display: flex;

  justify-content: center;

  align-items: center;

  position: relative;
}

.hero video {
  position: absolute;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.55);

  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;

  z-index: 10;

  text-align: center;

  max-width: 900px;

  padding: 20px;
}

.hero-content h4 {
  color: var(--gold);

  font-size: 20px;

  letter-spacing: 5px;

  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: "Cormorant Garamond";

  font-size: 90px;

  line-height: 1.1;

  margin-bottom: 25px;
}

.hero-content span {
  color: var(--gold);
}

.hero-content p {
  font-size: 18px;

  line-height: 1.8;

  color: #ddd;

  margin-bottom: 40px;
}

/*=========================================
    HERO SOCIAL
=========================================*/

.hero-social {
  position: absolute;

  left: 40px;

  bottom: 80px;

  display: flex;

  flex-direction: column;

  gap: 20px;

  z-index: 10;
}

.hero-social a {
  width: 45px;

  height: 45px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  transition: 0.4s;
}

.hero-social a:hover {
  background: var(--gold);

  color: #000;
}

/*=========================================
    SCROLL DOWN
=========================================*/

.scroll-down {
  position: absolute;

  bottom: 35px;

  left: 50%;

  transform: translateX(-50%);

  z-index: 10;

  text-align: center;
}

.scroll-down span {
  display: block;

  width: 2px;

  height: 60px;

  background: var(--gold);

  margin: auto;

  animation: scroll 2s infinite;
}

.scroll-down p {
  margin-top: 12px;

  letter-spacing: 3px;

  font-size: 12px;
}

@keyframes scroll {
  0% {
    transform: translateY(0);

    opacity: 1;
  }

  50% {
    transform: translateY(15px);

    opacity: 0.3;
  }

  100% {
    transform: translateY(0);

    opacity: 1;
  }
}

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

@media (max-width: 992px) {
  .navbar ul {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 60px;
  }

  .hero-social {
    display: none;
  }
}

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

  .hero-content p {
    font-size: 16px;
  }

  .btn-outline {
    margin-left: 0;

    margin-top: 15px;

    display: block;
  }
}
/*=========================================
    SECTION TITLE
=========================================*/

.section-title {
  text-align: center;

  margin-bottom: 70px;
}

.section-title h5 {
  font-size: 18px;

  letter-spacing: 4px;

  text-transform: uppercase;

  color: var(--gold);

  margin-bottom: 15px;
}

.section-title h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: 60px;

  margin-bottom: 20px;
}

.section-title p {
  max-width: 700px;

  margin: auto;

  color: #bfbfbf;

  line-height: 1.9;
}

/*=========================================
    WELCOME
=========================================*/

.welcome .container {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.welcome .left {
  overflow: hidden;

  border-radius: 20px;

  box-shadow: var(--shadow);
}

.welcome .left img {
  transition: 1s;
}

.welcome .left:hover img {
  transform: scale(1.08);
}

.welcome .right h5 {
  color: var(--gold);

  letter-spacing: 4px;

  margin-bottom: 15px;

  text-transform: uppercase;
}

.welcome .right h2 {
  font-family: "Cormorant Garamond";

  font-size: 60px;

  line-height: 1.2;

  margin-bottom: 30px;
}

.welcome .right p {
  color: #c9c9c9;

  line-height: 2;

  margin-bottom: 25px;
}

/*=========================================
    STORY
=========================================*/

.story {
  background: linear-gradient(to bottom, #090909, #111);
}

.story-content {
  text-align: center;

  max-width: 900px;

  margin: auto;

  margin-bottom: 70px;
}

.story-content h5 {
  color: var(--gold);

  letter-spacing: 4px;

  margin-bottom: 15px;
}

.story-content h2 {
  font-size: 60px;

  font-family: "Cormorant Garamond";

  margin-bottom: 25px;
}

.story-content p {
  color: #c8c8c8;

  line-height: 2;
}

.story-grid {
  display: grid;

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

  gap: 35px;
}

.story-card {
  padding: 45px;

  background: var(--glass);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  border-radius: 20px;

  transition: 0.4s;

  text-align: center;
}

.story-card:hover {
  transform: translateY(-12px);

  border-color: var(--gold);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.story-card i {
  font-size: 45px;

  color: var(--gold);

  margin-bottom: 25px;
}

.story-card h3 {
  margin-bottom: 15px;

  font-size: 24px;
}

.story-card p {
  color: #bbb;

  line-height: 1.8;
}

/*=========================================
    CHEF
=========================================*/

.chef {
  background: #0d0d0d;
}

.chef .container {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

.chef-image {
  overflow: hidden;

  border-radius: 25px;

  box-shadow: var(--shadow);
}

.chef-image img {
  transition: 1s;
}

.chef-image:hover img {
  transform: scale(1.07);
}

.chef-content h5 {
  color: var(--gold);

  letter-spacing: 4px;

  margin-bottom: 15px;
}

.chef-content h2 {
  font-size: 58px;

  font-family: "Cormorant Garamond";

  margin-bottom: 30px;
}

.chef-content p {
  color: #c7c7c7;

  line-height: 2;

  margin-bottom: 20px;
}

.signature {
  width: 220px;

  margin-top: 30px;

  opacity: 0.85;
}

/*=========================================
    EXPERIENCE
=========================================*/

.experience {
  background: #111;
}

.experience-title {
  text-align: center;

  margin-bottom: 70px;
}

.experience-title h5 {
  color: var(--gold);

  letter-spacing: 4px;

  margin-bottom: 15px;
}

.experience-title h2 {
  font-family: "Cormorant Garamond";

  font-size: 58px;
}

.experience-grid {
  display: grid;

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

  gap: 30px;
}

.experience-box {
  background: var(--glass);

  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 50px;

  text-align: center;

  border-radius: 20px;

  transition: 0.4s;
}

.experience-box:hover {
  transform: translateY(-10px);

  border-color: var(--gold);
}

.experience-box h3 {
  font-size: 55px;

  font-family: "Cormorant Garamond";

  color: var(--gold);

  margin-bottom: 10px;
}

.experience-box span {
  color: #c7c7c7;

  font-size: 17px;
}

/*=========================================
    AWARDS
=========================================*/

.awards {
  background: #090909;
}

.award-list {
  display: grid;

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

  gap: 35px;
}

.award-item {
  padding: 50px 35px;

  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));

  border-radius: 22px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;

  transition: 0.4s;
}

.award-item:hover {
  transform: translateY(-12px);

  border-color: var(--gold);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.award-item i {
  font-size: 55px;

  color: var(--gold);

  margin-bottom: 25px;
}

.award-item h3 {
  font-size: 26px;

  margin-bottom: 15px;
}

.award-item p {
  color: #bfbfbf;

  line-height: 1.8;
}

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

@media (max-width: 1100px) {
  .welcome .container,
  .chef .container {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .award-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title h2,
  .story-content h2,
  .welcome .right h2,
  .chef-content h2,
  .experience-title h2 {
    font-size: 42px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .story-card,
  .award-item,
  .experience-box {
    padding: 35px;
  }
}
/*=========================================
    MENU SECTION
=========================================*/

.menu-section {
  background: #0b0b0b;
}

.menu-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 35px;

  margin-top: 60px;
}

.menu-card {
  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  overflow: hidden;

  transition: 0.5s;

  backdrop-filter: blur(20px);
}

.menu-card:hover {
  transform: translateY(-15px);

  border-color: var(--gold);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.menu-card img {
  height: 260px;

  object-fit: cover;

  transition: 1s;
}

.menu-card:hover img {
  transform: scale(1.08);
}

.menu-content {
  padding: 30px;
}

.menu-content .price {
  display: inline-block;

  color: var(--gold);

  font-weight: 600;

  margin-bottom: 15px;

  font-size: 18px;
}

.menu-content h3 {
  font-size: 28px;

  font-family: "Cormorant Garamond";

  margin-bottom: 15px;
}

.menu-content p {
  color: #bfbfbf;

  line-height: 1.8;
}

/*=========================================
    CHEF SPECIAL
=========================================*/

.chef-special {
  background: linear-gradient(180deg, #090909, #111);
}

.special-wrapper {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.special-image {
  overflow: hidden;

  border-radius: 25px;

  box-shadow: var(--shadow);
}

.special-image img {
  transition: 1s;
}

.special-image:hover img {
  transform: scale(1.06);
}

.special-content h5 {
  color: var(--gold);

  letter-spacing: 4px;

  margin-bottom: 15px;

  text-transform: uppercase;
}

.special-content h2 {
  font-family: "Cormorant Garamond";

  font-size: 58px;

  margin-bottom: 25px;
}

.special-content p {
  line-height: 2;

  color: #c9c9c9;

  margin-bottom: 25px;
}

.special-content ul {
  margin-bottom: 35px;
}

.special-content ul li {
  padding: 12px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  color: #ddd;
}

/*=========================================
    WINE COLLECTION
=========================================*/

.wine {
  background: #111;
}

.wine-grid {
  display: grid;

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

  gap: 35px;

  margin-top: 60px;
}

.wine-card {
  padding: 45px;

  text-align: center;

  background: var(--glass);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  transition: 0.4s;
}

.wine-card:hover {
  transform: translateY(-10px);

  border-color: var(--gold);
}

.wine-card i {
  font-size: 55px;

  color: var(--gold);

  margin-bottom: 20px;
}

.wine-card h3 {
  font-size: 28px;

  margin-bottom: 15px;

  font-family: "Cormorant Garamond";
}

.wine-card p {
  color: #bdbdbd;
}

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

.gallery {
  background: #090909;
}

.gallery-grid {
  display: grid;

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

  grid-auto-rows: 250px;

  gap: 18px;

  margin-top: 60px;
}

.gallery-grid img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 18px;

  cursor: pointer;

  transition: 0.7s;
}

.gallery-grid img:hover {
  transform: scale(1.05);

  filter: brightness(1.15);
}

.gallery-grid img:nth-child(1) {
  grid-row: span 2;
}

.gallery-grid img:nth-child(4) {
  grid-column: span 2;
}

/*=========================================
    LIGHT GLOW
=========================================*/

.menu-card::before,
.wine-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.04), transparent);

  opacity: 0;

  transition: 0.5s;

  pointer-events: none;
}

.menu-card:hover::before,
.wine-card:hover::before {
  opacity: 1;
}

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

@media (max-width: 1100px) {
  .special-wrapper {
    grid-template-columns: 1fr;
  }

  .wine-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .special-content h2 {
    font-size: 42px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;

    grid-auto-rows: 220px;
  }

  .gallery-grid img:nth-child(1) {
    grid-row: auto;
  }

  .gallery-grid img:nth-child(4) {
    grid-column: auto;
  }
}
/*=========================================
    TESTIMONIAL
=========================================*/

.testimonial {
  background: #101010;
}

.testimonial-slider {
  margin-top: 60px;

  padding-bottom: 70px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 25px;

  padding: 45px;

  text-align: center;

  transition: 0.4s;

  max-width: 700px;

  margin: auto;
}

.testimonial-card:hover {
  transform: translateY(-10px);

  border-color: var(--gold);
}

.testimonial-card img {
  width: 90px;

  height: 90px;

  border-radius: 50%;

  object-fit: cover;

  margin: 0 auto 20px;

  border: 3px solid var(--gold);
}

.testimonial-card h3 {
  font-size: 28px;

  margin-bottom: 5px;

  font-family: "Cormorant Garamond";
}

.testimonial-card span {
  display: block;

  margin-bottom: 20px;

  color: var(--gold);
}

.testimonial-card p {
  line-height: 2;

  color: #d0d0d0;

  font-style: italic;
}

.swiper-pagination-bullet {
  background: #777;

  opacity: 1;
}

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

/*=========================================
    RESERVATION
=========================================*/

.reservation {
  background: url("assets/images/reservation-bg.jpg") center/cover;

  position: relative;
}

.reservation::before {
  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.75);
}

.reservation .container {
  position: relative;

  z-index: 2;
}

.reservation-box {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  background: rgba(20, 20, 20, 0.75);

  backdrop-filter: blur(20px);

  padding: 60px;

  border-radius: 25px;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reservation-left h5 {
  color: var(--gold);

  letter-spacing: 4px;

  margin-bottom: 15px;

  text-transform: uppercase;
}

.reservation-left h2 {
  font-size: 56px;

  font-family: "Cormorant Garamond";

  margin-bottom: 25px;
}

.reservation-left p {
  line-height: 2;

  color: #c8c8c8;
}

.reservation form {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.reservation input,
.reservation textarea,
.reservation select {
  padding: 16px 18px;

  background: #161616;

  border: 1px solid #2d2d2d;

  color: #fff;

  border-radius: 12px;

  font-size: 15px;

  outline: none;

  transition: 0.3s;
}

.reservation textarea {
  min-height: 140px;

  resize: vertical;
}

.reservation input:focus,
.reservation textarea:focus,
.reservation select:focus {
  border-color: var(--gold);
}

/*=========================================
    CONTACT
=========================================*/

.contact {
  background: #0d0d0d;
}

.contact-grid {
  display: grid;

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

  gap: 40px;
}

.contact-grid h3 {
  font-size: 34px;

  font-family: "Cormorant Garamond";

  color: var(--gold);

  margin-bottom: 15px;
}

.contact-grid h4 {
  margin-bottom: 15px;

  color: var(--gold);
}

.contact-grid p {
  line-height: 2;

  color: #bfbfbf;
}

/*=========================================
    FOOTER
=========================================*/

footer {
  background: #070707;

  padding: 60px 8% 35px;

  text-align: center;
}

.footer-logo h2 {
  font-size: 42px;

  font-family: "Cormorant Garamond";

  color: var(--gold);

  margin-bottom: 10px;
}

.footer-logo p {
  color: #bdbdbd;

  margin-bottom: 30px;
}

.footer-social {
  display: flex;

  justify-content: center;

  gap: 18px;

  margin-bottom: 30px;
}

.footer-social a {
  width: 48px;

  height: 48px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.15);

  transition: 0.4s;
}

.footer-social a:hover {
  background: var(--gold);

  color: #000;

  transform: translateY(-6px);
}

footer hr {
  border: none;

  height: 1px;

  background: rgba(255, 255, 255, 0.08);

  margin: 35px 0;
}

footer p:last-child {
  color: #8f8f8f;

  font-size: 14px;
}

/*=========================================
    BACK TO TOP
=========================================*/

.back-top {
  position: fixed;

  right: 30px;

  bottom: 30px;

  width: 55px;

  height: 55px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  background: var(--gold);

  color: #000;

  font-size: 20px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);

  opacity: 0;

  visibility: hidden;

  transition: 0.4s;

  z-index: 999;
}

.back-top.show {
  opacity: 1;

  visibility: visible;
}

.back-top:hover {
  transform: translateY(-8px);
}

/*=========================================
    ANIMATION
=========================================*/

.fade-up {
  opacity: 0;

  transform: translateY(40px);

  transition: 1s;
}

.fade-up.show {
  opacity: 1;

  transform: translateY(0);
}

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

@media (max-width: 1100px) {
  .reservation-box {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reservation {
    padding: 80px 0;
  }

  .reservation-box {
    padding: 35px;
  }

  .reservation-left h2 {
    font-size: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-logo h2 {
    font-size: 34px;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .back-top {
    right: 15px;

    bottom: 15px;

    width: 48px;

    height: 48px;
  }
}
