@font-face {
    font-family: 'Now';
    src: url('font/now_regular.otf') format("opentype");
}
@font-face {
    font-family: 'NowBold';
    src: url('font/now_bold.otf') format("opentype");
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    font-family: 'Lato', sans-serif;
    color: #111;
    letter-spacing: 1px;
}

h1, h2, h3, h4 {
    font-family: 'NowBold', sans-serif;
}

a {
    cursor: pointer;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    z-index: 101;
}
#header nav ul {
    margin: 0 auto;
    text-align: center;
    width: auto;
    list-style: none;
    padding: 0;
    box-sizing: border-box;
    height: 100px;
}
#header nav ul li {
    display: inline-block;
    padding: 0 25px;
    text-align: center;
    line-height: 100px;
}
#header nav ul li a {
    color: #111;
    text-decoration: none;
    transition: 0.4s;
    position: relative;
    padding: 6px 0;
    font-size: 16px;
    font-weight: 600;
}
#header nav ul li a::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 50%;
    left: 25%;
    border-bottom: 2px solid #fff;
    transition: 0.4s;
}
#header nav ul li a:hover {
    color: #ffbc13;
}
#header nav ul li a:hover::before {
    border-color: #ffbc13;
}
#header .logo {
    position: absolute;
    left: 5%;
    top: 15px;
    background: url('../../img/logo_pozadi.png') no-repeat center center;
    background-size: cover;
    width: 153px;
    height: 117px;
    z-index: 150;
}
#header .socials {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    padding: 0;
}
#header .socials a {
    color: #111;
    text-decoration: none;
    transition: 0.4s;
    font-size: 20px;
    margin: 0 10px;
}
#header .socials a:hover {
    color: #ffbc13;
}
#header .socials img {
    width: 22px;
    height: 22px;
    position: relative;
    top: 3px;
}

#main {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    background: url('../../img/main-bg-2.jpg') no-repeat center center;
    background-size: cover;
}
#slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
}
#slideshow .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
}
#main .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}
#main .perex {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    color: #fff;
    font-size: 18px;
    width: 50%;
    font-family: 'Now', sans-serif;
}
#main .perex h1 {
    font-size: 34px;
}
#main .open-day {
    width: 350px;
    height: 304px;
    background: url('../../img/den_otevrenych_dveri.png') no-repeat center center;
    background-size: cover;
    position: absolute;
    cursor: pointer;
    transition: 0.7s;
    bottom: -200px;
    right: 15%;
    padding: 25px 2.5%;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    font-family: 'Now', sans-serif;
    font-weight: bold;
}
@media (max-width: 1600px) {
    #main .open-day {
        right: 7.5%;
    }
}
#main .open-day .title {
    font-size: 19px;
    font-weight: bold;
}
#main .open-day .title .date {
    text-decoration: underline;
    color: #ffbc13;
}
#main .open-day a {
    color: #ffbc13;
    text-decoration: underline;
}
#main .open-day.expanded {
    bottom: 0 !important;
}

#main a.scroll-down {
    padding-top: 70px;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}
#main a.scroll-down span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid #fff;
    border-radius: 50px;
    box-sizing: border-box;
}
#main a.scroll-down span::before {
    position: absolute;
    top: 10px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sdb10 2s infinite;
    animation: sdb10 2s infinite;
    box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
    0% {
        -webkit-transform: translate(0, 0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        -webkit-transform: translate(0, 20px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@keyframes sdb10 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        transform: translate(0, 20px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


#about {
    width: 100%;
    height: auto;
    min-height: 60vh;
    background-image: linear-gradient(#fffffe, #eeeeeb);
    position: relative;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}
#about .content {
    width: 85%;
    margin: 0 auto;
    position: relative;
    padding: 80px 0 40px 0;
    box-sizing: border-box;
}
#about .content .perex {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
}
#about .content .row {
    display: flex;
    margin: 25px auto;
}
#about .content .row .col-33 {
    float: left;
    width: 31.333%;
    padding: 35px 30px;
    box-sizing: border-box;
    position: relative;
    height: auto;
    background: #fff;
    flex: 31.333%;
    margin: 0 1.5%;
}
#about .content .row .col-66 {
    float: left;
    width: 66.666%;
    padding: 35px 30px;
    box-sizing: border-box;
    position: relative;
    height: auto;
    flex: 66.666%;
    margin: 0 1.5%;
}
/*#about .content .row .col-33 h2 {*/
/*    font-size: 14px;*/
/*    font-family: 'Lato', sans-serif;*/
/*    font-weight: bold;*/
/*}*/
#about .content .row .col-33 h3, #about .content .row .col-33 h2 {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Now', sans-serif;
    margin-bottom: 30px;
}
#about .content .row .col-33 p {
    line-height: 1.4;
    text-align: justify;
}
#about .content .row .col-33 a {
    color: #111;
    text-decoration: none;
}
#about .content .row .col-33 a.highlight {
    color: #ffbc13;
}
#about .content .row .col-33 a:hover {
    text-decoration: underline;
}
#about .content .row .col-33 a i {
    margin-left: 10px;
}
#about .content .row .col-33.bg-square {
    background: url('../../img/bg-square.jpg') no-repeat center center;
    background-size: cover;
}
#about .content .row .col-66.bg-square {
    background: url('../../img/homepage-building.jpeg') no-repeat center center;
    background-size: cover;
}
#about .content .row .col-66 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
#about .content .row .col-66 .overlay .box {
    position: absolute;
    right: 5%;
    top: 40%;
    transform: translateY(-40%);
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-size: 24px;
    width: auto;
    padding: 25px 30px 25px 45px;
    max-width: 70%;
}
#about .content .row .col-66 .overlay a {
    color: #ffbc13;
    text-decoration: none;
    position: absolute;
    right: 5%;
    bottom: 45px;
}
#about .content .row .col-66 .overlay a i {
    margin-left: 10px;
}
#about .content .row .col-66 .overlay a:hover {
    text-decoration: underline;
}

#info-matrix {
    width: 100%;
    height: auto;
    min-height: 60vh;
    background: #fffffe;
    position: relative;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}
#info-matrix .container {
    display: flex;
    position: relative;
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
}
#info-matrix .container .col-40 {
    width: 44.5%;
    float: left;
    flex: 44.5%;
    position: relative;
    margin-right: 0.5%;
    background: url('../../img/almanach2.jpg') no-repeat center center;
    background-size: cover;
}
#info-matrix .container .col-60 {
    width: 54.5%;
    float: left;
    flex: 54.5%;
    position: relative;
    margin-left: 0.5%;
}
#info-matrix .container .row {
    display: flex;
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#info-matrix .container .row .col-50 {
    float: left;
    width: 50%;
    flex: 25%;
    padding: 0;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
}
#info-matrix .container .row .col-50.open-day-col-text {
    background: #46939d;
    padding: 3% 40px;
    box-sizing: border-box;
    text-align: center;
    color: #fffffe;
}
#info-matrix .container .row .col-50.open-day-col-text h2, #info-matrix .container .row .col-50.open-day-col-text h2 a {
    font-family: 'Now', sans-serif;
    font-size: 26px !important;
}
#info-matrix .container .row .col-50.open-day-col-text .highlight {
    font-size: 14px;
}
#info-matrix .container .row .col-50.open-day-col-text .info {
    font-size: 16px;
    margin-top: 30px;
    letter-spacing: 1px;
    line-height: 1.5;
    font-weight: 300;
}
#info-matrix .container .row .col-50.open-day-col-text a {
    color: #fffffe;
    text-decoration: none;
    transition: 0.4s;
    font-size: 16px;
}
#info-matrix .container .row .col-50.open-day-col-text a:hover {
    color: #ffbc13;
}
#info-matrix .container .row .col-50.open-day-col-text a i {
    margin-left: 10px;
}
#info-matrix .container .row .col-50.open-day-col-bg {
    background: url('../../img/building-1.jpg') no-repeat center center;
    background-size: cover;
}
#info-matrix .container .row .col-50 .arrow-right {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #46939d;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
#info-matrix .container .row .col-50 .arrow-left {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid #f1b34b;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
#info-matrix .container .row.top-margin {
    margin-top: 15px;
}
#info-matrix .container .row .col-50.magazine-col-text {
    background: #f1b34b;
    padding: 3% 40px;
    box-sizing: border-box;
    text-align: center;
    color: #fffffe;
}
#info-matrix .container .row .col-50.magazine-col-text h2, #info-matrix .container .row .col-50.magazine-col-text h2 a {
    font-family: 'Now', sans-serif;
    font-size: 26px !important;
}
#info-matrix .container .row .col-50.magazine-col-text .highlight {
    font-size: 14px;
}
#info-matrix .container .row .col-50.magazine-col-text .info {
    font-size: 16px;
    margin-top: 30px;
    letter-spacing: 1px;
    line-height: 1.5;
    font-weight: 300;
}
#info-matrix .container .row .col-50.magazine-col-text a {
    color: #fffffe;
    text-decoration: none;
    transition: 0.4s;
    font-size: 16px;
}
#info-matrix .container .row .col-50.magazine-col-text a:hover {
    text-decoration: underline;
}
#info-matrix .container .row .col-50.magazine-col-text a i {
    margin-left: 10px;
}
#info-matrix .container .row .col-50.magazine-col-bg {
    background: url('../../img/skolnik.jpg') no-repeat center center;
    background-size: cover;
}
#info-matrix .container .col-40 .box {
    position: absolute;
    bottom: 0;
    transform: translateY(-65%);
    right: 4%;
    padding: 30px 25px;
    background: rgba(52,95,130,0.8);
    color: #fffffe;
    text-align: center;
    max-width: 70%;
    font-size: 20px;
    font-family: 'Now', sans-serif;
    line-height: 1.7;
}
#info-matrix .container .col-40 .box strong {
    font-family: 'NowBold', sans-serif;
}
#info-matrix .container .col-40 .almanach {
    position: absolute;
    bottom: 60px;
    right: 4%;
    color: #fffffe;
    text-decoration: none;
}
#info-matrix .container .col-40 .almanach:hover {
    text-decoration: underline;
}

