:root{
    --primary-color:#970000;
    --secondary-color:orange;
}

body{
    font-family: "Poppins", sans-serif;
    padding: 0px;
    margin: 0px;
    min-width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo{
    height: 60px;
    padding:16px 24px;
}

.home{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 60px 50px;
    width: 100%;
       
}

.main-heading{
    margin: 2px 100px;
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-color);
    background:linear-gradient(to right ,var(--primary-color),var(--secondary-color));
    background-clip: text;
    color: transparent;
    text-align: center;
    line-height: 40px;
}

.main-sub-heading{
    margin: 10px 100px;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    background:linear-gradient(to right ,var(--primary-color),var(--secondary-color));
    background-clip: text;
    color: transparent;
    text-align: center;
    line-height: 35px;
}

.sub-text-1{
    margin: 5px 24px;
    text-align: center;
    line-height: 25px;
    font-size:14px;
    
}
.contact-button{
    background-color: var(--primary-color);
    padding: 16px 50px;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: poppins;
    font-size: 16px;
    font-weight: 500;
    margin-top: 30px;
    cursor: pointer;
    transition:opacity .15s ;
}
.contact-button:hover{
    opacity: 0.8;
}
.mockup{
    /* padding: 24px; */
    display: flex;
    width: 100%;
    justify-content: center;
}

.mockup img{
    width: 100%;
    padding: 0px;
}
.partner-section{
    width: 100%;
}

.partners-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 10px 0;
}

.partnered-business{
    font-family: "Poppins", sans-serif;
    font-size: 46px;
    font-weight: bold;
    text-align: center;
    margin: 40px 100px;
    line-height: 60px;
}
.partners-container{
    display: flex;
    row-gap: 10px;
    gap: 25px;
    
}
.hotels{
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px;
}

.hotel-logo{
    height: 100px;
    width: 100px;
    border-radius: 50px;
    border: solid;
    border-width: 1px;
    border-color: rgb(167, 166, 166);

}

.hotel-name{
    display: flex;
    justify-content: center;
    align-items: center;   
}
.who-we-are,
.why-choose-us,
.what-we-have{
    font-family: "Poppins", sans-serif;
    font-size: 46px;
    font-weight: bold;
    text-align: center;
    margin: 40px 40px;
    line-height: 60px;
    /* display: flex;
    flex: 1;
    justify-content: center;
    align-items:center ;
    flex-shrink: 0; */

}
.sub-heading{
    margin: 0px 24px;
    text-align: left;
    line-height: 28px;
    font-size:15px;
    padding: 10px;
    
}
.info-pic{
    width: 100%;
    padding: 0;
    object-fit: contain;
    margin-top: 0;
}
.what-we-have-container{
    display: flex;
    flex-direction: row;
    margin: 30px;
    align-items: center;
    
    
}
.what-we-have-pic{
    height: 120px;
    width: 120px;
    border-radius: 15px;
    margin-right: 20px;
    object-fit: cover;
    border-width: 1px;
    border-style: solid;
    border-color: lightgray;

}
.details{
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-left: 15px;
    text-align: left;

}
h2{
    margin-bottom: 5px;
}
.explanation{
    margin-top: 0px;
    font-size: 14px;
}
.why-choose-us{
    margin: 40px 20px;
}

footer{
    background-color: var(--primary-color);
    margin: 0px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    
}.connect-us{
    text-align: center;
    color: white;
    font-size: 26px;
    font-weight: 600;
   
}
.connect-icon{
   display: flex;
   flex-direction: row;
   gap: 15px;

}
.connect-icon img{
    height: 30px;
}


@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}