.main-image-block {
    display: block;
    background-image: url("../Pictures/Main/GK-large-8-1360x500-1.webp");
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
}

.main-description-block {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

.main-description-justify {
    width: 1300px;
    /*display: flex;
    flex-direction: row;
    justify-content: space-between;*/
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    align-items: center;
    background-color: #071a2eda;
    padding-top: 4px;
    border-radius: 9.3px;
    margin-left: 10px;
    margin-right: 10px;
}

.main-description {
    margin: 0 20px 0 20px;
    padding-left: 10px;
    max-width: 100%;
    align-items: center;
    color: white;
    font-size: 35px;
}

.text-block-description {
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    color: rgb(4, 16, 28);
}

.mobile-title {
    display: none;
}

@media (max-width: 880px) {
    .main-description-block {
        top: 136px;
    }
    .main-description {
        font-size: 30px;
    }
}

@media (max-width: 700px) {
    .main-description-block {
        top: 116px;
    }
    .main-description {
        font-size: 25px;
    }
}

@media (max-width: 630px) {
    .main-description {
        font-size: 22px;
    }
}

* {
    box-sizing: border-box
}


/* Slideshow container */

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    padding-left: 5px;
    padding-right: 4px;
}

.slide-pict {
    width: 100%;
    border-radius: 5.3px;
}


/* Hide the images by default */

.mySlides {
    display: none;
}


/* Fading animation */

.fade {
    animation-name: fade;
    animation-duration: 0.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@media (max-width: 448px) {
    .main-description {
        text-align: center;
        display: none;
    }
    .main-description-justify {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
        padding: 0;
        background-color: rgba(255, 255, 255, 0);
    }
    .slideshow-container {
        padding: 0;
    }
    .slide-pict {
        padding: 0;
        margin: 0;
        border-width: 1px;
        border-style: solid;
        border-color: #071a2eda;
        ;
    }
    .mobile-title {
        display: block;
        color: rgb(4, 16, 28);
        font-size: 23px;
        margin-left: 15px;
        margin-right: 15px;
        text-align: center;
        border-bottom-color: rgb(167, 167, 167);
        border-bottom-style: solid;
        border-bottom-width: 1px;
    }
    .text-block-description h2 {
        font-weight: 300;
        font-size: 20px;
        color: black;
    }
}