* {
    margin: 0;
    padding: 0;
}

body {
    background: #E52E61;
}

.container {
    width: 1210px;
    /* position: absolute; */
    top: -5%;
    left: 5%;
    /* margin: 300px 65px; */
    margin: 4rem auto;
    box-shadow: rgba(0, 0, 0, 0.7) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

header {
    background: #ffffff;
    height: 20%;
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    /* justify-content: space-between; */
}


#logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 0 10px;
}

.search {
    position: relative;
    display: inline-block;
    margin-left: 10%;
}

.search input {
    width: 518px;
    padding: 5px 5px 5px 5px;
    font-size: 16px;
    margin-right: 120px;
    border: 1px solid #d1c4c4;
    border-radius: 25px;
    background: #CCCCCC;
    outline: none;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.6);

}

.search input:hover {
    transform: scale(1.1);
    transition: 0.5s;
}

.fa-magnifying-glass {
    position: absolute;
    right: 130px;
    top: 30%;
    /* transform: translateY(-50%); */
    font-size: 12px;
    color: red;
    pointer-events: none;
}


.search input::placeholder {
    color: #fff;
    position: relative;
    left: 10px;
    width: 99px;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
}


.user-container {
    display: flex;
    gap: 20px;
    align-items: center;
}


#book {
    width: 30px;
    height: 40px;
    object-fit: contain;
}

.book .notification {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #E52E61;
    display: inline-block;
    position: absolute;
    margin-left: -15px;
}

.notification .notify {
    color: white;
    font-weight: 700px;
    position: relative;
    top: 1px;
    left: 5px;
    font-size: 10px;
    font-family: "open-sans";
}


#chat {
    width: 30px;
    height: 40px;
    object-fit: contain;
}

.chat .notification2 {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #E52E61;
    display: inline-block;
    position: absolute;
    margin-left: -15px;
}

.notification2 .notify2 {
    color: white;
    font-weight: 700px;
    position: relative;
    top: 1px;
    left: 5px;
    font-size: 10px;
    font-family: "open-sans";
}



.user-profile {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.user-profile img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 4px;
    margin-right: 10px;
    /* border: 1px solid black; */
}

.user-profile .user-name {
    margin: 0 0 10px 5px;
    padding: 10px;
    position: relative;
    font-family: "open-sans";
    right: 15%;
}

.user-name {
    font-size: 13px;
}

.nav-content {
    height: 80%;
    /* width: 100%; */
    display: flex;
    background: #ffffff;
}

.side-nav {
    background-color: rgb(43, 43, 43);
    flex-grow: 1;
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-basis: 18%;
}

.side-nav ul {
    list-style: none;
}

.side-nav li {
    background: rgb(43, 43, 43);
    color: white;
    /* flex-basis: 108%; */
    padding: 40px 0px 0px 0px;
    margin-top: 10px;
    font-family: "Poppins", sans-serif;
    /* height: 185px; */
    width: 200px;
}


.side-nav ul a {
    text-decoration: none;
    color: white;
}


.side-nav li:first-child {
    background: #da105a;
    margin-top: 40px;
    padding: 20px;
    padding-left: 0;
    /* flex-grow: 1;
    flex-shrink: 1; */
}

.side-nav li:nth-of-type(2) {
    /* background: #da105a; */
    margin-top: 20px;
    padding: 20px;
    overflow: hidden;
    padding-left: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: 0.5s ease-in-out;
}

.side-nav li:nth-of-type(2)::before {
    content: "";
    position: absolute;
    width: 0;
    /* padding: 0; */
    padding-left: 0;
    left: 0;
    bottom: 6px;
    /* padding: 0; */
    height: 65px;
    overflow: hidden;

    /* bottom: -7px; */
    background: #da105a;
    z-index: -1;
    transition: 0.5s ease-in-out;
}

.side-nav li:nth-of-type(2):hover::before {
    width: 100%;
    padding: 20px;
}

.side-nav li:nth-of-type(3) {
    /* background: #da105a; */
    margin-top: 20px;
    padding: 20px;
    overflow: hidden;
    padding-left: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: 0.5s ease-in-out;
}

