/* start golabal rules */

:root {
    --main-color: ;
   --secondery-color: ;
   --bg: ;
}
body {
font-family: 'Cairo', sans-serif;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container{
padding: 0 150px;
}
/* end golabal rules */

/* start header */
.header {
    display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 0px 20px;
        position: fixed;
        top: 0;
        height: 50px;
        background-color: black;
        color: white;
        z-index: 200;
}
.header .nav {
width: 100%;
}
.header .nav > ul {
display: flex;
    position: absolute;
    left: 0px;
}
@media (max-width:767px){
    .header .nav > ul {
    display: flex;
        flex-direction: column;
        background: black;
        opacity: 0;
        
    }
}
.header .nav > ul > li {
    padding: 0 30px 0 25px;
    width: 150px;
    height: 50px;
    transition:.3s ;
    -webkit-transition:.3s ;
    -moz-transition:.3s ;
    -ms-transition:.3s ;
    -o-transition:.3s ;
}
.header .nav > ul > li:hover > a {
    background-color: white;
    color: black;
}
.header .nav>ul>li:hover .nav2 {
    background-color: black;
    color: white;
    opacity: 1;
    top: 0;
}
.header .nav > ul > li > a {
        color: white;
        font-size: 20px;
        font-weight: bold;
        text-transform: uppercase;
        width: 100%;
        height: 100%;
        display: block;
        text-align: center;
        padding-top: 5px;
        transition:.3s ;
        -webkit-transition:.3s ;
        -moz-transition:.3s ;
        -ms-transition:.3s ;
        -o-transition:.3s ;
}
.header .nav2 {
        background-color: black;
        position: relative;
        height: 150px;
        top: 30px;
        transition:.5s ;
        -webkit-transition:.5s ;
        -moz-transition:.5s ;
        -ms-transition:.5s ;
        -o-transition:.5s ;
        opacity: 0;
        z-index: 100;
}
.nav2 ul {
position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.nav2 ul > li > a {
        color: white;
            font-size: 20px;
            font-weight: bold;
            text-transform: uppercase;
            width: 100%;
            height: 100%;
            display: block;
            text-align: center;
            padding-top: 5px;
}
.header .icon {
    position: absolute;
        top: 0;
        left: 10px;
        background-color: aliceblue;
        width: 50px;
        height: 100%;
        display: none;
}
@media (max-width:767px) {
    .header .icon {
        display: block;
    }
        .header .icon span:hover .nav>ul {
          opacity: 1;
        }
}
.icon > span {
width: 40px;
    height: 4px;
    background-color: black;
    display: block;
    margin: 10px 5px;
}
.header .search {
    display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
        width: 50px;
        padding: 15px 0 16px;
}
/* end header */
/* start land */
.land {
position: relative;
}
.land img {
width: 100%;
}
.land h3 {
position: absolute;
    top: 70%;
    left: 50%;
    color: white;
    transform: translate(-50%, -50%);
    font-size: 40px;
    font-weight: bold;
}
@media (max-width:767px) {
    .land h3 {
        font-size: 20px;
    }
}
.land p {
    position: absolute;
        top: 80%;
        left: 50%;
        color: #777;
        transform: translate(-50%, -50%);
        font-size: 30px;
        font-weight: bold;
}
@media (max-width:767px){
    .land p {
        font-size: 10px;
    }
}
/* end land */
/* start landing */
@media (max-width:767px) {
    .container {
        width: 100%;
        padding: 0;
    }
}
.landing .container .text h1 {
text-align: center;
    font-size: 40px;
    font-weight: bold;
}
@media (max-width:767px){
    .landing .container .text h1 {
        font-size: 24px;
    }
}
.landing .container .text .text-one {
text-align: center;
    font-style: italic;
    color: #777;
    padding-bottom: 10px;
} 
.landing .container .text .text-two {
font-size: 20px;
    text-align: center;
    font-weight: bold;
}
@media (max-width:767px) {
    .landing .container .text .text-two {
        font-size: 20px;
    }
}
.landing .container .images {
display: grid;
grid-template-columns: repeat(auto-fill , minmax(300px, 1fr));
gap: 20px;
}
.landing .container .images .image h2 {
text-align: center;
    text-transform: uppercase;
    color: #777;
}
.landing .container .images .image img {
width: 100%;
}
@media (max-width:767px) {
    .landing .container .images .image img {
        width: 100%;
    }
}
/* end landing */
/* start tour */
.tour {
background-color: black;
    color: white;
}
.tour .container .text h2 {
text-align: center;
    font-size: 30px;
    font-weight: 900;
}
.tour .container .text p {
text-align: center;
    padding-bottom: 10px;
    font-style: italic;
}
.tour .price {
background-color: white;
    color: black;
    padding-left: 15px;
    margin-bottom: 15px;
}
.tour .price p {
    color: #777;
        font-size: 22px;
        padding: 10px 0;
        border-bottom: 2px solid #999;
    }
.tour .price span:nth-child(1) {
background-color: red;
    color: white;
    text-align: center;
    padding: 0 5px 0;
}
.tour .info {
    display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
}
.tour .info .box {
    background-color: white;
        color: black;
        position: relative;
}
.tour .info .box img { 
    width: 100%;
    position: relative;
     transition: .3s; -webkit-transition: .3s; -moz-transition: .3s; -ms-transition: .3s; -o-transition: .3s;
}
.tour .info .box img::before {
    content: "";
        width: 10px;
        height: 10px;
        background-color: red;
        position: absolute;
        top: 0;
        z-index: 1;
        left: 0;
}
.tour .info .box h3 {
padding-left: 15px;
    font-size: 25px;
    font-weight: 900;
}
.tour .info .box p:first-of-type {
padding-left: 15px;
    font-style: italic;
    color: #777;
}
.tour .info .box p:last-of-type {
padding-left: 15px;
    font-weight: bold;
}
.tour .info .box a {
            display: block;
            background-color: black;
            color: white;
            width: 100px;
            margin-bottom: 5px;
            margin-left: 5px;
            text-align: center;
            transition: 0.3s; ;
            -webkit-transition:.3s ;
            -moz-transition:.3s ;
            -ms-transition:.3s ;
            -o-transition:.3s ;
}
.tour .info .box a:hover {
    background-color: #777;
    color: black;
}
/* end tour */
/* start contact */
.contact {
    margin-top: 20px;
margin-bottom: 20px;
    height: 450px;
}
.contact .container > h2 {
text-align: center;
    font-size: 30px;
    font-weight: 900;
}
.contact .container > p{
    text-align: center;
        color: #777;
        font-style: italic;
        padding: 0 0 10px 0;
}
.contact .container .content {
display: flex;
    gap: 100px;
    padding-left: 50px;
    flex-wrap: wrap;
}
@media (max-width: 767px){
    .contact .container .content {
        gap: 10px;
    }
}
.content .form{
    position: relative;
}
.content .form .one {
padding: 10px;
}
.content .form .two {
padding: 10px;
}
@media (max-width: 767px){
    .content .form .one,
    .content .form .two {
        margin: 5px 5px ;
        width: 80%;
    }
}
.content .form .three {
padding: 10px;
    width: 100%;
    margin-top: 5px;
}
@media (max-width: 767px){
    .content .form .three {
        width: 80%;
        margin: 10px 5px;
    }
}
.content .form button {
    width: 100px;
        height: 30px;
        background-color: blue;
        color: white;
        outline: none;
        border-radius: 10px;
        font-size: 18px;
        margin-top: 5px;
        text-align: center;
        position: absolute;
        display: block;
        right: 5%;
}
/* end contact */
.map img {
    max-width: 100%;
}
.feet {
text-align: center;
    font-weight: bold;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
flex-wrap: wrap;
}
.feet .social {
    width: 100%;
}
.feet i {
display: inline-block;
    font-weight: bold;
    font-size: 20px;
}