/* ---------------------- */
/* $Global
------------------------- */
*{
    position: relative; }
    
html, body, .wrap{
    width: 100%;
    scroll-behavior: smooth; }
a{
    display: block;
    text-align: center; }
    a:hover{
        opacity: 0.5;
    }
/* ---------------------- */
/* $header
------------------------- */
header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    background-color: var(--color-white);
    box-shadow: 1px 1px 12px 0px rgba(0, 0, 0, 0.2);
    @media (max-width: 576px){
        height: 67px;
        background-color: var(--color-white);
        box-shadow: 1px 1px 12px 0px rgba(0, 0, 0, 0.2); }
        .navinner{
            height: 100%;
            padding: 0 20px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            left: 50%;
            transform: translateX(-50%);
            @media (max-width: 768px) {
                justify-content: flex-start;
            }
            .menu{
                display: flex;
                justify-content: center;
                li a:hover{
                    opacity: 1;
                    color: var(--color-main); }
            }
            .menu > li > a,
            .logo{
                display: inline-block;
                font-size: 1rem;
                font-weight: 400;
                padding: 22.57px 16px;
                transition: all .3s; }
                @media (max-width: 768px){
                    .menu > li > a{
                        font-weight: 400;
                        padding: 0;
                        line-height: 76px; }
            }
            .header__lg-menu{cursor: pointer;}
            .header__lg-menu__dropdown{
                display: none;
                position: fixed;
                width: 101.14px;
                background-color: var(--color-main2);
                li{padding: .5rem 0;}
            }
            .logo{
                position: relative;
                font-size: 1rem;
                padding: 0 1rem;
                text-align: left;
                @media (max-width: 768px){font-size: 1.5rem;}
                @media (max-width: 576px) {
                    font-size: 1rem;
                    padding: 0 1rem 0 0;
                }
            }
                .logo:hover{
                    opacity: 1;
                    background-color: var(--color-main);
                    border-radius: 4px;
                }
            @media screen and (max-width: 768px){
                .pc-menu{ display: none; } 
            }
            .sp-lg-menu{
                display: none;
                @media (max-width: 768px) {
                    display: flex;
                    font-size: 1.2rem;       
                    a{padding: 0 1rem;}
                }
                @media (max-width: 576px) {
                    font-size: .8rem;
                    letter-spacing: -1px;
                    a{padding: 0 .5rem 0 0;}
                }
            }
            .sp-menu{
                display: none; }
                @media (max-width: 768px){
                    .sp-menu{
                        position: absolute;
                        left: 0;
                        flex-direction: column;
                        width: 100%;
                        background-color: var(--color-main);
                        top: 100%;
                        overflow: hidden;
                        li{
                            width: 100%;
                            text-align: center;
                            border-bottom: 1px solid var(--color-main2);
                            height: 78px;
                            a {
                                width: 100%;
                                padding: 8px 0; }
                        }
                        li:nth-last-of-type(1){
                            border-bottom: 0; }
                    }
                }
                .sp-menu.active {
                    height: calc(100vh - 67px);
                    justify-content: space-around; }
        }
}


/* ---------------------- 
 $hamburger
------------------------- */
.hamburger-toggle{
    position: absolute;
    display: flex;
    width: 1.8rem;
    height: 1.3rem;
    right: 3rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    @media (max-width: 768px) {
        display: flex; }
    span {
        height: 3px;
        width: 100%;
        border-radius: 10px;
        background-color: var(--color-main);
        transition: all .3s ease; }
        span:nth-of-type(3) {
            width: 80%; }
}

.toggle span:nth-of-type(1){
    transform: rotate(-45deg) translate(-4.2px, 7px); }

.toggle span:nth-of-type(2){
    transform: rotateX(90deg); }

.toggle span:nth-of-type(3){
    transform: rotate(405deg) translate(-7.4px, -7px) scaleX(125%); }