#news {
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    background: url('../../img/aktuality_bg.png') no-repeat center center;
    background-size: cover;
}
#news .content {
    width: 90%;
    margin: 0 auto;
    padding: 8% 0 1% 0;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
}
#news .content .col-25 {
    width: 25%;
    flex: 25%;
    text-align: right;
    padding-right: 50px;
    box-sizing: border-box;
}
#news .content .col-25 a {
    color: #ffbc13;
    text-decoration: none;
}
#news .content .col-25 a:hover {
    text-decoration: underline;
}
#news .content .col-25 a i {
    color: #46939d;
    margin-left: 10px;
}
#news .content .col-75 {
    width: 75%;
    flex: 75%;
    padding: 0;
    margin: 0 auto;
    position: relative;
}
#news .content .col-75 .row {
    display: flex;
    position: relative;
    margin: 0 auto;
    padding: 0;
}
#news .content .col-75 .row .col-33 {
    flex: 31.333%;
    width: 31.333%;
    margin: 0 1%;
    padding: 0;
    position: relative;
    background: #fffffe;
    color: #0d0d0d;
}
#news .content .col-75 .row .col-33 .image-header {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    height: 175px;
    position: relative;
}
#news .content .col-75 .row .col-33 .image-header .overlay {
    opacity: 0;
    background: rgba(70,147,157,0.7);
    color: #fff;
    transition: 0.4s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    box-sizing: border-box;
}
#news .content .col-75 .row .col-33 .image-header .overlay i {
    font-size: 56px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}
#news .content .col-75 .row .col-33 a:hover .image-header .overlay {
    opacity: 1;
}
#news .content .col-75 .row .col-33 .article-info {
    width: 85%;
    margin: 0 auto;
    padding: 10px 0 20px 0;
    box-sizing: border-box;
}
#news .content .col-75 .row .col-33 .article-info a {
    color: #0d0d0d;
    text-decoration: none;
    font-size: 18px;
    font-family: 'NowBold', sans-serif;
    transition: 0.4s;
}
#news .content .col-75 .row .col-33 .article-info a:hover {
    text-decoration: underline;
    color: #ffbc13;
}
#news .content .col-75 .row .col-33 .article-info hr.article-divider {
    width: 33%;
    border: 0;
    height: 3px;
    background: #dbdcd7;
    transition: 0.4s;
    margin: 0;
}
#news .content .col-75 .row .col-33 .article-info .article-details {
    width: 100%;
    background: #eaebe6;
    color: #0d0d0d;
    padding: 4px 8px;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: bold;
    margin-top: 20px;
}
#news .content .col-75 .row .col-33 .article-info .article-details .article-type {
    float: left;
    width: 50%;
    text-align: left;
    padding: 0;
    margin: 0;
}
#news .content .col-75 .row .col-33 .article-info .article-details .article-date {
    float: left;
    width: 50%;
    text-align: right;
    padding: 0;
    margin: 0;
}
#news .content .col-75 .row .col-33 .article-info .article-details .article-date i {
    color: #46939d;
    margin-right: 5px;
}

#news .content-gallery {
    width: 90%;
    margin: 0 auto;
    padding: 5% 0 2% 0;
    box-sizing: border-box;
    position: relative;
    text-align: center;
}
#news .content-gallery p {
    max-width: 1000px;
    margin: 0 auto;
}
#news .gallery-albums {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 0 0;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
}
#news .gallery-albums .album {
    width: 25%;
    flex: 25%;
    float: left;
    height: 350px;
    position: relative;
}
#news .gallery-albums .album .overlay {
    opacity: 0;
    background: rgba(70,147,157,0.7);
    color: #fff;
    transition: 0.4s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 10% 4%;
    box-sizing: border-box;
}
#news .gallery-albums .album .overlay h3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}
#news .gallery-albums .album .overlay h3 i {
    font-size: 64px;
    font-weight: bold;
    margin-top: 30px;
}
#news .gallery-albums .album:hover .overlay {
    opacity: 1;
}

#section-header {
    width: 100%;
    margin: 100px auto 0 auto;
    height: 32vh;
    position: relative;
    padding: 0;
    background: url('../../img/charakteristika-bg.jpg') no-repeat center center;
    background-size: cover;
}
#section-header .header-filter {
    width: 60%;
    height: 100%;
    position: absolute;
    left: 6%;
    top: 0;
    padding: 0;
    margin: 0;
    background: url('../../img/header-filter.png') no-repeat bottom center;
    background-size: cover;
    z-index: 10;
}
#section-header .header-filter .header-content {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}
#section-header .header-filter .header-content h1 {
    font-family: 'Now', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #111;
    margin-bottom: 0;
    max-width: 50%;
}
#section-header .header-filter .header-content h2 {
    font-family: 'Now', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #111;
    margin-bottom: 0;
}
#section-header .header-filter .header-content .breadcrumb {
    padding: 0 8px;
    list-style: none;
    margin-top: 5px;
}
#section-header .header-filter .header-content .breadcrumb li {
    display: inline;
    font-size: 14px;
}
#section-header .header-filter .header-content .breadcrumb li a {
    color: #111;
    text-decoration: none;
}
#section-header .header-filter .header-content .breadcrumb li a:hover {
    text-decoration: underline;
}
#section-header .header-filter .header-content .breadcrumb li+li:before {
    padding: 0 8px;
    color: #111;
    content: ">";
}

#footer {
    width: 100%;
    height: auto;
    min-height: 500px;
    position: relative;
    box-sizing: border-box;
    padding: 0;
    margin: 0 auto;
    background: #215d64;
    color: #fff;
}
#footer .watermark {
    position: absolute;
    bottom: 50px;
    right: 4%;
    background: url("../../img/logo_white_footer.png") no-repeat center center;
    background-size: cover;
    height: 500px;
    width: 316px;
}
#footer .content {
    width: 80%;
    margin: 0 auto;
    height: auto;
    position: relative;
    padding: 5% 0;
    box-sizing: border-box;
}
#footer .content .newsletter-box {
    width: 100%;
    padding: 30px 25px;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    background: #458c94;
    -webkit-box-shadow: 0px 0px 25px -6px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 25px -6px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 25px -6px rgba(0,0,0,0.75);
}

#footer .content .cookies {
    width: 100%;
    color: #94adbf;
    font-size: 13px;
    line-height: 1.5;
    padding: 5px 25px;
    box-sizing: border-box;
}
#footer .content .copyright {
    float: left;
    width: 50%;
    color: #94adbf;
    font-size: 13px;
    line-height: 1.5;
    padding-left: 25px;
    box-sizing: border-box;
}
#footer .content .author {
    float: left;
    width: 50%;
    color: #94adbf;
    text-align: right;
    font-size: 13px;
    line-height: 1.5;
    padding-right: 25px;
    box-sizing: border-box;
}
.mobydyk {
    display: inline-block;
    mask: url("../../img/mobydyk-icon.svg");
    -webkit-mask: url("../../img/mobydyk-icon.svg");
    mask-size: auto;
    mask-size: cover;
    -webkit-mask-size: cover;
    fill: #fff;
    height: 22.4px;
    width: 30.4px;
    margin-left: 7px;
    margin-bottom: -4px;
    background-color: #94adbf;
    transition: 0.4s;
}
.mobydyk:hover {
    background-color: #fff;
}
#footer .content .copyright a {
    color: #94adbf;
    transition: 0.4s;
    text-decoration: none;
}
#footer .content .copyright a:hover {
    color: #fff;
}

