﻿body {
}

.PackMain h1 {
    margin-top: 1rem;
    text-align: start;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-wrap: balance;
}
.bookbtn {
    width: 145px;
    font-size: 1.4rem;
    height: 45px;
    background: #2d67b2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 5px;
    color: white;
    border: 2px solid transparent;
    margin-left: 4.5em;
    transition: .3s all;
}

    .bookbtn:hover {
        border-color: #2d67b2;
        background-color: transparent;
        color: #2d67b2;
    }
.Itinerary h3, h4 {
    color: #ff8a08;
}

.context h3 {
    color: #ff8a08;
}

.pack_Img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.context p {
    color: gray;
    text-align: justify;
}

.inclusions {
    display: grid;
    font-size: 2rem;
    gap: 2rem;
    grid-template-columns: 300px 300px 300px 1fr;
    justify-content: center;
    align-items: center;
}

.incl_icons {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 1rem;
    border-radius: 2rem 1rem;
    box-shadow: 0 0 10px #cdcdcd;
}

    .incl_icons > .fa-solid {
        font-size: 2.9rem;
        text-shadow: 0 2px 3px #b3b3b3cc;
        color: #ff8a08;
    }

.Itinerary {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.packDiscript {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.star {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

    .star span {
        font-size: 1.3rem;
        color: #ff8a08;
        font-weight: 600;
        text-shadow: rgb(188, 184, 184) 0px 2px 5px;
    }

    .star i {
        font-size: 4rem;
        color: #ff8a08;
        text-shadow: 0 2px 5px #bcb8b8;
    }

.inclText {
    font-size: 1.3rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: gray;
}


.disText p {
    margin: 0;
    color: gray;
}

.Conditions {
    display: grid;
    grid-template-columns: repeat(2,500px);
    gap: 3rem;
    place-items: center;
}

.condContent {
    box-shadow: 0 2px 6px #c5c5c5;
    border-radius: 2rem 1rem;
    height: 100%;
}

.list {
    padding: 1rem;
}

.condContent h5 {
    padding: 1rem;
    background-color: orange;
    color: white;
    font-weight: 600;
}

.list li {
    margin-bottom: .3rem;
}

@media screen and (max-width:900px) {
    .Conditions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .inclusions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .packDiscript {
        display: flex;
        align-items: start;
    }
}
/*====================*/

.main {
    display: flex;
    padding: 5%;
    gap: 5%;
    width: 100%;
    flex-direction: column;
}

    .main h3 {
        color: #d98400;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }

    .main p {
        text-align: justify;
        font-size: 1.2rem;
    }

.T_S {
    display: none;
}

.TandC {
    display: flex;
    justify-content: flex-end;
    margin-right: 8rem;
    margin-bottom: 1rem;
}

.termsLink {
    font-size: 1.2rem;
    text-decoration: none;
    background: red;
    padding: 1rem;
    border-radius: 2rem 1rem;
    color: white;
    transition: .3s all;
    border: 2px solid transparent;
}

.TandC .termsLink:hover {
    background: transparent;
    border-color: red;
    color: red;
}
