﻿body {
    font-family: 'Andika', sans-serif;
    font-size: 16px;
    background-color: white;
}

h1 {
    font-family: 'Pattaya', sans-serif;
    letter-spacing: 2px;
    font-size: 46px;
}

.text-shadow-SV {
    text-shadow: 1px 2px 0 #ff6700;
}

/* grup excursion and group vacation  */

.group-excursion-country-btn{
    max-height:270px;
}

.gallery-item-group {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

    .gallery-item-group .image-group {
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 10px;
        font-family: "Cursive", Brush Script MT;
    }

        .gallery-item-group .image-group img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 50% 50%;
            transition: .6s ease-in-out;
        }

    .gallery-item-group:hover .image-group img {
        background: rgb(0, 0, 0);
        background: rgba(0, 0, 0, 0.5); /* Black see-through */
        transform: scale(1.2);
    }

.text-block-group {
    text-align: center;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 0 5px #000000;
    opacity: 0.9;
    font-size: 1.6vw;
    pointer-events: none;
    display: block;
}

@media screen and (max-width:500px) {
    .text-block-group {
        font-size: 6vw;
    }
}