@media (min-width: 1800px) {
    #footer .content {
        width: 60%;
    }
}

#footer .content .newsletter-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 25%;
    width: 100%;
    left: 0;
    border-left: 4px solid #fdb931;
    height: 50%;
    transition: 0.4s;
}
#footer .content .newsletter-box .col-40 {
    width: 40%;
    float: left;
    flex: 40%;
    padding: 10px 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}
#footer .content .newsletter-box .col-40 .subscribed-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #458c94;
    color: #fdb931;
    font-family: 'Now', sans-serif;
    font-weight: bold;
    text-align: center;
    z-index: 2;
    text-transform: uppercase;
    padding-top: 5%;
    box-sizing: border-box;
    font-size: 18px;
}
#footer .content .newsletter-box .col-40 .subscribed-message i {
    margin-left: 10px;
    font-size: 26px;
}
#footer .content .newsletter-box .col-40 .newsletter-error {
    font-weight: normal;
    color: #fff;
    font-size: 14px;
    padding-top: 10px;
    box-sizing: border-box;
    font-family: 'Now', sans-serif;
}
#footer .content .newsletter-box .col-40 .newsletter-error i {
    margin-right: 5px;
    color: #c90026;
}
#footer .content .newsletter-box .col-60 {
    width: 60%;
    flex: 60%;
    float: left;
    padding: 10px 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    letter-spacing: 1.5px;
    line-height: 1.5;
    font-size: 15px;
}
#footer .content .newsletter-box .col-60 .highlight {
    color: #fdb931;
}
#footer .content .newsletter-box .col-60 p:nth-of-type(2) {
    margin-top: -5px;
}
#footer .content .newsletter-box .col-60 a {
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
    margin-top: 0;
}
#footer .content .newsletter-box .col-60 a:hover {
    text-decoration: underline;
}
#footer .content .newsletter-box .col-60 a i {
    margin-left: 20px;
}
#footer .content .newsletter-box .col-40 input[type="email"] {
    padding: 22px 16px;
    border: 0;
    box-sizing: border-box;
    width: 70%;
    font-size: 14px;
    font-family: 'Now', sans-serif;
    margin: 0 auto;
    float: left;
}
#footer .content .newsletter-box .col-40 input[type="submit"] {
    background: #fdb931;
    color: #fff;
    font-family: 'Now', sans-serif;
    padding: 22px 10px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 30%;
    font-size: 14px;
    border: 0;
    cursor: pointer;
    float: left;
    transition: 0.4s;
    -webkit-appearance: none;
}
#footer .content .newsletter-box .col-40 input[type="submit"]:hover, #footer .content .newsletter-box .col-40 input[type="submit"]:focus {
    background: #ecab29;
}

#footer .content .col-31 {
    width: 31%;
    float: left;
    padding: 10px 25px;
    box-sizing: border-box;
    position: relative;
    font-size: 14px;
    color: #94adbf;
    margin: 20px auto;
    line-height: 1.5;
}
#footer .content .col-23 {
    width: 23%;
    float: left;
    padding: 50px 25px 10px 25px;
    box-sizing: border-box;
    position: relative;
    color: #94adbf;
    margin: 20px auto;
    line-height: 1.5;
    overflow-x: auto;
}

#footer .content .col-31 img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}
#footer .content .col-31 i {
    margin-right: 10px;
    font-size: 16px;
}
#footer .content .col-31 i.green {
    color: #4db781;
}
#footer .content .col-31 i.yellow {
    color: #cfc249;
}
#footer .content .col-31 i.red {
    color: #da7141;
}
#footer .content .col-31 a {
    color: #94adbf;
    transition: 0.4s;
    text-decoration: none;
}
#footer .content .col-31 a:hover {
    color: #fff;
}
#footer .content .col-31 .socials {
    margin-top: 45px;
}
#footer .content .col-31 .socials i {
    font-size: 22px;
}
#footer .content .col-31 .socials i.fa-facebook-f {
    margin-right: 25px;
}

#footer .content .col-23 h3 {
    color: #edeff0;
}
#footer .content .col-23 p {
    margin: 20px auto;
}
#footer .content .col-23 p a {
    font-size: 14px;
    color: #94adbf;
    text-decoration: none;
    transition: 0.5s;
    position: relative;
}
#footer .content .col-23 h3 a {
    color: #edeff0;
    text-decoration: none;
    transition: 0.5s;
    position: relative;
}
#footer .content .col-23 h3 a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fdb931;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
#footer .content .col-23 a i {
    margin-right: 10px;
}
#footer .content .col-23 p a:hover {
    color: #fdb931;
}
#footer .content .col-23 h3 a:hover {
    color: #fdb931;
}
#footer .content .col-23 h3 a:hover:before {
    visibility: visible;
    width: 100%;
}

#section-content {
    width: 100%;
    margin: 0 auto;
    padding: 40px 5%;
    position: relative;
    box-sizing: border-box;
    height: auto;
    background: #fcfcfc;
}
#section-content.news {
    padding: 40px 10%;
}
#section-content .col-left {
    width: 70%;
    float: left;
    padding: 0 30px 0 0;
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: justify;
}
#section-content .col-left h2 {
    font-weight: 400;
    font-size: 26px;
}
#section-content .col-left p {
    letter-spacing: 1.25px;
    line-height: 1.6;
    font-size: 15px;
}
#section-content .col-left a {
    color: #458c94;
    text-decoration: none;
}
#section-content .col-left a:hover {
    text-decoration: underline;
}
#section-content .col-left img {
    max-width: 95% !important;
    height: auto !important;
}
#section-content .col-left ul li {
    letter-spacing: 1.25px;
    line-height: 1.6;
    font-size: 15px;
    padding: 5px;
}
#section-content .col-left .almanach-ad {
    width: 100%;
    height: auto;
    padding: 100px 0 50px 0;
    position: relative;
    margin: 40px auto 0 auto;
    background: url("../../img/almanach2.jpg") no-repeat center center;
    background-size: cover;
    box-sizing: border-box;
}
#section-content .col-left .almanach-ad .overlay {
    position: relative;
    float: right;
    margin-right: 5%;
    background: rgba(0,0,0,0.4);
    color: #fff;
    width: 60%;
    height: auto;
    padding: 25px 30px;
    box-sizing: border-box;
    text-align: center;
    font-family: "Now", sans-serif;
}
#section-content .col-left .almanach-ad .almanach-small {
    text-align: right;
    padding-right: 5%;
    box-sizing: border-box;
    font-size: 14px;
    margin-top: 40px;
}
#section-content .col-left .almanach-ad .almanach-small a {
    color: #ffbc13;
    text-decoration: none;
}
#section-content .col-left .almanach-ad .almanach-small a:hover {
    text-decoration: underline;
}
#section-content .col-right {
    width: 30%;
    float: left;
    padding: 0 0 0 30px;
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
}
#section-content .col-right .side-nav {
    width: 100%;
    background: #fff;
    position: relative;
    border-bottom: 3px solid #ecab29;
    color: #0d0d0d;
    height: auto;
    padding: 40px 25px 30px 25px;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 0px 31px -11px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 31px -11px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 31px -11px rgba(0,0,0,0.75);
    list-style: none;
    top: -100px;
}
#section-content .col-right .side-nav li {
    padding: 9px 10px;
    box-sizing: border-box;
}
#section-content .col-right .side-nav li a {
    color: #0d0d0d;
    text-decoration: none;
    transition: 0.4s;
}
#section-content .col-right .side-nav li a:hover {
    color: #ecab29;
    text-decoration: underline;
}
#section-content .col-right .side-nav li a.active {
    color: #ecab29;
    font-weight: bold;
}
#section-content .col-right .side-nav li a i {
    color: #fff;
    transition: 0.4s;
}
#section-content .col-right .side-nav li a:hover i {
    color: #ecab29;
}

