/*          FONTS         */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/*          VARIABLES           */
:root{
    /*Text*/
    --primaryColor: #e2ac3b;
    --primaryColorDarker: #AC810B;
    --secondaryColor: #E5D1A3;
    --primaryFont: 'Libre Baskerville', serif;
    --secondaryFont: 'Montserrat', sans-serif;
    
    /*Background*/
    --primary: #262626;
    --primaryDarker: #1e1e1e;
}

/*          SCROLL BAR          */
body::-webkit-scrollbar {
    width: 7px;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primaryColor);
    outline: 1px solid var(--primaryColor);
}

/*          FULL PAGE STYLES            */
.fp-controlArrow{
    display: none;
}

/*          STYLES          */
body{
    background-color: var(--primary);
    color: var(--primaryColor);
    margin: 0;
    padding: 0;
}

button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

a{
    text-decoration: none;
    color: var(--primaryColor);
}

#mainNav{
    width: 100%;
    border-bottom: 2px solid var(--primaryDarker);
    position: fixed;
    top: 0;
    background-color: var(--primary);
    z-index: 99;
}

.mainNav{
    display: flex;

    background-color: var(--primary);
    font-family: var(--secondaryFont);
    
    height: 70px;
    width: 100%;
    max-width: 1600px;
    padding: 0 50px 0 50px;
    margin: 0 auto 0 auto;
}

.mainMenu{
    height: 100%;
    display: flex;
    align-items: center;
}

.navItem{
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease-in-out;

    padding: 0 35px;
    height: 100%;

    font-size: 14px;
}

.navItem:hover{
    background-color: var(--primaryDarker);
}

.navItem:hover > .lineMenu{
    width: 100%;
}

.mainMenu .active{
    background-color: var(--primaryDarker);
}

.mainMenu .active > .lineMenu{
    width: 100%;
}

.lineMenu{
    width: 0%;
    height: 1px;
    background-color: var(--primaryColor);

    transition: all 0.3s ease-in-out;
}

.logoHolder{
    display: flex;
    align-items: center;
    width: 100px;
    margin: 0 30px 0 0;
}

.brandSelector{
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
    padding: 0 85px 0 35px;
    
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-left: 2px solid var(--primaryDarker);
}

.brandSelector:hover{
    background-color: var(--primaryDarker);
}

.brandList{
    height: 0;
    overflow: hidden;
    width: 50px;
    background-color: var(--primary);

    position: absolute;
    top: 72px;
    width: 100%;
    left: -2px;
    
    cursor: default;
    max-width: 1600px;
    transition: all 0.3s ease-in-out;

    border-left: 2px solid var(--primaryDarker);
    border-right: 2px solid var(--primaryDarker);
}

.brandList ul{
    list-style: none;
    width: fit-content;
    margin: 25px 0 0 0;
}

.brandListHovered{
    height: 250px;

    border-bottom: 2px solid var(--primaryDarker);
}

.brandName{
    display: flex;
    flex-direction: row;
    align-items: center;

    font-size: 14px;
}

.brandName img{
    width: 25px;
    height: 25px;
    padding: 0 0 0 15px;
}

.container{
    display: flex;

    padding: 20px 120px 20px 120px;
    max-width: 1600px;
    max-height: 720px;
    margin: 0 auto 0 auto;
    height: 100%;
    position: relative;
}

.pageNumberContainer{
    display: flex;
    flex-direction: column;
    align-items: center;

    position: absolute;
    z-index: 20;
    top: 45%;
    left: 20px;
}

.lineNumber{
    height: 1px;
    background-color: var(--primaryColorDarker);
    width: 30px;
}

.upperNumber{
    font-size: 30px;
    font-family: var(--secondaryFont);
}

.lowerNumber{
    font-size: 18px;
    font-family: var(--secondaryFont);
    color: var(--primaryColorDarker);
}

.pageWrapper{
    display: flex;
    flex-direction: row;
    height: 100%;

    position: relative;
}