@media (max-width: 768px) {
    .hamburger-toggle:hover {
        cursor: pointer; }
}
/* ---------------------- */
/* $Utility
------------------------- */
.btn{
    position: relative;
    width: 80%;
    padding: 1rem 0;
    margin: 0.5rem 0;
    border: 2px solid var(--color-main);
    border-radius: 3rem;
    overflow: hidden;
    transition: .3s;
    @media (max-width: 992px){
        width: 70%; }
        @media (max-width: 768px){
            width: 100%;
            padding: 0.5rem 0; }
            @media (max-width: 576px){
                width: 80%;
                border: 0;
                background-color: var(--color-main);
                padding: 1rem 0; }

    .btn-inner .text{
        display: inline-block;
        transform: translateY(-50%);
        font-size: 1.3rem;
        @media (max-width: 768px){
            font-size: 1.2rem;
            transform: translateY(-60%); }
            @media (max-width: 576px){
                transform: translateY(0%);
                letter-spacing: -1px; }
    }
    .btn-inner .circle{
        display: inline-block;
        border: 2px solid var(--color-main);
        border-radius: 3rem;
        background-color: var(--color-white);
        width: 3rem;
        height: 3rem;
        margin-left: 1rem;
        @media (max-width: 768px){
            width: 2.5rem;
            height: 2.5rem; }
            @media (max-width: 576px){
                display: none; }
    }
    .btn-inner .circle .arrow-right{
        position: relative;
        top: 5%;
        left: 5%;
        font-size: 40px;
        color: var(--color-main);
        @media (max-width: 768px){
            top: -3%;
            left: 0; }
        }
}

.btn:hover{
    opacity: 1; }

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 50px;
    background-color: var(--color-main);
    transition: all .6s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.btn:hover:before {
    background-color: var(--color-main);
    width: 100%; }

    
/* $mouse arrow */
.mouse {
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-main);
    border-radius: 60px;
    position: relative;
    margin-top: 72px; }
    @media screen and (max-width: 768px){
        .mouse{
            display: none; } }

.mouse::before {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-second);
  border-radius: 50%;
  opacity: 1;
  animation: wheel 2s infinite;
  -webkit-animation: wheel 2s infinite; }
    @keyframes wheel{
    to {
        opacity: 0;
        top: 30px; } }
    @-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 30px; } }

.arrow{
    display: flex;
    flex-direction: column;
    align-items: center;
    span{
        margin-bottom: -28px;
        font-size: 60px;
        color: var(--color-main);
        opacity: 0;
        transform: scale(0.3);
        animation: arrow 3s ease-out infinite; }
        span:nth-child(1){
            animation: arrow 3s ease-out 1s infinite; }
            span:nth-child(2){
                animation: arrow 3s ease-out 2s infinite; }
}
@keyframes arrow {
    15% {
            opacity: 1;
            }
    30% {
        opacity: 1;
        transform: translateY(4px);
        }
    45% {
            opacity: 1;
            transform: translateY(16px);
        }
    100% {
        opacity: 0;
        transform: translateY(32px) scale(0.5);
        }
}
/* ---------------------- */
/* $hero
------------------------- */
.hero{
    padding-top: 140px;
    padding-bottom: 100px;
    @media (max-width: 576px){
        padding-top: 100px;
        padding-left: 32px;
        padding-right: 32px;
        padding-bottom: 40px; }
        @media (max-width: 378px){
            padding-left: 20px;
            padding-right: 20px; }

    @media (max-width: 576px) {
        .row{
            flex-direction: column;
            align-items: center;
            .col-6{ width: 100%; }
        }
    }
    img{
        width: 100%;
        height: 100%;
    }
    .title-group{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        @media (max-width: 576px){
            text-align: center;
        }
        .text-box{
            width: 80%;
            @media (max-width: 768px){
                width: 100%;
            }
            h1{
                display: inline-block;
                position: relative;
                margin: 0;
                @media (max-width: 576px) {
                    font-size: 1.5rem; }
            }
            h5{
                display: inline-block;
                position: relative;
                @media (min-width: 992px) {
                    letter-spacing: 3px; }
                    @media (max-width: 576px){
                        padding: 0 0.5rem;
                        left: 0%;
                        transform: translateX(0);
                        font-size: 1.3rem;
                    }
            }
        }
        .text-box:nth-child(1){
            display: flex;
            flex-direction: column; }
    }
}

