.artists-wrapper {
    margin-top: 4rem;
}

.artists-contain {
    padding: 2rem 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    row-gap: 3rem;
    padding-top: 0;
}

.artists-contain > ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.artists-contain > ul > h2 {
    display: flex;
    width: 100%;
    color: var(--theme-color);
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--theme-color);
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-weight: 400;
}

.artists-contain > ul > li {
    display: flex;
    width: 25%;
    padding: 0.3rem 0;
}

.artists-contain > ul > li > a {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    transition: .2s ease-in-out;
}

.artists-contain > ul > li > a:hover {
    color: var(--theme-color);
}

.tab-page-nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    list-style: none;
    gap: 2rem;
}

.tab-page-nav > ul > li > a {
    font-size: 15px;
    font-weight: 400;
    color: #777 !important;
    cursor: pointer;
}

.tab-page-nav > ul > li.active > a,
.tab-page-nav > ul > li:hover > a {
    color: #000 !important;
}

.tab-page-nav > ul > li > a:hover {
    text-decoration: underline !important;
}

.tab-page-contain {
    padding: 2rem 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.tab-page-div {
    background-color: #efefef;
    padding: 3rem 0;
}

.tab-page-wrapper {
    margin-top: 5rem;
}

.tab-page-wrapper .page-title {
    margin-bottom: 4rem;
}

.tab-page-content {
    display: flex;
    width: calc(25% - (2rem * 3) / 4);
}

.tab-page-content > a {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
}

.tab-page-content-image {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.tab-page-content-image > img {
    display: flex;
    width: 100%;
    transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.tab-page-content:hover .tab-page-content-image > img {
    transform: scale(1.1);
}

.tab-page-content-name {
    display: flex;
    padding: 1rem;
    background-color: #fff;
    height: 90px;
    align-items: center;
    transition: .2s ease-in-out;
}

.tab-page-content-name > span {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    transition: .2s ease-in-out;
}

.tab-page-content:hover .tab-page-content-name {
    background-color: var(--theme-color);
}

.tab-page-content:hover .tab-page-content-name > span {
    color: #fff;
}

.header-top-right-image > a > img {
    filter: grayscale(1);
    transition: .2s ease-in-out;
}

.header-top-right-image > a:hover > img {
    filter: grayscale(0);
}

.post-text-wrapper {
    padding: 2rem 4rem;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 2rem;
}

.post-text-left {
    width: 25%;
}

.post-text-right {
    width: 75%;
}

.post-text-left > ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-text-left > ul > li > a {
    font-size: 15px;
    font-weight: 300;
    color: #000;
    padding: 0.8rem;
    display: flex;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: .5rem;
    text-decoration: none;
    gap: .5rem;
    transition: .2s ease-in-out;
}

.post-text-left > ul > li.active > a,
.post-text-left > ul > li > a:hover {
    color: var(--theme-color);
}

.post-text-right .page-title {
    margin-top: 0;
}

.post-text-image {
    float: left;
    margin-right: 25px;
    margin-bottom: 25px;
}

.post-text-content {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
}

.post-text-left > ul > li > a > i {
    color: gray;
}

.post-text-left > ul > li.active > a > i {
    color: var(--theme-color);
}

.artist-post-wrapper {
    display: flex;
    align-items: flex-start;
    padding: 4rem;
    gap: 2rem;
}

.artist-post-wrapper-left {
    width: 25%;
}

.artist-post-wrapper-left > img {
    width: 100%;
}

.artist-post-wrapper-right {
    width: 75%;
}

.artist-post-text-title > span {
    font-size: 25px;
    font-weight: 400;
}

.artist-post-text-title {
    display: flex;
    margin-bottom: 1rem;
}

.artist-post-text > p {
    color: #707070;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.venues-wrapper .page-title > span,
.news-wrapper .page-title > span {
    font-size: 20px;
}

.venues-wrapper .page-title > span::before,.venues-wrapper .page-title > span::after,
.news-wrapper .page-title > span::before,.news-wrapper .page-title > span::after {
    width: 25px;
    height: 25px;
}

.venues-wrapper .page-title > span::before,
.news-wrapper .page-title > span::before  {
    left: -10px;
}

.venues-wrapper .page-title > span::after,
.news-wrapper .page-title > span::after {
    right: -10px;
}

.venues-container-image,
.news-container-image {
    display: flex;
    width: 100%;
    margin-bottom: 3rem;
}

.venues-container-image > img,
.news-container-image > img {
    width: 100%;
}

.venues-container-content-title,
.news-container-content-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.venues-container-content-title > span,
.news-container-content-title > span {
    font-size: 25px;
    font-weight: 400;
}

.venues-container-content-text > p,
.news-container-content-text > p {
    color: #707070;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.venues-container-iframe {
    display: flex;
    width: 100%;
    margin-bottom: 4rem;
}

.panel-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.panel-wrapper {
    padding: 4rem;
}

.panel-container-left {
    width: 40%;
}

.panel-container-right {
    width: 60%;
}

.panel-container-image {
    width: 100%;
    display: flex;
}

.panel-container-image > img {
    width: 100%;
}

.panel-container-title {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding-bottom: .5rem;
}

.panel-container-title > span {
    font-size: 20px;
    font-weight: 400;
}

.panel-container-content > ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 2rem;
}

.panel-container-content > ul > li > i {
    color: var(--theme-color);
}

.panel-container-content > ul > li > span {
    font-size: 14px;
    font-weight: 300;
}

.panel-container-content > ul > li {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.panel-container-content {
    display: flex;
    flex-direction: column;
}

.panel-container-content > span {
    color: #707070;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.panel-container-content > a > i {
    font-size: 35px;
    color: var(--theme-color);
}

.panel-container-content > a {
    display: flex;
    text-decoration: none;
}

@media screen and (max-width: 1025px){
    .tab-page-content {
        display: flex;
        width: calc(33.33% - (2rem * 2) / 3);
    }

    .artists-contain > ul > li {
        width: 50%;
    }

    .artist-post-wrapper-left {
        width: 40%;
    }
    
    .artist-post-wrapper-right {
        width: 60%;
    }
}

@media screen and (max-width: 769px){
    .tab-page-content {
        display: flex;
        width: calc(50% - (2rem) / 2);
    }

    .tab-page-contain {
        padding: 1rem;
    }

    .artists-contain {
        padding: 1rem;
    }

    .post-text-wrapper {
        padding: 2rem 1rem;
        flex-direction: column-reverse;
    }
    
    .post-text-left,.post-text-right {
        width: 100%;
    }

    .artist-post-wrapper {
        flex-direction: column;
    }

    .artist-post-wrapper-left,
    .artist-post-wrapper-right {
        width: 100%;
    }

    .artist-post-wrapper {
        padding: 2rem 1rem;
    }

    .panel-wrapper {
        padding: 2rem 1rem;
    }
    
    .panel-container {
        flex-direction: column;
        padding: 0;
    }
    
    .panel-container-left,.panel-container-right {
        width: 100%;
    }
}

@media screen and (max-width: 553px){
    .tab-page-content {
        display: flex;
        width: 100%;
    }

    .artists-contain > ul > li {
        width: 100%;
    }

    .post-text-image {
        width: 40%;
    }

    .post-text-image > img {
        width: 100%;
    }
}