.overflowHidden{
    overflow: hidden;
}

.hidden{
    visibility: hidden;
}

.homepage{
    padding: 0;
}

.homepage .left{
    width: 60%;
    height: 100%;

    display: flex;
    align-items: center;
}

.homepage .right{
    width: 60%;
    height: 100%;

    display: flex;
    flex-direction: column;
}

.introImage{
    width: 0;
    height: 80%;
    object-fit: cover;
}

.mainText{
    font-family: var(--secondaryFont);
    font-size: 60px;
    padding: 10px 0 0px 0;
    margin: 0 0 0 0;

    color: transparent;
    background-image: linear-gradient(
        to right,
        #BF953F 0,
        #FCF6BA 25%,
        #B38728 50%,
        #FBF5B7 75%,
        #AA771C 100%
    );
    -webkit-background-clip: text;
}

.secText{
    display: flex;
    font-family: var(--secondaryFont);
    font-size: 18px;
    margin: 0px 0 0 0px;

    transform: translateX(0);
}

.textIntro{
    padding: 10px 0 0 0px;
    color: var(--secondaryColor);
}

.subText{
    font-family: var(--primaryFont);
    font-size: 24px;
    padding: 0;
    margin: 0;
    
    display: flex;
    flex-direction: row;

    align-items: center;

    color: transparent;
    background-image: linear-gradient(
        to right,
        #BF953F 0,
        #FCF6BA 25%,
        #B38728 50%,
        #FBF5B7 75%,
        #AA771C 100%
    );
    -webkit-background-clip: text;
}

.subHeaderLine{
    height: 1px;
    background-color: var(--primaryColorDarker);
    width: 65%;

    margin: 0 0 0 10px;
}

.homepage .contentHolder{
    padding: 120px 0 0 50px;
    width: 700px;

    overflow: hidden;
}

.buttonsHolder{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    margin: 100px 0 0 0;
}

.button{
    display: flex;
    width: fit-content;
    position: relative;
    z-index: 10;

    font-family: var(--secondaryFont);
    
    border: 1px solid var(--primaryColor);
    margin: 0 25px 0 0;
}

.button span{
    padding: 25px 45px;
    z-index: 10;
    mix-blend-mode: difference;
}

.buttonOver{
    position: absolute;
    z-index: -1;

    width: 0;
    height: 100%;

    transition: all 0.3s ease-in-out;
    background-color: var(--primaryColor);
}

.button:hover > .buttonOver{
    width: 100%;
}

.option{
    width: 100%;
    font-family: var(--secondaryFont);
    color: var(--secondaryColor);
    font-size: 16px;
    padding: 20px 0 0 0;
    transition: all 0.3s ease-in-out;
    position: relative;
    display: block;
    position: absolute;
}

.option1{
    transform: translateX(-110%);
    transition: all 0.3s ease-in-out;
}

.option2{
    transform: translateX(-110%);
    transition: all 0.3s ease-in-out;
}

.buttonHoverText{
    flex-basis: 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.buttonHoverTextOption{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 150px;
}

#ourWorkButton:hover ~ .buttonHoverText .buttonHoverTextOption .option1{
    transform: translateX(0);
}

#contactButton:hover ~ .buttonHoverText .buttonHoverTextOption .option2{
    transform: translateX(0);
}

.nextPageScroll{
    display: flex;
    align-items: flex-end;

    position: absolute;
    z-index: 99;
    bottom: 20px;
    right: 40px;
    padding: 5px 0;

    text-align: center;
    font-size: 20px;
    font-family: var(--secondaryFont);

    cursor: pointer;
}

.nextPageScroll:hover > img{
    transform: translateY(20px);
}

.nextPageScroll:hover > span .lineMenu{
    width: 100%;
}

.nextPageScroll img{
    height: 42px;
    transition: all 0.3s ease-in-out;
}

.nextPageScroll span{
    line-height: 1;
}

