@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;1,700;1,900&display=swap');


:root{
  --main-color: #ff0000;
  --black-color: #212020;
  --border: 0.1rem solid rgba(255, 255, 255, 0.4);



}








*{
    font-family: 'Merriweather', serif;

    margin: 0;
padding: 0;
box-sizing:border-box ;
outline: none;
border: none;
text-decoration: none;
text-transform: capitalize;
transition: 0.2s ease;
}

/*! base html codes */
html{
 font-size: 62.5%;
 overflow-x: hidden;
 scroll-padding-top: 9rem;
 scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: 0.8rem;
    background-color: white;
}

html::-webkit-scrollbar-thumb{
    border-radius: 3rem;
    background-color: var(--black-color);
}




body{

background-color: var(--main-color);

}

section{
    padding: 3.5rem 7%;

}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: 2rem 3.75rem;
    border-radius: 30rem;
    font-size: 1.7rem;
    color: #FFF;
    background-color: var(--black-color);
    cursor: pointer;
}

.btn:hover {
    opacity: 0.4;
}

.heading{
    color: #FFF;
    text-transform: uppercase;
    font-size: 4rem;
    margin-bottom: 3.5rem;
    border-bottom: 0.1rem solid #FFF;

}
.heading span {
    color: var(--black-color);
    text-transform: uppercase;
}

.search-input{
    font-size: 1.6rem;
    color: var(--black-color);
    padding: 1rem;
    text-transform: none;
    border-radius: 3rem;
}

.header .search-form{
    position: absolute;
    top: 115%;
    right: 7%;
    background-color: #FFF;
    width: 50rem;
    height: 5rem;
    display: flex;
    align-items: center;
    border-radius: 3rem;
    box-shadow: 0px 0px 25px 2px rgba(0 0 0 / 75%);
    transform: scaleY(0);
}

.header .search-form.active{
    transform: scaleY(1);
}

.header .search-form i{
    cursor: pointer;
    font-size: 2.2rem;
    margin-right: 1.5rem;
    color: var(--black-color);
}

.header .search-form input {
    width: 100%;
}

.header .logo img{

    height: 5rem;
}

.header{
background-color: #FFF;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 7%;
margin: 2rem 7%;
border-radius: 30rem;
box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.75);
position: sticky;
top: 0;
z-index: 1000;
}

.header .navbar a
{

    margin: 0 0.3rem;
    font-size: 1rem;
    color: var(--black-color);
    border-bottom: 0.1rem solid transparent;
}

.header .navbar .active,
.header .navbar a:hover{

    border-color: var(--main-color);
    padding-bottom: 0.5rem;
}


.header .buttons button{

cursor: pointer;
font-size: 2rem;
margin-left: 2.5rem;
background-color: transparent;
}

.header #menu-btn{
    display: none;
}

.home{
min-height: 200vh;
background: url(../images/ana.jpeg) no-repeat;
background-size: cover;
background-position: center;  
margin-top: -11rem;
display: flex;
align-items: center;
}


.home .content{

max-width: 60rem;



}

.home .content .h3{

font-size: 6rem;



}


.home .content h3{

    font-size: 6rem;
    color: #FFF;
}

.home .content p{
     font-size: 2rem;
     font-weight: 300;
    line-height: 1.8;
    padding: 1rem 0;
    color: rgb(189, 120, 120);
    font-style: bold;
}



.Stay .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
}

.Stay .box-container .box{
    padding: 3rem;
    background-color: #FFF;
    border-radius: 3rem;
    background-color: #FFF;
    min-height: 60rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}


.Stay .box-container .box img{
    width: 100%;
    object-fit: cover;
}


.Stay .box-container .isim{
    font-size: 1.5rem;
}


.Stay .box-container .box h3 {
    font-size: 3rem;
    padding: 1rem 0;
}


.Stay .box-container .box .Mlcnn {
    font-size: 2.5rem;
    padding: 0.5rem 0;
}

.Stay .box-container .box .Mlcnn span {
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: 300;
}


/*! About Start */
  .about .row {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2rem;
  }
.about .row .image{
    flex: 1 1 45rem;
  }


  .about .row img{
    width: 100%;
  }

  .about .row .content {
    flex: 1 1 45rem;
  }

  .about .row .content h3 {
    font-size: 3rem;
    color: #FFF;
  }

  .about .row .content p {
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
  }




/*! About End */

/*! contact start */
 .contact .row{
    display: flex;
    background-color: var(--black-color);
    flex-wrap: wrap;
    gap: 1rem;
 }

    .contact .row .map {
        flex: 1 1 45rem;
        width: 100%;
        object-fit: cover;
    }

    .contact .row form {
        flex: 1 1 45rem;
        padding: 5rem 2rem;
        text-align: center;
    }
    .contact .row form h3{
        text-transform: uppercase;
        font-size: 3.5rem;
        color: #FFF;
    }

    .contact .row form .inputbox{
        display: flex;
        align-items: center;
        margin: 2rem 0;
        border: var(--border);
    }
     
    
    .contact .row form .inputbox i{
        color: #FFF;
        font-size: 2rem;
        padding-left: 2rem;
    }

    .contact .row form .inputbox input {
        width: 100½;
        padding: 2rem;
        font-size: 1.7rem;
        color: #FFF;
        text-transform: none;
        background-color: transparent;
    }

    .contact .row form .btn {
        color: var(--main-color);
        background-color: #FFF;
        font-weight: bold;
    }


/*! contact End */

/*! Footer Start */
  .footer{
    background-color: var(--black-color);
    text-align: center;
  }

.footer .search{
    display: flex;
    justify-content: center;
}
.footer .search .search-input{
    width: 30rem;
}
.footer .search .btn-primary{
    background-color: var(--main-color);
    padding: 1rem 2rem;
    margin-left: 1rem;
}

.footer .share {
    padding: 2rem 0;
}
.footer .share a {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    color: #FFF;
    font-size: 2rem;
    border: var(--border);
    border-radius: 50%;
    margin: 0.3rem;
}

.footer .share a:hover {
   background-color: var(--main-color);
}

.footer .links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer .links a {
    background-color: var(--main-color);
    padding: 0.7rem 2rem;
    color: #FFF;
    font-size: 2rem;
    border: var(--border);
}

.footer .links a:hover {
    background-color: var(--black-color);
    opacity: 0.7;
}

.footer .links a.active {
    background-color: var(--black-color);
}

.footer .credit {
    font-size: 2rem;
    color: #FFF;
    font-weight: 300;
    padding-top: 1.5rem;
}

.footer .credit a {
   color: var(--main-color);

}

/*! Footer End */

/*! responsive start */

   @media (max-width: 991px){
    html {
        font-size: 55%;
    }

.header {
    padding: 1.5rem 2rem ;

}

.header .logo img {
    height: 7rem;
}


 section{
    padding: 2rem;
 }
 .products .box-container .box-head .name {
    font-size: 3.4rem;
 }

}

@media (max-width: 768px){
    .header #menu-btn {
        display: inline-block;
    }
.header .navbar {
    position: absolute;
    top: 95%;
    background-color: #FFF;
    height: calc(100vh - 9rem);
    width: 30rem;
    box-shadow: 0px 20px 14px 0px rgba(0 0 0 / 75%);
    right: -100%;
}

.header .navbar.active{
    right: 3rem;
}


.header .navbar a {
    color: var(--black-color);
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
}

}

@media (max-width: 576px){
    html{
        font-size: 50%;
    }
}



/*! responsive end */

