* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: arial;
}

body {
    background-color: rgb(229, 232, 235);
}
a:hover {
    cursor: pointer;
}

.wrapper {
    padding: 0px 6%;
}

/* navigation */

/* Desktop nav */



nav {
    padding: 5px 6%;
    border-bottom: solid 3px brown;
    margin-bottom: 20px;
}

.container-fluid {
    padding: 5px 6%;
}
.navbar-toggler {
    border: none;
    outline: none;
    display: none;
}

.navbar-toggler:hover {
    border: solid 1px #fff;
}

.logo {
    font-size: 25px;
    font-weight: bold;
    color: #000;

}


ul {
    list-style: none;
}

li {
    display: inline-block;
    padding: 0px 18px;
}

.nav-item > .nav-link, .nav-item-f > .nav-link {
    text-decoration: none;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 24px;
}
.home-style {
    color: brown;
}

.nav-item > .nav-link:hover {
    background-color: brown;
    transition: .5s;
}
 .nav-item-f > .nav-link:hover {
    background-color: brown;
    transition: .5s;
}

/* end of navigation */

/* hero secton */

.image-content {
    background-image: url(img/bag-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 10px;
    width: 100%;
    height: 40vh;
    text-align: center;
    padding-top: 100px;
}

.image-content > h1 {
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.image-content > input {
    width: 450px;
    height: 50px;
    outline: none;
    border: none;
    font-size: 16px;
    border-radius: 25px;
    padding: 10px 10px 10px 20px;
    text-transform: capitalize;

}

.image-content > i {
    margin-left: -45px;
    padding: 9px;
    height: 90px;
}

.image-content > i:hover {

    background: brown;
    border-radius: 50%;
}

/* content hero */

.flex-container {
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 15px 0px 0px;
    gap: 20px;
    margin-right: -20px;
}

.content {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.content > a {
    text-decoration: none;
    color: #000;
    padding: 10px 50px;
    background-color: #fff;
    border-radius: 25px;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
    
}
.content > .tag-new {
    
}

.content > a:hover {
    background-color: brown;
    transition: .5s;
}

.images-text > img {
width: 100%;
height: 200px;
}



.images-text > h1 {
padding: 5px 0px 5px;
font-size: 18px;
font-weight: 400;
}

.images-text > .para {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.para > .bt {
font-weight: 800;
}

.para > .btn {
    padding: 5px 16px;
    background-color: brown;
    border-radius: 24px;
}

.para > .btn:hover {
float: right;
background-color: #fff;
transition: .5s;
cursor: pointer;
}

/* media  */


@media screen and (max-width: 900px){

    li a {
        display: none;
    }

    .navbar-toggler {
        border: none;
        outline: none;
        display: block;
    }
  
    .unis-front {
    display: none;
    }

    .flex-container {
        
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

    .content > a {
        text-decoration: none;
        color: #000;
        padding: 10px 90px;
        background-color: #fff;
        border-radius: 25px;
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 20px;
        
    }
    
.image-content > h1 {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.image-content > input {
    
    width: 450px;
    height: 50px;
    outline: none;
    border: none;
    font-size: 16px;
    border-radius: 25px;
    padding: 10px 10px 10px 20px;
    text-transform: capitalize;

}

.images-text > img {
    width: 100%;
    height: 190px;
}
}



@media screen and (max-width: 600px){
    
    li a {
        display: none;
    }

    .unis-front {
        display: none;
        }

    /* hero section */

    .image-content > h1 {
        font-size: 40px;
        font-weight: bold;
        color: #fff;
        margin-bottom: 20px;
    }
    .navbar-toggler {
        border: none;
        outline: none;
        display: block;
    }
    
    .image-content > input {
        width: 250px;
        height: 50px;
        outline: none;
        border: none;
        font-size: 14px;
        border-radius: 25px;
        padding: 10px 10px 10px 20px;
        text-transform: capitalize;
    
    }

    .flex-container {
        display: flex;
        flex-direction: column;
    }

    .images-text > img {
        height: 300px;
        width: 100%;
    }

    .images-text {
        margin-bottom: 20px;
    }
    .images-text > .para {
        justify-content: space-between;
    }
}