.whatWeDo{
    padding: 0 0 0 0;
    max-width: fit-content;
    max-height: fit-content;
}

.whatWeDoWrapper{
    width: 100%;
    display: flex;
    height: 100%;
}

.itemWhatWeDo{
    position: relative;
    display: flex;
    align-items: center;

    width: 25%;
    height: 100%;
    border-left: 2px solid var(--primaryDarker);
    overflow: hidden;
}

.whatWeDoOver{
    position: absolute;
    z-index: 10;

    height: 100%;
    width: 100%;

    transition: all 0.3s ease-in-out;
    opacity: 0.5;
    background-color: var(--primaryColorDarker);
}

.itemWhatWeDo img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.itemWhatWeDo:hover > .whatWeDoOver{
    opacity: 0;
}

.itemWhatWeDo:hover > img{
    transform: scale(1.1);
}

.itemText{
    position: absolute;
    z-index: 11;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    font-size: 22px;
    font-family: var(--secondaryFont);
    color: var(--primaryColor);
}

.itemText span{
    display: flex;
    justify-content: center;

    width: 100%;
    padding: 30px 5px 30px 5px;

    color: var(--primaryColor);
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.itemText .subWhatWeDo{
    transform: translateX(-110%);
    padding: 0 5px 30px 5px;
    transition: all 0s ease-in-out;

    font-size: 16px;
    position: absolute;
}

.itemTextBackground{
    position: absolute;
    z-index: -1;
    
    width: 100%;
    height: 100%;

    background-color: var(--primaryDarker);
    transition: all 0.3s ease-in-out;
    opacity: 0.8;
}

.itemWhatWeDo:hover > .itemText .subWhatWeDo{
    transform: translateX(0);
    position: initial;
    transition: all 0.5s ease-in-out;
}

.itemWhatWeDo:hover > .itemText .itemTextBackground{
}

.secondPageNum:hover > .upperNumber,.secondPageNum:hover > .lineNumber,.secondPageNum:hover > .lowerNumber{
    visibility: visible;
}

.card{
    display: flex;
    flex-direction: column;

    align-items: center;

    padding: 10px 10px 0 10px;
    margin: 0 25px 25px 0;
    height: 350px;
    width: 275px;

    border: 1px solid var(--primaryColorDarker);
    background-color: var(--primaryDarker);
    cursor: pointer;
}

.card:hover > .cardImage img{
    transform: scale(1.2);
}

.cardProfile{
    height: 250px;
    width: 260px;
}

.cardImage{
    width: 100%;
    height: 150px;
    overflow: hidden;

    border: 1px solid var(--primaryColorDarker);
}

.cardImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: all 0.3s ease-in-out;
} 

.cardContent{
    display: flex;
    flex-direction: column;
}

.cardContent span{
    text-align: center;
}

.profileName{
    font-family: var(--secondaryFont);
    font-size: 24px;

    padding: 15px 0 0 0;
}

.profileSub{
    font-family: var(--primaryFont);
    font-style: italic;
    font-size: 16px;
}

