:root{
    --primary-color: #E76F51;
    --secondary-color: #F8E1DB;
    --white: #fff;
    --grey: #D2D2D2;
    --gray: #8D8D8D;
    --dark: #3B3735;
    --bgcolor:#FAF4F2;
    --primary-font: "Roboto", Arial, Helvetica, sans-serif;
    --primary-font-md: "Roboto Medium", Arial, Helvetica, sans-serif;
    --secondary-font: "Archivo Black", Arial, Helvetica, sans-serif;
}
html{
    box-sizing: border-box;
    font-size: 62.5%;
}
*,*::after,*::before{
    box-sizing: border-box;
}
body{
    line-height: 1.6;
    font-size: 1.6rem;
    font-family: "Roboto";
    background-color: var(--bgcolor);
}
/*

-- reset css --

*/

a{
    text-decoration: none;
}

/*

-- helper claas -- 

*/


/*

-- Component Class -- 

*/
.btn{
    display: block;
    border-radius: 10rem;
    width: 20rem;
    height: 5rem;
    background-color: #3B3735;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto Medium";
    margin-right: auto;
    margin-left: auto;
}

/*


-- app start -- 


*/

.header{
    background: linear-gradient(rgba(59,55,53,0.5), rgba(59,55,53,0.5)), url("../images/header-bg.jpg");
    background-position: center;
    background-size: cover;
    min-height: 85vh;
    border-bottom-left-radius: 10rem;
    border-bottom-right-radius: 10rem;
}
.nav{
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.app-logo{
    width: 5.5rem;
    height: 5.5rem;
    margin-right: 2.5rem;
    transition: all 200ms ease-in;
}
.app-logo:hover{
    transform: scale(1.2);
}
.app-logo__img{
   display: block;
   width: 100%;
   height: 100%;
   
}
.nav-wraper{
    display: flex;
    align-items: center;
}
.menu{
    display: none;
}
.menu__item{
    margin-right: 2rem;
}
.menu__link{
    color: #D2D2D2;
    transition: color 100ms ease-in;
}
.menu__link--active{
    color: #fff;
    position: relative;
    z-index: 1;
    transition: all 200ms ease-in;
}
.menu__link--active::before{
    content: ' ';
    color: #fff; 
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 4rem;
    height: 0.3rem;
    border-radius: 10rem;
    margin: 0 auto;
    background-color: var(--primary-color);
    transform: rotate(45deg);
    z-index: -1;
}
.menu__link:hover{
    color: #fff;
}
.nav-menu{
    background-color: #343434;
    min-width: 25rem;
    position: fixed;
    left: -25rem;
    top: 0;
    bottom: 0;
    padding: 2.5rem;
    transition: all 100ms ease-in-out;
    z-index: 1;
}
.nav-menu--open{
    left: 0;
}
.mobile-menu{
    margin-bottom: 3rem;
}
.mobile-menu__item{
    margin-bottom: 1rem;
}
.mobile-menu__link{
    color: #fff;
    position: relative;
    transition: all 150ms ease-in;
}
.mobile-menu__link::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0.3rem;
    border-radius: 10rem;
    background-color: var(--primary-color);
    transition: all 150ms ease-in;

}
.mobile-menu__link:hover::before{
    width: 1.6rem;
}
.mobile-menu__link:hover{
    padding-left: 2.2rem;
}
.nav-menu__links{
    display: flex;
}
.nav-menu__link{
    color: #fff;
    border: 1px solid #fff;
    padding: 1rem;
    flex-grow: 1;
    text-align: center;
    display: block;
}
.nav-menu__link:hover{
    color: #3B3735;
    background-color: #fff;
    transition: all 100ms ease-in;
}
.nav-menu__title{
    color: #fff;
    border-bottom: 2px solid #fff;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}
.header__links{
    display: none;
}
.header__link{
    color: #fff;
    margin-left: 3rem;
    font-family: "Roboto Medium";
}
.header__link--border{
    border: 1px solid #fff;
    padding: 1rem 2.5rem;
    border-radius: 10rem;
    transition: all 200ms ease-in-out;
}
.header__link--border:hover{
    background-color: #fff;
    color: #3B3735;
}
.nav__btn{
    background-color: #fff;
    width: 5.5rem;
    height: 5.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    cursor: pointer;
}
.nav__btn-line{
    display: block;
    width: 3rem;
    height: 0.3rem;
    background-color: var(--primary-color);
    position: relative;
    border-radius: 10rem;
    transition: all 200ms ease-in-out;
}
.nav__btn-line::before,
.nav__btn-line::after{
    content: '';
    position: absolute;
    width: 3rem;
    height: 0.3rem;
    background-color: var(--primary-color);
    border-radius: 10rem;
    transition: all 200ms ease-in-out;
}
.nav__btn-line::before{
    top: -0.8rem;
}
.nav__btn-line::after{
    top: 0.8rem;
}
.nav__btn--open{
    position: fixed;
    right: 1.5rem;
    top: 1.5rem;

}
.nav__btn--open .nav__btn-line{
    background-color: transparent;
}
.nav__btn--open .nav__btn-line::before{
    transform: translateY(8px) rotate(45deg);
    width: 3.5rem;
    transition: all 200ms ease-in-out;
}
.nav__btn--open .nav__btn-line::after{
    transform: translateY(-8px) rotate(-45deg);
    width: 3.5rem;
    transition: all 200ms ease-in-out;
}
.header-content{
    color: #fff;
    text-align: center;
    margin-top: 8rem;
}
.header-content__title{
    font-family: "Archivo Black";
    font-size: 4.8rem;
    line-height: 1.4;
    max-width: 35rem;
    margin: 0 auto 3rem auto;
}
.header-content__caption{
    font-size: 1.5rem;
    max-width: 35rem;
    margin: 0 auto 2rem auto;
}
.header-contetnt__link{
    background-color: var(--primary-color);
    transition: all 150ms ease-in-out;
}
.header-contetnt__link:hover{
    background-color: #fff;
    color: var(--primary-color);
}
.main{
  padding: 0 4rem;
}
.services{
   margin-top: -11rem;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}
.service{
   background-color: #fff;
   width: 33rem;
   padding: 0 2rem;
   height: 31rem;
   border-radius: 2rem;
   margin-bottom: 2rem;
   display: flex;
   text-align: center;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}
.service__img{
    display: block;
}
.service__title{
    font-family: "Archivo Black";
    color: #3B3735;
    font-size: 1.8rem;
    margin: 1rem 0 0.6rem 0;
}
.service__caption{
    min-width: 29rem;
}
.desinations{
    text-align: center;
    padding: 7rem 0;
}
.desination__logo{
    width:  8rem;
    height:  8rem;
}
.desination__title{
    font-family: var(--secondary-font);
    text-align: center;
    max-width: 36rem;
    font-size: 3rem;
    margin: 3rem auto;
}
.desination__places{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-left: -1rem;
    margin-right: -1rem;
}
.desination__place{
    border-radius: 2rem;
    padding: 3rem;
    width: 32rem;
    background-color: var(--white);
    margin-bottom: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    flex-grow: 1;
}
.place__banner{
    position: relative;
    height: 18rem;
}
.place__img{
    width: 100%;
    height: 100%;
    border-radius: 3rem;
}
.place__like{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    width: 4rem;
    height: 4rem;
    border-radius: 1.5rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
}
.place__like-icon{
    transition: all 200ms ease-in;
}
.place__like-icon--fill{
    fill: #E76F51;
}
.place__price{
    position: absolute;
    width: 12rem;
    padding: 1rem 2rem;
    bottom: -2rem;
    left: 0rem;
    right: 0;
    margin: 0 auto;
    color: var(--primary-color);
    background-color: var(--white);
    border-radius: 1rem;
}
.place__price-text{

}
.place__title{
    font-family: var(--secondary-font);
    color: var(--dark);
    margin-top: 3rem;
}
.place__caption{
    margin-top: 1rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}
.desination__btn{
    color: var(--gray);
   background-color: rgba(141, 141, 141, 0.1);
   margin-bottom: 1rem;
}
.desination__link{
    margin-top: 3rem;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: transparent;
    transition: all 100ms ease-in;
}
.desination__link:hover{
    color: var(--white);
    background-color: var(--primary-color);
}
.newsLetter{
    background-color: var(--secondary-color);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--dark);
    border-radius: 2rem;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 10rem;
}
.newsletter__content{

}
.newsletter__title{
    font-family: var(--secondary-font);
    font-size: 3rem;
    line-height: 1.3;
    margin: 1.5rem auto;
}
.newsletter__caption{
    font-family: var(--primary-font-md);
}
.newsletter__email-box{
    background-color: var(--white);
    height: 8rem;
    padding: 0 1.5rem;
    border-radius: 2rem;
    margin-top: 2rem;
}
.newsLetter__form{
    height: 100%;
    display: flex;
    align-items: center;
}
.newsletter__email-icon{
    flex-shrink: 0;
}
.newsletter__input{
    outline: none;
    border: none;
    height: 100%;
    color: #8D8D8D;
    background-color: var(--white);
    width: 100%;
    padding: 0 1rem;
    font-size: 1.6rem;
}

.newsletter__submit{
    outline: none;
    border: none;
    background-color: var(--primary-color);
    width: 5rem;
    height: 5rem;
    border-radius: 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.newsletter__banner{

}

.newsletter__img{
    width: 100%;
}
.footer{
    background-color: var(--secondary-color);
    border-top-left-radius: 7rem;
    border-top-right-radius: 7rem;
    max-width: 50rem;
    padding-top: 7rem;
    padding-left: 1rem;
}
.footer__title{
    font-family: var(--secondary-font);
    max-width: 23rem;
}
.footer__text{
    color: var(--dark);
}
.footer__content{

}
.footer-content__title{

}
.footer-content__text{

}
.footer__download{

}
.footer-download__title{

}
.footer-download__img{

}
.CopyRight{

}
.CopyRight__text{

}

