body {
    font-family: 'Poppins', sans-serif;
}


/************************************
 ************** LAYOUT **************
 ************************************/

.wrapper {
    max-width: 1152px;
    padding-right: 5%;
    padding-left: 5%;
}

@media (min-width: 1152px) {
    .wrapper {
        padding-right: 0%;
        padding-left: 0%;
    }
}

#toggle-mob-menu:checked ~ #menu {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 1rem 0 0 0;
    z-index: 99999;
    background-color: #fff;
    transform: translateX(0);
}

#toggle-mob-menu:checked ~ #menu ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#toggle-mob-menu:checked ~ #menu ul li.hide-menu-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#toggle-mob-menu:checked ~ #menu ul li {
    display: flex;
    align-items: flex-start;
    padding: 5% 8%;
}

#toggle-mob-menu:checked ~ #menu .action-wrapper{
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 5% 6%;
}

#toggle-mob-menu:checked ~ #menu .action-wrapper hr {
    display: none;
}


.mobile-footer details summary::-webkit-details-marker {
    display: none;
}

.mobile-footer details summary {
    width: 100%;
    position: relative;
    cursor: pointer;
    font-weight: 500;
    list-style: none;
}

.mobile-footer details summary::before {
    content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    position: absolute;
    top: 60%;
    right: 5%;
    transform: translateY(-50%);
    font-weight: 200;
    transform-origin: center;
    transition: 200ms linear;
}

.mobile-footer details[open] summary::before {
    top: -6px;
    transform: rotate(180deg);
}

.mobile-footer details summary {
    outline: 0;
}

.mobile-footer details div {
    padding-top: 20px;
    padding-left: 5%;
}

.category-item {
    border-radius: 20px;
    min-width: 18rem;
    z-index: 1;
}

.category-item::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: -1;
    background-color: rgba(0, 0, 0, .3);
}

.tuto-section {
    background-color: #F8FCFE;
}

.shadow-hw {
    box-shadow: 0px 0px 100px rgba(0, 76, 116, 0.05);
}

.post-excerpt {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.category-slider ul.splide__pagination,
.project-slider ul.splide__pagination,
.testimonial-slider ul.splide__pagination,
.blog-post-slider ul.splide__pagination {
    bottom: -32px;
}

.splide__pagination__page.is-active {
    background-color: #119ae2;
}

.category-slider .splide__arrows button,
.project-slider .splide__arrows button,
.testimonial-slider .splide__arrows button {
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 1;
    background-color: #fff;
}

.category-slider .splide__arrows button.splide__arrow--prev,
.project-slider .splide__arrows button.splide__arrow--prev,
.testimonial-slider .splide__arrows button.splide__arrow--prev {
    left: -1rem;
}

.category-slider .splide__arrows button.splide__arrow--next,
.project-slider .splide__arrows button.splide__arrow--next,
.testimonial-slider .splide__arrows button.splide__arrow--next {
    right: -1rem;
}

.apps-slider .splide__arrows,
.blog-post-slider .splide__arrows,
.hero-slider .splide__arrows,
.project-slider ul.splide__pagination {
    display: none;
}

/************************************
 ************ UTILITIES *************
 ************************************/

.overlay {
    position: relative;
    z-index: 1;
}

.overlay::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
    background-color: rgba(0, 0, 0, .4);
}

.text-xxs {
    font-size: 13px;
}

.text-xxxs {
    font-size: 11px;
}

.text-tiny {
    font-size: 10px;
    line-height: 12px;
}

.text-tinyer {
    font-size: 8px;
    line-height: 9px;
}