@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --greentea: #41611d;
    --greenlum: #73b825;
    --white: #fff;
    --towhite: #f5f5f5cc;
    --black: #111;
    --blackgray: #151515;
    --tomato: #898281;
    --tomatolow: #c04631;
  }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
}

p{
    font-weight: 300;
    color: var(--black);
}

section{
  padding: 50px;

}

.slide-section{
  position: relative;
  z-index: -1;
}



/* NAVBAR */

nav{
  position: fixed;
  display: flex;
  width: 100%;
  background-color: var(--white);
  justify-content: space-around;
  height: 70px;
  align-items: center;
  color: var(--tomato);
  transition: 0.5s;
  z-index: 2;
}

nav.sticky {
  background-color: var(--white);
}

nav .logo{
  letter-spacing: 2px;
}

nav .logo h4{
  font-weight: 700;

}

nav ul{
  display:  flex;
  list-style: none;
  width: 40%;
  justify-content: space-between;
}

nav ul li a{
  color: var(--tomato);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.75;
  border-bottom: 3px solid transparent;
  transition: 0.5s;
}

nav ul li a:hover{
  opacity: 1;
  color: var(--tomato);
  border-bottom: 3px solid var(--tomato);
}

nav ul li a.active{
  border-bottom: 3px solid var(--tomato);
}



/* Hamburger Menu */
.menu-toggle{
  display: none;
  flex-direction: column;
  height: 20px;
  justify-content: space-between;
  position: relative;
}

.menu-toggle input{
  position: absolute;
  width: 40px;
  height: 28px;
  left: -5px;
  top: -3px;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.menu-toggle span{
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--tomato);
  transition: all 0.5s;
}

/* Hamburger Animaion */
.menu-toggle span:nth-child(2){
  transform-origin: 0 0;
}

.menu-toggle span:nth-child(4){
  transform-origin: 0 100%;
}

.menu-toggle input:checked ~ span:nth-child(2){
  background-color: var(--tomato);
  transform: rotate(45deg) translate(-1px, -1px);
}

.menu-toggle input:checked ~ span:nth-child(3){
  transform: scale(0);
  opacity: 0;
}

.menu-toggle input:checked ~ span:nth-child(4){
  background-color: var(--tomato);
  transform: rotate(-45deg) translate(-1px, 0px);
}

/* LANDING */
.landing {
  width: 100%;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(40, 40, 40, 0.9)), url('src/bg.jpeg');
  background-size: cover;
  background-position: center;
}
.landing .content {
  max-width: 500px;
  margin: 20px;
  text-align: center;
}

.landing .content h2 {
  font-size: 3em;
  color: #d1a25f; /* Warna emas untuk kesan premium */
}

.landing .content p {
  font-size: 1.1em;
  color: #f5f5f5;
}

.landing .content img {
  max-width: 450px;
  border-radius: 10px;
}

.btn {
  font-size: 1em;
  color: #fff !important;
  background-color: #a67c52 !important; /* Warna coklat elegan */
  display: inline-block;
  padding: 12px 35px;
  margin-top: 20px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 3px;
  border-radius: 25px;
  transition: 0.5s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background-color: #8c6239 !important;
  letter-spacing: 6px;
}

/* FOOTER */
footer {
  width: 100%;
  background: linear-gradient(to right, #1a1a1a, #4b3621); /* Hitam ke coklat untuk kesan elegan */
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

footer .title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d1a25f;
}

.top_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 15px 0;
}

.top_header .fa {
  font-size: 24px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.top_header .fa:hover {
  transform: scale(1.2);
  color: #d1a25f;
}

.bottom_content {
  margin-top: 15px;
}

.bottom_content nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bottom_content a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bottom_content a:hover {
  color: #d1a25f;
}

.copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}