#section-content .col-right iframe {
    width: 100%;
    height: 250px;
    margin-top: -60px;
}
#section-content .col-right .description {
    background: #fff;
    color: #0d0d0d;
    text-align: center;
    font-size: 16px;
    width: 100%;
    -webkit-box-shadow: 0px 0px 31px -11px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 31px -11px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 31px -11px rgba(0,0,0,0.75);
    padding: 15px;
    margin-top: -10px;
    box-sizing: border-box;
}
#section-content .col-left .col-2 {
    float: left;
    width: 50%;
    margin: 0 auto;
    padding: 35px 0 25px 0;
    box-sizing: border-box;
    position: relative;
}
#section-content .col-left .col-2 h3 {
    margin-bottom: 50px;
    font-size: 22px;
    font-weight: 400;
}
#section-content .col-left .col-2.left {
    padding-right: 20px;
}
#section-content .col-left .col-2.right {
    padding-left: 20px;
}
#section-content .col-left .col-2 img {
    max-width: 100%;
    height: auto;
}
#section-content .col-left .quote {
    background: #feefcb;
    margin: 0 auto;
    width: 60%;
    display: block;
    padding: 30px 35px;
    box-sizing: border-box;
    color: #0d0d0d;
    position: relative;
    text-align: center;
    font-size: 20px;
    font-family: "Now", sans-serif;
    line-height: 1.75;
    margin-bottom: 70px;
}
#section-content .col-left .quote:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 26px 26px 0;
    border-style: solid;
    border-color: #e3cc96 #fff;
}
#section-content .col-left .info-row {
    cursor: pointer;
}
#section-content .col-left .clickable-row {
    -webkit-box-shadow: 0px 0px 42px -25px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 42px -25px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 42px -25px rgba(0,0,0,0.75);
    width: 100%;
    height: auto;
    padding: 10px 5%;
    box-sizing: border-box;
    position: relative;
    transition: 0.4s;
    margin: 20px auto;
}
#section-content .col-left .info-row h4 {
    font-size: 18px;
    transition: 0.4s;
    font-weight: normal;
}
#section-content .col-left .clickable-row i {
    position: absolute;
    top: 30px;
    right: 20px;
    font-size: 32px;
    transition: 0.4s;
}
#section-content .col-left .info-row.expanded i {
    transform: rotate(90deg);
    color: #ecab29;
}
#section-content .col-left .info-row.expanded h4 {
    color: #ecab29;
}
#section-content .col-left .clickable-row .hidden-text {
    display: none;
    padding: 25px 0 40px 0;
    box-sizing: border-box;
    max-width: 90%;
}

#section-content.news .news-col {
    width: 33%;
    float: left;
    height: auto;
    padding: 0 2.5%;
    margin: 30px auto;
    position: relative;
    box-sizing: border-box;
}
#section-content.news .news-col .news-box {
    background: #fff;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    -webkit-box-shadow: 0px 0px 42px -25px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 42px -25px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 42px -25px rgba(0,0,0,0.75);
}
#section-content.news .news-col .news-image {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    height: 300px;
    position: relative;
}
#section-content.news .news-col .news-image .overlay {
    opacity: 0;
    background: rgba(70,147,157,0.7);
    color: #fff;
    transition: 0.4s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    box-sizing: border-box;
}
#section-content.news .news-col .news-image .overlay i {
    font-size: 56px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}
#section-content.news .news-col .news-image:hover .overlay {
    opacity: 1;
}
#section-content.news .news-col .news-title {
    padding: 15px 30px 35px 30px;
    line-height: 1.4;
}
#section-content.news .news-col .news-title .date {
    font-size: 13px;
}
#section-content.news .news-col .news-title .date span {
    margin-left: 15px;
}
#section-content.news .news-col .news-title .date span span {
    margin-right: 15px;
    margin-left: 0;
}
#section-content.news .news-col .news-title a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}
#section-content.news .news-col .news-title a:hover {
    color: #ecab29;
}
#section-content.news .news-col .news-title hr {
    background: #ecab29;
    height: 2px;
    border: 0;
    margin: 0;
    width: 20%;
}
#section-content.news .load-more {
    margin: 40px auto;
    text-align: center;
}
#section-content.news .load-more a {
    background: #458c94;
    padding: 22px 42px;
    color: #fff;
    text-transform: uppercase;
    transition: 0.3s;
    text-decoration: none;
    font-size: 14px;
    -webkit-box-shadow: 5px 5px 35px -15px rgba(0,0,0,0.75);
    -moz-box-shadow: 5px 5px 35px -15px rgba(0,0,0,0.75);
    box-shadow: 5px 5px 35px -15px rgba(0,0,0,0.75);
}
#section-content.news .load-more a:hover {
    color: #fff;
}

.classes-table {
    width: 100%;
    height: auto;
    padding: 0;
    box-sizing: border-box;
    margin: 0 auto;
    border: 0;
    border-spacing: 0;
}
.classes-table th {
    padding: 16px 20px;
    font-weight: bold;
    border-bottom: 2px solid #ecab29;
    text-align: left;
}
.classes-table td {
    padding: 16px 20px;
}
.classes-table tr:nth-child(2n+2) td {
    border-bottom: 1px solid #ecab29;
}
.classes-table tr:nth-child(2n+1) td:nth-child(3) {
    border-bottom: 1px solid #ecab29;
}
.classes-table tr:nth-last-child(2) td:nth-child(3) {
    border: 0;
}
.classes-table tr:last-child td {
    border: 0;
}
.classes-table td a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}
.classes-table td a:hover {
    color: #ecab29;
    text-decoration: underline;
}

.school-table {
    width: 100%;
    height: auto;
    padding: 0;
    box-sizing: border-box;
    margin: 0 auto 40px auto;
    border: 0;
    border-spacing: 0;
}
.school-table td {
    padding: 16px 20px;
    line-height: 1.7;
}
.school-table td.cell-title {
    font-weight: bold;
    padding-left: 0;
}
.school-table td a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}
.school-table td a:hover {
    color: #ecab29;
    text-decoration: underline;
}


.gallery-header {
    width: 100%;
    height: 55vh;
    position: relative;
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
}
.gallery-header .overlay {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    background: rgba(0,0,0,0.4);
}
.gallery-header .overlay .col-left {
    float: left;
    width: 55%;
    box-sizing: border-box;
    margin: 0;
    color: #fff;
    position: relative;
    height: 100%;
}
.gallery-header .overlay .col-left .gallery-title {
    position: absolute;
    top: 60%;
    transform: translateY(-60%);
    left: 10%;
}
.gallery-header .overlay .col-left h1 {
    font-size: 36px;
}
.gallery-header .overlay .col-left h2 {
    font-weight: normal;
    font-family: 'Now', sans-serif;
    font-size: 20px;
}
.gallery-header .overlay .col-left h2 strong {
    font-family: 'NowBold', sans-serif;
}
.gallery-header .overlay .col-right {
    float: left;
    width: 45%;
    position: relative;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    color: #fff;
}
.gallery-header .overlay .col-right .open-gallery-button {
    color: #fff;
    border: 2px solid #fff;
    border-radius: 36px;
    padding: 16px 36px;
    margin: 0 auto;
    font-size: 20px;
    font-family: 'Now', sans-serif;
    text-decoration: none;
    transition: 0.3s;
    position: absolute;
    top: 60%;
    right: 10%;
    transform: translateY(-60%);
}
.gallery-header .overlay .col-right .open-gallery-button:hover {
    border-color: #458c94;
}

.gallery-container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    text-align: center;
}
.gallery-grid {
    width: 90%;
    margin: 1% auto 30px auto;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}
.gallery-grid .photo-box {
    float: left;
    width: 25%;
    box-sizing: border-box;
    padding: 0;
    margin: 25px auto;
    text-align: center;
}
.gallery-grid .photo-box img {
    width: 80%;
    height: auto;
}
.gallery-back-button {
    margin: 25px auto;
    padding: 14px 28px;
    background: #458c94;
    color: #fff !important;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
    -webkit-box-shadow: 5px 5px 35px -15px rgba(0,0,0,0.75);
    -moz-box-shadow: 5px 5px 35px -15px rgba(0,0,0,0.75);
    box-shadow: 5px 5px 35px -15px rgba(0,0,0,0.75);
}
.gallery-back-button:hover {
    background: #215d64;
    text-decoration: none !important;
}

.search-query {
    text-align: center;
    margin: 20px auto;
}
.search-query a {
    color: #111;
    text-decoration: none;
    margin-left: 8px;
}
.search-query a:hover {
    text-decoration: underline;
}
.search-query a i {
    color: #9c3328;
    margin-left: 1px;
}