/* ---------------------- */
/* $design
------------------------- */
.design .container .title{
    text-align: center; }

.design .container .row{
    margin: 0;
    h5{
        text-align: center; }
}

@media screen and (max-width: 576px) {
    .design{
        padding-top: 32px;
        .container{
            padding-left: 24px;
            padding-right: 24px;
            .title h3{ 
                margin-top: 0;
                margin-bottom: 20px; }
            .col-6{ 
                width: 100%;
                padding-bottom: 60px;
                h5{ margin: 0.5rem 0;
                    font-size: 1.4rem; }
            }
        }
    }
}

/* $imgbox */
.design .img-box{
    width: 100%;
    height: 80%;
    overflow: hidden;
    transition: all .2s;
    @media (max-width: 576px){
        min-height: 300px; }
        @media (max-width: 378px){
            min-height: 200px;}

    img{
        width: 100%;
        height: 80%;
        object-fit: cover;
        object-position: top;
        @media (max-width: 576px){
            height: 100%;
            object-position: center; }
    }
    img:nth-of-type(2){
        position: absolute;
        top: 0;
        left: 0;
        transition: all .2s;
        @media (max-width: 576px){
            opacity: 0; }
    }
    img:nth-of-type(2):hover{
        opacity: 0; }
}
.design .img-box:hover{
    opacity: 1; }

.design .row:nth-last-of-type(1) .img-box img{
    height: 100%;
}

/* ---------------------- */
/* $page-work
------------------------- */
.work{
    width: 100%;
    height: 100%;

    /* $side-menu */
    .bg .side-menu{
        top: 50%;
        transform: translateY(-50%);
        @media (max-width: 576px) {
            transform: translateY(-55%); }

        .row{
            width: auto;
            max-width: 100%;
            justify-content: center;
            ul{
                display: flex;
                flex-direction: row;
                justify-content: center;
                font-size: 1rem;
                margin-top: 1.5rem;
                @media (max-width: 768px){
                    display: none;
                }
                li{
                    flex: 1;
                    padding-left: 1rem;
                    @media (max-width: 768px){
                        max-width: 120px;
                        padding: 0.5rem;
                    }
                    a{
                        color: var(--color-second2);
                        font-weight: 600;
                        border-radius: 10rem;
                        height: 100%;
                        padding: 1rem;
                        background-color: white;
                        transition: all .4s;
                    }
                }
                li:nth-child(1) a,
                li:nth-child(2) a,
                li:nth-last-of-type(1) a{
                    line-height: 2; }
                    @media (max-width: 576px){
                        li a{ padding: 0.5rem; }
                    }
                    li a:visited, li a:hover{
                        opacity: 1;
                        top: -10px; }
                        li a::after{
                            content: "";
                            position: absolute;
                            border: solid var(--color-white);
                            border-width: 0px 3px 3px 0;
                            display: inline-block;
                            padding: 3px;
                            bottom: -20%;
                            left: 50%;
                            transform: rotate(45deg) translateX(-50%);
                            animation: arrow2 ease-out 1.5s infinite;
                         }
            }
        }
    }
    @media (max-width: 576px) {
        .bg{
            height: 200px; }
    }
    /* $work-wall */
    .work-wall{
        margin-top: 60px;
        @media (max-width: 576px) {
            margin-top: 2rem; }

        .row{
            padding-bottom: 48px;
            @media (max-width:576px) {
                padding-bottom: 0;
            }

            .col-12 p{
                color: var(--color-dark2);
                margin-bottom: 0;
                line-height: 1.5;
                text-align: center; }
                .col-12 p:nth-of-type(1){
                    color: var(--color-dark);
                    font-size: 1.2rem; }

            .img-box{
                width: 100%; }
        }
    }

    @media screen and (max-width: 576px){
        .work-wall .col-12{
            margin-bottom: 3rem; } }

    .img-box .img-box__inner{
        width: 100%;    
        padding-top: 80%;
        img{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            max-height: 400px;
            object-fit: cover; }
    }
}

