.brand_guidelines {
    display: grid;
    grid-gap: 50px;
}
.brand_guidelines h2 {
    text-align: center;
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 18pt;
    color: #323232;
    padding: 0;
    margin: 0;
}
.brand_guidelines h3 {
    text-align: center;
    font-style: italic;
    font-weight: 200;
    font-size: 13pt;
    letter-spacing: 3px;
    border: 0;
    padding: 0;
    margin: 0;
}
/* Logo */
 
.brand_logos {
    display: grid;
    justify-content: center;
    grid-gap: 20px;
}

.brand_logos > div > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 20px;
}
.brand_logos > div > div > div {
    display: grid;
    grid-gap: 10px;
}
.brand_logos p {
    text-align: center;
    font-size: 12pt;
    font-weight: 200;
    letter-spacing: 1px;
}
.brand_logos img {
    width: 220px;
}
/* Download */
div.download_brand_guidelines {
    display: flex;
    margin: auto;
}
/* Colors */

.brand_color_guide {
    display: grid;
    grid-gap: 40px;
}
.color_guide_flex {
    display: grid;
    grid-gap: 10px;
}
.color_guide_flex ul {
    list-style: none;
    display: flex;
    gap: 50px;
    justify-content: center;
    padding: 0;
}
.color_guide_flex ul li {
    padding: 0;
    margin: 0;
    text-align: center;
    display: grid;
    gap: 3px;
}
.color_guide_flex ul li::before {
    content: '';
	display: block;
    width: 100px;
    height: 99px;
    margin: auto;
    border-radius: 47px;
}
.HEX009DCA::before {
    background: #009dca;
}
.HEXFFE07F::before {
    background: #FFE07F;
}
.HEXFAA519::before {
    background: #FAA519;
}
.HEXC53425::before {
    background: #C53425;
}
.HEX7F7F7F::before {
    background: #7F7F7F;
}
.HEX00708e::before {
    background: #00708e;
}
.HEXDFB670::before {
    background: #DFB670;
}
.HEXCD692E::before {
    background: #CF692E;
}
.HEX7C231F::before {
    background: #7C231F;
}
.HEX3C3C3B::before {
    background: #3C3C3B;
}
.HEX839E41::before {
    background: #839E41;
}
.HEX647B38::before {
    background: #647B38;
} 
.color_guide_flex ul li p {
    text-align: center;
    font-size: 10pt;
    font-weight: 300;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}
/* uses */
.brand_uses {
    display: grid;
    grid-gap: 55px;
    background: #eff2f5;
    padding: 30px 110px;
    border-radius: 20px;
}
.logo_uses {
    display: grid;
    grid-gap: 15px;
}
.logo_uses div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
}
.logo_uses img {
    width: 100%;
}

/*  Theme  */

.brand_theme {
    background: #C53425;
    background: url(https://www.lacnic.net/innovaportal/file/6700/1/background_lacnic_guidelines.png) #c32c1b;
    background-repeat: no-repeat;
    background-position: right -4px;
    background-size: 570px;
    border-radius: 20px;
    padding: 20px;
    height: 500px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
}
.brand_theme h2 {
    color: #FFF;
    font-style: italic;
    font-weight: 300;
}
.brand_theme div {
    display: flex;
    margin: auto;
    justify-content: center;
    grid-gap: 20px;
}
 
.brand_theme ul {
    display:grid; 
    grid-gap: 10px;    
    list-style: none;
    padding: 0;
    margin: 0;
}
.brand_theme ul li {
    padding: 0;
    margin: 0;
    text-align: center;
    color: #FFF;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 10pt;
}
.brand_theme img {
    width: 210px;
    text-align: center;
}

@media only screen and (max-width:740px) {
    .color_guide_flex ul li::before { 
        width: 80px;
        height: 79px; 
    }
    .color_guide_flex ul { 
        gap: 10px; 
    }
}

@media only screen and (max-width:650px) {
    .brand_uses { 
        padding: 30px 30px; 
    }
}

@media only screen and (max-width:580px) {
    .color_guide_flex ul {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    .logo_uses div { 
        grid-template-columns: 1fr 1fr; 
    }
    
}

@media only screen and (max-width:520px) {
    .brand_theme ul li { 
        font-size: 9pt;
    }
    .brand_logos img {
        width: 170px;
    }
    .brand_uses { 
        padding: 30px 60px; 
    }

    .color_guide_flex ul { 
        grid-template-columns: 1fr 1fr; 
    } 
}

@media only screen and (max-width:480px) {
    .brand_uses { 
        padding: 30px 20px; 
    }
     
}

@media only screen and (max-width:420px) {
    .brand_theme div {
        display: grid; 
    } 
    .brand_logos > div > div { 
        grid-gap: 0;
        grid-template-columns: 1fr;
    }
    .brand_logos > div > div > div { 
        justify-content: center;
    }
    .download_brand_guidelines a {
        font-size: 11pt;
    }
    

}
 