/* This is the index Stylesheet by Rev Engine */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* 
===================
Global Variables
===================
*/

:root {
/* 
===================
Color Pallette 
===================
*/

/* Primary Color */
--clr-primary: #163987;
/* Secondary Color */
--clr-secondary: #191A19;
/* Brand-gradient */
--gradient-var1: linear-gradient(180deg, #FFFFFF, #DADADA);
--gradient-var2: linear-gradient(180deg, #FFFFFF, #E0E0E0);
--gradient-var3: radial-gradient(circle, rgba(220,220,220,1) 25%, rgba(243,243,243,1) 75%);
--gradient-var4: linear-gradient(180deg, #E8E8E8, #FFFFFF);
--gradient-var5: linear-gradient(180deg, #FFFFFF, #A7A7A7);
/* Black Color shades*/
--clr-black: #2E2F36;
--shade1: #F0F0F0;
--shade2: #E8E8E8;
--shade3: #F8F8F8;
/*Fonts */
--ff-primary: "Poppins", sans-serif;
--ff-secondary: "Roboto", sans-serif;
/* font size */
font-size: 16px;
/* Global Transition */
--transition: all 0.3s ease;
}

/* 
===================
Basic Reset
===================
*/
*, ::after, ::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.no-scroll{
    overflow: hidden;
}

.menu-overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.menu-overlay.open{
  display: block;
}

/* 
=======================
Global Variables
=======================
*/


.inquiries{
    position:fixed;
    bottom: 10%;
    right: 0;
    z-index: 99;
}

.call-btn{
  font-family: var(--ff-secondary);
  font-weight: bold;
  font-size: 18px;
  color: white;
  padding: 0.3em 0.6em;
  border-style: none;
  background: var(--clr-primary);
  transition: var(--transition);
  text-decoration: none;
}

.call-btn:hover{
  background: #fff;
  color: #000;
}

@media screen and (min-width: 768px) {
    .inquiries{
        display: none;
    }
}

/* Menu Phone */
.sidebar-container{
  position: absolute;
  z-index: 101;
  top: 0;
  width: 70vw;
  height: 100%;
  background: #fff;
  padding: 1em 0 0 0;
  background: var(--clr-secondary);
  border-right: 8px double var(--clr-primary);
  transition: var(--transition);
  transform: translateX(-100%);
}

.sidebar-container.open{
  transform: translateX(0);
}

/* close-menu(side-menu button)*/
.close-menu{
  font-size: clamp(18px, 0.1rem + 2vw, 32px);
  background: transparent;
  color: var(--clr-primary);
  position: sticky;
  left: 100%;
  border-style: none;
  transition: var(--transition);
  margin-right: 1em;
}

.close-menu:active{
  transform: rotateZ(-90deg);
}

.menu-sidebar{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding-top: 3em;
  width: 100%;
  align-items: center;
  
}

.menu-sidebar li a{
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: clamp(15px, 0.1rem + 2vw, 32px);
  text-decoration: none;
  color: #fff;
}

.sidebar-logo-container{
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 4em;
  align-items: center;
}

.sidebar-logo{
  width: 10vw;
  min-width: 80px;
}

.sidebar-logo-container p{
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: clamp(12px, 0.1rem + 2vw, 32px);
  text-decoration: none;
  color: #fff;
  margin-top: 1em;
}

/* Phone Search */
.phone-search{
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: var(--clr-secondary);
  z-index: 1000;
  transform: translateY(-100%);
  visibility: hidden;
  transition: var(--transition);
  width: 100vw;
  height: fit-content
}

.phone-search.open{
  transform: translateY(0);
  visibility: visible;
}

.close-search{
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-size: clamp(15px, 0.1rem + 2vw, 32px);
  color: #fff;
  padding: 1em;
}
.close-search i{
  color: var(--clr-primary) !important;
  font-size: clamp(16px, 0.1rem + 2vw, 32px) !important;
  transition: var(--transition);
}

.close-search:active .close-search i{
  transform: translateX(-90deg);
}

.search-row1{
  display: flex;
}

.search-small-screen{
  font-size: clamp(15px, 0.1rem + 2vw, 32px);
  padding: 0.4em 0.8em;
  border: 1px solid #fff !important;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}
.phone-search input{
  padding: 0.4em 0.8em;
  font-family: var(--ff-secondary);
}

.extras{
  z-index: 1999;
  margin-top: 10px;
  background: #f9f9f9;
  width: 100%;
  height: fit-content;
}

.not-visible{
  display: none;
}

.suggested-search{
  display: block !important;
  font-family: var(--ff-primary);
  color: grey;
  font-size: clamp(12px, 0.1rem + 2vw, 32px);
  margin: 0.5em 0 1em 0.5em;
}

.search-selection{
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.search-selection li a{
  display: block;
  text-decoration: none;
  font-family: var(--ff-secondary);
  font-size: clamp(15px, 0.1rem + 2vw, 32px);
  color: #000;
  border: 1px solid grey;
  width: 100%;
  padding: 0.3em 0.6em;
  border-left: none;
  border-right: none;
}

.search-selection li:not(:last-of-type) a{
  border-bottom: none;
}

.search-bar{
    display: none;
    position: relative;
}



/* Predictive search suggestions */
.suggestion-box {
  /* border: 1px solid #ccc; */
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  background: white;
  top: 100%;
  width: 80%;
  z-index: 10;
}

.suggestion-item {
  padding: 8px;
  cursor: pointer;
}

.suggestion-item:hover {
  background-color: #eee;
}


.header{
    background-color: var(--clr-secondary);
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.5em 1.5em;
    border-bottom: 1px solid white;
    transition: all 1s linear;
}

.logo-link{
    margin: auto;
    width: fit-content;
}

.logo-link img{
    width: 15vw;
    max-width: 90px;
}

.header button{
    background: transparent;
    border-style: none;
}

.header i{
    color: white;
    font-size: clamp(15px, 0.1rem + 3vw, 24px);
}

.menu{
    color: white;
    font-size: clamp(15px, 0.1rem + 2vw, 32px);
    display: flex;
    align-items: center;
    gap: 2vw;
}

.menu-icon{
    color: var(--clr-primary) !important;
    transition: var(--transition);
}

.menu-icon:hover{
  transform: rotateZ(-90deg);
}

.menu-icon:active{
  transform: rotateZ(-90deg);
}

.cart{
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
}

.cart-icon{
    margin-left: 4vw;
    transition: var(--transition);
    position: relative;
}

.cart-icon:active{
  color: #000;
}

.counter{
  visibility: hidden;
  position: absolute;
  background-color: var(--clr-primary);
  padding: 0.3em;
  border-radius: 100%;
  color: #fff;
  top: -0.6em;
  left: 50%;
  transform: translate3d(-25%, 0, 0);
  z-index: 100;
  font-size: clamp(1px, 0.2rem + 2vw, 15px);
}

.counter.count{
  visibility: visible;
}

.whatsapp{
    display: none;
}

.nav-list-container{
    display: none;
    width: 100%;
    background-color: var(--clr-secondary);
    padding: 1em 0;
}

.search-bar{
    display: none;
    width: 40%;
    gap: 0;
}

.search-large-screen{
    cursor: pointer;
    border: 1px solid white !important;
    padding: 0.5em;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;

}

@media screen and (min-width: 825px) {
    .menu{
        display: none;
    }

    .logo-link{
        margin: 0;
    }

    .search{
        display: none;
    }

    /* form for desktop */
    .search-bar{
        display: flex;
        margin: auto;
    }
    
    .nav-list-container{
        display: inline-block;
    }

    .cart-icon{
    margin-left: 0;
    }
}



.search-bar input{
    width: 80%;
    padding-left: 1em;
}

.nav-list{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4vw;
}

.nav-list li a{
    text-decoration: none;
    color: white;
    font-size: clamp(21px, 0.1rem + 2vw, 20px);
    transition: var(--transition);
}

.nav-list li a:hover{
  color: var(--clr-primary);
}


/* The Hero Section */
.hero{
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh;
}
@media screen and (max-width: 520px) {
    .hero{
      height: 70vh;
    }
}

.hero-image{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    filter: brightness(45%) blur(0px);
    object-fit: cover;
    display: block;
}

.hero-content{
    padding: 0 1em;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tagline{
    color: white;
    font-family: var(--ff-primary);
    font-weight: bold;
    font-size: clamp(18px, 0.2rem + 3vw, 50px);
    text-align: center;
    margin-top: 10vw;
    margin-bottom: 5vw;
    position: relative;
    z-index: 1;
    transition: all 1s ease-in-out;
}



.subtag{
    font-family: var(--ff-secondary);
    font-weight: 300;
    font-size: clamp(12px, 0.2rem + 2vw, 22px);
    text-align: center;
    margin-bottom: 10vw;
    position: relative;
    color: white;
    z-index: 1;
    transition: all 3s ease-in-out;
}


.hero-btn{
    border-style: none;
    padding: 0.4em 0.8em;
    border-radius: 10px;
    margin-bottom: 50vw;
    color: white;
    background: var(--clr-primary);
    box-shadow: 2px 3px 16px black;
    font-family: var(--ff-secondary);
    font-weight: bold;
    font-size: clamp(12px, 0.2rem + 2vw, 18px);
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: var(--transition);
}
@media screen and (min-width: 768px ) {
  .hero-btn{
    margin-bottom: 30vw;
  }
}

.hero-btn:hover{
  background: #fff;
  color: #000;
}


/* Filter Section */
.filters{
    width: 100%;
    background-color: var(--clr-secondary);
    /* margin-bottom: 10vw; */
    border-bottom: 2px solid var(--clr-primary);
}

.filters ul{
    padding: 1em 1em 0.2em 1em;
    display: flex;
    justify-content: center;
    gap: 1.2vw;
    flex-wrap: wrap;
}

.filters ul li{
    display: inline-block;
    /* margin-right: 0.5em; */
    margin-bottom: 1em;
}
@media screen and (max-width: 588px) {
  .filters ul li{
    margin-bottom: 0.5em;
  }
}

.filters ul li button{
    font-size: clamp(10px, 0.2rem + 2vw, 18px);
    padding: 0.4em 0.8em;
    background: none;
    border-style: none;
    border: 1px solid white;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.filters ul li button:hover{
  background: #000;
}

.filters ul li button.active{
    background: white !important;
    color: black !important;
}

/* Vehicles Section */

.vehicle-section{
    width: 100%;
    overflow: hidden;
}

.loading-vehicles {
  text-align: center;
  padding: 2rem;
  font-family: var(--ff-secondary);
  font-weight: bold;
  font-size: clamp(12px, 0.2rem + 2vw, 18px);
  color: var(--clr-secondary);
}

.vehicles-section-container {
  display: flex;
  flex-wrap: wrap;
}

.vehicle-container {
    flex: 0 0 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    position: relative;
    
}
@media screen and (min-width: 500px) {
    .vehicle-container{
        flex: 0 0 calc(50% - 0rem);
        border: 1px solid #fff;
    }
}
@media screen and (min-width: 1000px) {
    .vehicle-container{
        flex: 0 0 calc(33.33% - 0rem);
    }
}


.vehicle-container img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.shadow{
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.vehicle-title{
    color: white;
    position: absolute;
    z-index: 1;
    bottom: 25%;
    font-family: var(--ff-primary);
    font-weight: bold;
    font-size: clamp(15px, 0.2rem + 2vw, 24px);
    margin: 0 0 0 0.9em;
}
@media screen and (min-width: 860px) {
    .vehicle-title{
      bottom: 200px;
    }
}

.vehicle-description{
    position: absolute;
    z-index: 2;
    bottom: 14%;
    font-size: clamp(12px, 0.2rem + 2vw, 18px);
    font-family: var(--ff-secondary);
    font-weight: 400;
    color: white;
    margin: 0 1em 0 1.2em;
}

.section-btns{
    position: absolute;
    bottom: 5%;
    z-index: 1;
}

.section-btn{
    font-family: var(--ff-secondary);
    font-weight: 400;
    font-size: clamp(12px, 0.2rem + 2vw, 16px);
    border-style: none;
    padding: 0.3em 0.6em;
    border-radius: 5px;
    margin: 0 0 0 1.2em;
    cursor: pointer;
    transition: var(--transition);
}

.reserve-btn{
    background: var(--clr-primary);
    color: white;
    text-decoration: none;
}

.reserve-btn:hover{
  background: #fff;
  color: #000;
}

.cart-btn{
  background: white;
  color: black;
}

.cart-btn:hover{
  background: black;
  color: #fff;
}

@media screen and (min-width: 500px) and (max-width: 860px) {
  .vehicle-description{
    font-size: clamp(7px, 0.2rem + 2vw, 10px)
  }
}

/* Dates for renting form */
.rent-form {
  position: absolute;
  margin-top: 1rem;
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 90%;
  max-width: 100%;
  z-index: 1000;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
}

.rent-form label {
  width: 100%;
  font-weight: 500;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.rent-form input {
  padding: 0.2rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.rent-form .submit-dates {
  background-color: #1a73e8;
  color: white;
  padding: 0.6rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.rent-form .submit-dates:hover {
  background-color: #135ec4;
}

.rent-form .close-rent-form{
  background-color: var(--clr-secondary) !important;
  color: white !important;
  padding: 0.6rem !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
}

/* Hidding the form */
.hidden {
  display: none;
}



.disabled{
    position: absolute;
    backdrop-filter: brightness(20%);
    -webkit-backdrop-filter: brightness(20%);
    height: 100%;
    top: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.disabled p{
    font-size: clamp(15px, 0.2rem + 2vw, 18px);
    font-weight: bold;
    font-family: var(--ff-secondary);
    color: white;
    padding: 0.5em 1em;
    border: 2px double yellow;
}


/* CAT */
.cat-help-banner {
  background: var(--clr-secondary); /* CAT yellow */
  color: #fff;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: 8px;
  margin: 2rem 0;
}

.cat-help-content h2 {
  font-family: var(--ff-primary);
  font-size: clamp(15px, 0.2rem + 2vw, 25px);
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.cat-help-content p {
  font-size: clamp(10px, 0.2rem + 2vw, 15px);
  font-family: var(--ff-secondary);
  margin-bottom: 1.2rem;
}

.cat-help-btn {
  background: var(--clr-primary);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(10px, 0.2rem + 2vw, 15px);
  font-family: var(--ff-secondary);
  display: inline-block;
  transition: var(--transition);
}

.cat-help-btn:hover {
  background: #fff;
  color: #000;
}


/* Guarantee Section */
.guarantee-section {
  background: #0f2c6a;
  padding: 3rem 2rem;
  text-align: center;
}

.guarantee-section h2 {
  font-family: var(--ff-primary);
  font-weight: 700;
  font-size: clamp(15px, 0.2rem + 2vw, 25px);
  color: #fff;
  margin-bottom: 2rem;
}

.guarantee-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.guarantee-card {
  background: var(--clr-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.guarantee-card h3 {
  color: #fff;
  font-weight: 700;
  font-family: var(--ff-primary);
  font-size: clamp(14px, 0.2rem + 2vw, 18px);
  margin-bottom: 0.5rem;
}

.guarantee-card p {
  font-family: var(--ff-secondary);
  font-size: clamp(10px, 0.2rem + 2vw, 16px);
  font-weight: 300;
  color: #fff;
}

@media (min-width: 768px) {
  .guarantee-items {
    flex-direction: row;
    justify-content: center;
  }
}


/* Testimonial Section */
/* .testimonials {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.testimonials h2 {
  color: var(--clr-primary);
  font-family: var(--ff-primary);
  font-weight: 700;
  font-size: clamp(15px, 0.2rem + 2vw, 25px);
  margin-bottom: 2rem;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card {
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-style: italic;
  font-size: clamp(10px, 0.2rem + 2vw, 16px);
}

.testimonial-card h4 {
  margin-top: 1rem;
  font-size: clamp(10px, 0.2rem + 2vw, 16px);
  font-weight: bold;
  color: var(--clr-primary);
}

@media (min-width: 768px) {
  .testimonial-cards {
    flex-direction: row;
    justify-content: center;
  }

  .testimonial-card {
    max-width: 300px;
  }
} */

/* Vehicle Section */
.vehicle-gallery {
  padding: 4em 1em;
  background-color: #f0f2f5;
  text-align: center;
}

.vehicle-gallery h2 {
  font-family: var(--ff-primary);
  font-size: clamp(18px, 0.2rem + 2vw, 25px);
  color: var(--clr-secondary);
  margin-bottom: 2rem;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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


/* Second CTA */
.cta-reserve {
  background: linear-gradient(to right, var(--clr-primary), #1a3f99);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px 8px 0 0;
  margin-top: 2rem;
}

.cta-reserve h2 {
  font-family: var(--ff-primary);
  font-weight: 700;
  font-size: clamp(15px, 0.2rem + 2vw, 25px);
  margin-bottom: 0.5rem;
}

.cta-reserve p {
  font-family: var(--ff-secondary);
  font-size: clamp(10px, 0.2rem + 2vw, 16px);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  font-size: clamp(10px, 0.2rem + 2vw, 16px);
  font-family: "Roboto";
}

.btn-primary {
  background: var(--clr-secondary);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary:hover{
    background: #fff;
    color: black;
}

.btn-secondary {
  color: #fff;
  border: 2px solid #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
    gap: 2rem;
  }
}

/* Map Embedded */
.map-embedded{
  height: 40vh;
  overflow: hidden;
}

@media screen and (max-width: 649px) {
  .map-embedded{
    height: 100vh;
  }
}

.map-embedded iframe{
  width: 100%;
  height: 100%;
  display: block;
}

.rise{
  transform: translateY(20%);
  opacity: 0;
  transition: all 1s ease-in-out;
}

.rise.appear{
  transform: translateY(0) !important;
  opacity: 1 !important;
}

/* Footer Content */
.site-footer {
  background: var(--clr-secondary);
  color: #fff;
  padding: 2.5rem 1.5rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

footer h4,
.footer-brand p{
  font-family: var(--ff-primary);
  font-weight: 700;
  font-size: clamp(15px, 0.2rem + 2vw, 25px);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  width: 20vw;
  max-width: 104px;
  margin-bottom: 0.5rem;
}



.footer-contact p,
.footer-links ul,
.footer-certifications {
  font-size: clamp(10px, 0.2rem + 2vw, 14px);
  font-family: "Roboto";
  font-weight: 300;
}

.footer-certifications h4{
  margin-bottom: 1rem;
}

.footer-contact p,
.footer-links ul{
    margin: 1rem 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a,
.footer-certifications a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover,
.footer-certifications a:hover{
  color: #000;
}

.footer-links ul li{
  margin: 0 0 1em 0;
}

.footer-links a:hover,
.footer-certifications a:hover {
  text-decoration: underline;
}

.footer-bottom{
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: clamp(10px, 0.2rem + 2vw, 16px);
  font-family: var(--ff-secondary);
}

.footer-bottom a{
  color: #fff;
  text-decoration: none;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: clamp(10px, 0.2rem + 2vw, 16px);
  font-family: var(--ff-secondary);
}

.footer-bottom a:visited{
  color: #fff;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
}

