*{
    padding: 0;
    margin: 0;
    text-decoration: none;
}

@font-face {
    font-family: "Cormorant";
    src: url("/assets/fonts/cormorant.ttf");
}

@font-face {
    font-family: "REM";
    src: url("/assets/fonts/REM.ttf");
}

body{
    background: rgb(229,230,228);
    background: linear-gradient(135deg, rgba(229,230,228,1) 15%, rgba(229,230,228,1) 52%, rgba(236,237,235,1) 76%, rgba(243,243,242,1) 88%, rgba(255,255,255,1) 100%);
    /* overflow: hidden; */
    background-repeat: no-repeat;
    background-attachment: fixed;
}

p, a, span, button {
    font-family: 'Rem', sans-serif;
}

.first{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20vh;
}

.title{
    font-size: 40px;
    font-weight: bold;
}

.subtitle{
    font-size: 20px;
    color: #A9A9A9;
    font-weight: normal;
}

.deals-section{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 50px;
}

.deal-box{
    width: 22%;
    padding-bottom: 20px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px #1F2A56;
    text-align: center;
    background-color: rgba(31, 42, 86, 0.4);
    transition: 0.3s all ease-in-out;
}

.deal-box:hover{
    background-color: rgba(31, 42, 86, 0.45);
    transition: 0.3s;
}

.image-div{
    position: relative;
    width: 90%;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
}

.price-div{
    width: 70px;
    height: 26px;
    background-color: #1F2A56;
    position: absolute;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 4px;
    text-align: center;
}

.price-text{
    color: white;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    top: 3px;
}

.deal-image{
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.deal-name{
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    margin-left: 7%;
    margin-top: 5%;
}

.deal-short-description{
    color: #1F2A56;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    margin-left: 7%;
    width: 90%;
}

.line{
    margin-top: 70px;
    width: 100%;
    height: 2px;
    background-color: #1F2A56;
    margin-bottom: 100px;
}

.btn-reserve{
    width: 80%;
    height: 40px;
    border-radius: 100px;
    margin-top: 20px;
    background-color: #1F2A56;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: 0.5s all ease-in-out;
    outline: none;
}

.btn-reserve:hover{
    transition: 0.5s;
    background-color: rgba(31, 42, 86, 0.9);
}