@import './global.css';


.footer-container{
    margin: 0 auto;
    background-color: #444444;
    padding: 7rem 0;
    width: 100%;
    max-width: 2600px;

}

.footer-items-container{
    margin: 0 auto;
    width: min(1680px, 80%);
    display: grid;
    justify-content: center;
    grid-template-columns: 25% 25% 25% 25%;
}

.footer-company-info-div{
    width: 100%;
    border-left: solid 2px #666;
}

.footer-company-info-texts{
    width: fit-content;
    margin: 0 auto;
}

.footer-company-logo{
    width: 200px;
    height: auto; 
    margin-bottom: 20px;
}

.footer-company-info{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-company-info h3{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: var(--margin-xm);
    color: whitesmoke;
}

.footer-company-info-socials{
    display: flex;
    flex-direction: row;
    margin-top: 2vh;

    position: relative;
    z-index: 1;
}

.footer-company-info-socials a{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20%;
    background-color: whitesmoke;

    z-index: 20;
    transition: all ease 0.3s;
}

.footer-company-info-socials a:hover{
    transform: scale(1.2);
}

.footer-social-links-icon{
    width: 100%;
    height: 36px;
    padding: 7px;
}


.footer-navigation-div{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    border-left: solid 2px #666;
}

.footer-navigation-items{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: 20px;
}

.footer-navigation-div h2{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: var(--margin-xm);
    color: whitesmoke;

    margin-bottom: 20px;

    border-bottom: solid 2px whitesmoke;
    width: fit-content;
    padding-bottom: 5px;
}

.footer-navigation-div a {
    text-decoration: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: var(--margin-xm);
    color: whitesmoke;
    width: fit-content;
    position: relative; 
}

.footer-navigation-div a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px; 
    width: 0;
    height: 2px; 
    background-color: whitesmoke;
    transition: width 0.3s ease; 
}

.footer-navigation-div a:hover::after {
    width: 100%;
}


.footer-services-div{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    border-left: solid 2px #666;
}

.footer-services-items{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: 20px;
}

.footer-services-div h2{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: var(--margin-xm);
    color: whitesmoke;

    margin-bottom: 20px;

    border-bottom: solid 2px whitesmoke;
    width: fit-content;
    padding-bottom: 5px;
}

.footer-services-div a {
    text-decoration: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: var(--margin-xm);
    color: whitesmoke;
    width: fit-content;
    position: relative; 
}

.footer-services-div a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px; 
    width: 0;
    height: 2px; 
    background-color: whitesmoke;
    transition: width 0.3s ease; 
}

.footer-services-div a:hover::after {
    width: 100%;
}