.profileCardsHolder{
    width: 50%;

    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.ourTeamWrapper{
    display: flex;
    flex-direction: row;
}

.teamContent{
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 100px 0 0 0;
}

.moreInfoHolder{
    margin: 30px 0 0 0;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.textInfo{
    transform: translateX(-110%);
    position: absolute;
    display: flex;
    flex-direction: column;

    transition: all 0.3s ease-in-out;
}

.transition{
    transform: translateX(0) !important;
}

.headerProfileInfoText{
    font-size: 24px;
    padding: 20px 0 10px 0;
}

#profileBasic{
    font-size: 14px;
    font-family: var(--primaryFont);
    font-style: italic;
}

.multipleNavigations{
    display: flex;
    align-items: flex-end;

    position: absolute;
    z-index: 99;
    right: 40px;
    padding: 5px 0;

    text-align: center;
    font-size: 20px;
    font-family: var(--secondaryFont);

    cursor: pointer;
}

.itemLinkNav:hover > img{
    transform: translateY(20px);
}

.itemLinkNav:hover > span .lineMenu{
    width: 100%;
}

.multipleNavigations .itemLinkNav img{
    height: 42px;
    transition: all 0.3s ease-in-out;
}

.multipleNavigations .itemLinkNav span{
    line-height: 1;
}

.itemLinkNav{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.multipleNavigations .right img{
    padding: 0 0 0 20px;
    transform: rotate(-90deg) translateX(-20px);
}

.multipleNavigations .right:hover > img{
    transform: rotate(-90deg) translateX(-20px) translateY(20px);
}

.multipleNavigations .left img{
    padding: 0 0 0 20px;
    transform: rotate(90deg) translateX(0px);
}

.multipleNavigations .left:hover > img{
    transform: rotate(90deg) translateY(20px);
}

.aktualityWrapper{
    display: flex;
    flex-direction: row;
    height: 100%;
    position: relative;
}

.aktualityCardsHolder{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 50px 0 0 0;

    width: 50%;
    height: 100%;
}

.cardAktuality{
    height: 500px;
}

.cardAktuality .cardContent .profileName{
    font-family: var(--secondaryFont);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
    text-align: left;
}

.cardAktuality .cardContent .profileSub{
    text-align: left;
    padding: 10px 0 0 0; 
}

.cardAktuality .cardContent .cardText{
    font-family: var(--secondaryFont);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
    -webkit-box-orient: vertical;
    text-align: left;
    padding: 10px 0 0 0;
    color: var(--secondaryColor);
}

.aktualityContentHolder{
    width: 50%;
    padding: 100px 0 0 0;

    overflow: hidden;
}

.cardButtonsHolder{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.cardButtonsHolder .button{
    margin: 60px 0 0 0;
}

.aktualityScroll{
    right: 0;
    bottom: 30px;
}

.textTel{
    padding: 50px 0 0 0;
}

.kontaktButtons{
    margin: 50px 0 0 0;
}

.kontaktWrapper{
    display: flex;
    flex-direction: row;
}

.kontaktForm{
    display: flex;
    flex-direction: column;
    justify-content: center;

    margin: 0 0 0 50px;
    width: 50%;
}

.formText{
    font-size: 24px;
    font-family: var(--secondaryFont);
    padding: 30px 0 5px 0;
}

.kontaktFormButtons{
    margin: 20px 0 0 0;
}

.kontaktFormButtons .button{
    cursor: pointer;
}

.kontaktForm input{
    background-color: var(--primaryDarker);
    border: 2px solid var(--primaryColorDarker);
    height: 40px;

    font-size: 24px;
    color: var(--primaryColor);
    font-family: var(--secondaryFont);
    padding: 10px;
}

.kontaktForm input:focus{
    outline: 0;
}

.kontaktForm textarea{
    resize: none;
    background-color: var(--primaryDarker);
    border: 2px solid var(--primaryColorDarker);

    font-size: 24px;
    color: var(--primaryColor);
    font-family: var(--secondaryFont);
    padding: 10px;
}

.kontaktForm textarea:focus{
    outline: 0;
}

.subpageContent{
    width: 60%;
    margin: 100px 0 0 0;
}

.subpageImage{
    margin: 50px 0 0 50px;
    width: 40%;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    position: relative;
    align-content: flex-start;
    overflow: hidden;
}

.imageOver{
    width: 100%;
    height: 100%;
    background-color: var(--primaryColorDarker);
    opacity: 0.7;

    position: absolute;
    transition: all 0.3s ease-in-out;

    z-index: 10;
}

.imageHolder:hover > .imageOver{
    opacity: 0;
}

.imageHolder:hover > img{
    transform: scale(1.2);
}

.imageOverText{
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.clickFullScreen{
    width: 100%;
    height: 100%;
}

.clickFullScreenHolder{
    position: absolute;
    z-index: 11;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;
}

.clickFullScreenHolder:hover > img{
    transform: scale(1.0);
}

.clickFullScreenOver{
    width: 0;
    height: 0;

    position: absolute;

    z-index: 0;
}

.slideNav{
    bottom: 50px;
}

.servicesCardHolder{
    padding: 20px 0 0 0;
    display: flex;
}

.cardServices{
    height: 250px;
}

.cardServices .profileSub{
    font-family: var(--secondaryFont);
    padding: 30px 0 0 0;
}

.servicesBtnHolder .button{
    margin: 10px 10px 0px 0;
}

.subpageImage img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: absolute;

    transform: translateX(-110%);
    transition: all 0.3s ease-in-out;
}

.noAnimation img{
    transform: translateX(0);
}

.realizationPlaceholder{
    transform: translateX(0) !important;
    object-fit: contain !important;
}

.normalLink{
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.normalLink:hover{
    text-decoration: underline;
}

.aktualityHolder{
    width: 100%;
}

.aktualityWrapperPage{
    display: flex;
    flex-wrap: wrap;
}

article{
    color: var(--secondaryColor);
    font-family: var(--secondaryFont);
    font-size: 22px;

    margin: 0 auto 100px auto;
    max-width: 1200px;
}

.galeryHolder{
    width: 100%;
    display: flex;
    flex-direction: row;
}

.galeryWrapper{
    height: 100%;
    width: 100%;
}

.galeryItem{
    width: 25%;
    height: 100%;
    overflow: hidden;
}

.galeryItem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.galeryItem:hover > img{
    transform: scale(1.2);
}

.row{
    display: flex;
    height: 50%;
    width: 100%;
}

.galeryScroll{
    bottom: 50px;
}

.tymNav{
    bottom: 50px;
}

.menuOpener{
    display: none;
}

@media(max-width: 1199px) and (min-width: 992px){
    .mainText{
        font-size: 48px;
    }

    .secText{
        font-size: 16px;
    }

    .subText{
        font-size: 16px;
    }

    .homepage .contentHolder{
        padding: 50px 0 0 25px;
        width: 100%;
    }

    .buttonsHolder {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 25px 0 0 0;
    }

    .itemText span{
        font-size: 16px;
    }

    .itemText .subWhatWeDo{
        font-size: 14px;
    }

    .subpageContent {
        width: 60%;
        margin: 25px 0 0 0;
    }

    .button span {
        padding: 15px 25px;
        z-index: 10;
        mix-blend-mode: difference;
    }

    .container{
        padding: 20px 60px 20px 60px;
    }

    .whatWeDo {
        padding: 0 0 0 0;
    }

    .profileCardsHolder {
        width: 50%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: flex-start;
        padding: 0 0 0 35px;
    }

    .profileName{
        font-size: 20px;
    }

    .profileSub{
        font-size: 14px;
    }

    .aktualityCardsHolder > #second{
        display: none;
    }

    .cardButtonsHolder .button {
        margin: 25px 0 0 0;
    }

    .cardAktuality {
        height: 420px;
    }

    .textTel{
        padding: 20px 0 0 0;
    }

    .formText{
        font-size: 18px;
        padding: 10px 0 5px 0;
    }

    .kontaktForm input{
        font-size: 18px;
        height: 30px;
    }

    .kontaktForm textarea{
        font-size: 18px;
    }

    .subHeaderLine{
        width: 55%;
    }

    .cardProfile{
        height: 35%;
        width: 35%;
    }

    .cardImage{
        height: 100px;
    }

    .teamContent{
        padding: 25px 0 0 0;
        justify-content: center;
    }

    #profileJednatel span, #profileKontrolor span, #profileVedouci span, #profileZamestnanci span{
        font-size: 14px;
    }

    .headerProfileInfoText{
        font-size: 18px !important;
    }

    #profileBasic{
        font-size: 12px;
    }

    .textInfo{
        padding: 0 0 0 0;
    }

    .moreInfoHolder{
        margin: 15px 0 0 0;
    }

    .aktualityContentHolder{
        padding: 50px 0 0 0;
    }

    .nextPageScroll{
        bottom: 10%;
    }

    .brandSelector{
        padding: 0 0px 0 15px;
    }

    .mainNav{
        padding: 0 0px 0 0px;
    }
}

@media(max-width: 1440px) and (min-width: 1200px){
    .buttonsHolder {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 25px 0 0 0;
    }

    .teamContent{
        padding: 25px 0 0 0;
        justify-content: center;
    }

    .moreInfoHolder{
        margin: 15px 0 0 0;
    }

    .textInfo{
        padding: 0 0 0 0;
    }

    #profileJednatel span, #profileKontrolor span, #profileVedouci span, #profileZamestnanci span{
        font-size: 14px;
    }

    .headerProfileInfoText{
        font-size: 18px !important;
    }

    #profileBasic{
        font-size: 12px;
    }

    .profileCardsHolder{
        padding: 0 0 0 35px;
    }

    .cardProfile{
        height: 35%;
        width: 40%;
    }

    .cardImage{
        height: 100px;
    }

    .aktualityContentHolder{
        padding: 0 0 0 0;

        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .aktualityCardsHolder{
        padding: 0px 0 0 0;
        justify-content: center;
        align-content: center;
    }

    .cardAktuality{
        height: 400px;
    }

    .cardButtonsHolder .button{
        margin: 15px 0 0 0;
    }

    .aktualityCardsHolder > #second{
        display: none;
    }

    .textTel{
        padding: 20px 0 0 0;
    }

    .formText{
        font-size: 18px;
        padding: 10px 0 5px 0;
    }

    .kontaktForm input{
        font-size: 18px;
        height: 30px;
    }

    .kontaktForm textarea{
        font-size: 18px;
    }

    .subHeaderLine{
        width: 55%;
    }
}