/* ABOUT SECTION */
.about {
  width: 100%;
  background: linear-gradient(to bottom, #e6d5b8, #f2ebe1); /* Gradasi krem ke coklat muda */
  color: #333;
  padding: 60px 20px;
  text-align: center;
}


.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.about .textTitle {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 4px solid #ff6f61; /* Warna merah pastel */
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  color: #0277bd; /* Biru cerah */
}

.about .textTitle::after {
  content: "";
  width: 50px;
  height: 5px;
  background: #ff6f61; /* Merah pastel */
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

.about .textTitle span {
  color: #ff6f61; /* Warna aksen */
  font-size: 2.5rem;
}

/* MAIN CONTENT */
.main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

/* IMAGE */
.about img {
  width: 500px;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about img:hover {
  transform: scale(1.03);
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.3);
}

/* ABOUT TEXT */
.about-text {
  max-width: 550px;
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: justify;
  color: #444;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
  .main {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    width: 90%;
  }

  .about img {
    width: 90%;
  }

  .about .textTitle {
    font-size: 1.8rem;
  }

  .about .textTitle span {
    font-size: 2rem;
  }
}

/* Styling for product specifications */
.specifications {
    background-color: #1e1e1e;
    color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.specifications h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffc107;
}

.specifications table {
    width: 100%;
    border-collapse: collapse;
    background-color: #252525;
}

.specifications th, .specifications td {
    border: 1px solid #444;
    padding: 10px;
    text-align: left;
}

.specifications th {
    background-color: #333;
    color: #ffc107;
}

/* Styling for product gallery */
.product-gallery {
    background-color: #1e1e1e;
    color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.product-gallery h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffc107;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    border: 2px solid #444;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.1);
}

/* Styling for Vision & Mission section */
.vision-mission {
  background-color: #fafafa;
  color: #161515;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.vision-mission h3 {
  color: #0c0c0c;
  font-size: 24px;
  margin-bottom: 10px;
}

.vision, .mission {
  background-color: #fdfafa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.mission ul {
  list-style: none;
  padding: 0;
}
.vision, .mission {
  text-align: center;
}

.mission ul {
  display: inline-block; /* Membuat daftar tetap di tengah */
  text-align: left; /* Agar teks dalam list tetap rata kiri */
  padding: 0;
}

.mission li {
  list-style-position: inside; /* Memastikan bullet point tetap di dalam area teks */
}

.mission ul li {
  background: url('check-icon.png') no-repeat left center;
  background-size: 16px;
  padding-left: 25px;
  margin-bottom: 10px;
  text-align: left;
}


/* PRODUCT SECTION */
.product {
  background: #f8f9fa; /* Abu-abu sangat muda, hampir putih */
  color: #333;
  padding: 60px 20px;
  text-align: center;
}

/* TITLE */
.product .textTitle {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  border-bottom: 3px solid #aaa;
  padding-bottom: 8px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.product .textTitle::after {
  content: "";
  width: 50px;
  height: 4px;
  background: #d4af37; /* Warna emas lembut */
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.product .textTitle span {
  color: #d4af37; /* Emas lembut */
  font-size: 2.5rem;
}

/* BUTTON CONTAINER */
.title-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.title-btn .btn {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* WHATSAPP BUTTON */
.title-btn .whatsapp {
  color: #fff;
  background: #4a7c59; /* Hijau tua yang elegan */
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.title-btn .whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0px 5px 15px rgba(74, 124, 89, 0.4);
}

/* PRODUCT CONTAINER */
.product .content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 20px;
}

/* PRODUCT BOX */
.product .content .box {
  width: 380px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product .content .box:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 25px;
}

/* IMAGE BOX */
.product .content .box .imgBx {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 8px;
}

.product .content .box .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product .content .box:hover .imgBx img {
  transform: scale(1.03);
}

/* TEXT CONTENT */
.product .content .box .text {
  padding: 15px 0 5px;
}

.product .content .box .text h3 {
  font-weight: 500;
  font-size: 1.2rem;
  color: #222;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
  .product .textTitle {
    font-size: 1.8rem;
  }

  .product .textTitle span {
    font-size: 2rem;
  }

  .product .content .box {
    width: 90%;
  }

  .product .content .box .imgBx {
    height: 250px;
  }
}


/* MY TEAMS */
.teams {
  background: linear-gradient(135deg, #5A3825, #D2691E, #FAE3C6); /* Gradasi coklat tua ke deep orange lalu beige */
  padding: 80px 0;
  text-align: center;
}


.teams .textTitle {
  font-size: 2.8rem;
  font-weight: bold;
  border-bottom: 4px solid #ff4d4d;
  margin-bottom: 40px;
  color: #ffffff;
  display: inline-block;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.teams .textTitle span {
  color: #ff4d4d;
  font-size: 3rem;
}

.baris {
  width: 80%;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  background: rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.profile-content {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: center;
  width: 300px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-content:hover {
  transform: translateY(-12px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.p-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}

.profile-image {
  text-align: center;
}

.desc {
  text-align: center;
  padding: 15px;
  flex-grow: 1;
}

.desc h2 {
  color: #1e3c72;
  font-size: 1.6rem;
  margin-top: 15px;
  font-weight: bold;
  text-transform: uppercase;
}

.desc p {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 8px;
  color: #444;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .baris {
    width: 90%;
    padding: 20px;
    flex-direction: column;
    align-items: center;
  }

  .teams .textTitle {
    font-size: 2.2rem;
  }

  .teams .textTitle span {
    font-size: 2.5rem;
  }

  .profile-content {
    width: 100%;
    max-width: 350px;
  }

  .desc h2 {
    font-size: 1.4rem;
  }

  .desc p {
    font-size: 0.9rem;
  }
}



/* CONTACT SECTION */
.contact {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact .textTitle {
  font-size: 2.5rem;
  border-bottom: 4px solid #ff4d4d;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #ffffff;
}

.contact .textTitle span {
  color: #ff4d4d;
  font-size: 3rem;
}

.contactButtons {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: fadeIn 1s ease-in-out;
}

.contactButtons h3 {
  color: #ff4d4d;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.contactButtons button {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
}

.contactButtons button:first-child {
  background: #ff4d4d;
  color: #ffffff;
}

.contactButtons button:first-child:hover {
  background: #e63946;
  transform: scale(1.05);
}

.contactButtons button:last-child {
  background: #25d366;
  color: #ffffff;
}

.contactButtons button:last-child:hover {
  background: #1ebc57;
  transform: scale(1.05);
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .baris {
    width: 90%;
    padding: 20px;
    flex-direction: column;
    align-items: center;
  }

  .teams .textTitle {
    font-size: 2.2rem;
  }

  .teams .textTitle span {
    font-size: 2.5rem;
  }

  .profile-content {
    width: 100%;
    max-width: 350px;
  }

  .desc h2 {
    font-size: 1.4rem;
  }

  .desc p {
    font-size: 0.9rem;
  }
}



/* FOOTER */
footer {
  width: 100%;
  background: linear-gradient(to right, #1a0e05, #3e2f1c); /* Gradasi hitam ke coklat gelap */
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}


/* Title */
footer .title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Top Header */
.top_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.top_header section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top_header .fa {
  font-size: 28px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.top_header .fa:hover {
  transform: scale(1.2);
  color: #ffcc00;
}

/* Links */
.top_header a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.top_header a:hover {
  border-bottom: 2px solid #ffcc00;
  color: #ffcc00;
}

/* Border Shape */
.border-shape {
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, #ffcc00, #ff5733);
  margin: 20px auto;
  border-radius: 10px;
}

/* Bottom Navigation */
.bottom_content {
  margin-top: 20px;
}

.bottom_content nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.bottom_content a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bottom_content a:hover {
  color: #ffcc00;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
  display: flex; /* Menyusun ikon secara horizontal */
  justify-content: center; /* Pusatkan ikon */
  align-items: center;
  gap: 15px; /* Beri jarak antar ikon */
}

.social-icons a {
  color: #fff;
  font-size: 24px; /* Ukuran ikon lebih besar */
  display: flex; /* Pastikan ikon terlihat */
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); /* Background lingkaran */
  transition: transform 0.3s, color 0.3s, background 0.3s;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.2);
  color: #ffcc00;
  background: rgba(255, 255, 255, 0.2); /* Efek hover */
}

/* Copyright */
.copyright {
  margin-top: 30px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
  backdrop-filter: blur(5px); /* Efek Glassmorphism */
}


   */

/* FLOAT BUTTON */
.whatsapp_float {
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
        font-size:30px;
	box-shadow: 2px 2px 3px #999;
        z-index:100;
}

.whatsapp-icon {
	margin-top:16px;
}

@media screen and (max-width: 1024px) {
  nav ul{
    width: 60%;
  }


}


@media(max-width: 991px) {
  .footer-flex{
    padding: 40px;
  }
  .footer-flex .container-foot{
    flex-direction: column;
  }

  .footer-flex .container-foot .sec{
    margin-right: 0;
    margin-bottom: 40px;
  }
  
  .footer-flex .container-foot .sec.logos,
  .quickLinks,
  .contacts{
    width: 100%;
  }

  .copyrightText{
    padding: 8px 40px;
  }
}

/* @media (max-width:820px){
  .top_header{
    padding:1rem;
    display:block;
  }
  
  .top_header section{
    margin:40px 0;
    align-items:left;
    justify-content:left;
  }
  footer .bottom_content section{
    padding:1rem;
    display:block;
  }
  footer .bottom_content section a{
    padding:1rem;
    font-size:12px;
    margin:0 5px;
    display:inline-block;
  }
} */

/* ===== Tablet (max-width: 768px) ===== */
@media screen and (max-width: 768px) {
  nav ul {
    width: 100%; /* Menu navigasi melebar agar lebih mudah diakses */
    text-align: center;
  }

  .card {
    width: 90%; /* Kartu menjadi lebih fleksibel */
    margin: 10px auto; /* Menyesuaikan margin agar kartu tetap rapi */
  }

  .baris {
    flex-direction: column; /* Elemen yang sejajar di desktop jadi vertikal di tablet */
    align-items: center;
  }

  .footer-flex {
    flex-direction: column; /* Footer lebih rapi di tablet */
    text-align: center;
    padding: 15px;
  }

  .footer-flex section {
    width: 100%; /* Semua elemen dalam footer mengambil lebar penuh */
  }
}

/* ===== Mobile (max-width: 576px) ===== */
@media screen and (max-width: 576px) {
  .menu-toggle {
    display: flex; /* Menampilkan menu burger */
  }

  nav ul {
    display: none; /* Sembunyikan menu utama, hanya tampil jika menu-toggle diklik */
    flex-direction: column;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 60px;
    left: 0;
    text-align: center;
    padding: 10px 0;
  }

  nav ul.active {
    display: flex; /* Tampilkan menu saat diaktifkan */
  }

  nav ul li {
    width: 100%;
    padding: 10px 0;
  }

  .card {
    width: 100%; /* Kartu full-width agar tidak terlalu kecil */
    margin: 10px 0;
  }

  .footer-flex {
    padding: 10px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .copyright {
    font-size: 0.8rem; /* Ukuran teks lebih kecil agar tidak mendominasi layar */
  }


  nav ul.slide{
    opacity: 1;
    transform: translateX(0);
  }

  .landing .content{
    max-width: 800px;
  }

  .landing .content.content-1{
    flex: 1;
    order: 2;
  }
  
  
  .about img{
    height: auto;
    width: 400px;
    margin-bottom: 10px;
  }

  .product .content .box .imgBx {
    height: 150px;
    object-fit: cover;
}

  /* .footer-content{
    width: 100%;
  }

  .footer-logo{
    width: 100%;
    padding-left: 0px;
  }

  .footer-text{
    width: 100%;
    padding-left: 0px;
  } */
}