* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
   background-color: transparent;
}

body {
  background-color: #fff;
}

p {
  letter-spacing: 0.7px;
}

/* Header Styling */
.top-header {
  width: 100%;
  height: 100px;
  background-color: #fff;
  position: relative;
  z-index: 10;
}

.inner-header {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Styling */
.logo-container img {
  height: 100px;
  display: none;
}

.logo-container .desktop-logo {
  display: block;
}

.logo-container .mobile-logo {
  display: none;
}

.back-btn {
  height: 80%;
}

/* Original Navigation */
.original-navigation {
  display: flex;
  gap: 20px;
}

.original-navigation li {
  color: #000;
  font-size: 20px;
}

.original-navigation a :hover {
  font-weight: bold;
}
/* Burger Icon */
.burger-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger-icon .line {
  width: 25px;
  height: 3px;
  background-color: #000;
}

/* Close Icon */
.close-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: #000;
  cursor: pointer;
}

/* Slide Navigation */
.slide-navigation {
  position: fixed;
  top: 0;
  right: -120%;
  width: 75%;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease-in-out;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
}

.slide-navigation ul {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.slide-navigation li {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #000;
}

.slide-navigation li:last-child {
  border-bottom: none;
}

.slide-navigation a {
  color: #000;
  font-size: 18px;
}

.slide-navigation a:hover {
  font-weight: bold;
}

.slide-navigation.active {
  right: 0;
}

footer {
  background-color: #000;
  color: #fff;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.inner-section {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding: 20px;
}

footer .inner-section {
  display: flex;
  width: 90%;
  height: 100%;
  padding-top: 20px;
  justify-content: space-between;
  flex-direction: column;
}

.footer-links {
  display: flex;
  justify-content: center;
}

.brand {
  width: 35%;
  height: auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.contact-info {
  display: flex;
  width: 55%;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: start;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.phone-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 5px;
}

.phone-info img {
  width: 35px;
}

.phone-numbers {
  margin-left: 8px;
}

.phone-numbers p {
  margin-top: 2.5px;
  margin-bottom: 2.5px;
}

.phone-numbers a {
  color: #fff;
  text-decoration: underline;
}

.email-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 5px 0 5px 0;
}

.email-info img {
  width: 35px;
}

.email-address {
  margin-left: 8px;
}

.email-address a {
  color: #fff;
  text-decoration: underline;
}

.socials {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.socials a {
 height: 34px;
}

.socials img {
  margin: 0 4px 0 4px;
  width: auto;
  height: 100%;
}

.copyright {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
}

.copyright hr {
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 500px;
  margin: 20px 0 10px 0;
}

.copyright p {
  text-align: center;
}

/* Responsive tablet and lower */
@media (max-width: 910px) {
  .top-header {
    margin: 0;
  }

  .inner-section {
    margin: 0;
  }

  .original-navigation {
    display: none; 
  }

  .burger-icon {
    display: flex;
  }

  .logo-container .desktop-logo {
    display: none; 
  }

  .logo-container .mobile-logo {
    display: block;
  }

  .brand {
    width: 100%;
    max-width: 280px;
  }

  .contact-info {
    width: 100%;
    align-items: center;
    gap: 15px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  footer {
    margin-top: 0;
  }
}

/*Responsive for mobile*/
@media (max-width: 615px) {
  .email-info {
    flex-direction: column;
  }

  .email-info span {
    margin: 0;
  }

  .contacts {
    align-items: center;
    margin: auto;
  }

  .socials {
    width: 100%;
    justify-content: center;
  }
}

    