@media(max-width: 991px) and (min-width: 768px){
    .fp-responsive .fp-section,
    .fp-responsive .fp-slide,
    .fp-responsive .fp-tableCell{
        height: auto !important;
    }

    .menuOpener{
        display: flex;
        margin: 0 0 0 auto;
    }

    .brandSelector{
        margin: 0 0 0 30px;
    }

    .mainNav{
        position: fixed;
        border-bottom: 2px solid var(--primaryDarker);
    }

    .mainMenu{
        position: absolute;
        display: flex;
        flex-direction: column;

        top: 100%;
        left: 0;
        width: 100vw;
        height: 0vh;
        overflow: hidden;
        background-color: var(--primary);
    }

    .mainMenuOpened{
        height: 100vh;
    }

    .mainMenu .navItem{
        width: 100%;
        height: 10%;
        font-size: 20px;
        align-items: center;
    }

    .lineMenu{
        display: none;
    }

    .nextPageScroll{
        display: none;
    }

    .multipleNavigations{
        display: none;
    }

    .pageNumberContainer{
        display: none;
    }

    .container {
        display: flex;
        padding: 20px 20px 20px 20px;
        max-width: initial;
        max-height: initial;
        margin: 0 auto 0 auto;
        height: 100%;
        position: relative;
    }

    .pageWrapper{
        flex-direction: column-reverse;
        width: 100%;
    }

    .homepage .left{
        width: 100%;
        margin: 50px 0 0 0;
    }

    .homepage .right{
        width: 100%;
    }

    .homepage .contentHolder {
        padding: 35px 0 0 0px;
        width: 100%;
    }

    .buttonHoverText{
        display: none;
    }

    .whatWeDoWrapper{
        flex-direction: column;
        width: 100%;
    }

    .itemWhatWeDo{
        width: 100%;
        height: 300px;
    }

    .whatWeDo{
        padding: 0 2px 0 0;
    }

    .itemText .subWhatWeDo{
        transform: translateX(0);
        position: initial;
        transition: all 0.5s ease-in-out
    }

    .whatWeDoOver{
        opacity: 0;
    }

    .subpageContent {
        width: 100%;
        margin: 0px 0 0 0;
    }

    .ourTeamWrapper{
        flex-direction: column;
    }

    .teamContent{
        width: 100%;
        padding: 0 0 0 0;
    }

    .profileCardsHolder{
        width: 100%;
    }

    .galeryWrapper{
        height: 500px;
    }

    .aktualityWrapper{
        flex-direction: column-reverse;
    }

    .aktualityCardsHolder{
        width: 100%;
    }

    .aktualityContentHolder{
        width: 100%;
        padding: 0 0 0 0;
    }

    .kontaktWrapper{
        flex-direction: column;
    }

    .kontaktForm{
        width: 100%;
        margin: 0;
    }
}