.footer-action-div{
    width: 100%;
    border-left: solid 2px #666666;
    border-right: solid 2px #666666;
    padding: 0 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-action-items{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

.footer-action-affiliate-div{
    position: relative;
    display: flex;
    flex-direction: column;

    border-bottom: solid 2px #666666;
    padding-bottom: var(--margin-xm);
}

.footer-action-affiliate-title{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer-action-affiliate-title h2{
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: var(--margin-xm);
    font-weight: 500;
    padding-bottom: var(--margin-m);
}

.footer-action-affiliate-title h3{
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: var(--margin-m);
    font-weight: 300;
}

.footer-action-affiliate-div a{
    width: 100%;
    height: fit-content;
    text-decoration: none;
    text-align: center;
    padding: 12px 8px;
    background-color: var(--primary-color-light-10);
    transition: background-color 0.2s ease;
    margin-top: var(--margin-s);
}

.footer-action-affiliate-div a:hover{
    background-color: var(--primary-color);
}

.footer-action-affiliate-div a:active{
    background-color: var(--primary-color-dark-10);
}

.footer-action-affiliate-div a h3{
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}


.footer-action-newsletter-container{
    padding-top: var(--margin-xm);
    padding-top: 0; 
}

.footer-action-newsletter-title{
    margin-bottom: var(--margin-s);
    width: 100%;
}

.footer-action-newsletter-title h2{
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: var(--margin-m);
    font-weight: 600;
    padding-bottom: var(--margin-xs);
}

.footer-action-newsletter-title h3{
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: var(--margin-m);
    font-weight: 400;
}

.footer-action-newsletter-div{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 0px;
}

.footer-action-newsletter-group{
    margin-right: auto;
    width: 100%;
    background-color: transparent;
    border: solid 2px whitesmoke;
    border-radius: 0;
    position: relative;

    transition: background-color 0.3s ease;
}

.footer-action-newsletter-group:hover{
    background-color: var(--primary-color-light-10);
}

.footer-action-newsletter-group > 
.newsletter-input:focus, .newsletter-input:valid{
    background-color: var(--primary-color); 
    color: rgb(255, 255, 255); 
    transition: background-color 0.3s ease; 
  }

.newsletter-icon{
    position: absolute;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    height: 25px;
}

.newsletter-input{
    width: 100%;
    color: #333333;
    background-color: transparent;
    padding: 9px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: calc(var(--margin-sm) + 0.05rem);
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    padding-left: calc(2.5% + 30px);
    box-sizing: border-box;
}

.newsletter-input:active{
    border: none;
    outline: none;
}

.newsletter-input:focus{
    border: none;
    outline: none;
}

.newsletter-label{
    position: absolute;
    left: calc(2.5% + 30px);
    top: 42%;
    transform: translateY(-50%);

    font-weight: 600;
    color: #ffffff;

    cursor: text;
    user-select: none;

    transition: all 0.15s ease-out;
}

.newsletter-label span{
    user-select: none;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: calc(var(--margin-sm) + 0.05rem);
    letter-spacing: 0.5px;
}

.newsletter-input:focus,
input:valid,
textarea:focus,
textarea:valid {
  outline: none;
}

.newsletter-input:focus + .newsletter-label,
.newsletter-input:valid + .newsletter-label{
  display: none;
}

.footer-action-newsletter-button{
    width: 100%;
    height: fit-content;
    margin: auto 0;
    margin-top: var(--margin-sm);
    cursor: pointer;
    background-color: var(--primary-color-light-10);
    padding: 9px 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    user-select: none;
    transition: background-color 0.2s ease;
}

.footer-action-newsletter-button:hover{
    background-color: var(--primary-color);
}

.footer-action-newsletter-button:active{
    background-color: var(--primary-color-dark-10);
}

.footer-action-newsletter-button h3{
    color: white;
    font-family: var(--main-font);
    font-size: calc(var(--margin-sm));
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

#status-message{
    display: none;
    color: lime;
    margin-top: 5px;
    font-size: calc(var(--margin-sm) + 0.05rem);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.prescribed-container{
    width: 100%;
    background-color: #333333;
}

.prescribed-items{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    padding: 5px 0;
}

.prescribed-item {
    display: flex;
    align-items: center;
}

.prescribed-item a{
    text-decoration: none;
    color: white;
    font-family: var(--main-font);
    font-weight: 300;
    font-size: var(--margin-s);
}

.prescribed-item a:hover{
    text-decoration: underline;
}

.prescribed-item p{
    user-select: none;
    cursor: default;
    color: white;
    font-family: var(--main-font);
    font-weight: 300;
    font-size: var(--margin-s);
}
/*
@media screen and (max-width: 1600px){
    .footer-container{
        margin: 0 auto;
        background-color: #444444;
        padding: 8rem 0;
        width: 100%;
        max-width: 2600px;
    }
    
    .footer-items-container{
        margin: 0 auto;
        width: 85%;
        display: grid;
        justify-content: center;
        grid-template-columns: 25% 25% 25% 25%;
    }
    
    .footer-company-info-div{
        width: 100%;
    }
    
    .footer-company-logo{
        width: 170px;
        margin-bottom: 30px;
    }
    
    .footer-company-info{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-company-info h3{
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 500;
        font-size: var(--margin-sm);
        color: whitesmoke;
    }
    
    .footer-company-info-socials{
        display: flex;
        flex-direction: row;
        margin-top: 2vh;
    }
    
    .footer-company-info-socials a{
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20%;
        background-color: whitesmoke;
    
        z-index: 20;
        transition: all ease 0.3s;
    }
    
    .footer-company-info-socials a:hover{
        transform: scale(1.2);
    }
    
    .footer-social-links-icon{
        height: 30px;
        padding: 6px;
    }
    
    
    .footer-navigation-div{
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }
    
    .footer-navigation-items{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-navigation-div h2{
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 500;
        font-size: var(--margin-sm);
        color: whitesmoke;
    
        margin-bottom: 20px;
    
        border-bottom: solid 2px whitesmoke;
        width: fit-content;
        padding-bottom: 5px;
    }
    
    .footer-navigation-div a {
        text-decoration: none;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 400;
        font-size: var(--margin-sm);
        color: whitesmoke;
        width: fit-content;
        position: relative; 
    }
    
    .footer-navigation-div a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -7px; 
        width: 0;
        height: 2px; 
        background-color: whitesmoke;
        transition: width 0.3s ease; 
    }
    
    .footer-navigation-div a:hover::after {
        width: 100%;
    }
    
    
    .footer-services-div{
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }
    
    .footer-services-items{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-services-div h2{
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 500;
        font-size: var(--margin-sm);
        color: whitesmoke;
    
        margin-bottom: 20px;
    
        border-bottom: solid 2px whitesmoke;
        width: fit-content;
        padding-bottom: 5px;
    }
    
    .footer-services-div a {
        text-decoration: none;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 400;
        font-size: var(--margin-sm);
        color: whitesmoke;
        width: fit-content;
        position: relative; 
    }
    
    .footer-services-div a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -7px; 
        width: 0;
        height: 2px; 
        background-color: whitesmoke;
        transition: width 0.3s ease; 
    }
    
    .footer-services-div a:hover::after {
        width: 100%;
    }
    
    
    .footer-action-div{
        width: 100%;
        border-left: solid 2px #666666;
        padding-left: 20px;
    
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .footer-action-items{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .footer-action-affiliate-div{
        position: relative;
        display: flex;
        flex-direction: column;
    
        border-bottom: solid 2px #666666;
        padding-bottom: var(--margin-xm);
    }
    
    .footer-action-affiliate-title{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .footer-action-affiliate-title h2{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-sm);
        font-weight: 500;
        padding-bottom: var(--margin-m);
    }
    
    .footer-action-affiliate-title h3{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-s);
        font-weight: 300;
    }
    
    .footer-action-affiliate-div a{
        width: 100%;
        height: fit-content;
        text-decoration: none;
        text-align: center;
        padding: 12px 8px;
        background-color: var(--primary-color-light-10);
        transition: background-color 0.2s ease;
        margin-top: var(--margin-s);
    }
    
    .footer-action-affiliate-div a:hover{
        background-color: var(--primary-color);
    }
    
    .footer-action-affiliate-div a:active{
        background-color: var(--primary-color-dark-10);
    }
    
    .footer-action-affiliate-div a h3{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-sm);
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 0.5px;
    }
    
    
    .footer-action-newsletter-container{
        padding-top: var(--margin-xm);
        padding-top: 0; 
    }
    
    .footer-action-newsletter-title{
        margin-bottom: var(--margin-s);
        width: 100%;
    }
    
    .footer-action-newsletter-title h2{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-s);
        font-weight: 500;
        padding-bottom: var(--margin-s);
    }
    
    .footer-action-newsletter-title h3{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-s);
        font-weight: 300;
    }
    
    .footer-action-newsletter-div{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 0px;
    }
    
    .footer-action-newsletter-group{
        margin-right: auto;
        width: 100%;
        background-color: transparent;
        border: solid 2px whitesmoke;
        border-radius: 0;
        position: relative;
    
        transition: background-color 0.3s ease;
    }
    
    .footer-action-newsletter-group:hover{
        background-color: var(--primary-color-light-10);
    }
    
    .footer-action-newsletter-group > 
    .newsletter-input:focus, .newsletter-input:valid{
        background-color: var(--primary-color); 
        color: rgb(255, 255, 255); 
        transition: background-color 0.3s ease; 
      }
    
    .newsletter-icon{
        position: absolute;
        left: 2.5%;
        top: 50%;
        transform: translateY(-50%);
        height: 20px;
    }
    
    .newsletter-input{
        width: 100%;
        color: #333333;
        background-color: transparent;
        padding: 8px 0;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-s);
        font-weight: 600;
        letter-spacing: 0.5px;
        border: none;
        padding-left: calc(2.5% + 25px);
        box-sizing: border-box;
    }
    
    .newsletter-input:active{
        border: none;
        outline: none;
    }
    
    .newsletter-input:focus{
        border: none;
        outline: none;
    }
    
    .newsletter-label{
        position: absolute;
        left: calc(2.5% + 25px);
        top: 48%;
        transform: translateY(-50%);
    
        font-weight: 600;
        color: whitesmoke;

    
        cursor: text;
        user-select: none;
    
        transition: all 0.15s ease-out;
    }
    
    .newsletter-label span{
        user-select: none;
        font-family: var(--main-font);
        font-weight: 500;
        font-size: var(--margin-s);
        letter-spacing: 0.5px;
    }
    
    .newsletter-input:focus,
    input:valid,
    textarea:focus,
    textarea:valid {
      outline: none;
    }
    
    .newsletter-input:focus + .newsletter-label,
    .newsletter-input:valid + .newsletter-label,
    textarea:focus + .formlabel,
    textarea:valid + .formlabel{
      display: none;
    }
    
    .footer-action-newsletter-button{
        width: 100%;
        height: fit-content;
        margin: auto 0;
        margin-top: var(--margin-sm);
        cursor: pointer;
        background-color: var(--primary-color-light-10);
        padding: 8px 30px;
    
        display: flex;
        justify-content: center;
        align-items: center;
    
        user-select: none;
        transition: background-color 0.2s ease;
    }
    
    .footer-action-newsletter-button:hover{
        background-color: var(--primary-color);
    }
    
    .footer-action-newsletter-button:active{
        background-color: var(--primary-color-dark-10);
    }
    
    .footer-action-newsletter-button h3{
        color: white;
        font-family: var(--main-font);
        font-size: var(--margin-s);
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 0.5px;
    }
    
    #status-message{
        display: none;
        color: lime;
        margin-top: 5px;
        font-size: var(--margin-s);
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }
    
    .prescribed-container{
        width: 100%;
        background-color: #333333;
    }
    
    .prescribed-items{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 50px;
        padding: 3px 0;
    }
    
    .prescribed-item a{
        text-decoration: none;
        color: white;
        font-family: var(--main-font);
        font-weight: 300;
        font-size: calc(var(--margin-xs) + 0.1rem);
    }
    
    .prescribed-item a:hover{
        text-decoration: underline;
    }
    
    .prescribed-item p{
        user-select: none;
        cursor: default;
        color: white;
        font-family: var(--main-font);
        font-weight: 300;
        font-size: calc(var(--margin-xs) + 0.1rem);
    }
}
*/
@media screen and (max-width: 1300px){
    .footer-container{
        margin: 0 auto;
        background-color: #444444;
        padding: 5rem 0;
        width: 100%;
        max-width: 2600px;
    }
    
    .footer-items-container{
        margin: 0 auto;
        width: min(1680px, 80%);
        display: grid;
        justify-content: center;
        grid-template-columns: 25% 25% 25% 25%;
    }
    
    .footer-company-info-div{
        width: 100%;
    }
    
    .footer-company-logo{
        width: 150px;
        margin-bottom: 20px;
    }
    
    .footer-company-info{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-company-info h3{
        font-size: calc(var(--margin-s) + 0.1rem);
    }
    
    .footer-company-info-socials{
        display: flex;
        flex-direction: row;
        margin-top: 20px;
    }
    
    .footer-company-info-socials a{
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20%;
        background-color: whitesmoke;
    
        z-index: 20;
        transition: all ease 0.3s;
    }
    
    .footer-company-info-socials a:hover{
        transform: scale(1.2);
    }
    
    .footer-social-links-icon{
        height: 26px;
        padding: 5px;
    }
    
    
    .footer-navigation-div{
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }
    
    .footer-navigation-items{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-navigation-div h2{
        font-size: calc(var(--margin-s) + 0.1rem);
        margin-bottom: 10px;
    }
    
    .footer-navigation-div a {
        font-size: calc(var(--margin-s) + 0.1rem);
    }
    
    .footer-navigation-div a::after {
        bottom: -4px; 
        height: 1.5px; 
    }
    
    .footer-navigation-div a:hover::after {
        width: 100%;
    }
    
    
    .footer-services-div{
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }
    
    .footer-services-items{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-services-div h2{
        font-size: calc(var(--margin-s) + 0.1rem);
        margin-bottom: 10px;
    }
    
    .footer-services-div a {
        font-size: calc(var(--margin-s) + 0.1rem);
    }
    
    .footer-services-div a::after {
        bottom: -4px; 
        height: 1.5px; 
    }
    
    .footer-services-div a:hover::after {
        width: 100%;
    }
    
    
    .footer-action-div{
        width: 100%;
        border-left: solid 2px #666666;
        padding-left: 20px;
    
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .footer-action-items{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .footer-action-affiliate-div{
        position: relative;
        display: flex;
        flex-direction: column;
    
        border-bottom: solid 2px #666666;
        padding-bottom: var(--margin-xm);
    }
    
    .footer-action-affiliate-title{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .footer-action-affiliate-title h2{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-s);
        font-weight: 500;
        padding-bottom: var(--margin-sm);
    }
    
    .footer-action-affiliate-title h3{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-s);
        font-weight: 300;
    }
    
    .footer-action-affiliate-div a{
        width: 100%;
        height: fit-content;
        text-decoration: none;
        text-align: center;
        padding: 10px 0px;
        background-color: var(--primary-color-light-10);
        transition: background-color 0.2s ease;
        margin-top: var(--margin-s);
    }
    
    .footer-action-affiliate-div a:hover{
        background-color: var(--primary-color);
    }
    
    .footer-action-affiliate-div a:active{
        background-color: var(--primary-color-dark-10);
    }
    
    .footer-action-affiliate-div a h3{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-s);
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 0.5px;
    }
    
    
    .footer-action-newsletter-container{
        padding-top: var(--margin-m);
        padding-top: 0; 
    }
    
    .footer-action-newsletter-title{
        font-size: calc(var(--margin-s) + 0.1rem);
        width: 100%;
    }
    
    .footer-action-newsletter-title h2{
        font-size: calc(var(--margin-s));
        padding-bottom: var(--margin-xs);
    }
    
    .footer-action-newsletter-title h3{
        font-size: calc(var(--margin-s));
    }
    
    .footer-action-newsletter-div{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 0px;
    }
    
    .footer-action-newsletter-group{
        margin-right: auto;
        width: 100%;
        background-color: transparent;
        border: solid 2px whitesmoke;
        border-radius: 0;
        position: relative;
    
        transition: background-color 0.3s ease;
    }
    
    .footer-action-newsletter-group:hover{
        background-color: var(--primary-color-light-10);
    }
    
    .footer-action-newsletter-group > 
    .newsletter-input:focus, .newsletter-input:valid{
        background-color: var(--primary-color); 
        color: rgb(255, 255, 255); 
        transition: background-color 0.3s ease; 
      }
    
    .newsletter-icon{
        position: absolute;
        left: 2%;
        top: 50%;
        transform: translateY(-50%);
        height: 18px;
    }
    
    .newsletter-input{
        width: 100%;
        color: #333333;
        background-color: transparent;
        padding: 7px 27px;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: calc(var(--margin-xs) + 0.2rem);
        font-weight: 600;
        letter-spacing: 0.5px;
        border: none;
        left: calc(2.5% + 20px);
        box-sizing: border-box;
    }
    
    .newsletter-input:active{
        border: none;
        outline: none;
    }
    
    .newsletter-input:focus{
        border: none;
        outline: none;
    }
    
    .newsletter-label{
        position: absolute;
        left: calc(2.5% + 20px);
        top: 44%;
        transform: translateY(-50%);
    }
    
    .newsletter-label span{
        font-size: calc(var(--margin-xs) + 0.2rem);
    }
    
    .newsletter-input:focus,
    input:valid,
    textarea:focus,
    textarea:valid {
      outline: none;
    }
    
    .newsletter-input:focus + .newsletter-label,
    .newsletter-input:valid + .newsletter-label,
    textarea:focus + .formlabel,
    textarea:valid + .formlabel{
      display: none;
    }
    
    .footer-action-newsletter-button{
        width: 100%;
        height: fit-content;
        margin: auto 0;
        margin-top: var(--margin-s);
        cursor: pointer;
        background-color: var(--primary-color-light-10);
        padding: 6px 0px;
    
        display: flex;
        justify-content: center;
        align-items: center;
    
        user-select: none;
        transition: background-color 0.2s ease;
    }
    
    .footer-action-newsletter-button:hover{
        background-color: var(--primary-color);
    }
    
    .footer-action-newsletter-button:active{
        background-color: var(--primary-color-dark-10);
    }
    
    .footer-action-newsletter-button h3{
        font-size: calc(var(--margin-xs) + 0.15rem);
    }
    
    #status-message{
        display: none;
        color: lime;
        margin-top: 5px;
        font-size: calc(var(--margin-xs) + 0.15rem);
    
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }
    
    .prescribed-container{
        width: 100%;
        background-color: #333333;
    }
    
    .prescribed-items{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        padding: 5px 0;
    }
    
    .prescribed-item a{
        font-weight: 300;
        font-size: 10px;
    }
    
    .prescribed-item a:hover{
        text-decoration: underline;
    }
    
    .prescribed-item p{
        font-weight: 300;
        font-size: 10px;
    }
}

@media screen and (max-width: 1100px){
    .footer-container{
        margin: 0 auto;
        background-color: #444444;
        padding: 5rem 0;
        width: 100%;
        max-width: 2600px;
    }
    
    .footer-items-container{
        margin: 0 auto;
        display: grid;
        justify-content: center;
        grid-template-columns: 25% 25% 25% 25%;
    }
    
    .footer-company-info-div{
        width: 100%;
    }
    
    .footer-company-logo{
        width: 150px;
        margin-bottom: 20px;
    }
    
    .footer-company-info{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-company-info h3{
        font-size: calc(var(--margin-s) + 0.1rem);
    }
    
    .footer-company-info-socials{
        display: flex;
        flex-direction: row;
        margin-top: 20px;
    }
    
    .footer-company-info-socials a{
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20%;
        background-color: whitesmoke;
    
        z-index: 20;
        transition: all ease 0.3s;
    }
    
    .footer-company-info-socials a:hover{
        transform: scale(1.2);
    }
    
    .footer-social-links-icon{
        height: 26px;
        padding: 5px;
    }
    
    
    .footer-navigation-div{
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }
    
    .footer-navigation-items{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-navigation-div h2{
        font-size: calc(var(--margin-s) + 0.1rem);
    }
    
    .footer-navigation-div a {
        font-size: calc(var(--margin-s) + 0.1rem);
    }
    
    .footer-navigation-div a::after {
        bottom: -4px; 
    }
    
    .footer-navigation-div a:hover::after {
        width: 100%;
    }
    
    
    .footer-services-div{
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }
    
    .footer-services-items{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-services-div h2{
        font-size: calc(var(--margin-s) + 0.1rem);
    }
    
    .footer-services-div a {
        font-size: calc(var(--margin-s) + 0.1rem);
    }
    
    .footer-services-div a::after {
        bottom: -4px; 
    }
    
    .footer-services-div a:hover::after {
        width: 100%;
    }
    
    
    .footer-action-div{
        width: 100%;
        border-left: solid 2px #666666;
        padding-left: 20px;
    
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .footer-action-items{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .footer-action-affiliate-div{
        position: relative;
        display: flex;
        flex-direction: column;
    
        border-bottom: solid 2px #666666;
        padding-bottom: var(--margin-xm);
    }
    
    .footer-action-affiliate-title{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .footer-action-affiliate-title h2{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-s);
        font-weight: 500;
        padding-bottom: var(--margin-sm);
    }
    
    .footer-action-affiliate-title h3{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-s);
        font-weight: 300;
    }
    
    .footer-action-affiliate-div a{
        width: 100%;
        height: fit-content;
        text-decoration: none;
        text-align: center;
        padding: 10px 0px;
        background-color: var(--primary-color-light-10);
        transition: background-color 0.2s ease;
        margin-top: var(--margin-s);
    }
    
    .footer-action-affiliate-div a:hover{
        background-color: var(--primary-color);
    }
    
    .footer-action-affiliate-div a:active{
        background-color: var(--primary-color-dark-10);
    }
    
    .footer-action-affiliate-div a h3{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-s);
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 0.5px;
    }
    
    
    .footer-action-newsletter-container{
        padding-top: var(--margin-m);
        padding-top: 0; 
    }
    
    .footer-action-newsletter-title{
        font-size: calc(var(--margin-s) + 0.1rem);
        width: 100%;
    }
    
    .footer-action-newsletter-title h2{
        font-size: calc(var(--margin-s));
        padding-bottom: var(--margin-xs);
    }
    
    .footer-action-newsletter-title h3{
        font-size: calc(var(--margin-s));
    }
    
    .footer-action-newsletter-div{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 0px;
    }
    
    .footer-action-newsletter-group{
        margin-right: auto;
        width: 100%;
        background-color: transparent;
        border: solid 2px whitesmoke;
        border-radius: 0;
        position: relative;
    
        transition: background-color 0.3s ease;
    }
    
    .footer-action-newsletter-group:hover{
        background-color: var(--primary-color-light-10);
    }
    
    .footer-action-newsletter-group > 
    .newsletter-input:focus, .newsletter-input:valid{
        background-color: var(--primary-color); 
        color: rgb(255, 255, 255); 
        transition: background-color 0.3s ease; 
      }
    
    .newsletter-icon{
        position: absolute;
        left: 2%;
        top: 50%;
        transform: translateY(-50%);
        height: 18px;
    }
    
    .newsletter-input{
        width: 100%;
        color: #333333;
        background-color: transparent;
        padding: 7px 27px;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: calc(var(--margin-xs) + 0.2rem);
        font-weight: 600;
        letter-spacing: 0.5px;
        border: none;
        left: calc(2.5% + 20px);
        box-sizing: border-box;
    }
    
    .newsletter-input:active{
        border: none;
        outline: none;
    }
    
    .newsletter-input:focus{
        border: none;
        outline: none;
    }
    
    .newsletter-label{
        position: absolute;
        left: calc(2.5% + 20px);
        top: 44%;
        transform: translateY(-50%);
    }
    
    .newsletter-label span{
        user-select: none;
        font-size: calc(var(--margin-xs) + 0.2rem);
    }
    
    .newsletter-input:focus,
    input:valid,
    textarea:focus,
    textarea:valid {
      outline: none;
    }
    
    .newsletter-input:focus + .newsletter-label,
    .newsletter-input:valid + .newsletter-label,
    textarea:focus + .formlabel,
    textarea:valid + .formlabel{
      display: none;
    }
    
    .footer-action-newsletter-button{
        width: 100%;
        height: fit-content;
        margin: auto 0;
        margin-top: var(--margin-s);
        cursor: pointer;
        background-color: var(--primary-color-light-10);
        padding: 6px 0px;
    
        display: flex;
        justify-content: center;
        align-items: center;
    
        user-select: none;
        transition: background-color 0.2s ease;
    }
    
    .footer-action-newsletter-button:hover{
        background-color: var(--primary-color);
    }
    
    .footer-action-newsletter-button:active{
        background-color: var(--primary-color-dark-10);
    }
    
    .footer-action-newsletter-button h3{
        font-size: calc(var(--margin-xs) + 0.15rem);
    }
    
    #status-message{
        display: none;
        color: lime;
        margin-top: 5px;
        font-size: calc(var(--margin-xs) + 0.15rem);
    
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }
    
    .prescribed-container{
        width: 100%;
        background-color: #333333;
    }
    
    .prescribed-items{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        padding: 5px 0;
    }
    
    .prescribed-item a{
        
    }
    
    .prescribed-item a:hover{
        text-decoration: underline;
    }
    
    .prescribed-item p{
        
    }
}

@media screen and (max-width: 800px){    
    .footer-container{
        background-color: #444444;
        padding: 5rem 0;
    }
    
    .footer-items-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: auto auto auto; 
        gap: 20px; 
        margin: 0 auto;
        padding: 20px; 
        width: 95%;
    }
    
    .footer-navigation-div {
        grid-column: 1 / 2; 
        grid-row: 1; 
        margin-bottom: 0; 
        padding-left: 0vw;
        padding-bottom: 2vh;
    }
    
    .footer-services-div {
        grid-column: 1 / 2; 
        grid-row: 2; 
        padding-left: 0vw;
    }
    
    .footer-action-div {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        display: flex;
        flex-direction: column;
        justify-content: space-between; 
        border-left: none;
        width: 100%;
    }
    
    .footer-company-info-div{
        grid-column: 1 / 3; 
        grid-row: 3; 
        text-align: start;
        display: flex;
        flex-direction: row;
        justify-content: space-between;

        margin-top: 3vh;
        border-top: solid 2px #666666;
        border-left: none;
        padding-top: 5vh;
    }

    .footer-company-info-texts{
        width: fit-content;
        margin: 0;
    }

    .footer-company-info-texts{
        width: 50%;
    }
    
    .footer-company-logo{
        width: 200px;
        margin-bottom: 30px;
    }
    
    .footer-company-info{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-company-info h3{
        font-size: var(--margin-xm);
    }

    .footer-company-info-socials{
        margin-top: 2vh;
    }

    .footer-company-info-socials a{
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20%;
        padding: 3px;

        z-index: 20;
        transition: all ease 0.3s;
    }

    .footer-social-links-icon{
        height: 35px;
    }
    
    .footer-navigation-div{
        width: 100%;
        display: flex;
        justify-content: flex-start;
        border: none;
    }
    
    .footer-navigation-items{
        display: flex;
        flex-direction: column;
        margin: 0;
        gap: 20px;
    }
    
    .footer-navigation-div h2{
        font-size: var(--margin-xm);
    
        margin-bottom: 10px;
    }
    
    .footer-navigation-div a {
        font-size: var(--margin-xm);
    }
    
    .footer-navigation-div a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -7px; 
        width: 0;
        height: 2px; 
        transition: width 0.3s ease; 
    }
    
    .footer-navigation-div a:hover::after {
        width: 100%;
    }
    
    
    .footer-services-div{
        display: flex;
        justify-content: flex-start;
        border: none;
    }
    
    .footer-services-items{
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0;
    }
    
    .footer-services-div h2{
        font-size: var(--margin-xm);
    
        margin-bottom: 10px;
    }
    
    .footer-services-div a {
        font-size: var(--margin-xm);
    }
    
    .footer-services-div a::after {
        bottom: -7px; 
        height: 2px; 
    }
    
    .footer-services-div a:hover::after {
        width: 100%;
    }
    
    
    .footer-action-div{
        width: 100%;
        padding: 0px;
        border: none
    }
    
    .footer-action-items{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 99%;
        padding-left: 0vw;
    }
    
    .footer-action-affiliate-div{
        position: relative;
        display: flex;
        flex-direction: column;
        gap: var(--margin-xm);
    
        flex: 0 1 auto; 
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-action-affiliate-title{
        display: flex;
        flex-direction: column;
    }
    
    .footer-action-affiliate-title h2{
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-m);
        font-weight: 500;
        margin-bottom: var(--margin-xs);
    }
    
    .footer-action-affiliate-title h3{
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: calc(var(--margin-sm) + 0.1rem);
        font-weight: 300;
    }
    
    .footer-action-affiliate-div a{
        margin-top: 0;
        margin-left: 0;
        width: 100%;
        height: fit-content;
        text-decoration: none;
        text-align: center;
        padding: 10px 0px;
    }
    
    .footer-action-affiliate-div a:hover{
        background-color: var(--primary-color);
    }

    .footer-action-affiliate-div a:active{
        background-color: var(--primary-color-dark-10);
    }
    
    .footer-action-affiliate-div a h3{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 15px;
        font-weight: 500;
        text-transform: capitalize;
    }
    
    
    .footer-action-newsletter-container{
        padding-top: 0;
        display: flex;
        flex-direction: column;
    }
    
    .footer-action-newsletter-title{
        margin-bottom: 10px;
    }
    
    .footer-action-newsletter-title h2{
        width: 90%;
        font-size: var(--margin-m);
        margin-bottom: var(--margin-s);
        padding-bottom: 0;
    }
    
    .footer-action-newsletter-title h3{
        font-size: calc(var(--margin-sm) + 0.1rem);
        margin-bottom: var(--margin-xs);
    }
    
    .footer-action-newsletter-div{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .footer-action-newsletter-group{
        width: 100%;
        background-color: transparent;
        border: solid 3px whitesmoke;
        border-radius: 0;
        position: relative;
    
        transition: background-color 0.3s ease;
    }
    
    .footer-action-newsletter-group:hover{
        background-color: rgba(var(--primary-color-r), var(--primary-color-g), var(--primary-color-b), 0.5);
    }
    
    .footer-action-newsletter-group > 
    .newsletter-input:focus, .newsletter-input:valid{
        background-color: var(--primary-color); 
        color: rgb(255, 255, 255); 
        transition: background-color 0.3s ease; 
      }
    
    .newsletter-icon{
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        height: 25px;
    }
    
    .newsletter-input{
        width: 100%;
        color: #333333;
        background-color: transparent;
        height: 40px;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-sm);
        font-weight: 600;
        letter-spacing: 1px;
        border: none;
    
        padding-left: 40px;
    }
    
    .newsletter-input:active{
        border: none;
        outline: none;
    }
    
    .newsletter-input:focus{
        border: none;
        outline: none;
    }
    
    .newsletter-label{
        position: absolute;
        left: 40px;
        top: 44%;
        transform: translateY(-50%);
    }
    
    .newsletter-label span{
        font-size: var(--margin-sm);
    }
    
    .newsletter-input:focus,
    input:valid,
    textarea:focus,
    textarea:valid {
      outline: none;
    }
    
    .newsletter-input:focus + .newsletter-label,
    .newsletter-input:valid + .newsletter-label,
    textarea:focus + .formlabel,
    textarea:valid + .formlabel{
      display: none;
    }
    
    .footer-action-newsletter-button{
        width: 100%;
        height: fit-content;
        margin: auto 0;
        margin-top: var(--margin-l);
        cursor: pointer;
        padding: 10px 0px;
    
        display: flex;
        justify-content: center;
        align-items: center;
    
        user-select: none;
    }

    .footer-action-newsletter-button:hover{
        background-color: var(--primary-color);
    }
    
    .footer-action-newsletter-button:active{
        background-color: var(--primary-color-dark-10);
    }
    
    
    .footer-action-newsletter-button h3{
        font-size: 16px;
    }
    
    #status-message{
        display: none;
        color: lime;
        margin-top: 5px;
        font-size: var(--margin-m);
    
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }
    
    .prescribed-container{
        width: 100%;
        background-color: #333333;
    }
    
    .prescribed-items{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 50px;
        padding: 5px 0;
    }
    
    .prescribed-item a{
        font-size: var(--margin-s);
    }
    
    .prescribed-item a:hover{
        text-decoration: underline;
    }
    
    .prescribed-item p{
        font-size: var(--margin-s);
    }
}

@media screen and (max-width: 599px){
    
    .footer-container{
        background-color: #444444;
        padding: 2rem 0;
        padding-bottom: 0;
    }

    .footer-items-container{
        margin: 0 auto;
        padding: 0;
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 5vh;
        justify-content: center;
    }

    .footer-company-info-div{
        width: 100%;
        order: 4;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        margin-top: 0vh;
        border-top: solid 2px #666666;
        padding-top: 5vh;
        padding-bottom: 4vh;
    }

    .footer-company-info-texts{
        width: 90%;
        max-width: 220px;
    }

    .footer-company-logo{
        width: 100%;
        margin-bottom: 20px;
        margin-top: 0;
    }

    .footer-company-info{
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-company-info h3{
        font-size: var(--margin-xm);
    }

    .footer-company-info-socials{
        margin-top: 2vh;
    }

    .footer-company-info-socials a{
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20%;
        padding: 3px;
        margin: 0 auto;

        z-index: 20;
        transition: all ease 0.3s;
    }

    .footer-social-links-icon{
        height: 30px;
    }

    
    .footer-navigation-div{
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .footer-navigation-items{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-navigation-div h2{
        font-size: var(--margin-xm);

        margin-bottom: 10px;
    }

    .footer-navigation-div a {
        font-size: var(--margin-xm);
    }

    .footer-navigation-div a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -7px; 
        width: 0;
        height: 2px; 
        transition: width 0.3s ease; 
    }

    .footer-navigation-div a:hover::after {
        width: 100%;
    }


    .footer-services-div{
        display: flex;
        justify-content: flex-start;
        margin: 0;
    }

    .footer-services-items{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
        margin: 0;
        margin-bottom: 2.8vh;
    }

    .footer-services-div h2{
        font-size: var(--margin-xm);
    }

    .footer-services-div a {
        font-size: var(--margin-xm);
    }

    .footer-services-div a::after {
        bottom: -7px; 
        height: 2px; 
    }

    .footer-services-div a:hover::after {
        width: 100%;
    }


    .footer-action-div{
        width: 100%;
        border-left: none;
        padding: 0px;

        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .footer-action-items{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .footer-action-affiliate-div{
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 8px;

        border-bottom: none;
        padding-bottom: 7vh;
    }

    .footer-action-affiliate-title{
        display: flex;
        flex-direction: column;
    }

    .footer-action-affiliate-title h2{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 17px;
        font-weight: 500;
        padding-bottom: 5px;
    }

    .footer-action-affiliate-title h3{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 16px;
        font-weight: 300;
        padding-bottom: 10px;
    }

    .footer-action-affiliate-div a{
        margin-top: auto;
        margin-left: auto;
        height: fit-content;
        text-decoration: none;
        padding: 12px 8px;
    }

    .footer-action-affiliate-div a:hover{
        background-color: var(--primary-color);
    }

    .footer-action-affiliate-div a:active{
        background-color: var(--primary-color-dark-10);
    }

    .footer-action-affiliate-div a h3{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 15px;
        font-weight: 500;
        text-transform: capitalize;
    }


    
    .footer-action-newsletter-container{
        padding-top: 15px;
    }

    .footer-action-newsletter-title{
        margin-bottom: 0px;
    }

    .footer-action-newsletter-title h2{
        font-size: calc(var(--margin-m));
        margin-bottom: 8px;
    }

    .footer-action-newsletter-title h3{
        font-size: calc(var(--margin-m));
    }

    .footer-action-newsletter-div{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 5px;
    }

    .footer-action-newsletter-group{
        margin-right: auto;
        width: 100%;
        background-color: transparent;
        border: solid 2px whitesmoke;
        border-radius: 0;
        position: relative;

        transition: background-color 0.3s ease;
    }

    .footer-action-newsletter-group:hover{
        background-color: rgba(var(--primary-color-r), var(--primary-color-g), var(--primary-color-b), 0.5);
    }

    .footer-action-newsletter-group > 
    .newsletter-input:focus, .newsletter-input:valid{
        background-color: var(--primary-color); 
        color: rgb(255, 255, 255); 
        transition: background-color 0.3s ease; 
    }

    .newsletter-icon{
        position: absolute;
        left: 2.5%;
        top: 50%;
        transform: translateY(-50%);
        height: 25px;
    }

    .newsletter-input{
        width: 100%;
        color: #333333;
        background-color: transparent;
        height: 42px;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: calc(var(--margin-m));
        font-weight: 500;
        border: none;

        padding-left: calc(5% + 22px);
    }

    .newsletter-input:active{
        border: none;
        outline: none;
    }

    .newsletter-input:focus{
        border: none;
        outline: none;
    }

    .newsletter-label{
        position: absolute;
        left: calc(5% + 22px);
        top: 44%;
        transform: translateY(-50%);
    }

    .newsletter-label span{
        font-size: var(--margin-m);
    }

    .newsletter-input:focus,
    input:valid,
    textarea:focus,
    textarea:valid {
        outline: none;
    }

    .newsletter-input:focus + .newsletter-label,
    .newsletter-input:valid + .newsletter-label,
    textarea:focus + .formlabel,
    textarea:valid + .formlabel{
        color: white;
        background-color: var(--primary-color);
        transform: translateY(-78%) scale(1);
        z-index: 1;
        top: 157%;
        left: 75.2%;

        border-radius: 0px 0px 5px 5px;
        padding-right: 5px;
        padding-left: 5px;
        padding-top: 2px;
        padding-bottom: 5px;
        border: solid 2px white;
        border-top: none;
    }

    .footer-action-newsletter-button{
        cursor: pointer;
        padding: 10px 30px;
        margin-top: 15px;

        display: flex;
        justify-content: center;
        align-items: center;

        user-select: none;
    }

    .footer-action-newsletter-button:hover{
        background-color: var(--primary-color);
    }
    
    .footer-action-newsletter-button:active{
        background-color: var(--primary-color-dark-10);
    }

    .footer-action-newsletter-button h3{
        font-size: calc(var(--margin-sm) + 0.05rem);
    }

    #status-message{
        display: none;
        color: lime;
        margin-top: 5px;

        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .prescribed-container{
        width: 100%;
        background-color: #333333;
    }

    .prescribed-items{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 8vw;
        padding: 5px 0;
    }

    .prescribed-item a{
        font-size: var(--margin-s);
    }

    .prescribed-item a:hover{
        text-decoration: underline;
    }

    .prescribed-item p{
        font-size: var(--margin-s);
    }
}

/*
@media screen and (max-width: 375px){
    
    .footer-container{
        background-color: #444444;
        padding: 4rem 0;
        padding-bottom: 0;
    }

    .footer-items-container{
        margin: 0 auto;
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 5vh;
        justify-content: center;
    }

    .footer-company-info-div{
        width: 100%;
        order: 4;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        margin-top: 0vh;
        border-top: solid 2px #666666;
        padding-top: 5vh;
        padding-bottom: 4vh;
    }

    .footer-company-info-texts{
        width: 90%;
        text-align: center;
    }

    .footer-company-logo{
        width: 150px;
        margin-bottom: 10%;
        margin-top: 0;
    }

    .footer-company-info{
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-company-info h3{
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 500;
        font-size: var(--margin-s);
        color: whitesmoke;
    }

    .footer-company-info-socials{
        margin-top: 7%;
    }

    .footer-company-info-socials a{
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20%;

        z-index: 20;
        transition: all ease 0.3s;
    }

    .footer-social-links-icon{
        height: 20px;
        padding: 10%;
    }

    
    .footer-navigation-div{
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .footer-navigation-items{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-navigation-div h2{
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 500;
        font-size: calc(var(--margin-s) + 0.05rem);

        margin-bottom: 20px;

        width: fit-content;
        padding-bottom: 5px;
    }

    .footer-navigation-div a {
        text-decoration: none;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 400;
        font-size: calc(var(--margin-s) + 0.05rem);
        width: fit-content;
        position: relative; 
    }

    .footer-navigation-div a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -7px; 
        width: 0;
        height: 2px; 
        transition: width 0.3s ease; 
    }

    .footer-navigation-div a:hover::after {
        width: 100%;
    }


    .footer-services-div{
        display: flex;
        justify-content: flex-start;
        margin: 0;
    }

    .footer-services-items{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
        margin: 0;
        margin-bottom: 2.8vh;
    }

    .footer-services-div h2{
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 500;
        font-size: calc(var(--margin-s) + 0.05rem);
        color: whitesmoke;

        margin-bottom: 20px;

        width: fit-content;
        padding-bottom: 5px;
    }

    .footer-services-div a {
        text-decoration: none;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 400;
        font-size: calc(var(--margin-s) + 0.05rem);
        color: whitesmoke;
        width: fit-content;
        position: relative; 
    }

    .footer-services-div a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -7px; 
        width: 0;
        height: 2px; 
        transition: width 0.3s ease; 
    }

    .footer-services-div a:hover::after {
        width: 100%;
    }


    .footer-action-div{
        width: 100%;
        border-left: none;
        padding-left: 0px;

        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .footer-action-items{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .footer-action-affiliate-div{
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 8px;

        border-bottom: none;
        padding-bottom: 7vh;
    }

    .footer-action-affiliate-title{
        display: flex;
        flex-direction: column;
    }

    .footer-action-affiliate-title h2{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-m);
        font-weight: 500;
        padding-bottom: 0px;
    }

    .footer-action-affiliate-title h3{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: calc(var(--margin-sm));
        font-weight: 300;
        padding-bottom: 6px;
    }

    .footer-action-affiliate-div a{
        margin-top: auto;
        margin-left: auto;
        height: fit-content;
        text-decoration: none;
        padding: 10px 8px;
    }

    .footer-action-affiliate-div a:hover{
        background-color: var(--primary-color);
    }

    .footer-action-affiliate-div a:active{
        background-color: var(--primary-color-dark-10);
    }

    .footer-action-affiliate-div a h3{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: var(--margin-sm);
        font-weight: 500;
        text-transform: capitalize;
    }


    
    .footer-action-newsletter-container{
        padding-top: 15px;
    }

    .footer-action-newsletter-title{
        margin-bottom: 0px;
    }

    .footer-action-newsletter-title h2{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: calc(var(--margin-s));
        font-weight: 500;
        padding-bottom: 0px;
        margin-bottom: 5px;
    }

    .footer-action-newsletter-title h3{
        color: white;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: calc(var(--margin-s));
        font-weight: 300;
    }

    .footer-action-newsletter-div{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 2px;
    }

    .footer-action-newsletter-group{
        margin-right: auto;
        width: 100%;
        background-color: transparent;
        border: solid 2px whitesmoke;
        border-radius: 0;
        position: relative;

        transition: background-color 0.3s ease;
    }

    .footer-action-newsletter-group:hover{
        background-color: rgba(var(--primary-color-r), var(--primary-color-g), var(--primary-color-b), 0.5);
    }

    .footer-action-newsletter-group > 
    .newsletter-input:focus, .newsletter-input:valid{
        background-color: var(--primary-color); 
        color: rgb(255, 255, 255); 
        transition: background-color 0.3s ease; 
    }

    .newsletter-icon{
        position: absolute;
        left: 2.5%;
        top: 50%;
        transform: translateY(-50%);
        height: 18px;
    }

    .newsletter-input{
        width: 100%;
        color: #333333;
        background-color: transparent;
        height: 30px;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: calc(var(--margin-xs) + 0.15rem);
        border: none;
        letter-spacing: 0.2px;

        padding-left: 30px;
    }

    .newsletter-input:active{
        border: none;
        outline: none;
    }

    .newsletter-input:focus{
        border: none;
        outline: none;
    }

    .newsletter-label{
        position: absolute;
        left: 10.5%;
        top: 48%;
        transform: translateY(-50%);

        font-weight: 600;
        color: #ffffff;

        cursor: text;
        user-select: none;

        transition: all 0.15s ease-out;
    }

    .newsletter-label span{
        font-family: var(--main-font);
        font-weight: 500;
        font-size: calc(var(--margin-xs) + 0.15rem);
        letter-spacing: 0.5px;
    }

    .newsletter-input:focus,
    input:valid,
    textarea:focus,
    textarea:valid {
        outline: none;
    }

    .newsletter-input:focus + .newsletter-label,
    .newsletter-input:valid + .newsletter-label,
    textarea:focus + .formlabel,
    textarea:valid + .formlabel{
        color: white;
        background-color: var(--primary-color);
        transform: translateY(-78%) scale(1);
        z-index: 1;
        top: 157%;
        left: 75.2%;

        border-radius: 0px 0px 5px 5px;
        padding-right: 5px;
        padding-left: 5px;
        padding-top: 2px;
        padding-bottom: 5px;
        border: solid 2px white;
        border-top: none;
    }

    .footer-action-newsletter-button{
        cursor: pointer;
        padding: 6px 8px;
        margin-top: 12px;

        display: flex;
        justify-content: center;
        align-items: center;

        user-select: none;
    }

    .footer-action-newsletter-button:hover{
        background-color: var(--primary-color);
    }
    
    .footer-action-newsletter-button:active{
        background-color: var(--primary-color-dark-10);
    }

    .footer-action-newsletter-button h3{
        color: white;
        font-family: var(--main-font);
        font-size: calc(var(--margin-xs) + 0.2rem);
        font-weight: 500;
        text-transform: capitalize;
    }

    #status-message{
        display: none;
        color: lime;
        margin-top: 4px;
        font-size: calc(var(--margin-xs) + 0.1rem);
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .prescribed-container{
        width: 100%;
        background-color: #333333;
    }

    .prescribed-items{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 8vw;
        padding: 5px 0;
    }

    .prescribed-item a{
        text-decoration: none;
        color: white;
        font-family: var(--main-font);
        font-weight: 300;
        font-size: calc(var(--margin-xs));
    }

    .prescribed-item a:hover{
        text-decoration: underline;
    }

    .prescribed-item p{
        user-select: none;
        cursor: default;
        color: white;
        font-family: var(--main-font);
        font-weight: 300;
        font-size: calc(var(--margin-xs));
    }
}*/