*{
    margin: 0;
    padding: 0;
}
.banner{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.slider{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(photo/ind.jpg);
    /*--https://unsplash.com/photos/w7C3Wqox_us*/
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 0 0;
    justify-content: space-between;
    align-items: center;
}
.navbar{
    width: 85%;
    display: cover;
    align-items: center;
    margin-top: -60px;
    margin-left: -30px;
}
.logo{
    flex-basis: 100%;
}
.logo img{
    width:400px;
    cursor: pointer;
}
.nav img{
    width: 150px;
    cursor: pointer;
    }
.navbars{
    width: 85%;
    display: cover;
    align-items: right;
    margin-top: -205px;
    margin-left: 220px;
}
.flag{
    flex-basis: 100%;
}
.flag img{
    width:225px;
    cursor: pointer;
    margin-top: -70px;
    margin-left: 70px
}
.nav-links {
    width: 80%;
    margin-left: 717px;
    margin-top:-100px;
    padding: 0px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 25px;
    font-family: sans-serif
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}
.nav-links ul li a{
    color:azure;
    text-decoration: none;
    text-transform: uppercase;
}
.nav-links ul li::after{
    content: '';
    width: 0;
    height: 3px;
    background: #E76224;
    position: absolute;
    left: 0;
    bottom: -5px;    
    transition: 0.5s;
    
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: floralwhite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 50px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: floralwhite; 
}
.amzg-btn{
    display: inline-block;
    text-decoration: none;
    color: floralwhite;
    border: 1px solid white;
    padding: 12px 34px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.amzg-btn:hover{
    border: 1px solid #FF8300;
    background: #E76224;
    transition: 0.7s;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: red;
        height: 100vh;
        width: 200px;
        top: 0;
        right: 0;
        text-align: left;
        z-index: 2;
    }
}

/*--- food ---*/

.food{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.food h1{
    font-size: 36px;
    font-weight: 600;
}

.food p{
    color: black;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 30px;
}
.col{
    margin-top: 10%;
    display: contents;
    justify-content: space-between;
}
.food-col{
    flex-basis: 20%;
    background: #FF8300;
    border-radius: 20px;
    margin-bottom: 3%;
    padding: 0px 4px;
    box-sizing: border-box;
    transition: 0.3s;
}
.food h3{
    text-align: center;
    font-weight: 600;
    padding-top: 10px;
}
.food-col img{
     width: 400px;
}

.food-col:hover{
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
}

/*----tourist---*/

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.tourist{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.tourist-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;  
}
.tourist-col img{
    width: 100%; 
    height: 100%;
    display: block;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0; 
    transition: 0.5s;
}
.layer:hover{
    background: rgba(255,131,0,0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: white;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 40%;
    opacity: 1;
}

/*---Languages---*/

.lang{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.lang-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 5%;
    margin-left: 40px;
    text-align: left;
}
.lang-col img{
    float: center;
    width: 250px;
    height: 300px;
    object-fit: cover;
}
.lang-col p{
    padding: 0;
}
.lang-col h3{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;  
    margin-left: 90px;
}

.lang-col:hover img{
    transform: scale(1.1);
}





/*------footer-----*/

footer{
			width: 90%;
			height: 500px;
			margin: 20px auto;
			margin-top: 100px;
			background: #fafafa;
			display: flex;
			justify-content: space-around;
		}
		footer h1{
			width: 40%;
			align-self: center;
			letter-spacing: 10px;
			margin-left: 10%;
			font-size: 50px;
			font-weight: bold;
		}
		footer .quotes{
			width: 50%;
			height: 50%;
			align-self: center;
            text-align: center;
			border-left: 2px solid #e5e5e5;
		}	
.quotes h3{
    margin-bottom: 60px;
    font-size: 40px;
    text-align: center;
    display: absolute;
    font-weight: bold
}
.quotes h4{
    margin-bottom: 15px;
    font-size: 30px;
    text-align: center;
    display: absolute;
    color: black;
}
.quotes p{
    font-size: 20px;
    text-align: center;
    display: absolute;
}
.icons{
    padding
    display: inline-block;
    position: absolute;
    margin-top: 400px;
    margin-left: 850px
}