@media(max-width: 767px) and (min-width: 576px){
    .fp-responsive .fp-section,
    .fp-responsive .fp-slide,
    .fp-responsive .fp-tableCell{
        height: auto !important;
    }

    .menuOpener{
        display: flex;
        margin: 0 0 0 auto;
    }

    .brandSelector{
        margin: 0 0 0 30px;
    }

    .mainNav{
        position: fixed;
        border-bottom: 2px solid var(--primaryDarker);
    }

    .mainMenu{
        position: absolute;
        display: flex;
        flex-direction: column;

        top: 100%;
        left: 0;
        width: 100vw;
        height: 0vh;
        overflow: hidden;
        background-color: var(--primary);
    }

    .mainMenuOpened{
        height: 100vh;
    }

    .mainMenu .navItem{
        width: 100%;
        height: 10%;
        font-size: 20px;
        align-items: center;
    }

    .lineMenu{
        display: none;
    }

    .nextPageScroll{
        display: none;
    }

    .multipleNavigations{
        display: none;
    }

    .pageNumberContainer{
        display: none;
    }

    .container {
        display: flex;
        padding: 20px 20px 20px 20px;
        max-width: initial;
        max-height: initial;
        margin: 0 auto 0 auto;
        height: 100%;
        position: relative;
    }

    .pageWrapper{
        flex-direction: column-reverse;
        width: 100%;
    }

    .homepage .left{
        width: 100%;
        margin: 50px 0 0 0;
    }

    .homepage .right{
        width: 100%;
    }

    .homepage .contentHolder {
        padding: 35px 0 0 0px;
        width: 100%;
    }

    .buttonHoverText{
        display: none;
    }

    .whatWeDoWrapper{
        flex-direction: column;
        width: 100%;
    }

    .itemWhatWeDo{
        width: 100%;
        height: 300px;
    }

    .whatWeDo{
        padding: 0 2px 0 0;
    }

    .itemText .subWhatWeDo{
        transform: translateX(0);
        position: initial;
        transition: all 0.5s ease-in-out
    }

    .whatWeDoOver{
        opacity: 0;
    }

    .subpageContent {
        width: 100%;
        margin: 0px 0 0 0;
    }

    .ourTeamWrapper{
        flex-direction: column;
    }

    .teamContent{
        width: 100%;
        padding: 0 0 0 0;
    }

    .profileCardsHolder{
        width: 100%;
    }

    .galeryWrapper{
        height: 500px;
    }

    .aktualityWrapper{
        flex-direction: column-reverse;
    }

    .aktualityCardsHolder{
        width: 100%;
    }

    .aktualityContentHolder{
        width: 100%;
        padding: 0 0 0 0;
    }

    .kontaktWrapper{
        flex-direction: column;
    }

    .kontaktForm{
        width: 100%;
        margin: 0;
    }
}

