/* REPORTING HOUSE LOGO/SVG */

.repHouseHeader {
    width: 600px;
    display: flex;
    margin: 50px auto;
    justify-content: center;
}

/* ABOUT US SECTION */

.repHouseAboutUs {
    display: flex;
    padding: 50px;
    align-items: center;
    background: #f6f6f6;
    flex-direction: column;
}

.repHouseAboutUs h5 {
    font-size: 24px;
    color: rgb(153, 180, 209);
}

.repHouseAboutUs p {
    margin-top: 20px;
    text-align: center;
    white-space: collapse;
}

/* REPORT HOUSE ARTISTS CONTAINER */
.repHouseArtistContainer {
    display: grid;
    grid-gap: 20px;
    justify-content: space-between;
    grid-template-columns: repeat(6, 1fr);
}


/* REPORT HOUSE LATEST NEWS CONTAINER */

.repHouseLatestMainContainer {
    width: 85%;
    margin: auto;
}

.repHouseLatestHeader {
    margin-bottom: 20px;
}

.repHouseLatestHeader h6 {
    font-size: 20px;
    color: rgb(76, 76, 76);
}

.repHouseLatestContainer {
    display: grid;
    grid-gap: 20px;
    justify-content: space-between;
    grid-template-columns: repeat(4, 1fr);
}

.repHouseLatestContainer a {
    padding: 10px;
}

.repHouseLatestImageContainer {
    z-index: 2;
    position: relative;
}

.repHouseLatestImageContainer img {
    height: 15.3125rem;
    object-fit: cover;
}

.repHouseLatestImageContainer::after {
    top: -10px;
    left: -10px;
    content: '';
    z-index: -1;
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 10px);
    background-color: #cecdcd;
}

.repHouseLatestImageContainer h5 {
    padding: 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: rgb(76, 76, 76);
}

.repHouseLatestContent {
    margin: 10px 0px;
    font-size: 15px;
    color: rgb(76, 76, 76);
}

.repHouseLatestPublishDate {
    margin: 10px 0;
    font-weight: 800;
    padding: 7px 7px;
    width: fit-content;
    margin-left: -10px;
    background: #e3e3e3;
    color: rgb(76, 76, 76);
}

/* TABS */
.repHouseTabHeaderContainer {
    width: 85%;
    margin-left: auto;
    position: relative;
    margin-right: auto;
}

.repHouseTabHeaderList {
    top: -39px;
    position: absolute;
}

.repHouseTabHeaderList :first-child {
    margin-left: 0;
}

.repHouseTabHeaderListContent {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Hide all tabs by default */
.tab {
    display: none;
    position: relative;
}

/* Show the active tab */
.tab.active {
    display: block;
}

/* Style tab buttons */
.tab-button {
    margin: 5px;
    padding: 10px;
    cursor: pointer;
    color: #4c4c4c;
    margin-bottom: 0;
    font-weight: 500;
    display: inline-block;
    min-width: fit-content;
}

/* Style active tab button */
.tab-button.active {
    border: none;
    font-weight: bold;
    background: #FFF;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.repHouseContactContainer {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
}

.repHouseContactInfo {
    height: 80%;
    display: grid;
    margin: auto 30px;
    grid-template-rows: repeat(3, 1fr);
}

/* ADDRESS TAB */
.addressContainer {
    display: flex;
    align-items: center;
}

.addressImg {
    max-width: 80px;
    width: 80px;
    min-width: 80px;
}

.addressInfo {
    margin-left: 20px;
}

.addressContainer h4 {
    font-size: 18px;
    color: #4C4C4C;
    font-weight: bold;
    padding-bottom: 10px;
}

.addressContainer p {
    margin-left: 10px;
    color: rgb(76, 76, 76);
    /* white-space: break-spaces; */
}

.repHouseArtistMainContainer {
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.repHouseArtistImageContainer {
    position: relative;
}

.repHouseArtistInfoContainer {
    display: grid;
    margin-top: 10px;
    grid-template-rows: auto auto;
}

.repHouseArtistTitile {
    display: flex;
    margin-bottom: 10px;
    align-items: baseline;
}

.repHouseArtistTitile h6 {
    font-weight: 700;
    background: #4c4c4c;
    color: #FFF;
    padding: 5px;
}

.repHouseArtistTitile p {
    margin-left: 5px;
    font-size: 14px;
    color: #4c4c4c;
}

.avatar {
    width: 60px;
    height: 60px;
    right: -10px;
    bottom: -10px;
    overflow: hidden;
    position: absolute;
    border-radius: 100%;
    border: solid 5px #FFF;
    z-index: 3;
}

.avatar img {
    height: 100%;
    width: 100%;
}

.repHouseArtistPublishDate {
    color: #4c4c4c;
    font-weight: 600;
}

.artistMainArtImage {
    position: relative;
}

.artistMainArtImage::after {
    display: block;
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(226deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 35%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0) 60%);
    transform: translateY(0%);
    will-change: transform;
    transition: transform .65s cubic-bezier(0.18, 0.9, 0.58, 1);
}

.repHouseArtistImageContainer:hover ::after {
    transform: translateY(-100%);
}

/* NEW DESIGN */

.artistContainer {
    transition: .3s all;
    height: 350px;
    display: grid;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.artistDate {
    padding: 3px;
    margin: 10px;
    color: #FFF;
    width: fit-content;
    align-self: flex-start;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.40));
}

