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

:root {
    --font-family: "Raleway", sans-serif;
    --inline-padding: 1rem;

    @media (min-width: 768px) {
        --inline-padding: 1.5rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: #f0f0f0;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: #000;
}

ul {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}

.header {
    position: relative;
    z-index: 100;
    width: 100%;
    background-color: #fff;
}

.hero {
    display: flex;
    justify-content: space-between;
    background-color: #402626;
}

.nav {
    position: relative;
    z-index: 100;
    background-color: #fff;
    padding: 0.75rem var(--inline-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.nav-logo {
    position: relative;
    width: 100px;
    height: 60px;
}

.nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    position: relative;
    display: inline-block;
    background-color: transparent;
    padding: 0.75rem var(--inline-padding);
    border-radius: 0.25rem;
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    &:hover {
        background: linear-gradient(to right, #ffc14d 55%, #e34f4f);
        color: #fff;
        border-color: transparent;
    }
    &:active {
        background-color: #000;
        color: #fff;
        border-color: transparent;
    }
    &:focus {
        outline: none;
        border: 1px solid #000;
        border-color: transparent;
    }
    &:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
}

.ak-sec {
    padding: 3rem var(--inline-padding);
    background-color: #fff;
}

.ak-sec-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1em;

    @media (min-width: 768px) {
        font-size: 3rem;
    }
}

.about-life {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 2.5rem;
    margin-bottom: 3em;

    @media (min-width: 768px) {
        padding: 0 5rem;
    }
}

.content-text {
    font-size: 1.2rem;
}

.sec-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1em;
    text-align: center;

    @media (min-width: 768px) {
        font-size: 2rem;
    }
}

.milestone-items {
    display: grid;
    place-items: center;
    gap: 1.5rem;
}

.milestone-item {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    position: relative;
    padding: 1.5rem 3rem;
    border: 1px solid #dbdbdb;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.milestone-item:nth-child(even) {
    &::before,
    &::after {
        content: "";
        position: absolute;
    }

    @media (min-width: 768px) {
        text-align: right;
        transform: translateX(-52%);

        &::before {
            top: 0;
            right: 0;
            width: 8px;
            height: 120%;
            background-color: #ffa94d;
            transform: translateX(100%);
        }

        &::after {
            top: 0;
            right: 0;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: #ffffff;
            transform: translateX(80%) translateY(-50%);
        }
    }
}

.milestone-item:nth-child(odd) {
    &::before,
    &::after {
        content: "";
        position: absolute;
    }

    @media (min-width: 768px) {
        text-align: left;
        transform: translateX(50%);

        &::before {
            top: 0;
            left: 0;
            width: 8px;
            height: 120%;
            background-color: #ffa94d;
            transform: translateX(-100%);
        }

        &::after {
            top: 0;
            left: 0;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: #ffffff;
            transform: translateX(-80%) translateY(-50%);
        }
    }
}

.milestone-item-title {
    font-size: 1rem;
    font-weight: 700;
}

.footer-content-item-img {
    width: 60%;
}

.footer-content {
    padding: 1.5rem var(--inline-padding);
    background-color: hsla(31, 100%, 65%, 0.8);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
}

.footer-content-items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;

    @media (min-width: 768px) {
        flex-direction: row;
    }
}

.footer-content-item {
    flex: 1;
}

.footer-content-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1em;
}

.footer-content-item-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-content-item-list-item {
    flex: 1;
}

.fa-youtube {
    color: #fe0134;
}

.fa-whatsapp {
    color: #25d366;
}

.fa-facebook {
    color: #0b66ff;
}

.fa-instagram {
    color: #ff1f47;
}

.footer-content-item-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
