﻿*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body {
}
.main{
  
}
.headImg {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: bottom;
}

.main h2 {
    padding: 1em 10%;
    font-family: 'Poppins';
    color: #d98400;
    font-size: 2rem;
    word-spacing: 5px;
    text-align: start;
}
.days {
    margin: 25px 0px;
    gap: 26px;
    align-items: center;
    display: grid;
    grid-template-columns: 124px 1fr;
}
.itinerayDay {
    background: #d98500;
    border-radius: 30px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border: 3px solid transparent;
    transition:.3s ease;
}
    .itinerayDay:hover {
        background: transparent;
        border-color: #d98400;
        color: #d98400;
    }
.pack-thumbnail {
  padding:1.3em 10%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-between;
}
    .pack-thumbnail div {
        box-shadow: 0 0 10px #e1cfa7;
        width: 25%;
        gap:4px;
        display: flex;
        height: 10rem;
        padding: 10px;
        border-radius: 40px 5px 40px 5px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .pack-thumbnail span {
        font-family: 'Poppins';
        font-size: 1.2rem;
        color: gray;
    }
    .pack-thumbnail i {
        font-size: 2.5rem;
        color: #d98400;
    }
    .pack-thumbnail div p {
        color: gray;
    }
.bookbtn {
    color: white;
    padding: 10px;
    border: #D98400;
    font-weight: 600;
    align-self: center;
    border: none;
    border-radius: 8px;
    background: #D98400;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid #D98400;
}
.bookbtn:hover {
    text-decoration: none;
    transition: 0.4s;
    background: transparent;
    color: #D98400;
    border: 2px solid #D98400;
}
.pack-Discription {
    padding: 0em 10%;
}
.pack-title {
    font-size: 2.3rem;
    padding: 0.5em 0;
    font-weight: 400;
    font-family: Poppins;
    color: #D98400;
}
.pack-paragraph {
    font-size: 1.3rem;
    text-align: justify;
    color: gray;
}
.pack-info{
    padding:2% 10%;
}
.day-title {
    font-size: 1.3rem;
    padding: 0.5em 0;
    font-weight: 400;
    font-family: Poppins;
    border-bottom: 2px solid orange;
    color: #D98400;
}
.pack-offer {
    display: flex;
    justify-content: space-between;
    padding: 2%;
}
.offer-card {
    width: 500px;
    font-family: Hind Madurai;
    font-size: 1rem;
    color: gray;
    padding: 10px;
    display: flex;
    border-radius: 4px;
    box-shadow: 1px 1px 10px gray;
    flex-direction: column;
    justify-content: center;
}
    .offer-card > ol {
        padding-left: 20px;
    }
.T_S {
    display: block;
}
    @media screen and (max-width:900px)
    {
        .days {
            display: grid;
            grid-template-columns: 1fr;
        }
        .pack-thumbnail{
            display:flex;
            flex-direction:column;
        }
        .pack-thumbnail div{
            width:100%;
            margin:1em 0;

        }
        .itinerayDay {
           
            background: #d98400;
            width: 100px;
            height: 100px;
            border-radius: 30px;
      
        }
        .pack-offer{
            display:flex;
            flex-direction:column;
            justify-content:center;
            align-items:center;
        }
        .offer-card{
            width:100%;
            margin:1em;
        }

    }