/* =========================== SERVICE =========================== */

.service {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 1rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.service .card {
    width: 33%;
    background-color: var(--BGCard);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    color: var(--ColorText);
    font-family: var(--font1);
    padding: 20px 30px;
    border: 1px solid var(--BGCardHover);
    cursor: pointer;
}

.service .card h1 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 5px;
}

.service .card p {
    font-size: 14px;
    font-weight: 200;
    line-height: 1.5;
}


@media screen and (max-width: 992px) {
    .service {
        justify-content: space-between;
    }

    .service .card {
        width: 33%;
    }
}


@media screen and (max-width: 835px) {
    .service {
        width: 100%;
        height: 100%;
        background: var(--BGBody);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .service .card {
        width: 100%;
    }

    .service .card:nth-child(1) {
        margin-top: 20px;
    }
}

/* =========================== DESCRIPTION =========================== */
.description {
    width: 100%;
    height: 100%;
}

.description .desc {
    width: 100%;
    height: 100%;
    padding: 0px 220px;
    display: flex;
    justify-content: space-between;
}

.description .desc .desc_left {
    width: 5%;
    display: flex;
    flex-direction: column;
}

.description .desc .desc_left a {
    color: var(--ColorText);
    text-decoration: none;
    font-size: 30px;
}

.description .desc .desc_right {
    width: 95%;
    padding: 0px 20px;
}

.description .desc .desc_right h1 {
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--ColorText);
}

.description .desc .desc_right p {
    font-size: 18px;
    color: var(--ColorText);
    opacity: .7;
    font-weight: 200;
}


.description .desc .desc_right .card {
    margin-top: 30px;
    width: 550px;
    height: fit-content;
    background-color: var(--BGCard);
    border-radius: 17px 17px 27px 27px;
}

.description .desc .desc_right .title {
    width: 100%;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 20px;
    border-bottom: 1px solid var(--BGCardHover);
    font-weight: 700;
    font-size: 13px;
    color: var(--ColorText);
}

.description .desc .desc_right .title::after {
    content: '';
    width: 8ch;
    height: 1px;
    position: absolute;
    bottom: -1px;
    background-color: var(--BGButton);
}

.description .desc .desc_right .comments {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 20px;
    padding: 20px;
}

.description .desc .desc_right .comment-react {
    width: 35px;
    height: fit-content;
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    background-color: var(--ColorText);
    border-radius: 5px;
}

.description .desc .desc_right .comment-react button {
    width: 35px;
    height: 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 0;
    outline: none;
}

.description .desc .desc_right .comment-react button:after {
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    left: -2.5px;
    top: -2.5px;
    background-color: #f5356e;
    border-radius: 50%;
    z-index: 0;
    transform: scale(0);
}

.description .desc .desc_right .comment-react button svg {
    position: relative;
    z-index: 9;
}

.description .desc .desc_right .comment-react button:hover:after {
    animation: ripple 0.6s ease-in-out forwards;
}

.description .desc .desc_right .comment-react button svg {
    fill: #f5356e;
}

.description .desc .desc_right .comment-react button svg path {
    stroke: #f5356e;
    fill: #f5356e;
}

.description .desc .desc_right .comment-react hr {
    width: 80%;
    height: 1px;
    background-color: var(--ColorText);
    margin: auto;
    border: 0;
}

.description .desc .desc_right .comment-react span {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--BGCardHover);
}

.description .desc .desc_right .comment-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.description .desc .desc_right .comment-container .user {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
}

.description .desc .desc_right .comment-container .user .user-pic {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ColorText);
    border-radius: 50%;
}

.description .desc .desc_right .comment-container .user .user-pic:after {
    content: '';
    width: 9px;
    height: 9px;
    position: absolute;
    right: 0px;
    bottom: 0px;
    border-radius: 50%;
    background-color: #0fc45a;
    border: 2px solid #ffffff;
}

.description .desc .desc_right .comment-container .user .user-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
}

.description .desc .desc_right .comment-container .user .user-info span {
    font-weight: 700;
    font-size: 12px;
    color: var(--ColorText);
}

.description .desc .desc_right .comment-container .user .user-info p {
    font-weight: 600;
    font-size: 10px;
    color: #acaeb4;
}

.description .desc .desc_right .comment-container .comment-content {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--ColorText);
    opacity: .5;
}

