html {
    font-family: 'poppins', sans-serif;
    font-size: 17px;
}

h1 {
    margin: 5px;
    font-size: 25px;
    font-family: 'poppins-semibold', sans-serif;
}

h2 {
    margin: 5px;
    font-size: 14px;
    font-family: 'poppins', sans-serif;
}

h3 {
    margin: 5px;
    font-size: 20px;
    font-family: 'poppins-semibold', sans-serif;
    background: linear-gradient(to right, #0050FF, #7f3bcf) border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h4 {
    margin-bottom: 0.1em;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: black;
}

p {
    margin: 5px;
}

ul {
    margin: 5px;
}

/* Utility Classes */
.gradient-bg-right {
    background: linear-gradient(to right, #0050FF, #7f3bcf) border-box;
}

.gradient-bg-bottom {
    background: linear-gradient(to bottom, #0050FF, #7f3bcf) border-box;
}

.size-10x50 {
    width: 10px;
    height: 50px;
}

.size-13x13 {
    width: 13px;
    height: 13px;
}

.size-16x16 {
    width: 16px;
    height: 16px;
}

.size-20x20 {
    width: 20px;
    height: 20px;
}

/* Utility Classes - Layout & Spacing */
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-evenly {
    justify-content: space-evenly;
}

.m-0 {
    margin: 0;
}

.mt-50 {
    margin-top: 50px;
}

.p-0 {
    padding: 0;
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.p-5-15 {
    padding: 5px 15px;
}

.gap-10 {
    gap: 10px;
}

.underline {
    text-decoration: underline;
}

/* Utility Classes - Text */
.font-semibold {
    font-family: 'poppins-semibold', sans-serif;
}

.font-normal {
    font-weight: normal;
}

.text-page-title {
    font-size: 35px;
    font-family: 'poppins-semibold', sans-serif;
}

/* Utility Classes - Icons */
.icon-sm {
    width: 18px;
}

.icon-md {
    width: 25px;
}

/* Specific Utility Classes */
.profile-card-shadow {
    box-shadow: 10px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Button Styles */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.button p {
    margin: 0;
    transition: font-size 0.2s ease;
}

.button:hover {
    transform: scale(1.05);
}

.button:hover p {
    font-size: 110%;
}

.button-primary {
    color: black;
    background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #0050FF, #7f3bcf) border-box;
    border: 2px solid transparent;
}

.button-secondary {
    border: 1px solid black;
    color: black;
    background-color: white;
}

/* Specific button sizes (can be combined with .button, .button-primary/secondary) */
.button-size-sm {
    height: 35px;
    width: 130px;
}

.button-size-md {
    height: 40px;
    width: 160px;
}

.base {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 0;
    background-color: #F4ECE6;
}

.section {
    display: flex;
    margin: 30px 0;
    background-color: white;
    box-shadow: 10px 10px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px 30px 50px;
}

.header {
    display: flex;
    align-items: center;
}

.header2 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.actuel {
    background: linear-gradient(to right, #0050FF, #7f3bcf) border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
}

.burger-menu span {
    display: block;
    height: 3px;
    background-color: black;
    border-radius: 5px;
}

/* Menu déroulant */
.burger-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    flex-direction: column;
    z-index: 999;
}

.burger-nav a {
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #eee;
}

.burger-nav a:last-child {
    border-bottom: none;
}

.burger-nav a:hover {
    background-color: #f0f0f0;
}

/* Affichage pour les petits écrans */
@media (max-width: 850px) {
    .header2 {
        display: none; /* Cache le menu principal */
    }

    .burger-menu {
        display: flex; /* Affiche le bouton burger */
    }

    .burger-nav.active {
        display: flex; /* Affiche le menu burger lorsqu'il est actif */
    }
}

/* Footer */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 30px 50px 30px 50px;
}

.footer2 {
    display: flex;
    align-items: center;
    text-align: center;
    column-gap: 30px;
}

/* Profil */
.bodyprofil {
    display: flex;
    height: 100vh;
    margin: 0;
}

.left {
    flex: 0.4;
    width: 1px;
    background-color: #E6DACE;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profil {
    position: relative;
    right: -30vw;
    text-align: center;
    display: flex;
}

.profil1 {
    background-color: #F4ECE6;
    padding: 30px 50px;
}

.profil2 {
    text-align: left;
    padding-left: 30px;
}

.imgprofil {
    position: relative;
    width: 205px;
    height: 205px;
    border-radius: 100%;
}

.trait {
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #0050FF, #7f3bcf) border-box;
    margin: 20px auto;
}

.profilicon {
    display: flex;
    justify-content: space-evenly;
    background-color: white;
    align-items: center;
    padding: 10px 50px;
}

.titreprofil {
    font-size: 100px;
    font-family: 'poppins-semibold', sans-serif;
}

.titreprofil2 {
    font-size: 27px;
    font-family: 'poppins-semibold', sans-serif;
}

.bontonindex {
    display: flex;
    padding: 30px;
    gap: 30px;
    text-align: center
}

.mt-50 > h1 {
    margin-bottom: 15px;
}

/* CV */

.sectioncv2 {
    justify-content: center;
    padding: 15px;
    width: 250px;
    margin: 20px;
}

.sectioncv3 {
    padding: 20px;
    width: 900px;
    margin: 20px;
}

.sectioncv4 {
    padding: 20px;
    margin: 20px;
}

.sectioncv5 {
    padding: 20px;
    width: 90%;
    margin: 20px;
    max-width: 1300px;
}

.competencecv {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.competencecv2 {
    padding: 10px 0;
}

.skill-circle {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    overflow: hidden;
}

.skill-circle-inner {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.skill-percent {
    font-weight: bold;
}

.skill-circle::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(to right, #0050FF, #7f3bcf);
    mask: conic-gradient(from 0deg, #000 0%, #000 var(--mask-angle), transparent var(--mask-angle), transparent 100%);
}

/* Projet */

.sectionprojet1 {
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    min-width: 400px;
    max-width: 400px;
}

.image-container {
    width: 600px;
    height: 400px;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.image-projet {
    width: 150px;
}

.bonton-container {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    gap: 20px;
    margin: 0 10px
}

/* Contact */
.contact-container {
    width: 90%;
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    box-shadow: 10px 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group-line {
    display: flex;
    gap: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.contact-form button {
    padding: 0.75rem 1.5rem;
    background-color: #007BFF;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.error-message {
    display: block;
    width: 90%;
    color: red;
    font-size: 0.8em;
    margin-top: 0.2em;
}

/* Apprentissage */
.button-back-apprentissage {
    padding: 10px 0 0 10px;
    background-color: #F4ECE6;
    border-color: #F4ECE6;
}

.section1-apprentissage {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #F4ECE6;
}

.section2-apprentissage {
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    width: 700px;
}

.section3-apprentissage {
    width: 450px;
    border-radius: 10px;
    padding: 10px;
    margin: 20px;

    border: 7px solid transparent;
    background: linear-gradient(#F4ECE6, white) padding-box,
    linear-gradient(to bottom, #E6DACE, #F4ECE6) border-box;
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Button Voir Détails */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-container.active {
    visibility: visible;
    opacity: 1;
}

.project-modal {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1001;
    max-width: 1000px;
    width: 90%;
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.modal-container.active .project-modal {
    transform: translateY(0);
    opacity: 1;
}

.modal-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    z-index: 1002;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: #333;
}

.modal-left-content {
    flex: 1.5;
    min-width: 400px;
    display: flex;
    flex-direction: column;
}

.modal-images-carousel {
    width: 100%;
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f0f0f0;
    display: block;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.modal-image-display {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
    z-index: 2;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    transition: background-color 0.3s;
    z-index: 10;
}

.carousel-arrow:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.carousel-arrow.prev {
    left: 10px;
}

.carousel-arrow.next {
    right: 10px;
}

.carousel-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-nav-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.carousel-nav-dot.active {
    background: linear-gradient(to right, #0050FF, #7f3bcf);
    transform: scale(1.2);
}

.modal-info {
    flex: 1;
    min-width: 350px;
}

.modal-title {
    margin-top: 0;
    background: linear-gradient(to right, #0050FF, #7f3bcf) border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'poppins-semibold', sans-serif;
}

#modalProjectDescription {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 10px;
}

#modalProjectDescription p {
    padding: 2.5px 0;
}

.modal-left-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-info h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.modal-links-container .form-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s, opacity 0.2s;
    font-size: 14px;
}

.modal-links-container .form-btn.github {
    background-color: #333;
    color: white;
}

.modal-links-container .form-btn.github:hover {
    background-color: #555;
}

.modal-links-container .form-btn.drive {
    background-color: #1A73E8;
    color: white;
}

.modal-links-container .form-btn.drive:hover {
    background-color: #155DD6;
}

.modal-links-container .form-btn.website {
    background: linear-gradient(to right, #0050FF, #7f3bcf);
    color: white;
}

.modal-links-container .form-btn.website:hover {
    opacity: 0.9;
}

.modal-links-container .form-btn.document {
    background-color: #8A2BE2;
    color: white;
}
.modal-links-container .form-btn.document:hover {
    background-color: #731acb;
}

.modal-links-container .form-btn.youtube {
    background-color: #FF0000;
    color: white;
}
.modal-links-container .form-btn.youtube:hover {
    background-color: #CC0000;
}

@media (max-width: 992px) {
    .modal-content {
        flex-direction: column;
    }

    .modal-left-content, .modal-info {
        min-width: unset;
        width: 100%;
    }

    .modal-images-carousel {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .project-modal {
        padding: 15px;
        width: 95%;
        margin: 0 10px;
    }

    .modal-images-carousel {
        height: 250px;
    }

    .carousel-arrow {
        padding: 8px 12px;
        font-size: 18px;
    }

    .modal-links-container .form-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* Responsive */

/* Menu burger*/
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
}

.burger-menu span {
    display: block;
    height: 3px;
    background-color: black;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/* Styles pour le menu déroulant */
.burger-nav {
    display: none;
    position: absolute;
    top: 80px;
    right: 50px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    flex-direction: column;
    z-index: 999;
}

.burger-nav a {
    padding: 12px 25px;
    text-align: left;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.burger-nav a:last-child {
    border-bottom: none;
}

.burger-nav a:hover {
    background-color: #f9f9f9;
}

@media (max-width: 850px) {
    .header2 {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .burger-nav.active {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 1024px) {
    header, .footer {
        padding: 25px 30px;
    }

    .profil1 {
        padding: 25px 40px;
    }

    .profil2 {
        padding-left: 25px;
    }

    .section {
        flex-direction: column;
        align-items: center;
        margin: 20px 15px;
    }

    .sectionprojet1, .section2-apprentissage, .section3-apprentissage {
        width: 90%;
        max-width: 600px;
        min-width: initial;
        margin-left: auto;
        margin-right: auto;
    }

    .sectioncv2, .sectioncv3, .sectioncv4 {
        width: auto;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }


    .image-container {
        width: 100%;
        height: auto;
        padding-top: 60%;
    }

    .resWidth {
        width: 100%;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    .header a.header {
        flex-wrap: wrap;
    }


    .burger-nav {
        right: 20px;
        top: 70px;
        width: auto;
        min-width: 200px;
    }

    .footer {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer2 {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        width: 100%;
        align-items: center;
    }

    .footer2 > div {
        margin-bottom: 10px;
    }

    .footer2 > div:last-child {
        margin-bottom: 0;
    }


    .bodyprofil {
        flex-direction: column;
        height: auto;
    }

    .left {
        flex: 1;
        width: 100%;
        background-color: white;
        padding: 30px 0;
    }

    .profil {
        position: static;
        right: auto;
        flex-direction: column;
        align-items: center;
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
    }

    .profil1 {
        margin-bottom: 30px;
    }

    .profil2 {
        padding-left: 0;
        text-align: center;
        width: 100%;
    }

    .profile-card-shadow {
        margin: 20px;
    }

    .bontonindex {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .section {
        flex-direction: column;
        align-items: center;
        margin: 20px 10px;
    }

    .sectioncv2,
    .sectioncv3,
    .sectioncv4 {
        width: 100%;
        max-width: 100%;
        margin: 15px 0;
        padding: 15px;
    }

    .sectionprojet1 {
        padding: 20px;
        width: 90%;
        max-width: 90%;
    }

    .image-container {
        padding-top: 66.66%;
    }

    .bonton-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .button-size-sm,
    .button-size-md {
        width: 160px;
        max-width: 80%;
    }

    .section1-apprentissage,
    .section2-apprentissage {
        padding: 20px;
        width: 100%;
        max-width: 100%;
    }

    .section3-apprentissage {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        margin: 15px 0;
    }

    .sectioncv2 h3,
    .sectioncv3 h3,
    .sectioncv4 h3 {
        font-size: 18px;
    }

    .competencecv {
        padding: 10px 0;
    }

    .sectioncv2,
    .sectioncv3,
    .sectioncv4 {
        padding: 15px;
    }

    .imgprofil {
        width: 180px;
        height: 180px;
    }

    .titreprofil {
        font-size: 70px;
    }

    .titreprofil2 {
        font-size: 22px;
    }

    .contact-container {
        width: 90%;
        padding: 1.5rem;
        margin: 1.5rem auto;
        max-width: 100%;
    }

    .contact-form .form-group-line {
        flex-direction: column;
        gap: 0;
    }

    .contact-form .form-group-line .form-group {
        margin-bottom: 1.5rem;
    }

    .contact-form .form-group:last-child {
        margin-bottom: 1.5rem;
    }

    .contact-form .form-group-line:last-of-type .form-group:last-child {
        margin-bottom: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        box-sizing: border-box;
    }

    .text-page-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    header,
    .footer {
        padding: 15px;
    }

    .burger-nav {
        width: calc(100% - 30px);
        right: 15px;
        top: 65px;
    }

    .profil {
        width: 95%;
    }

    .profil1 {
        padding: 20px;
    }

    .bontonindex {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .button-size-sm,
    .button-size-md {
        width: 100%;
        max-width: 220px;
    }

    .section {
        flex-direction: column;
        align-items: center;
        margin: 15px 5px;
    }

    .sectionprojet1,
    .sectioncv2,
    .sectioncv3,
    .sectioncv4,
    .section1-apprentissage,
    .section2-apprentissage,
    .section3-apprentissage {
        width: 90%;
        max-width: 90%;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: 0;
        margin-right: 0;
    }

    .image-container {
        padding-top: 75%;
    }

    .bonton-container {
        gap: 10px;
    }

    .imgprofil {
        width: 150px;
        height: 150px;
    }

    .titreprofil {
        font-size: 50px;
    }

    .titreprofil2 {
        font-size: 18px;
    }

    .sectioncv2 h3,
    .sectioncv3 h3,
    .sectioncv4 h3 {
        font-size: 16px;
    }

    .competencecv {
        padding: 8px 0;
        align-items: center;
    }

    .sectioncv2,
    .sectioncv3,
    .sectioncv4 {
        padding: 10px;
    }

    .sectioncv4 .d-flex.justify-content-around {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .sectioncv4 .competencecv2 {
        width: 100%;
        padding: 5px 0;
    }

    .base > .resWidth > .d-flex.justify-content-end {
        justify-content: center !important;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .base > .resWidth > .d-flex.justify-content-end .button-size-md {
        width: 100%;
        max-width: 250px;
    }

    .contact-container {
        width: 90%;
        padding: 1rem;
        margin: 1rem auto;
        box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    }

    .contact-form .form-group {
        margin-bottom: 1rem;
    }

    .contact-form .form-group-line .form-group {
        margin-bottom: 1rem;
    }

    .contact-form .form-group:last-child {
        margin-bottom: 1rem;
    }

    .contact-form .form-group-line:last-of-type .form-group:last-child {
        margin-bottom: 1rem;
    }

    .contact-form button {
        width: 100%;
        padding: 0.75rem;
    }

    .text-page-title {
        font-size: 24px;
    }
}

