@charset "UTF-8";

/* ===================================
    home-second-about
===================================== */
section.home-second-about {
    margin: 10rem 0 10rem 0;
}
    @media (max-width: 575px) {
        section.home-second-about {
            margin: 10rem 0 10rem 0;
        }
    }
    @media (min-width: 576px) {
        section.home-second-about {
            margin: 10rem 0 10rem 0;
        }
    }
    @media (min-width: 768px) {
        section.home-second-about {
            margin: 10rem 0 10rem 0;
        }
    }
    @media (min-width: 992px) {
        section.home-second-about {
            margin: 10rem 0 10rem 0;
        }
    }

section.home-second-about .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    text-align: center;
    gap: 20px;
}
    @media (max-width: 575px) {
        section.home-second-about .content {
            gap: 10px;
        }
    }
    @media (min-width: 576px) {
        section.home-second-about .content {
            gap: 12px;
        }
    }
    @media (min-width: 768px) {
        section.home-second-about .content {
            gap: 15px;
        }
    }
    @media (min-width: 1200px) {
        section.home-second-about .content {
            gap: 20px;
        }
    }

section.home-second-about .content .title h1 {
    text-align: center;
    font-family: 'Gilmer-Bold';
}
[data-bs-theme="dark"] section.home-second-about .content .title h1 {
    color: var(--glam-light)
}
[data-bs-theme="light"] section.home-second-about .content .title h1 {
    color: var(--glam-black)
}

section.home-second-about .content .description p {
    font-family: 'Gilmer-Regular';
    font-size: 1.75rem;
    line-height: 2.375rem;
}
section.home-second-about .content .description p:last-child {
    margin-bottom: 0;
}
[data-bs-theme="dark"] section.home-second-about .content .description p {
    color: var(--glam-light);
}
[data-bs-theme="light"] section.home-second-about .content .description p {
    color: var(--glam-black);
}
    @media (max-width: 575px) {
        section.home-second-about .content .description p {
            font-size: 1.125rem;
            line-height: 1.75rem;
        }
    }
    @media (min-width: 576px) {
        section.home-second-about .content .description p {
            font-size: 1.25rem;
            line-height: 1.875rem;
        }
    }
    @media (min-width: 768px) {
        section.home-second-about .content .description p {
            font-size: 1.5rem;
            line-height: 2.125rem;
        }
    }
    @media (min-width: 992px) {
        section.home-second-about .content .description p {
            font-size: 1.625rem;
            line-height: 2.25rem;
        }
    }
    @media (min-width: 1200px) {
        section.home-second-about .content .description p {
            font-size: 1.75rem;
            line-height: 2.375rem;
        }
    }



section.home-second-about .direction-button {
    margin: 5rem 0 0 0;
    text-align: center;
}
section.home-second-about .direction-button .link a {
    font-family: 'Gilmer-Medium';
    position: relative;
    font-size: 20px;
    line-height: 20px;
    padding-bottom: .5rem;
}
[data-bs-theme="dark"] section.home-second-about .direction-button .link a {
    color: #fff;
    border-bottom: 1px solid var(--glam-gray-5);
}
[data-bs-theme="light"] section.home-second-about .direction-button .link a {
    color: #000;
    border-bottom: 1px solid var(--glam-gray-3);
}
section.home-second-about .direction-button .link a i {
    font-size: 20px;
    margin-left: 10px;
}
section.home-second-about .direction-button .link a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    content: '';
    -webkit-transition: 0.5s width ease;
    transition: 0.5s width ease;
}
[data-bs-theme="dark"] section.home-second-about .direction-button .link a::after {
    background-color: #fff;
}
[data-bs-theme="light"] section.home-second-about .direction-button .link a::after {
    background-color: #000;
}
section.home-second-about .direction-button .link a:hover::after {
    width: 100%;
}