@keyframes arrow2 {
    15% {
            opacity: 1;
            }
    30% {
        opacity: 1;
        bottom: -20%;
        }
    100% {
        opacity: 0;
        bottom: -30%;
        }
}

/* work work-graphic $title */
.work .title,
.work-graphic .title{
    text-align: center;
    margin-bottom: 1rem;
    h4{
        color: var(--color-dark);
        margin: 0; }
        p{
            color: var(--color-dark2); }
}

/* ------------------
    about $hero-img
-------------------*/
.hero-img{
    padding-top: 140px;
    padding-bottom: 60px;
    @media (max-width: 768px) {
        padding-top: 120px; }
        @media (max-width: 576px) {
            padding-top: 100px;
            padding-bottom: 28px;  }

    .col-12{
        display: flex;
        flex-direction: row;
        @media (max-width: 576px) {
            flex-direction: column;
            align-items: center; }

        .chat-box{
            border: 2px solid var(--color-main);
            border-radius: 8px;
            padding: 16px 0;
            p{
                line-height: 1.5;
                letter-spacing: 2px; }
        }
        .chat-box::after{
            content: "";
            position: absolute;
            top: 50%;
            right: -10%;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 30px solid var(--color-main);
        }
        @media (max-width: 768px) {
            .chat-box::after{
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
                border-left: 20px solid var(--color-main);
            } }
            @media (max-width: 576px) {
                .chat-box::after{ border: 0; } }
         /* $ani */
        .ani{
            width: 50%;
            @media (max-width: 768px) {
                width: 100%; }

            .chat-box{
                width: fit-content;
                top: 0;
                transform: translateX(-50%);
                left: 55%;
                border-radius: 8px;
                padding: 16px 32px;
                background-color: var(--color-main);
                @media (max-width: 992px) {
                    padding: 4px 24px; }
                    @media (max-width: 576px) {
                        padding: 0;
                        left: 50%;
                        width: 100%; }

                h3{
                    font-weight: 600;
                    text-align: center;
                    @media (max-width: 992px) {
                        font-size: 1.3rem; }
                    @media (max-width: 768px) {
                        font-size: 1.2rem; }
                }
            }
            .chat-box::after{
                top: 100%;
                right: 40%;
                border-top: 15px solid var(--color-main);
                border-left: 15px solid transparent;
                border-right: 15px solid transparent;
            }
            @media (max-width: 576px){
                .chat-box::after{ right: 45%; }
            }
            .img-box{
                width: 100%;
                @media (max-width: 768px) {
                    padding: 0 16px; }
            }
        }
        .ani::before{
            content: "";
            display: block;
            position:absolute;
            left: 50%;
            top: 58%;
            transform: translate(-50%,-50%);
            width: 400px;
            height: 400px;
            background:radial-gradient(circle at 50% 50%,
            var(--color-main) 20%, 
            rgba(255,255,255,0) 70%,
            #fff 80%,
            #fff 100% );
        }
        @media (max-width: 992px) {
            .ani::before{
                top: 55%;
                width: 300px;
                height: 300px;  } }
            @media (max-width: 768px) {
                .ani::before{
                    top: 50%;
                    width: 200px;
                    height: 200px; } }
        /* $info */
        .info{
            width: 50%;
            @media (max-width: 576px) {
                width: 100%;
                padding: 0 16px;
                border: 0;
                margin-bottom: 1rem; }

            .chat-box::after{
                content: "";
                position: absolute;
                top: 50%;
                right: 100%;
                border-top: 15px solid transparent;
                border-bottom: 15px solid transparent;
                border-left: 0;
                border-right: 30px solid var(--color-main);
            }
            @media (max-width: 768px) {
                .chat-box::after{
                    border-top: 10px solid transparent;
                    border-bottom: 10px solid transparent;
                    border-right: 20px solid var(--color-main); } }
                @media (max-width: 576px) {
                    .chat-box::after{
                        border: 0; } }
            .chat-box > p{
                text-align: center;
                font-size: 1.4rem;
                font-weight: 500;
                @media (max-width: 992px) {
                    font-size: 1rem; }
                    @media (max-width: 576px) {
                        display: none; }
            }
            .chat-box ul{
                display: inline-block;
                li{
                    font-size: 1.1rem;
                    padding-bottom: 16px;
                    @media (max-width: 768px) {
                            padding-bottom: 8px; }
                }
                li::before{
                    content: "●";
                    width: 50%;
                    color: var(--color-dark2); }
            }
            .box-group{
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;
                .box-outter{
                    width: 58px;
                    padding: 4px;
                    .box{
                        width: 100%;
                        padding-top: 100%;
                        border-radius: 16px;
                        border: 3px solid var(--color-main);
                        text-align: center;
                        transition: all .3s;
                        p{
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%,-50%);
                            font-size: 1rem;
                            font-weight: 1000;
                            letter-spacing: -1px;
                            color: var(--color-dark2); }
                    }
                        .box:hover{
                            background-color: var(--color-main);
                        }
                }
            }
        }
    }
}