.contact-block {
    width: 90%;
    box-sizing: border-box;
    margin: -70px auto 40px auto;
    color: #000;
    position: relative;
    z-index: 100;
}
.contact-block .contact-header {
    width: 100%;
    padding: 40px 5% 30px 5%;
    background: #215d64;
    color: #fff;
    font-size: 18px;
    margin: 0 auto;
    font-family: 'Now', sans-serif;
    box-sizing: border-box;
}
.contact-block .contact-header span {
    margin-left: 20px;
}
.contact-block .contact-header .name {
    font-weight: bold;
}
.contact-block .contact-header a {
    color: #fff;
    text-decoration: none;
}
.contact-block .contact-header a:hover {
    text-decoration: underline;
}
.contact-block .contact-body {
    width: 100%;
    padding: 20px 0 40px 0;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    font-family: 'Now', sans-serif;
    font-size: 16px;
}
.contact-block .contact-body .col-2 {
    float: left;
    width: 50%;
    margin: 0 auto;
    padding: 25px 5%;
    box-sizing: border-box;
    flex: 1;
}
.contact-block .contact-body .col-2 a {
    color: #000;
    text-decoration: none;
}
.contact-block .contact-body .col-2 a:hover {
    text-decoration: underline;
}
.contact-block .contact-body .col-2 h3 {
    font-size: 22px;
    margin-bottom: 30px;
}
.contact-block .contact-body .col-2.white h3 {
    color: #458c94;
}
.contact-block .contact-body .col-2.white {
    background: #fff;
}
.container.articles {
    background: #f5f5f5;
    padding: 3% 0;
    box-sizing: border-box;
}
.teachers-table {
    width: 80%;
    margin: 60px auto 30px auto;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}
.teachers-table h3 {
    font-size: 32px;
    font-family: 'Now', sans-serif;
    font-weight: bold;
}
.teachers-table table {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10px 0 40px 0;
    box-sizing: border-box;
    border-spacing: 0;
}
.teachers-table table tr td {
    padding: 16px;
    box-sizing: border-box;
    font-family: 'Now', sans-serif;
    font-weight: bold;
}
.teachers-table table tr.highlight td {
    background: #ddd;
    color: #111;
}
.teachers-table table tr td a {
    color: #111;
    text-decoration: none;
}
.teachers-table table .highlight td a {
    color: #111;
}
.teachers-table table tr td a:hover {
    text-decoration: underline;
}
.teachers-table table tr td i {
    margin-right: 7px;
}

.error-page {
    margin: 0 auto;
    padding: 12% 12.5%;
    box-sizing: border-box;
    position: relative;
    text-align: center;
    color: #111;
    font-size: 1.2rem;
}
.error-page i {
    font-size: 6rem;
    color: #0c5460;
}
.error-page h1 {
    font-size: 3rem;
}

@media (max-width: 1000px) {
    .error-page {
        padding: 15% 7.5%;
        font-size: 1rem;
    }
    .error-page i {
        font-size: 4rem;
        color: #0c5460;
    }
    .error-page h1 {
        font-size: 2rem;
    }
}


.container .article-body {
    width: 60%;
    margin: 0 auto;
    position: relative;
    background: #fff;
    padding: 3% 5%;
    box-sizing: border-box;
    color: #111;
}
.container .article-body img {
    max-width: 100% !important;
    height: auto !important;
}
.container .article-body hr {
    background: #ecab29;
    border: 0;
    height: 2px;
    width: 175px;
    margin: 40px 0 50px 0;
}
.container .article-body p {
    line-height: 1.7;
    text-align: justify;
}
.container .article-body a {
    color: #215d64;
    text-decoration: none;
}
.container .article-body a:hover {
    text-decoration: underline;
}
.container .article-body p.date {
    font-style: italic;
}
.container .article-body p.author {
    font-style: italic;
    text-align: right;
    margin: 40px 0 20px 0;
}

#section-content.news .search {
    width: 50%;
    margin: 30px auto 40px auto;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}
#section-content.news .search input[type="text"] {
    padding: 22px 16px;
    border: 2px solid #458c94;
    box-sizing: border-box;
    width: 70%;
    font-size: 14px;
    font-family: 'Now', sans-serif;
    margin: 0 auto;
    float: left;
    background: transparent;
}
#section-content.news .search input[type="submit"] {
    background: #458c94;
    color: #fff;
    font-family: 'Now', sans-serif;
    border: 2px solid #458c94;
    padding: 22px 10px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 30%;
    font-size: 14px;
    cursor: pointer;
    float: left;
    transition: 0.4s;
    -webkit-appearance: none;
}

.gallery-facebook {
    text-align: left !important;
    color: #265e65;
    text-decoration: none;
    margin-top: 35px;
    margin-bottom: 25px;
}
.gallery-facebook:hover {
    text-decoration: underline;
}

#top {
    height: 0;
    margin: 0;
    padding: 0;
}
#backArrow {
    display: none;
    position: fixed;
    bottom: 5%;
    right: 5%;
    z-index: 100;
    background: #458c94;
    color: #fff;
    padding: 20px;
    font-size: 24px;
    transition: 0.5s;
    text-decoration: none;
}
#backArrow:hover {
    color: #ecab29;
}


.gallery-container .links-container {
    width: 90%;
    margin: 0 auto;
    padding: 0;
}
.gallery-container .col-2 {
    width: 50%;
    float: left;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    text-align: left;
}
.gallery-container .col-2 .gallery-back-button {
    margin: 25px auto;
}
.gallery-container .col-2:nth-child(2) {
    text-align: right;
}
.gallery-container .col-2:nth-child(2) p {
    margin: 40px auto 25px auto;
    padding: 14px 28px;
    font-family: 'Now', sans-serif;
    font-size: 14px;
}




#websiteSearch {
    cursor: pointer;
}
#closeSearchModal {
    cursor: pointer;
    text-decoration: none;
    color: #111;
    transition: 0.3s;
    position: absolute;
    top: 50px;
    right: 7.5%;
    font-size: 28px;
}
#closeSearchModal:hover {
    color: #ffbc13;
}
#searchModal {
    display: none;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
    background: rgba(255,255,255,0.9);
}
.modal-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 75%;
    margin: 0 auto;
    text-align: center;
}
.modal-content h3 {
    font-size: 28px;
    text-transform: uppercase;
    font-family: 'Now', sans-serif;
}
.modal-content input[type="text"] {
    width: 90%;
    margin: 0 auto;
    background: #fefefe;
    padding: 22px 16px;
    border: 2px solid #458c94;
    box-sizing: border-box;
    font-size: 14px;
    font-family: 'Now', sans-serif;
}
.modal-content input[type="submit"] {
    background: #458c94;
    color: #fff;
    font-family: 'Now', sans-serif;
    padding: 22px 10px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 90%;
    font-size: 14px;
    border: 0;
    cursor: pointer;
    transition: 0.4s;
    -webkit-appearance: none;
}

.search-result a {
    font-size: 16px;
    color: #458c94;
    font-weight: bold;
    font-family: 'Now', sans-serif;
    text-decoration: none;
}
.search-result a:hover {
    text-decoration: underline;
}


#notificationPanel {
    display: none;
    width: 75%;
    margin: 0;
    position: fixed;
    z-index: 9999;
    bottom: 30px;
    left: 5%;
    padding: 26px 20px;
    color: #111;
    background: #fff;
    border-radius: 2px;
    border: 2px solid #458c94;
    font-family: 'Now', sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}
#notificationPanel .close-button {
    position: absolute;
    top: -20px;
    right: -15px;
    padding: 10px 13px;
    border-radius: 26px;
    box-sizing: border-box;
    color: #fff;
    background: #458c94;
    transition: 0.3s;
    text-decoration: none;
}
#notificationPanel .close-button:hover {
    color: #ffbc13;
}



@media (min-width: 1600px) {
    #header .logo {
        left: 7%;
    }
    #header .socials {
        right: 7%;
    }

    #section-content {
        padding: 40px 10%;
    }

    #section-content.news {
        padding: 40px 12.5%;
    }

    .contact-block {
        width: 80%;
        box-sizing: border-box;
        margin: -120px auto 40px auto;
        color: #000;
        position: relative;
        z-index: 100;
    }
    .contact-block .contact-header {
        width: 100%;
        padding: 50px 5% 40px 5%;
        background: #265e65;
        color: #fff;
        font-size: 22px;
        margin: 0 auto;
        font-family: 'Now', sans-serif;
        box-sizing: border-box;
    }

    .gallery-header .overlay .col-left h1 {
        font-size: 42px;
    }
    .gallery-header .overlay .col-left h2 {
        font-size: 26px;
    }
    .gallery-header .overlay .col-right .open-gallery-button {
        border-radius: 48px;
        padding: 18px 42px;
        font-size: 18px;
    }

    .gallery-header .overlay .col-left .gallery-title {
        left: 15%;
    }
    .gallery-header .overlay .col-right .open-gallery-button {
        right: 15%;
    }

    .gallery-grid .photo-box {
        float: left;
        width: 25%;
        padding: 0;
        margin: 25px 0;
        text-align: center;
    }


}

