@import url('https://fonts.googleapis.com/css2?family=Gugi&display=swap');

html,
body {
    /* scroll-behavior: smooth; */
}

.text-vertical {
    writing-mode: vertical-lr;
}

* {
    letter-spacing: 1.5px;
    color: inherit;
}

b,
strong {
    font-weight: 700 !important;
}

table {
    color: var(--wp--custom--color--black);
    font-size: inherit;
    font-weight: 400;
}

p,
span {
    line-height: normal;
    font-weight: 400;
    color: inherit;
    font-size: inherit;
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-100 {
    flex-basis: auto;
}

.direction-rtl {
    direction: rtl;
}

.direction-ltr {
    direction: ltr;
}

.bg-cover {
    background-size: 30%;
}

.is-style-workshop-table table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #dee2e6;
    background-color: #fff;
}

.is-style-workshop-table th,
.is-style-workshop-table td {
    padding: 10px;
    border: 1px solid #dee2e6;
}

.is-style-workshop-table tbody td.title {
    color: #fff;
}

.is-style-workshop-table td {
    vertical-align: middle !important;
}


.is-style-workshop-table thead th {
    font-weight: 700;
    border-bottom: 2px solid #dee2e6;
    background-color: var(--wp--custom--color--third);
    color: var(--wp--custom--color--primary)
}

.is-style-workshop-table tbody td {
    vertical-align: top;
}

.is-style-workshop-table tbody tr {
    height: 145px;
}

.course-item {
    position: relative;
    padding-left: 1.2em;
}

.course-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--wp--custom--color--primary);
}

@media (max-width: 768px) {

    .is-style-workshop-table th,
    .is-style-workshop-table td {
        padding: 0.75rem;
        font-size: 14px;
    }

    .is-style-workshop-table th:first-child {
        width: 80px;
    }
}

.cus-workshop-tag {
    position: absolute;
    top: 8px;
    right: 0;
    color: white;
    font-weight: 400;
    font-size: 16px;
    border-radius: 3px;
    z-index: 1;
    width: max-content;
    line-height: 1;
    transform: rotate(45deg);
    text-align: center;

    @media screen and (max-width: 768px) {
        top: 6px;
        right: 0px;
        width: max-content;
        font-size: 12px;
    }
}

.cus-workshop-cell {
    height: max-content !important;

    @media screen and (max-width: 768px) {
        height: auto !important;
    }
}

.cus-workshop-cell::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-right: 80px solid red;
    border-bottom: 80px solid transparent;
    z-index: 0;

    @media screen and (max-width: 768px) {
        border-right: 60px solid red;
        border-bottom: 60px solid transparent;
    }
}

.edo-down-arr {
    img {
        transform: rotateX(180deg) rotate(-130deg);
        position: absolute;
        left: -60px;
        bottom: -10px;
    }
}

.gugi-regular {
    font-family: "Gugi", sans-serif !important;
    font-weight: 400;
    font-style: normal;
}


.new-graduate-border-b+.new-graduate-border-b {
    border-top-color: var(--wp--custom--color--primary);
    border-top-style: dotted;
    border-top-width: 1px;
}

.kw-title-1 {
    font-size: var(--wp--custom--font-size--2-xl);
    font-weight: bold;
    display: inline-block;
    color: var(--wp--custom--color--primary);
    border-bottom: 4px solid var(--wp--custom--color--error);
    line-height: normal;
}

@media (min-width: 1024px) {
    .kw-title-1 {
        font-size: var(--wp--custom--font-size--5-xl);
    }
}

.kw-title-2 {
    font-size: var(--wp--custom--font-size--3-xl);
    font-weight: bold;
    color: var(--wp--custom--color--primary);
    line-height: normal;
}

@media (min-width: 1024px) {
    .kw-title-2 {
        font-size: var(--wp--custom--font-size--6-xl);
    }
}


.kw-button-1 {
    text-align: center;
    cursor: pointer;

    a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 4px;
        transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
        transition: all 0.3s ease-in-out;
        background-color: var(--wp--custom--color--accent);
        padding: 14.5px 10px;

        &:hover {
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }
    }

    a,
    span {
        font-size: var(--wp--custom--font-size--xl);
        font-weight: bold;
        color: var(--wp--custom--color--white);
        line-height: 15px;
    }

    figure {
        width: 15px;
        height: 24px;

        img {
            object-fit: cover;
        }
    }

    @media screen and (max-width: 768px) {
        a {
            gap: 8px;
        }

        a,
        span {
            font-size: var(--wp--custom--font-size--md);

        }

        figure {
            width: 10px;
            height: 16px;
        }
    }

}