.artistBio {
    width: 95%;
    height: 70px;
    color: #FFF;
    overflow: clip;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    transition: .3s all;
}

.artistContainer:hover .artistInfo {
    transform: translateY(0);
}

#artistImage {
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    background-position: center;
    position: absolute;
    background-size: cover;
    background-origin: border-box;
    background-repeat: no-repeat;
}

#artistNames {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    position: relative;
}

#artistNames::before {
    position: absolute;
    top: 1em;
    content: attr(data-text);
    color: inherit;
    opacity: 0.5;
    transform: rotateX(180deg);
}

.artistInfo {
    transition: .3s all;
    align-self: flex-end;
    padding-bottom: 20px;
    transform: translateY(57%);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgb(0, 0, 0));
    padding-top: 20px;
}

.artistName {
    display: flex;
    justify-content: center;
}

/* REPORTET START */
.repHouseReportetMainContainer{
    display: grid;
    grid-gap: 20px;
    justify-content: stretch;
    grid-template-columns: repeat(4, 1fr);
}

.repHouseReportetContainer{
    
}

.repHouseReportetImgContainer{
    height: 15.3125rem;
}

.repHouseReportetImgContainer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.repHouseReportetInfoContainer{
    display: flex;
    background: #fff;
    flex-direction: column;
    padding: 0.75rem;
}

/* .repHouseReportetInfo{

} */

.repHouseReportetTitle{
    font-weight: 500;
    color: #3c3c3b;
    font-family: AntennaCond;
    width: 100%;
    line-height: 1.238em;
    font-size: 1rem;
    margin-bottom: 0.875rem;
}

.repHouseReportetContent{
    float: left;
    width: 100%;
    line-height: 1.2em;
    color: #9c9b9b;
    font-family: AntennaCond;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.repHouseReportetAuthorDate{
    display: flex;
    font-size: 12px;
    color: #9c9b9b;
    justify-content: space-between;
}

.repHouseReportetAuthor{
    border-left: 1px solid;
    padding: 0px 0px 0px 2px;
}

/* .repHouseReportetPublishDate{

} */

/* REPORTET END */

/* NEWS TABS START*/

/* Hide all tabs by default */
.tabData {
    margin: 40px 0;
    display: none !important;
}

/* Show the active tab */
.tabData.active {
    display: block !important;
}

/* Style tab buttons */
.tabButton {
    margin: 0 20px;
    cursor: pointer;
    padding: 7px 15px;
    border-radius: 0px;
    border: solid 1px #000;
    background-color: #0000001a;
}

/* Style active tab button */
.tabButton.active {
    padding: 7px 15px;
    background: #FFF;
    border: solid 1px #000;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* NEWS TABS END */


/* Language TABS START */


.languageTabButtonContainer{
    display: flex;
    width: 180px;
    margin-bottom: 30px;
    justify-content: space-between;
}

.languageTabButton{
    padding: 5px 10px;
    border-radius: 0;
    transition: .3s all;
    background: #b8b8b8;
    border: 1px #000 solid;
}

.languageTabButtonContainer .activeLanguage{
    background: #FFF !important;
}

.languageTabContainer{
    text-align: center;
}

.languageTab{
    display: none;
}

.activeLanguage{
    display: block;
}

/* Language TABS END */

/* ABOUT US TABS START */

.aboutUsButtonContainer{
    top: 0;
    right: 0;
    display: flex;
    height: 140px;
    position: absolute;
    flex-direction: column;
    justify-content: space-between;
}

.aboutUsTab p{
    margin: 10px 0;
}

.aboutUsTabButton{
    width: fit-content;
    height: fit-content;
    padding: 5px 15px;
    border-radius: 5px;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    letter-spacing: -.8px;
    line-height: 24px;
    outline: 0;
    color: #FFF;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
.aboutUsTabButton:hover{
    scale: 1.1;
}

#albAboutUsButtonALB{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://kallxo.com/wp-content/themes/kallxo_wp_2019/assets/svg/albaniaFlag.svg');
}

#albAboutUsButtonALB.activeAboutUsLanguage{
    background-image: url('https://kallxo.com/wp-content/themes/kallxo_wp_2019/assets/svg/albaniaFlag.svg');
}

#albAboutUsButtonENG{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://kallxo.com/wp-content/themes/kallxo_wp_2019/assets/svg/UKFlag.svg');
}

