﻿
.row::after {
    content: "";
    clear: both;
    display: block;
}


[class*="col-"] {
    float: left;
    padding: 5px;
}


.col-1S {
    width: 50px;
}


.col-1 {
    width: 8.33%;
}

.col-2S {
    width: 14.28%;
}

.col-2E {
    width: 15%;
}

.col-2SC {
    width: 14.28%;
    text-align: center;
}
.col-2SR {
    width: 14.28%;
    text-align: right;
}

.col-2 {
    width: 16.66%;
}
.col-2C {
    width: 16.66%;
    text-align: center;
}

.col-2L {
    width: 20%;
}

.col-2LR {
    text-align:right;
    width: 20%;
}

.col-2LC {
    text-align: center;
    width: 20%;
}

.col-2R {
    width: 16.66%;
    text-align: right;
}

.col-3 {
    width: 25%;
}

.col-3M {
    width: 25%;
    vertical-align: middle;
}

.col-3C {
    width: 25%;
    text-align: center;
}
.col-4C {
    width: 33.33%;
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 10px;
}

.image-container {
    width: 100%;
    height: 350px; /* Fixed height to maintain space */
    overflow: hidden;
    position: relative; /* Ensures the image stays inside */
    border-radius:15px;
}

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures consistent size without distortion */
        position: absolute;
        left: 0;
        top: 0;
        transition: transform 0.3s ease-in-out;
    }

    .image-container:hover img {
        transform: scale(1.1);
    }

.col-4C .destination-name {
    opacity: 0.8;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background: #3856A2;
    border-style: solid;
    border-width: thin;
    border-color: dimgrey;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.5); /* Darker shadow at the bottom */
}


.col-4R {
    width: 33.33%;

    text-align: right;
}

.col-4Border {
    width: 33.33%;
    word-wrap: break-word;
    border-style: solid;
    border-width: thin;
}

.col-4BorderShaded {
    width: 33.33%;
    word-wrap: break-word;
    border-style: solid;
    border-width: thin;
    background-color: #c2c4c4;
    color: #000000;
}

.col-4B {
    width: 33.33%;
    word-wrap: break-word;
    vertical-align: bottom;
}

.col-5 {
    width: 41.66%;
}

.col-5R {
    width: 41.66%;
    text-align:right;
}

.col-6 {
    width: 50%;
}

.col-6C {
    width: 50%;
    text-align: center;
}

.col-6R {
    width: 50%;
    text-align: right;
}




.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}
.col-8C {
    width: 66.66%;
    text-align:center;
}
.col-8R {
    width: 66.66%;
    text-align: right;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}
.col-12C {
    width: 100%;
    text-align:center;
}



@media screen and (max-width:900px) {

    [class*="col-"] {
        width: 100%;
    }
}
