@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.imv-day-tour-showcase,
.imv-day-tour-showcase * {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.imv-day-tour-showcase {
    width: 100%;
    padding: 20px 0 40px;
    background: #ffffff;
    overflow: hidden;
}

.imv-tour-arrows button:focus{
	background-color: #004f53 !important;
}

.imv-day-tour-wrapper {
    width: min(100%);
    margin: 0 auto;
    position: relative;
    min-height: 470px;
}

.imv-day-tour-layout {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.imv-day-tour-main-image {
    flex: 0 0 46%;
    height: 445px;
    border-radius: 22px;
    overflow: hidden;
}

.imv-day-tour-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.imv-day-tour-content {
    flex: 1;
    padding-top: 45px;
    max-width: 500px;
}

.imv-day-tour-content h2 {
    margin: 0 0 11px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: #0c7b82;
}

.imv-day-tour-content p {
    margin: 0;
    max-width: 505px;
    font-size: 11.3px;
    line-height: 1.52;
    font-weight: 400;
    color: #6d6d6d;
}

.imv-tour-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 19px;
    min-width: 103px;
    height: 30px;
    padding: 0 22px;
    border-radius: 5px;
    background: #087a82;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: 0.25s ease;
}

 a.imv-tour-button {
	color: white;
}

.imv-tour-button:hover {
    background: #055f65;
    color: #ffffff;
}

.imv-day-tour-bottom {
    width: calc(54% + 80px);
    margin-left: calc(46% - 80px);
    margin-top: -206px;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.imv-tour-thumbnails {
    display: flex;
    align-items: center;
    gap: 13px;
}

.imv-tour-thumb {
    width: 136px;
    height: 158px;
    border: none;
    padding: 0;
    border-radius: 17px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    position: relative;
    display: none;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.imv-tour-thumb.is-visible {
    display: block;
    opacity: 1;
}

.imv-tour-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.imv-tour-thumb.active {
    border: 2px solid #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    transform: translateY(-18px);
}

.imv-tour-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 176px;
    margin-right: 31px;
}

.imv-tour-arrow {
    width: 38px;
    height: 42px;
    border: none;
    border-radius: 5px;
    background: #006c70;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
		padding-right: 3px;
		letter-spacing: -3px;
    transition: 0.25s ease;
}

.imv-tour-arrow:hover {
    background: #004f53;
    color: #ffffff;
}

@media (max-width: 1199px) {
    .imv-day-tour-wrapper {
        width: min(100% - 70px, 1050px);
    }

    .imv-tour-thumb {
        width: 125px;
        height: 145px;
    }

    .imv-tour-arrows {
        margin-right: 5px;
    }
}

@media (max-width: 1080px) {
    .imv-day-tour-showcase {
        padding: 30px 0;
    }

    .imv-day-tour-wrapper {
        width: min(100% - 40px, 720px);
        min-height: auto;
    }

    .imv-day-tour-layout {
        flex-direction: column;
        gap: 24px;
    }

    .imv-day-tour-main-image {
        flex: none;
        width: 100%;
        height: 430px;
    }

    .imv-day-tour-content {
        padding-top: 0;
        max-width: 100%;
    }

    .imv-day-tour-content h2 {
        font-size: 20px;
    }

    .imv-day-tour-content p {
        max-width: 100%;
        font-size: 13px;
    }

    .imv-day-tour-bottom {
        width: 100%;
        margin-left: 0;
        margin-top: 22px;
        flex-direction: column;
        gap: 18px;
    }

    .imv-tour-thumbnails {
        width: 100%;
        overflow: hidden;
        padding: 5px 0 15px;
    }

    .imv-tour-thumb {
        width: 130px;
        height: 135px;
        flex: 0 0 auto;
    }

    .imv-tour-thumb.active {
        transform: translateY(0);
    }

    .imv-tour-arrows {
        margin: 0;
        align-self: flex-end;
    }
}

@media (max-width: 575px) {
    .imv-day-tour-wrapper {
        width: min(100% - 28px, 100%);
    }

    .imv-day-tour-main-image {
        height: 330px;
        border-radius: 18px;
    }

    .imv-day-tour-content h2 {
        font-size: 18px;
    }

    .imv-day-tour-content p {
        font-size: 12px;
        line-height: 1.6;
    }

    .imv-tour-button {
        height: 32px;
        font-size: 11px;
    }

    .imv-tour-thumb {
        width: 105px;
        height: 110px;
        border-radius: 14px;
    }

    .imv-tour-arrow {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 380px) {
    .imv-day-tour-main-image {
        height: 285px;
    }

    .imv-tour-thumb {
        width: 92px;
        height: 98px;
    }
}