/* ------------------
 $skill-more
-------------------*/
@media screen and (max-width: 576px) {
    .skill-more .row{
        padding: 0 3rem; } }

.skill-more p{
    margin-bottom: 0; }
  
.skill-more .col-3{
    padding: 0 1rem 0 0;
    @media (max-width: 768px) {
        padding: 0.5rem  }

    .inner{
        height: 100%;
        padding: 16px 8px;
        border-radius: 8px;
        background-color: var(--color-main2);
        @media (max-width: 768px) {
            padding: 8px; }

        .img-box{
            width: 40%;
            left: 50%;
            transform: translateX(-50%);
            @media (max-width: 768px) {
                width: 30%;}
                @media (max-width: 576px) {
                    width: 20%;}

            img{
                width: 100%;
                height: 100%; }
        }
        h6{
            text-align: center;
            margin-top: 0;
            @media (max-width: 576px) {
                font-size: 1.5rem;
            }
        }
        .text-box{
            text-align: center;
            p{
                font-size: 0.9rem;
                letter-spacing: -1px;
                padding-bottom: 8px;
                @media (max-width: 576px) {
                    font-size: 1.2rem;
                }
            }
            p::before{
                content: '〇';
                color: var(--color-main);
                font-weight: 800; }
        }
    }
}

.skill-more .col-3:last-of-type{
    padding: 0;
    @media screen and (max-width: 768px) {
        padding: 8px; }
}