.side-nav li:nth-of-type(3)::before {
    content: "";
    position: absolute;
    width: 0;
    /* padding: 0; */
    padding-left: 0;
    left: 0;
    bottom: 6px;
    /* padding: 0; */
    height: 65px;
    overflow: hidden;
    /* bottom: -7px; */
    background: #da105a;
    z-index: -1;
    transition: 0.5s ease-in-out;
}

.side-nav li:nth-of-type(3):hover::before {
    width: 100%;
    padding: 20px;
}


.side-nav li:nth-of-type(4) {
    /* background: #da105a; */
    margin-top: 20px;
    padding: 20px;
    overflow: hidden;
    padding-left: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: 0.5s ease-in-out;
}

.side-nav li:nth-of-type(4)::before {
    content: "";
    position: absolute;
    width: 0;
    /* padding: 0; */
    padding-left: 0;
    left: 0;
    bottom: 6px;
    /* padding: 0; */
    height: 65px;
    overflow: hidden;

    /* bottom: -7px; */
    background: #da105a;
    z-index: -1;
    transition: 0.5s ease-in-out;
}

.side-nav li:nth-of-type(4):hover::before {
    width: 100%;
    padding: 15px;
}


.side-nav .copy {
    color: white;
    font-size: 11px;
    /* background: red; */
    text-align: center;
    font-family: "Poppins", sans-serif;
}



li .fa-house {
    margin: 0 15px;
}

li .fa-plane {
    margin: 0 15px;
}

li .fa-key {
    margin: 0 15px;
}

li .fa-map {
    margin: 0 15px;
}

.content-big {
    display: flex;
}


.content-big img {
    height: 200px;
    width: 358px;
    /* flex-grow: 1;
    flex-shrink: 1; */
    object-fit: cover;
}


.content {
    overflow: hidden;
}

/*  */

.hotel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* overflow: hidden; */
    height: 70px;
    border-bottom: 1px solid rgb(233, 220, 220);
    background: #ffffff;
}

.hotel-name #name {
    /* background: red; */
    text-transform: uppercase;
    margin: 0 20px;
    font-size: 26px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    /* text-align: center; */
}

.hotel-rating #rating {
    /* background: red; */
    margin-right: 510px;
    color: #da105a;
    /* display: flex; */
    font-size: 15px;
}

.hotel-location {
    margin-left: -240px;
    /* background: red; */
    font-size: 14px;
}

.hotel-location a {
    text-decoration: none;
}

.hotel-location p {
    /* text-decoration: underline; */
    color: #da105a;
    position: relative;
}

.hotel-location p::before {
    content: "";
    position: absolute;
    height: 1px;
    left: 42px;
    width: 84%;
    background: #da105a;
    margin-top: 29px;
    cursor: pointer;
}


.hotel-location p .fa-location-dot {
    padding: 10px;
    margin: 0 10px;
}

.votes {
    font-size: 20px;
    background: #da105a;
    padding: 15px 30px 8px 30px;
    color: white;
    position: relative;
    left: 1px;
    text-align: center;
}

.votes #rate-number {
    /* background: #000; */
    font-size: 25px;
}

.votes small {
    font-size: 10px;
}

.boxes {
    display: flex;
}

.big {
    width: 480px;
    height: 500px;
    margin: 50px;
    font-size: 15px;
    background: #ffffff;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.big #one,
#two {
    /* background: red; */
    font-weight: 400;
}


.big #arrow1 {
    width: 30px;
    height: 10px;
    object-fit: contain;
}

.big #arrow2 {
    width: 30px;
    height: 10px;
    object-fit: contain;
}

.big #arrow3 {
    width: 30px;
    height: 10px;
    object-fit: contain;
}

.big #arrow4 {
    width: 30px;
    height: 10px;
    object-fit: contain;
}

.big #arrow5 {
    width: 30px;
    height: 10px;
    object-fit: contain;
}

.big #arrow6 {
    width: 30px;
    height: 10px;
    object-fit: contain;
}

.big #arrow7 {
    width: 30px;
    height: 10px;
    object-fit: contain;
}

.big #arrow8 {
    width: 30px;
    height: 10px;
    object-fit: contain;
}

.big #arrow9 {
    width: 30px;
    height: 10px;
    object-fit: contain;
}

.big #arrow10 {
    width: 30px;
    height: 10px;
    object-fit: contain;
}

.big .items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px 20px 20px 20px;
    cursor: pointer;
}

.me {
    display: flex;
}

.big .me {
    margin: -10px 10px;
}