.description .desc .desc_right .text-box {
    width: 100%;
    height: fit-content;
    background-color: var(--BGCard);
    padding: 8px;
    border-radius: 0 0 17px 17px;
}

.description .desc .desc_right .text-box .box-container {
    background-color: var(--BGCardHover);
    border-radius: 8px 8px 17px 17px;
    padding: 8px;
}

.description .desc .desc_right .text-box textarea {
    width: 100%;
    height: 40px;
    resize: none;
    border: 0;
    border-radius: 6px;
    padding: 12px 12px 10px 12px;
    background-color: var(--BGCard);
    color: var(--ColorText);
    font-size: 13px;
    outline: none;
    caret-color: var(--BGButton);
}

.description .desc .desc_right .text-box .formatting {
    display: grid;
    grid-template-columns: auto auto auto auto auto 1fr;
}

.description .desc .desc_right .text-box .formatting button {
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 50%;
    border: 0;
    outline: none;
}

.description .desc .desc_right .text-box .formatting button:hover {
    background-color: var(--ColorText);
}

.description .desc .desc_right .text-box .formatting .send {
    width: 30px;
    height: 30px;
    background-color: var(--BGButton);
    margin: 0 0 0 auto;
    cursor: pointer;
}

.description .desc .desc_right .text-box .formatting .send:hover {
    background-color: var(--BGButton);
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media screen and (max-width: 992px) {
    .description .desc {
        width: 100%;
        height: 100%;
        padding: 0px 2%;
        display: flex;
        justify-content: space-between;
    }

    .description .desc .desc_right .card {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .description .desc .desc_right .review .card {
        width: 80%;
    }
}


/* =========================== BLOG =========================== */
.blog {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog .blogs {
    width: 100%;
    height: 100%;
}

.blog .blogs .blogger {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font1);
    font-weight: 200;
    color: var(--ColorText);
}

.blog .blogs .blogger .texts {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 2%;
    justify-content: space-between;
    align-items: center;
}

.blog .blogs .blogger .texts h1 {
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 200;
}

.blog .blogs .blogger .texts a {
    font-size: 18px;
    font-weight: 200;
    color: var(--ColorText);
    display: flex;
    text-transform: uppercase;
    align-items: center;
    gap: 1rem;
}

.blog .blogs .blogger .texts a:hover>i {
    transform: rotate(0deg);
}

.blog .blogs .blogger .texts a i {
    transform: rotate(-45deg);
    font-size: 25px;
    transition: all .3s ease-in-out;
}

.blog .blogs .blogger .wrap {
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
}

.blog .blogs .blogger .wrap .card {
    background: var(--BGCard);
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    cursor: pointer;
    border: 1px solid var(--BorderCard);
}

.blog .blogs .blogger .wrap .card img {
    width: 80%;
    margin: 40px;
}

.blog .blogs .blogger .wrap .card .text {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 100%;
    justify-content: flex-start;
}

.blog .blogs .blogger .wrap .card .text h1 {
    font-size: 24px;
    font-weight: 300;
}

.blog .blogs .blogger .wrap .card .text span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    opacity: .6;
    letter-spacing: 1px;
    margin-bottom: 8px;
}


.blog .blogs .blogger .wrap .card .text p {
    text-align: start;
    font-size: 14px;
    margin-top: 10px;
}

.blog .blogs .blogger .wrap .card .text a {
    padding: 10px 30px;
    border-radius: 5px;
    width: 40%;
    margin: 20px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--BGButton);
    border: 1px solid var(--BorderCard);
    color: var(--ColorButton);
    font-weight: 300;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

.blog .blogs .blogger .wrap .card .text a:hover {
    background-color: #fff;
    color: var(--BGBody);
}

@media screen and (max-width:992px) {
    .blog .blogs .blogger h1 {
        font-size: 80px;
        padding-top: 40px;
    }

    .blog .blogs .blogger p {
        font-size: 18px;
        text-transform: capitalize;
        font-weight: 200;
    }

    .blog .blogs .blogger .wrap .card .text a {
        width: 40%;
    }

    .blog .blogs .blogger .wrap .card {
        width: 100%;
        padding: 10px 0 40px 0;
    }
}

@media screen and (max-width: 835px) {
    .blog .blogs .blogger .texts {
        flex-direction: column;
    }
}

@media screen and (max-width: 640px) {
    .blog .blogs .blogger .wrap .card .text a {
        width: 80%;
    }
}