footer {
    background: #00102e;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 35px 10%;
    color: #fff;
    align-items: center;
}

.footer-left {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-silverline-logo {
    width: 200px;
}

.footer-slogan h2 {
    margin: 0;
    font-weight: 200;
    font-size: 1.5em;
    line-height: 1.2em;
}

.footer-slogan h2 strong {
    color: #3EC2FF;
    font-style: italic;
    font-weight: 600;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-info-item img {
    width: 20px;
}

.footer-info-item h3 {
    margin: 0;
    font-weight: 200;
    font-size: 0.85em;
}

.footer-info-item a {
    color: white;
}

.footer-center {
    width: 35%;
    gap: 0.5em;
    display: flex;
    flex-direction: column;
    padding: 0 50px;
}

.footer-padding-inside {
    padding-left: 40px;
}

.footer-division-line {
    width: 100%;
    height: 2px;
    background: #3EC2FF;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    flex-direction: column;
    gap: 1rem;
}

.contact-button {
    background: #3EC2FF;
    padding: 20px;
    color: #00102E;
    letter-spacing: 0.3em;
    border-radius: 10px;
}
/* FOOTER BOTTOM START */

.footer-bottom {
    display: flex;
    width: 100%;
    align-items: center;
}

.footer-bottom::before {
  content: "";
  flex: 1;
}

.footer-social-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: end;
}

.footer-social-item {
    border: 2px solid #3EC2FF;
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 25px;
}

.footer-social-item img {
    filter: invert(66%) sepia(14%) saturate(3926%) hue-rotate(171deg) brightness(103%) contrast(101%);
}

.footer-bottom p {
    margin: 0;
    font-weight: 200;
}

.footer-bottom p:first-of-type {
  text-align: center;
  flex:2;
}

.footer-bottom p:last-of-type {
  text-align: right;
  padding: 10px;
}

.footer-bottom p strong {
    color: #3EC2FF;
    font-weight: 200;
}


.footer-privacy-policy {
  margin-left: auto;
  margin-top: 5px;
}

.privacy-link:link,
.privacy-link:visited{
  color: #00A9E0;
}
.privacy-link:hover {
  color: #3EC2FF; 
}

/* FOOTER BOTTOM END */

@media screen and (max-width: 1024px) {
  .footer-left {
    flex: 1;
  }
  .footer-center {
    flex: 1;
  }
  .footer-right {
    align-items: center;
    justify-content: center;
  }
}


@media screen and (max-width: 600px) {
    footer {
        padding: 50px;
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        width: 100%;
    }

    .footer-silverline-logo {
        width: 200px;
        margin: 0 auto;
    }

    .footer-center {
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-info-item h3 {
        text-align: left;
    }
    
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px; 
  }

   .footer-bottom::before {
        display: none;
  }

   .footer-bottom p:first-of-type,
   .footer-bottom p:last-of-type {
    flex: none; 
    text-align: center; 
    padding: 0 15px; 
  }
    
    .footer-privacy-policy{
        text-align: center;
        margin-top: 10px;
    }
}