*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ============= COLORS -- Typoraphy ============= */
    --primary-color:rgb(240, 88, 34);
    --secondary-color: #6C757D;
    --text-color: rgba(35, 31, 32);
    --body-bg-color: rgb(243, 244, 244);
    --box-bg-color: rgba(255, 255, 255);

    /* ============ COLORS -- Cta ================== */
    --first-class-cta-bg:rgb(241, 238, 238);
    --second-class-cta-bg:rgb(240, 88, 34);
    --third-class-cta-bg:rgb(253, 188, 18);
    --fourth-class-cta-bg:rgb(7, 6, 6);
    --fifth-class-cta-bg:transparent;

   /* ============= Typography ============= */
    --primary-font: "Playfair Display", serif;
    --secondary-font: "Slabo 27px", serif;
}

body{
    font-family: sans-serif;
    background-color: var(--body-bg-color);
    
}

/* ======================= FOOTER =============================== */
footer{
    padding-left: 20px;
    padding-right: 70px;
    overflow: hidden;
}

.footer-content{
    padding-left: 20px;
    margin-bottom: 30px;
}

.footer-content-overall{
    padding-left: 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px
}

.image-footer-logo{
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.footer-content-info{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer-content-info-description{
    display: flex;
}

.footer-content-info-sections{
    width: 100%;
}

.footer-content-heading{
    font-size: xx-large;
    width: 300px;
    margin-bottom: 20px;
    font-family:  var(--primary-font);
    font-weight: bolder;
}

.footer-content-links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-content-links a{
    text-decoration: none;
    font-size: large;
    color: black;
}



.footer-content-legal{
    text-align: center;
    margin: 20px;
    font-size: larger;
    margin-left: 200px;
}