@media (min-width: 1900px) {
    #header .logo {
        position: absolute;
        left: 12.5%;
        top: 15px;
        background: url('../../img/logo_pozadi.png') no-repeat center center;
        background-size: cover;
        width: 170px;
        height: 130px;
        z-index: 150;
    }
    #header .socials {
        right: 12.5%;
    }

    #main .open-day {
        bottom: -180px;
    }
    #main .perex {
        left: 12%;
        font-size: 24px;
    }
    #main .perex h1 {
        font-size: 46px;
    }

    #about .content {
        width: 65%;
    }
    #about .content .row {
        margin: 40px auto;
    }

    #info-matrix .container .col-40 {
        width: 39.5%;
        flex: 39.5%;
    }
    #info-matrix .container .col-60 {
        width: 59.5%;
        flex: 59.5%;
    }
    #info-matrix .container .row .col-50.open-day-col-text {
        padding: 4% 50px;
    }
    #info-matrix .container .row .col-50.magazine-col-text {
        padding: 4% 50px;
    }
    #info-matrix .container .row.top-margin {
        margin-top: 25px;
    }

    #info-matrix .container .row .col-50.open-day-col-text h2, #info-matrix .container .row .col-50.open-day-col-text h2 a {
        font-size: 28px !important;
    }
    #info-matrix .container .row .col-50.open-day-col-text .highlight {
        font-size: 16px;
    }
    #info-matrix .container .row .col-50.open-day-col-text .info {
        font-size: 18px;
        margin-top: 40px;
    }
    #info-matrix .container .row .col-50.open-day-col-text a {
        font-size: 18px;
    }
    #info-matrix .container .row .col-50.magazine-col-text h2, #info-matrix .container .row .col-50.magazine-col-text h2 a {
        font-size: 28px !important;
    }
    #info-matrix .container .row .col-50.magazine-col-text .highlight {
        font-size: 14px;
    }
    #info-matrix .container .row .col-50.magazine-col-text .info {
        font-size: 18px;
        margin-top: 40px;
    }
    #info-matrix .container .row .col-50.magazine-col-text a {
        font-size: 18px;
    }

    #news .content .col-75 .row .col-33 .image-header {
        height: 250px;
    }

    #section-header {
        height: 30vh;
    }
    #section-content.news {
        padding: 40px 15%;
    }
    #section-header .header-filter {
        left: 4%;
    }
    #section-header .header-filter .header-content {
        left: 21.5%;
    }
    #section-header .header-filter .header-content h1 {
        font-size: 38px;
    }
    #section-header .header-filter .header-content h2 {
        font-size: 25px;
    }
    #section-header .header-filter .header-content .breadcrumb {
        margin-top: 10px;
    }
    #section-header .header-filter .header-content .breadcrumb li {
        font-size: 16px;
    }
    #section-content {
        padding: 40px 15%;
    }
    #section-content .col-left {
        width: 72.5%;
        padding: 0 40px 0 0;
    }
    #section-content .col-right {
        width: 27.5%;
        padding: 0 0 0 40px;
    }

    .gallery-grid .photo-box {
        width: 25%;
    }

    .contact-block {
        width: 75%;
        margin: -85px auto 40px auto;
    }
    .teachers-table {
        width: 75%;
    }

    #backArrow {
        padding: 25px;
        font-size: 26px;
    }

    .modal-content {
        width: 50%;
    }
}

@media (min-width: 2100px) {
    #header .logo {
        position: absolute;
        left: 12.5%;
        top: 15px;
        background: url('../../img/logo_pozadi.png') no-repeat center center;
        background-size: cover;
        width: 170px;
        height: 130px;
        z-index: 150;
    }
    #header .socials {
        right: 12.5%;
    }

    #main .open-day {
        bottom: -180px;
    }
    #main .perex {
        left: 12%;
        font-size: 24px;
    }
    #main .perex h1 {
        font-size: 46px;
    }

    #about .content {
        width: 60%;
    }
    #about .content .row {
        margin: 40px auto;
    }

    #info-matrix .container .col-40 {
        width: 39.5%;
        flex: 39.5%;
    }
    #info-matrix .container .col-60 {
        width: 59.5%;
        flex: 59.5%;
    }
    #info-matrix .container .row .col-50.open-day-col-text {
        padding: 4% 50px;
    }
    #info-matrix .container .row .col-50.magazine-col-text {
        padding: 4% 50px;
    }
    #info-matrix .container .row.top-margin {
        margin-top: 25px;
    }

    #info-matrix .container .row .col-50.open-day-col-text h2, #info-matrix .container .row .col-50.open-day-col-text h2 a {
        font-size: 28px !important;
    }
    #info-matrix .container .row .col-50.open-day-col-text .highlight {
        font-size: 16px;
    }
    #info-matrix .container .row .col-50.open-day-col-text .info {
        font-size: 18px;
        margin-top: 40px;
    }
    #info-matrix .container .row .col-50.open-day-col-text a {
        font-size: 18px;
    }
    #info-matrix .container .row .col-50.magazine-col-text h2, #info-matrix .container .row .col-50.magazine-col-text h2 a {
        font-size: 28px !important;
    }
    #info-matrix .container .row .col-50.magazine-col-text .highlight {
        font-size: 14px;
    }
    #info-matrix .container .row .col-50.magazine-col-text .info {
        font-size: 18px;
        margin-top: 40px;
    }
    #info-matrix .container .row .col-50.magazine-col-text a {
        font-size: 18px;
    }

    #news .content .col-75 .row .col-33 .image-header {
        height: 250px;
    }

    #section-header {
        height: 30vh;
    }
    #section-content.news {
        padding: 40px 17.5%;
    }
    #section-header .header-filter {
        left: 4%;
    }
    #section-header .header-filter .header-content {
        left: 23%;
    }
    #section-header .header-filter .header-content h1 {
        font-size: 42px;
    }
    #section-header .header-filter .header-content h2 {
        font-size: 26px;
    }
    #section-header .header-filter .header-content .breadcrumb {
        margin-top: 10px;
    }
    #section-header .header-filter .header-content .breadcrumb li {
        font-size: 16px;
    }
    #section-content {
        padding: 40px 20%;
    }
    #section-content .col-left {
        width: 72.5%;
        padding: 0 40px 0 0;
    }
    #section-content .col-right {
        width: 27.5%;
        padding: 0 0 0 40px;
    }

    .gallery-grid .photo-box {
        width: 25%;
    }

    .gallery-header .overlay .col-left .gallery-title {
        left: 20%;
    }
    .gallery-header .overlay .col-right .open-gallery-button {
        right: 20%;
    }

    .contact-block {
        width: 75%;
        margin: -120px auto 40px auto;
    }
    .teachers-table {
        width: 75%;
    }
}

.highlight {
    color: #ffbc13;
}
.clr {
    clear: both;
}


