
@font-face {
    font-family: 'FiraGO-SemiBold';
    src: url('FiraGO-SemiBold.ttf') format('truetype');
}

html, body {
    height: 100%;
    margin: 0;
    color: grey;
}

.header {
    background-color: red;
}

.content {
    min-height: 100%;
    margin-bottom: -60px; /* equal to footer height */
    background-color: blue
}

    .content:after {
        content: "";
        display: block;
    }

    .footer, .content:after {
        height: 60px;
    }

.activeCategory {
    background-color: #A1A1A1;
}


.textFont {
    font-family: FiraGO-SemiBold;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: -.03em;
    font-feature-settings: 'case' on;
    text-align: left;
    color: black;
}

.textFontBold {
    font-family: FiraGO-SemiBold;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: -.03em;
    font-feature-settings: 'case' on;
    text-align: left;
    color: white;
}


.categoryItem :hover {
    background-color: #A1A1A1;
}

#topInfoP {
    margin-right: 30px;
}

.textStyle {
    font-family: 'FiraGO-SemiBold' !important;
    font-style: normal;
    font-weight: 700;
    font-size: 21px;
    line-height: 20px;
    letter-spacing: -.03em;
    font-feature-settings: 'case' on;
    padding-top: 10px;
    color: white;
}

.textStyleMobile {
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 15px;
    padding-top: 10px;
    color: white;
}

customText {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    text-decoration: none;
    color: black;
}

.main-card-size {
    width: 100%;
    height: 25vw;
    object-fit: fill;
}

a {
    color:black;
    text-decoration:none;
}

.side-card-size {
    width: 100%;
    height: 10vw;
    object-fit: fill;
}

#load {
    display: flex;
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(192, 192, 192, 0.5);
    background-image: url("https://c.tenor.com/wpSo-8CrXqUAAAAi/loading-loading-forever.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

#toggleButtonDiv{
    display:none;
}


@media only screen and (max-width: 1000px) {
    .main-card-size {
        width: 100%;
        height: 50vw;
        object-fit: fill;
    }

    .side-card-size {
        width: 100%;
        height: 50vw;
        object-fit: fill;
    }
    #toggleButtonDiv {
        display: block;
    }
}

@media only screen and (max-width: 600px) {

    #mainPageP {
        margin-left: 40px;
    }

    #topInfoP {
        margin-right: 0px;
    }


    #mainLogoBeta {
        margin-left: -60px;
    }

    #LogoSvg {
        width: 180px;
    }

    .categoriesRow {
        justify-content: center;
    }

    .main-card-size {
        width: 100%;
        height: 50vw;
        object-fit: fill;
    }

    .side-card-size {
        width: 100%;
        height: 50vw;
        object-fit: fill;
    }

    #toggleButtonDiv {
        display: block;
    }
}
* {
    box-sizing: border-box
}

body {
    font-family: Verdana, sans-serif;
    margin: 0
}

.mySlides {
    display: block;
}

img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(28,133,211,0.8);
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        background-color: rgba(28,133,211,0.8);
    }

/* Caption text */
.text {
    color: black;
    font-size: 15px;
    padding: 8px 12px;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: black;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .active, .dot:hover {
        background-color: #717171;
    }

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next, .text {
        font-size: 11px
    }
}


@media only screen and (max-width: 600px) {
    .prev, .next {
        top:30%;
    }
}