* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    font-family: 'Cairo', sans-serif;
}

header {
    position: relative;
    background-color: white;
}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url("../images/hero-image-news.webp");  
    background-repeat: no-repeat;
    background-size: cover;
    height: 85vh;
    gap: 5%;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(270deg, #222222 0%, rgba(34, 34, 34, 0.33) 100%);
}


a {
    text-decoration: none;
}

.fixed-nav {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 15px 220px;
    width: 100%;
    background-color: white;
    box-shadow: 5px 10px 18px #888888;
    animation: fadeInDown 0.3s ease-in-out;
    z-index: 2;
}

.fixed-nav a {
    color: black;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.initial-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 16px;
    margin: 0 10%;  
}

.initial-nav a {
    color: black;
}

nav {
    height: 97px;
}

nav img {
    width: 150px;
    height: 57px;
}

nav ul {
    padding-left: 0;
}

a:hover {
    color: #ffb200;
}

.initial-ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    color: black;
}

.fixed-ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    color: black;
}

header div {
    position: relative;
}

header div h1 {
    margin-right: 12%;
    font-size: 3rem;
    color: #dbb585;
    z-index: 2;
}

h2 {
    text-align: center;
}

header div h3 {
    margin-right: 12%;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
}

header div h1 span {
    color: white;
    font-size: 2.5rem;
}

.buttons-container {
    display: flex;
    justify-content: flex-start;
    margin: 40px 40px;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(167, 166, 166);
}

.button {
    background-color: transparent;
    color: #dbb585;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 1.17rem;
    font-family: 'Cairo', sans-serif;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button.selected {
    background-color: #0056b3;
    border-radius: 10px;
    color: #fff;
}

.button:hover {
    background-color: #0056b3;
    border-radius: 10px;
    color: #fff;
}


.articles-container-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 50px;
}

.articles-container-header h2 {
    position: relative;
    color: #dbb585;
    margin-bottom: 20px;
}

.articles-container-header > h2::before {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #dbb585;
    border-radius: 20px;
    top: -25px;
    right: 10px;
    position: absolute;
}

.articles-container-header p {
    max-width: 50%;
    text-align: center;
}

.articles-container-header .parent-grid p {
    max-width: 85%;
    text-align: center;
}

.articles-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
    width: 100%;    
    padding: 0 10%;
}

.articles-main article {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 50%;
    min-width: 50%;
}

.articles-main article img {
    height: 70%;
    width: 70%;
    border-radius: 3%;
    margin-bottom: 5%;
}

.articles-main article p {
    text-align: justify;
}

.articles-main article h3 {
    color: #dbb585;
}

.articles-main article p.intro a {
    color: #ffb200;
}

footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6%;
    height: 600px;
    width: 100%;
    background-color: #111f2a;
    margin-top: 5%;
}

footer img {
    width: 100px;
    height: 170px;
}

footer p,
footer p a {
    color: #e6e6e6;
}

footer p a {
    text-decoration: underline;
}

footer ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

footer ul a {
    color: #e6e6e6;
}


footer ul a:nth-child(5) {
    color: #dbb585;
}

footer i {
    margin: 0px 0.5rem;
}

footer p:last-child {
    position: relative;
    font-size: x-small;
}

footer .social-icons {
    padding-bottom: 4%;
    border-bottom: 1px solid gray;
}

.fa-square-whatsapp {
    position: fixed;
    bottom: 5rem;
    left: 2.5rem;
    font-size: 4rem !important;
    z-index: 1;
}