.me #recommend {
    width: 50px;
    height: 50px;
    object-fit: cover;
    position: relative;
    left: 20px;
    top: 20px;
    border-radius: 50%;
}

.me #recommend2 {
    width: 50px;
    height: 50px;
    object-fit: cover;
    position: relative;
    top: 20px;
    margin: 0px -20px 0px 0px;
    background: white;
    border-radius: 50%;
}

.me #recommend3 {
    width: 50px;
    height: 50px;
    object-fit: cover;
    position: relative;
    top: 20px;
    margin: 0px -20px 0px 0px;
    background: white;
    border-radius: 50%;
}

.small1 {
    width: 270px;
    height: 150px;
    margin: 60px -20px;
    /* margin: 50px; */
    font-size: 15px;
    background: #ffffff;
    padding: 40px;
    font-family: "Poppins", sans-serif;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.small2 {
    width: 270px;
    height: 150px;
    margin: 40px -40px;
    /* margin: 50px; */
    font-size: 15px;
    background: #ffffff;
    padding: 40px;
    font-family: "Poppins", sans-serif;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}


.small-rating #rate1 {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 20px;
}

.small2 #rate2 {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 20px;
}


.spans .small-name {
    /* background: red; */
    display: flex;
    margin-top: -55px;
    /* background: red; */
    margin-left: 65px;
    width: 53px;
    font-family: "Poppins", sans-serif;
}

.spans .small-date {
    /* margin-top: -65px; */
    margin-left: 65px;
    /* background: red; */
    font-family: "Poppins", sans-serif;
}

.spans .small-review {
    margin-left: 90%;
    font-family: "Poppins", sans-serif;
    /* background: red; */
    font-size: 28px;
    position: relative;
    top: -40px;
    /* margin-top: 60px; */
}


.spans2 .small-name2 {
    /* background: red; */
    display: flex;
    margin-top: -55px;
    /* background: red; */
    margin-left: 65px;
    width: 73px;
    height: 23px;
    font-family: "Poppins", sans-serif;
}

.spans2 .small-date2 {
    /* margin-top: -15px; */
    margin-left: 65px;
    /* background: red; */
    font-family: "Poppins", sans-serif;
}

.spans2 .small-review2 {
    margin-left: 90%;
    position: relative;
    top: -40px;
    font-family: "Poppins", sans-serif;
    /* background: red; */
    font-size: 28px;
    /* margin-top: 60px; */
}

.small2 #para2 {
    box-sizing: border-box;
    /* background: red; */
    line-break: anywhere;
}

.small1 #para {
    /* background: red; */
    line-break: anywhere;
}


/*  */

#show {
    position: relative;
    left: 30%;
    bottom: 10px;
    font-size: 12px;
    /* background: #000; */
    color: #da105a;
}

#show .fa-arrow-right {
    /* background: #000; */
    margin: 5px;
    cursor: pointer;
}

#show::before {
    content: "";
    position: absolute;
    height: 1px;
    left: -15px;
    width: 140%;
    background: #da105a;
    margin-top: 24px;
    cursor: pointer;
}

#show:hover::before {
    background: black;
}

#show:hover {
    cursor: pointer;
}


.news {
    text-align: center;
    font-size: 27px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    padding-top: 50px;
}

.news .room {
    margin: 20px 0;
}

.room {
    padding: 5px 40px 5px 40px;
    font-size: 28px;
    background: #da105a;
    border: none;
    overflow: hidden;
    cursor: pointer;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
}

.room span {
    display: block;
    transition: 0.5s;
}

.room {
    animation-name: book;
    animation-duration: 3s;
    animation-iteration-count: 3;
}

@keyframes book {
    0% {
        transform: translateY(300px);
    }

    25% {
        transform: scale(1.3);
    }
}

.down {
    transform: translateY(0%);
}

.room:hover .down {
    transform: translateY(-300%);
}

.room:hover .up {
    transform: translateY(-50%);
}

.room .up {
    transform: translateY(-230%);
}

.room .down {
    transform: translateY(40%);
}

#show {
    display: inline-block;
    animation-name: show;
    /* animation-duration: 3s;
    animation-iteration-count: 1; */
}

#show:hover {
    color: black;
    transition: 0.3s;
}

#show:hover i {
    margin: 0 20px;
    transition: 0.3s;
}
