/*Footer design*/

.flex-box{
    display: flex;
    align-items: stretch;
    background-color: #157C75;
    border-top-left-radius: 100px;
    padding: 50px 40px;
    font-size: 10pt;
}

.flex-1{
    margin-left: 100px;
    padding: 30px;
}

.flex-2{
    margin-left: 80px;
    color: #fff;
    width: 300px;
    padding: 30px;

}

.flex-2 > p{
    line-height: 15pt;
}

.vertical-line{
    border-left: solid 2px #fff;
    height: 100px;
    margin-top: 30px;
}

.flex-3{
    padding: 35px;
    text-align: left;
    color: #fff;
}

.flex-3 > a{
    color: #fff;
    text-decoration: none;
    line-height: 25pt;
}

.flex-4{
    color: #fff;
    padding: 30px;
    border-right: solid 3px #fff;
}

.social-icons {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 45px 20px;
}
.social-icons li {
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #157C75; /* Default color, change per brand */
    transition: background-color 0.3s;
}
.social-icons a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
    text-align: left;
}
.social-icons li a:hover {
    color: #EDED88; /* Default Twitter/X color, change per brand */
}

@media (max-width: 768px){
    .flex-box {
        flex-direction: column;
        align-items: center;
        padding: 12px;
        margin: 0;
    }
    .flex-2, .flex-3, .flex-4 {
       display: none; /* Hide these sections on smaller screens */
    }

    .flex-1 {
        margin-left: 0;
        width: 200px;
        text-align: center;
        height: auto;
    }
    .vertical-line {
        display: none; /* Hide vertical line on smaller screens */
    }
    .social-icons {
        justify-content: center;
    }
}