* {
        box-sizing: border-box;
}
body {
    margin: 0;
     font-family: "Nunito Sans", sans-serif;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.container {
    width: 1136px;
    margin: auto;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.logo {
    display: flex;
    padding: 20px 0;
    justify-content: center;
    align-items: center;
    gap: var(--Spacing-4, 16px);
    width: 100%;
}

.banner {
    width: 100%;
}

.banner img {
    width: 100%;
    display: block;
}
.infor h1 {
    color: #002735;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height:  36px;
    text-transform: uppercase;
    padding-bottom: 16px;
    margin: 0 0 24px;
    position: relative;
}
.infor  h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #002735;

}
.infor {
    color: #505A5D;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height:  20px;
    margin: 0;
}
.infor p {
    margin: 0;
}
.our-hotel {
    display: flex;
    height: 60px;
    padding: 6px 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    background: #002735;
}
.our-hotel h1 {
    color: #fff;
    text-align: center;
    font-size:  24px;
    font-style: normal;
    font-weight: 900;
    line-height:  36px;
    text-transform: uppercase;
    width: 100%;
    margin: 0;
}
.items {
    display: flex;
    flex-wrap: wrap;
    gap:  28px;
}
.items:last-child {
    margin-bottom: 0;
}
.items .item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-radius: 8px;
    border: 1px solid  #E4E5E9;
    overflow: hidden;
    width: calc((100% - 56px) / 3);
}

.items .item .img {
    margin: auto;
}
.items .item img {
    max-width: 100%;
    max-height: 270px;
    width: auto;
    height: auto;
    margin: auto;
}
.hotel-info {
    display: flex;
    padding:16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}
.hotel-info .details h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    align-self: stretch;
    overflow: hidden;
    color: #002735;
    text-overflow: ellipsis;
    font-size:  16px;
    font-style: normal;
    font-weight: 700;
    line-height:  24px; 
    margin: 0;
}
.review {
    display: flex;
    align-items: center;
    gap:  2px;
    color: #002735;
    font-size:  14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}
.review .star {
    display: flex;
    align-items: center;
    gap:  2px;
}
.hotel-info .details {
    width: calc(100% - 60px);
}
.hotel-info .details p {
    color: #505A5D;
    font-size:  13px;
    font-style: normal;
    font-weight: 400;
    line-height:  20px;
    margin: 0;

}
.hotel-info .details p a {
    color: #505A5D !important;
}
.button {
    width: 100%;
    padding: 0 16px 16px;
    box-sizing: border-box;
    margin-top: auto;
}
.button a {
    display: flex;
    height:  36px;
    padding: 0  12px;
    justify-content: center;
    align-items: center;
    gap:  8px;
    align-self: stretch;
    border-radius:  99px;
    background: #002735;
    -webkit-border-radius:  99px;
    -moz-border-radius:  99px;
    -ms-border-radius:  99px;
    -o-border-radius:  99px;
    color:  #FFF;
    font-size:  14px;
    font-style: normal;
    font-weight: 700;
    line-height:  20px; 
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

.logo-qr {
    width: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4.8px;
}
.line-footer {
    width: 100%;
    text-align: center;
}
.line-footer .line {
    display: flex;
    height: 60px;
    padding: 6px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    background: #002735;
    width: 100%;
}

.line-footer .footer {
    display: flex;
    padding:  16px;
    justify-content: center;
    align-items: center;
    color: #002735;
    font-size:  12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}
.line-footer .footer b {
    font-weight: 700;
}
@media (min-width: 1025px) {
    .container {
        width: 1136px;
        margin: auto;
    }
    .hotel-info .details {
        width: calc(100% - 60px);
    }
    .items .item:nth-child(-n+3) {
        margin-bottom: 32px;
    }
}
@media (max-width: 1024px) and (min-width: 768px) {
    .container {
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .items {
        gap: 16px;
    }
    .items .item {
        width: calc((100% - 16px) / 2);
    }
}
@media(max-width: 767px) {
    .container {
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .items {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .items .item {
        width: 100%;
    }
}

.img_logo_small {
    display: flex;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
}