@media (max-width: 1367px) {
    #header nav ul li {
        padding: 0 20px;
    }
    #header nav ul li a {
        font-size: 15px;
    }
    #header .logo {
        top: 18px;
        width: 130px;
        height: 99.45px;
        left: 3.5%;
    }
    #header .socials {
        right: 3.5%;
    }
    #header .socials a {
        font-size: 18px;
        margin: 0 8px;
    }

    #main .perex {
        left: 7.5%;
        font-size: 16px;
    }
    #main .perex h1 {
        font-size: 28px;
    }
    #main .open-day {
        width: 315px;
        height: 273.6px;
        right: 7.5%;
        bottom: -165px;
    }

    #about .content {
        width: 90%;
        padding: 50px 0 40px 0;
    }
    #about .content .perex {
        font-size: 20px;
    }
    #about .content .row .col-33 p {
        font-size: 14px;
    }
    #about .content .row .col-66 .overlay .box {
        font-size: 20px;
    }

    #info-matrix .container .row .col-50.open-day-col-text .info {
        font-size: 14px;
    }
    #info-matrix .container .row .col-50.open-day-col-text h2, #info-matrix .container .row .col-50.open-day-col-text h2 a {
        font-size: 22px !important;
    }
    #info-matrix .container .row .col-50.open-day-col-text {
        padding: 3% 25px;
    }
    #info-matrix .container .row .col-50.magazine-col-text h2, #info-matrix .container .row .col-50.magazine-col-text h2 a {
        font-size: 22px !important;
    }
    #info-matrix .container .row .col-50.magazine-col-text .info {
        font-size: 14px;
    }
    #info-matrix .container .row .col-50.magazine-col-text {
        padding: 3% 25px;
    }
    #info-matrix .container .col-40 .box {
        font-size: 18px;
    }

    #news .content .col-75 .row .col-33 .image-header .overlay i {
        font-size: 42px;
    }
    #news .content .col-75 .row .col-33 .article-info a {
        font-size: 16px;
    }

    #news .content-gallery p {
        font-size: 14px;
    }

    #news .gallery-albums .album .overlay h3 {
        font-size: 16px;
    }
    #news .gallery-albums .album .overlay h3 i {
        font-size: 46px;
    }

    #footer .content .newsletter-box .col-60 {
        font-size: 14px;
    }
    #footer .content .col-23 h3 a {
        font-size: 16px;
    }
    #footer .content .col-23 p a {
        font-size: 13px;
    }
    #footer .content .col-31 {
        font-size: 13px;
    }

    #section-header .header-filter {
        width: 65%;
    }
    #section-header .header-filter .header-content {
        left: 18.5%;
    }
    #section-header .header-filter .header-content h1 {
        font-size: 21px;
    }
    #section-header .header-filter .header-content h2 {
        font-size: 16px;
    }

    .school-table {
        font-size: 15px;
    }
    .school-table td {
        padding: 12px 14px;
    }

    #section-content .col-right .side-nav {
        padding: 30px 15px 25px 15px;
        font-size: 15px;
    }
    #section-content .col-right .description {
        font-size: 15px;
    }

    #section-content .col-left h2 {
        font-size: 22px;
    }
    #section-content .col-left p {
        font-size: 14px;
    }
    #section-content .col-left .col-2 h3, #section-content .col-left h3 {
        font-size: 18px;
        text-align: left;
    }
    #section-content .col-left ul li {
        letter-spacing: 1px;
        font-size: 14px;
    }

    .classes-table {
        font-size: 14px;
    }
    .classes-table th, .classes-table td {
        padding: 12px 14px;
    }

    #section-content.news {
        padding: 40px 3%;
    }
    #section-content.news .news-col .news-title {
        padding: 15px 20px 35px 20px
    }
    #section-content.news .news-col .news-title {
        font-size: 14px;
    }
    #section-content.news .news-col .news-title a {
        font-size: 16px;
    }
    #section-content.news .news-col .news-image .overlay i {
        font-size: 48px;
    }

    #section-content.news .search input[type="text"] {
        padding: 16px 12px;
    }
    #section-content.news .search input[type="submit"] {
        padding: 16px 10px;
    }
    #section-content.news .load-more a {
        padding: 18px 36px;
    }

    .container .article-body {
        width: 75%;
    }
    .container .article-body p {
        font-size: 14px;
    }
    .gallery-header .overlay .col-left .gallery-title {
        top: 65%;
        transform: translateY(-65%);
    }
    .gallery-header .overlay .col-right .open-gallery-button {
        top: 65%;
        transform: translateY(-65%);
    }
    .gallery-header .overlay .col-left h1 {
        font-size: 26px;
    }
    .gallery-header .overlay .col-right .open-gallery-button {
        font-size: 16px;
        padding: 12px 28px;
    }
    .gallery-grid .photo-box {
        width: 33.3%;
    }

    .contact-block {
        margin-top: -60px;
    }
    .contact-block .contact-header {
        padding: 30px 5% 25px 5%;
        font-size: 16px;
    }
    .contact-block .contact-body .col-2 h3 {
        font-size: 18px;
    }
    .contact-block .contact-body {
        font-size: 14px;
    }

    .teachers-table {
        margin: 30px auto;
    }
    .teachers-table h3 {
        font-size: 26px;
    }
    .teachers-table table {
        font-size: 14px;
    }

    #backArrow {
        padding: 20px;
        font-size: 20px;
    }

    #notificationPanel {
        width: 85%;
        font-size: 15px;
    }

}

@media (max-width: 1150px) {
    #header nav ul li {
        padding: 0 12px;
    }
}


@media (min-width: 1000px) {
    #dl-menu {
        display: none;
    }
    .mobile {
        display: none !important;
    }
    .desktop {
        display: block;
    }
}

@media (max-width: 1000px) {
    body {
        overflow-x: hidden !important;
    }

    .mobile {
        display: block;
    }
    .desktop {
        display: none !important;
    }

    #dl-menu {
        display: block;
        position: absolute;
        top: 0; left: 0;
    }
    #dl-menu a {
        text-decoration: none;
    }

    #header {
        display: none;
    }

    #main .perex {
        width: 90%;
        margin: 0 auto;
        top: 45%;
        transform: translateY(-45%);
    }
    #main .perex h1 {
        font-size: 24px;
    }
    #main .open-day {
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    #main .open-day .title {
        font-size: 18px;
    }

    #about .content {
        width: 95%;
    }
    #about .content .row {
        display: block;
    }
    #about .content .row .col-33, #about .content .row .col-66 {
        float: inherit;
        width: 100%;
        flex: none;
        margin: 0 auto;
    }
    #about .content .row .col-33.bg-square {
        height: 250px;
    }
    #about .content .row .col-66.bg-square {
        height: 400px;
    }
    #about .content .row .col-66 .overlay .box {
        font-size: 18px;
    }
    #about .content .row .col-66 .overlay a {
        font-size: 15px;
    }

    #info-matrix .container {
        display: block;
    }
    #info-matrix .container .col-40 {
        display: none;
    }
    #info-matrix .container .col-60 {
        width: 100%;
        margin: 0 auto;
        float: inherit;
        flex: none;
    }
    #info-matrix .container .row .col-50.magazine-col-text h2, #info-matrix .container .row .col-50.magazine-col-text h2 a {
        font-size: 20px !important;
    }
    #info-matrix .container .row .col-50.open-day-col-text a, #info-matrix .container .row .col-50.magazine-col-text a {
        font-size: 14px;
    }

    #news .content {
        display: block;
    }
    #news .content .col-25 {
        width: 100%;
        margin: 0 auto;
        float: inherit;
        flex: none;
        text-align: center;
        padding: 0;
    }
    #news .content .col-75 {
        width: 100%;
        margin: 0 auto;
        float: inherit;
        flex: none;
    }
    #news .content .col-75 .row {
        display: block;
    }
    #news .content .col-75 .row .col-33 {
        width: 100%;
        margin: 15px auto;
        float: inherit;
        flex: none;
    }

    #news .gallery-albums {
        display: block;
    }
    #news .gallery-albums .album {
        width: 100%;
        margin: 0 auto;
        float: inherit;
        flex: none;
        height: 250px;
    }
    #news .gallery-albums .album .overlay h3 i {
        font-size: 36px;
    }

    #footer .content {
        width: 95%;
    }
    #footer .content .newsletter-box {
        display: block;
    }
    #footer .content .newsletter-box .col-40, #footer .content .newsletter-box .col-60 {
        width: 100%;
        margin: 0 auto;
        float: inherit;
        flex: none;
    }
    #footer .content .newsletter-box .col-40 input[type="submit"], #section-content.news .search input[type="submit"] {
        -webkit-appearance: none;
    }

    #footer .content {
        display: block;
    }
    #footer .content .col-31, #footer .content .col-23 {
        width: 100%;
        margin: 0 auto;
        float: inherit;
        flex: none;
    }
    #footer .content .col-31 img {
        width: 70px;
        margin-top: 15px;
    }

    #footer .content .copyright {
        float: inherit;
        width: 100%;
        font-size: 12px;
        padding-left: 25px;
    }
    #footer .content .author {
        float: inherit;
        width: 100%;
        text-align: left;
        font-size: 12px;
        padding-right: 0;
        padding-left: 25px;
        margin-top: 15px;
    }

    #section-header {
        margin-top: 0;
    }
    #section-header .header-filter {
        background: rgba(0,0,0,0.3);
        width: 100%;
        margin: 0 auto;
        padding: 0;
        text-align: center;
        left: 0;
    }
    #section-header .header-filter .header-content {
        left: 0;
        right: 0;
        width: 100%;
        margin: 0 auto;
    }
    #section-header .header-filter .header-content h1 {
        max-width: 100%;
        color: #fff;
        font-size: 22px;
    }
    #section-header .header-filter .header-content h2 {
        color: #fff;
    }
    #section-header .header-filter .header-content .breadcrumb li a {
        color: #fff;
    }
    #section-header .header-filter .header-content .breadcrumb li+li:before {
        color: #fff;
    }

    #section-content .col-right {
        display: none;
    }
    #section-content .col-left {
        width: 100%;
        margin: 0 auto;
        float: inherit;
    }
    #section-content .col-left .col-2 {
        float: inherit;
        width: 100%;
        margin: 0 auto;
    }

    #section-content.news .search {
        width: 100%;
    }
    #section-content.news .news-col {
        float: inherit;
        width: 100%;
        margin: 15px auto;
    }
    #section-content.news .news-col .news-image {
        height: 250px;
    }
    .container .article-body {
        width: 95%;
    }

    .gallery-header {
        height: 35vh;
    }
    .gallery-header .overlay .col-left {
        width: 100%;
        margin: 0 auto;
        float: inherit;
    }
    .gallery-header .overlay .col-right {
        display: none;
    }
    .gallery-header .overlay .col-left .gallery-title {
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
        padding: 0 20px;
    }
    .gallery-header .overlay .col-left h1 {
        font-size: 24px;
    }
    .gallery-header .overlay .col-left h2 {
        font-size: 18px;
    }

    .gallery-grid .photo-box {
        width: 50%;
        float: left;
        margin: 10px auto;
    }

    .contact-block {
        margin-bottom: 0;
        width: 95%;
    }
    .contact-block .contact-header p {
        font-size: 14px;
        margin: 25px 0;
    }
    .contact-block .contact-header span {
        margin-left: 0;
    }

    .contact-block .contact-body {
        display: block;
    }
    .contact-block .contact-body .col-2 {
        float: inherit;
        flex: none;
        margin: 0 auto;
        width: 100%;
    }

    .teachers-table {
        width: 90%;
    }
    .teachers-table h3 {
        font-size: 22px;
    }
    .teachers-table .mobile-scroll {
        overflow-x: auto;
        width: 100%;
        max-width: 100%;
    }
    .teachers-table table tr td {
        font-size: 13px;
    }
    .teachers-table table tr td i {
        margin-right: 3px;
    }

    #backArrow {
        padding: 18px;
        font-size: 18px;
    }

    .gallery-container .col-2 {
        width: 100%;
        float: inherit;
        text-align: center !important;
    }
    .gallery-container .col-2:nth-child(2) p {
        margin: 0 auto 30px auto;
        padding: 10px 0;
        box-sizing: border-box;
        font-family: 'Now', sans-serif;
        font-size: 13px;
    }

    .modal-content {
        width: 100%;
    }
    .modal-content h3 {
        font-size: 24px;
    }

    #notificationPanel {
        width: 85%;
        font-size: 14px;
    }

    #main a.scroll-down {
        padding-top: 70px;
        position: absolute;
        bottom: 5%;
        left: inherit;
        transform: none;
        right: 5%;
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .gallery-grid .photo-box {
        width: 100%;
        float: inherit;
        margin: 10px auto;
    }

    #main .open-day {
        bottom: -175px;
    }

    .scroll-down {
        display: none;
    }
}