#albAboutUsButtonENG.activeAboutUsLanguage{
    background-image: url('https://kallxo.com/wp-content/themes/kallxo_wp_2019/assets/svg/UKFlag.svg');
}

#albAboutUsButtonSRB{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://kallxo.com/wp-content/themes/kallxo_wp_2019/assets/svg/SerbianFlag.svg');
}

#albAboutUsButtonSRB.activeAboutUsLanguage{
    background-image: url('https://kallxo.com/wp-content/themes/kallxo_wp_2019/assets/svg/SerbianFlag.svg');
}

.aboutUsTabContainer{
    width: 80%;
    margin: auto;
    text-align: center;
}

.aboutUsTabContainer .activeAboutUsLanguage{
    display: block;
}

.aboutUsTab{
    display: none;
}

/* ABOUT US TABS END */

.ballinaGrid{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.ballinaMainContainer{
    margin-left: 30px;
}

.ballinaHeader{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ballinaListMainContainer{
    margin-left: 20px;
}

.ballinaLink{
    display: flex;
    align-items: center;
}

.ballinaListImage{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.ballinaListItem{
    margin: 15px 0;
}


/* RESPONSIVE */
@media only screen and (max-width: 600px) {

    .ballinaGrid{
        flex-direction: column;
    }

    .ballinaListMainContainer{
        margin-left: 0;
    }

    .ballinaListMainContainer{
        margin-left: 0;
        margin-top: 20px;
    }

    .ballinaMainContainer{
        width: 80%;
        margin-left: 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .repHouseHeader {
        width: 90%;
        display: flex;
        margin: 50px auto;
        justify-content: center;
    }

    .repHouseAboutUs {
        display: flex;
        padding: 50px 20px;
        align-items: center;
        background: #f6f6f6;
        flex-direction: column;
    }

    .repHouseTabHeaderList {
        width: 100%;
        display: flex;
        overflow: scroll;
    }

    .repHouseArtistContainer {
        grid-template-columns: repeat(2, 1fr);
    }

    .repHouseLatestContainer {
        grid-template-columns: repeat(1, 1fr);
    }

    .addressImg {
        max-width: 50px;
        width: 50px;
        min-width: 50px;
    }

    .addressInfo {
        margin-left: unset;
    }

    .repHouseContactInfo {
        height: unset;
        display: grid;
        margin: 0px 0px 40px;
        grid-template-rows: unset;
        grid-template-columns: repeat(3, 1fr);
    }

    .addressContainer p {
        margin-left: unset;
    }

    .addressContainer {
        text-align: center;
        flex-direction: column;
    }

    .repHouseContactContainer {
        grid-template-columns: unset;
        grid-template-rows: auto 1fr;
    }

/* REPORTET START */
.repHouseReportetMainContainer{
    display: grid;
    grid-gap: 20px;
    justify-content: stretch;
    grid-template-columns: repeat(1, 1fr);
}
/* REPORTET END */

}