/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

*  {
    margin: 0%;
    padding: 0%;
    font-family: 'inter',sans-serif;
}

html {
    font-size: 62.5%;
}

.hero-bg {
    display: flex;
    height: 40rem;
    margin-top: -1rem;
    background-image: url(bg.png);
    background-size: cover;
}

.accommodation-container {
    width: 100%;
    height: fit-content;
    background: #F1F5FA;
    margin-top: 5.6rem;
}

.outer-container {
    width: 90%;
    margin: auto;
    display: flex;
    column-gap: 3rem;
    justify-content: center;
    padding-bottom: 5rem;
}

.box {
    width: 30%;
    height: fit-content;
    flex-shrink: 0;
    background: #FFF;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
    padding: 1.5rem;
}

.box img {
    width: 100%;
    height: fit-content;
}

.box .hover:hover img  {
    transform: scale(1.1) ;
    transition: all 0.5s ease-in;
    cursor: pointer;
}

.p2 a {
    font-size: 2rem;
    font-weight: 600;
    color: #FF6E00;
    text-decoration: none;
}

.p2 a:hover {
    color: #007AFF;
    transition: all 0.3s ease;
}

.hover {
    width: 100%;
    height: fit-content;
    overflow: hidden;
}

.a-nathdwara-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .3rem;
    background: #0176F9;
    margin-top: 1rem;
    cursor: pointer;
}

.a-nathdwara-btn a {
    color:  #F4F4F6;
    padding: 1.5rem 4rem;
    font-size: 2rem;
    font-weight: 500;
    text-decoration: none;
}

.a-dwarka-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .3rem;
    background: #0176F9;
    margin-top: 1rem;
    cursor: pointer;
}

.a-dwarka-btn a {
    color:  #F4F4F6;
    padding: 1.5rem 4rem;
    font-size: 2rem;
    font-weight: 500;
    text-decoration: none;
}

.a-nathdwara-btn:hover {
    background-color: #3491F9;
}

.a-dwarka-btn:hover {
    background-color: #3491F9;
}