#cookiesPage {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0, 0.4);
    z-index: 9997;
    overflow: hidden;
}
#cookieConsent {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 50%;
    max-width: 750px;
    height: auto;
    border: 2px solid #265e65;
    background: #fff;
    color: #000;
    font-size: 1rem;
    padding: 2.5% 3.5%;
    box-sizing: border-box;
    margin: 0 auto;
    z-index: 9998;
    border-radius: 10px;
    text-align: center;
    transition: 0.5s;
}
#cookieConsent h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}
#cookieConsent .content {
    width: 100%;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}
#cookieConsent .content p {
    margin: 10px auto;
    line-height: 1.7;
}
#cookieConsent .content a {
    color: #265e65;
    text-decoration: underline;
}
#cookieConsent .content a:hover {
    text-decoration: none;
}
#cookiePreferences a.close-cookies,
#cookieConsent a.close-cookies {
    position: absolute;
    top: 12px;
    right: 24px;
    font-size: 1rem;
    color: #999;
    text-decoration: none;
    cursor: pointer;
}
#cookiePreferences .content .buttons,
#cookieConsent .content .buttons {
    display: block;
    margin-top: 40px;
}
#cookieConsent .content .buttons a {
    display: inline-block;
    padding: 8px 16px;
    min-width: 220px;
    box-sizing: border-box;
    background: #265e65;
    border: 2px solid #265e65;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 20px;
    font-size: 1.05rem;
    font-weight: bold;
    cursor: pointer;
}
#cookieConsent .content .buttons a.preferences {
    background: #fff;
    color: #265e65;
    border: 2px solid #265e65;
    margin-right: 20px;
}

#cookiePreferences {
    display: none;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 50%;
    max-width: 750px;
    height: auto;
    border: 2px solid #265e65;
    background: #fff;
    color: #000;
    font-size: 1rem;
    padding: 2.5% 3.5%;
    box-sizing: border-box;
    margin: 0 auto;
    z-index: 9998;
    border-radius: 10px;
    text-align: center;
    transition: 0.5s;
}
#cookiePreferences h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}
#cookiePreferences .content {
    width: 100%;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}
#cookiePreferences .content p {
    margin: 10px auto;
    line-height: 1.7;
}
#cookiePreferences .content a {
    color: #265e65;
    text-decoration: underline;
}
#cookiePreferences .content .buttons a,
#cookiePreferences .content .buttons button {
    display: inline-block;
    padding: 8px 16px;
    min-width: 220px;
    box-sizing: border-box;
    background: #265e65;
    border: 2px solid #265e65;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 20px;
    font-size: 1.05rem;
    font-weight: bold;
    cursor: pointer;
}
#cookiePreferences .content .buttons button {
    margin-right: 20px;
}
#cookiePreferences .content h4 {
    font-size: 1.25rem;
    margin-top: 25px;
    text-transform: uppercase;
    text-align: left;
}
#cookiePreferences .content .cookies-table {
    width: 100%;
    margin: 5px auto;
    position: relative;
}
#cookiePreferences .content .cookies-table .cookie-row {
    display: flex;
    margin: 0 auto;
    padding: 12px 18px;
    box-sizing: border-box;
    align-items: center;
    flex-wrap: wrap;
    gap: 2%;
    border: 1px solid #999;
    text-align: left;
    font-size: 1.1rem;
}
#cookiePreferences .content .cookies-table a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    display: block;
}
#cookiePreferences .content .cookies-table .cookie-row .cookie-type {
    color: #000;
    width: 70%;
    flex: 0 1 calc(70%);
    margin: 0;
    padding: 0;
    font-weight: 800;
}
#cookiePreferences .content .cookies-table .cookie-row .cookie-option {
    color: #265e65;
    font-weight: bold;
    width: 28%;
    flex: 0 1 calc(28%);
    text-align: right;
}
#cookiePreferences .content .cookies-table .cookie-row .cookie-option i {
    color: #000;
    margin-left: 10px;
    font-size: 1.1rem;
    transition: 0.5s;
    position: relative;
    top: 4px;
}
#cookiePreferences .content .cookies-table .cookie-row .cookie-option i.expanded {
    transform: rotate(90deg);
}
#cookiePreferences .content .cookies-table .cookie-info {
    display: none;
    font-size: 0.9rem;
    margin-top: 15px;
}


@media (max-width: 767px) {
    #cookiePreferences, #cookieConsent {
        width: 95%;
        padding: 6% 5%;
        overflow-y: auto;
    }
    #cookiePreferences h3, #cookieConsent h3 {
        font-size: 1.4rem;
    }
    #cookiePreferences .content h4 {
        font-size: 1rem;
        margin-top: 20px;
    }
    #cookiePreferences .content .buttons a, #cookieConsent .content .buttons a,
    #cookiePreferences .content .buttons button, #cookieConsent .content .buttons button {
        display: block;
        width: 100%;
        margin: 10px 0;
        font-size: 0.9rem;
    }
    #cookiePreferences .content .cookies-table .cookie-row {
        padding: 8px 14px;
        font-size: 0.95rem;
    }
    #cookiePreferences .content .cookies-table .cookie-row .cookie-type {
        width: 65%;
        flex: 0 1 calc(65%);
    }
    #cookiePreferences .content .cookies-table .cookie-row .cookie-option {
        width: 32%;
        flex: 0 1 calc(32%);
        font-size: 0.9rem;
    }
    #cookiePreferences .content .cookies-table .cookie-row .cookie-option i {
        margin-left: 6px;
        font-size: 1rem;
        top: 6px;
    }
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 53px;
    height: 28px;
    top: 4px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #265e65;
}

input:focus + .slider {
    box-shadow: 0 0 1px #265e65;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.setCookies {
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    padding: 8px 16px;
    min-width: 220px;
    box-sizing: border-box;
    background: #265e65;
    border: 2px solid #265e65;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 20px;
    font-size: 1.05rem;
    font-weight: bold;
}

.table-resp table {
    width: 100%;
    margin: 20px auto;
    padding: 0;
    border: 0;
}
.table-resp table th {
    padding: 16px 14px;
    box-sizing: border-box;
    background: #265e65;
    color: #fff;
    font-size: 1.1rem;
    border-bottom: 2px solid #fff;
}
.table-resp table td {
    padding: 12px 14px;
    box-sizing: border-box;
    color: #333;
    border-bottom: 1px solid #efefef;
}

@media (max-width: 767px) {
    .table-resp {
        overflow-x: auto;
    }
    .table-resp table {
        min-width: 1000px;
        overflow-x: auto;
        display: block;
    }
}