@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root{
    --primarycolor: rgb(52, 149, 176);
    --secondarycolor:rgb(175, 208, 234);
    --primaryfont: "Lora";
    --secondaryfont: "PT Sans";
}

*{
    margin: 0;
    padding: 0;

    box-sizing: border-box;

    user-select: none;

}

/* Make media elements responsive by default to avoid overflow */
img, picture, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

html{
    scroll-behavior: smooth;
}

/*Start Back To Top*/
.btn-backtotops{
	background-color: var(--primarycolor);
	color: #fff;
    font-size: 18px;
	padding: 15px 10px;
	border-radius: 20px;

	position: absolute;
	right: 30px;
	bottom: 60px;

	z-index: 200;
}
/*End Back To Top*/

body{
    background-color: #fff;
}

/* Start Nav bar */

.navbars{
    width: 90%;
    margin: 0 auto;
    background-color: var(--secondarycolor) !important;
    font-family: var(--secondaryfont);
    font-size: 20px;
    border-radius: 20px;

    transition: all 0.3s linear;
}

.navbars.navmenus{
    width: 100%;
    margin: 0 auto !important;
    background-color: rgba(175, 208, 234, 0.4) !important;
    font-weight: 800;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease-in-out;
}

.navbar a img{
    width: 120px;
}


.currencys select{
    background-color: transparent;
    border: none;

    font-family: var(--secondaryfont);
    
}

.currencys select:active{
    outline: none !important;
}
.room-welcomes{
    height: 450px;
    background: linear-gradient(rgba(0,0,0,0.4),rgba(52, 149, 176,0.8)),url('../img/hotel-outside.jpg') no-repeat center center;
    background-size: cover;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.room-welcomes h3{
    font-family: var(--primaryfont);
    font-size: 5rem;
}

.room-welcomes p{
    width: 60%;

    font-size: 1.2rem;
    text-align: center;

    margin: 0 auto;
}

.section{
    background: rgba(204,204,204,0.5);
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.mw-lg {
    max-width: 600px;
}

.services h1{
    font-family: var(--primaryfont);

    position: relative;
}

.services h1:after{
    content: "";
    width: 80%;
    max-width: 100px;
    height: 4px;

    background-color: var(--primarycolor);

    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translate(-50%);
}

.services i{
    width: 80px;
    height: 80px;
    margin-bottom: 15px;

    background-color: var(--primarycolor);
    color: #fff;
    border-radius: 50%;

    font-size: 2rem;
    line-height: 80px;
}











/* start footer section */

.footers{
    margin: 0 auto;
}

.footers .mains img{
    width: 200px;
}

.footers .mains p{
    font-family: var(--secondaryfont);
    font-size: 0.9rem;
    text-wrap: wrap;
}

.footers .links ul{
    padding: 0;
    margin: 0;
}

.footers .links ul li{
    list-style: none;

}



.footers .links ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;

    transition: color 0.3s ease-in-out;
}

.footers .links ul li a:hover{
    color: var(--secondarycolor);
}

.footers .sub-forms input{
    border: none;
    
}


.footers .sub-forms input::placeholder{
    font-family: var(--secondaryfont);
    font-size: 14px;
    color: #0000005d;
}

.sub-forms .sub-btns{
    background-color: var(--primarycolor);
}



.social-links .icons i{
    font-size: 1.5rem;

    transition: all 0.3s ease-in-out;
}

.social-links .icons a{
    color: #fff;
}

.social-links .icons i:hover{
    color: var(--secondarycolor);
    scale: 1.2;
}
/* end footer section */

/* Responsive improvements for hero, slider, cards and general layout */
@media (max-width: 1200px) {
}

@media (max-width: 992px) {

}

@media (max-width: 768px) {

    .links{
        border-top: 1px solid #ccc;
        padding-top: 5px;
    }

    .social-links, .sub-forms{
        margin-top: 15px;
        padding-top: 5px;
        border-top: 1px solid #ccc;
    }
}

@media (max-width: 576px) {
    .links{
        border-top: 1px solid #ccc;
        padding-top: 5px;
    }

    .social-links, .sub-forms{
        margin-top: 15px;
        padding-top: 5px;
        border-top: 1px solid #ccc;
    }
}