@media(max-width: 575px){
    .fp-responsive .fp-section,
    .fp-responsive .fp-slide,
    .fp-responsive .fp-tableCell{
        height: auto !important;
    }

    .menuOpener{
        display: flex;
        margin: 0 0 0 auto;
    }

    .brandSelector{
        margin: 0 0 0 30px;
        padding: 0 20px 0 35px;
    }

    .mainNav{
        position: fixed;
        border-bottom: 2px solid var(--primaryDarker);
        padding: 0;
    }

    .logoHolder{
        margin: 0 0px 0 0;
    }

    .mainMenu{
        position: absolute;
        display: flex;
        flex-direction: column;

        top: 100%;
        left: 0;
        width: 100vw;
        height: 0vh;
        overflow: hidden;
        background-color: var(--primary);
    }

    .mainMenuOpened{
        height: 100vh;
    }

    .mainMenu .navItem{
        width: 100%;
        height: 10%;
        font-size: 20px;
        align-items: center;
    }

    .lineMenu{
        display: none;
    }

    .nextPageScroll{
        display: none;
    }

    .multipleNavigations{
        display: none;
    }

    .pageNumberContainer{
        display: none;
    }

    .container {
        display: flex;
        padding: 20px 10px 20px 10px;
        max-width: initial;
        max-height: initial;
        margin: 0 auto 0 auto;
        height: 100%;
        position: relative;
    }

    .pageWrapper{
        flex-direction: column-reverse;
        width: 100%;
    }

    .homepage .left{
        width: 100%;
        margin: 50px 0 0 0;
    }

    .homepage .right{
        width: 100%;
    }

    .homepage .contentHolder {
        padding: 20px 0 0 0px;
        width: 100%;
    }

    .buttonHoverText{
        display: none;
    }

    .whatWeDoWrapper{
        flex-direction: column;
        width: 100%;
    }

    .itemWhatWeDo{
        width: 100%;
        height: 300px;
    }

    .whatWeDo{
        padding: 0 2px 0 0;
    }

    .itemText .subWhatWeDo{
        transform: translateX(0);
        position: initial;
        transition: all 0.5s ease-in-out
    }

    .whatWeDoOver{
        opacity: 0;
    }

    .subpageContent {
        width: 100%;
        margin: 0px 0 0 0;
    }

    .ourTeamWrapper{
        flex-direction: column;
    }

    .teamContent{
        width: 100%;
        padding: 0 0 0 0;
    }

    .profileCardsHolder{
        width: 100%;

        justify-content: flex-start;
    }

    .galeryWrapper{
        height: 500px;
    }

    .aktualityWrapper{
        flex-direction: column-reverse;
    }

    .aktualityCardsHolder{
        width: 100%;
    }

    .aktualityContentHolder{
        width: 100%;
        padding: 0 0 0 0;
    }

    .kontaktWrapper{
        flex-direction: column;
    }

    .kontaktForm{
        width: 100%;
        margin: 0;
    }

    .galeryWrapper{
        height: fit-content;
    }

    .row{
        flex-wrap: wrap;
    }

    .galeryItem{
        width: 100%;
    }

    .mainText{
        font-size: 36px;
    }

    .secText{
        font-size: 14px;
    }

    .subText{
        font-size: 18px;
    }

    .subHeaderLine{
        width: 40%;
    }

    .buttonsHolder{
        margin: 20px 0 0 0;
    }

    .button span{
        padding: 15px 25px;
    }

    .button{
        margin: 0 5px 5px 0;
    }
}







/*          ANIMATIONS          */
#nasTymPreHeading{
    transform: translate(0,-250px);
}

#nasTymHeading{
    transform: translate(0,-250px);
}

#nasTymSubHeading{
    opacity: 0;
}

#nasTymIntroText{
    opacity: 0;
}

#profileBasic{
    opacity: 0;
}

#nasTymCards{
    opacity: 0;
}

#newsPre{
    transform: translate(0,-250px);
}

#newsHeading{
    transform: translate(0,-250px);
}

#newsSub{
    opacity: 0;
}

#newsText{
    opacity: 0;
}

#newsButtons{
    opacity: 0;
}

#newsCards{
    opacity: 0;
}