* {
    box-sizing: border-box;
}

a, a:visited {
    text-decoration: none;
    color: inherit
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

[class*="col-"] {
    width: 100%;
}

@media only screen and (min-width: 700px) {
    [class*="col-"] {
        float: left;
        padding: 15px;
    }

    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}

html {
    font-family: "Lucida Sans", sans-serif;
}

.pricelink {
    text-decoration: underline;
}

.header {
    position: relative
}

/*header background image*/
.header-back {
    position: relative;
    text-align: center;
}

/*position for any nested element, in this case .lang-sel*/
.top-right {
    position: absolute;
    top: 0px;
    right: 0px;
}

/*language selection menu*/
.lang-sel {
    position: relative;
    color: white;
    background-color: rgba(252, 250, 250, 0.25);
    padding: 8px;
    font-size: 15px;
    
}

/*sth happens to lang-sel on mouse hover*/
.lang-sel:hover .lang-sel-over{
    height: 60px;
}

/*what happens to lang-sel on mouse hover*/
.lang-sel-over {
    top: 60px;
    right: 0px;
    height: 0px;
    overflow: hidden;
    transition: height 1s ease;
}

/*Currently unused, I think, a button.*/
.cbutton {
    color: white;
    background-color: rgb(67,67,67);
    border: none;
    padding: 8px;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
    display: block;
    border-radius: 16px;
}

/*Language selection text-as-button*/
.ctext {
    white-space: nowrap; 
    color: white;
    font-size: 15px;
    padding-top: 8px;
    position: static;
    overflow: hidden;
    text-decoration: none;  
}

/*Footer and image*/
.footer {
    position: relative;
    padding-top: 20px;
    
}

/*Footer overlay band*/
.footer-over {
    position: relative;
    height: auto;
    width: 100%;
    background-color: rgb(226, 226, 226);
}

/*Footer title on overlay band*/
.footer-head {
    color: rgb(68, 68, 68);
    font-size: 30px;
    font-weight: bold;
    padding-top: 40px;
    padding-left: 30px;
    text-align: left;
}

.footer-cont {
    font-size: 20px;
    color: rgb(68, 68, 68);
    text-align: left;
    padding-bottom: 20px;
    padding-left: 30px;
}

.footer-cr {
    color: rgb(68, 68, 68);
    text-align: center;
    padding-bottom: 20px;
}

/*left side menu*/
.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    
}

.menu li {
    padding: 8px;
    margin-bottom: 7px;
    background-color: rgb(226, 226, 226);
    color: rgb(68, 68, 68);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu li:hover {
    background-color: rgb(68, 68, 68);
    color: white;
}

.galleries {
    list-style-type: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.galleries-heading {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    
}

.galleries-body {
    text-align: left;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 40px;
}

.galleries-unit {
    display: inline-block;
    padding: 20px;
    border: 1px solid #ccc;
}

.galleries-unit:hover {
    border: 1px solid #777;
}

.gallery-cover {
    border: 1px solid #ccc;
}
    
.galleries-unit img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.galleries-unit img:hover {
    opacity: 0.7;
    cursor: pointer;
}

.galleries-unit-desc {
    padding: 15px;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1500px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color:#bbb;
    text-decoration: none;
    cursor: pointer;
}

.mySlides, .mySlides1, .mySlides2 {
    display: none;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next {
    right: 10px;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 10px;
    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(0, 0, 0, 0.8);
}
  
/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 18px;
    padding: 8px 12px;
    position: absolute;
    top: 35px;
    left: 50%;
}
  
.blogpost li {
    padding-bottom: 5px;
}