/* -------------------
$education
---------------------- */
.education .row{
    flex-direction: row;
    h5{
        text-align: center;
        font-size: 1.2rem;
        color: var(--color-black); }

    .group{
        display: flex;
        .circle > div{
            width: 20px;
            height: 20px;
            background-color: var(--color-main);
            border-radius: 100%;
            left: 50%;
            transform: translateX(-50%); }
            .circle::before{
                content: '';
                display: block;
                position: absolute;
                width: 3px;
                height: 100%;
                background-color: var(--color-main);
                top: 10%;
                left: 25%; }

    .text{
        width: 100%;
        p{
            margin-bottom: 0;
            line-height: 2; }
        
        p:nth-child(1){
            color: var(--color-second);
            font-weight: 600; }

        @media (min-width: 768px) {
            br{
                display: none; } }
    }
    .text > div, .text > div:focus, .text > div:hover {
        width: 100%;
        color: var(--color-dark);
        padding: 8px;
        border: 1px solid var(--color-main);
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        -webkit-font-smoothing: antialiased; }
        .text > div:hover {
            border: none; }
        
    .text > div span:nth-child(n+3){
        content: "";
        display: block;
        position: absolute;
        background-color: var(--color-main); }
        .text > div span:nth-child(3) {
            width: 2px;
            left: 0;  bottom: 0; }
            .text > div:hover span:nth-child(3) {
                animation: move1 1500ms infinite ease; }

            .text > div span:nth-child(4) {
                height: 2px;
                left: 0; top: 0; }
                .text > div:hover span:nth-child(4) {
                    animation: move2 1500ms infinite ease; }

                .text > div span:nth-child(5) {
                    width: 2px;
                    right: 0; top: 0; }
                    .text > div:hover span:nth-child(5) {
                        animation: move3 1500ms infinite ease; }

                    .text > div span:nth-child(6) {
                        height: 2px;
                        right: 0; bottom: 0; }
                        .text > div:hover span:nth-child(6) {
                            animation: move4 1500ms infinite ease; }
    }
}
@keyframes move1 {
    0% { height: 100%; bottom: 0; }
    54% { height: 0; bottom: 100%; }
    55% { height: 0; bottom: 0; }
    100% { height: 100%; bottom: 0; }
}
@keyframes move2 {
    0% { width: 0; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0; left: 100%; }
}
@keyframes move3 {
    0% { height: 100%; top: 0; }
    54% { height: 0; top: 100%; }
    55% { height: 0; top: 0; }
    100% { height: 100%; top: 0; }
}
@keyframes move4 {
    0% { width: 0; right: 0; }
    55% { width: 100%; right: 0; }
    100% { width: 0; right: 100%; }
}
/* -------------------
    $vision
---------------------- */  
.vision .col-6:nth-child(2)::before{
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    background:radial-gradient(circle farthest-side at center,var(--color-main),#fff,transparent 120%); }
    @media screen and (max-width: 992px) {
      .vision .col-6:nth-child(2)::before{ background:radial-gradient(circle farthest-side at center,var(--color-main),#fff,transparent 100%); } }
      @media screen and (max-width: 768px) {
        .vision .col-6:nth-child(2)::before{ background:radial-gradient(circle farthest-side at center,var(--color-main),#fff,transparent 150%); } }
    
.vision .text-box{
    width: 80%;
    h5{
        color: var(--color-dark);
        text-align: center; }
        p{
            line-height: 2.6; }
}

/* ----------------------
 $go-top
------------------------- */
#go-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    outline: none;
    background-color: var(--color-main2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: var(--color-second2);
    cursor: pointer;
    padding: 16px;
    border-radius: 5rem;
    transition: .3s; }

#go-top-btn:hover{
    color: var(--color-main);
    background-color: var(--color-white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); }

#go-top-btn::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .5s;
    box-shadow: 0 0 10px 40px var(--color-main2);
    border-radius: 4rem; }

#go-top-btn:active:after{
    position: absolute;
    left: 0;
    top:0;
    opacity: 1;
    transition: 0s;
    box-shadow: 0 0 0 0 var(--color-main2);
    border-radius: 4rem; }

/* ----------------------
 $footer
------------------------- */
footer{
    margin-top: 100px;
    @media (max-width: 576px) {
        font-size: 0.9rem;
        margin-top: 60px; }

    div{
        display: flex;
        text-align: center;
        flex-direction: column;
        align-items: center;
        background-color: var(--color-main);
        padding: 28px;
        @media (max-width: 768px) {
            flex-wrap: wrap;
            align-content: center;
        }
        a{
            width: fit-content;
            padding-bottom: 16px;
            span{
                vertical-align: middle; }
            p{
                display: inline;
                line-height: 1.6;
                vertical-align: middle; }
        }
        > p{
            font-size: 0.8rem;
            line-height: 1.8;
        }
    } 
}