*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    font-family: 'segoe ui light';
    font-family: "Alegreya Sans";
}
.section1
{
    height: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section1 img
{
    height: 100%;
    width: 100%;
    position: absolute;
    background-position: center center;
}
.section1 .text
{
    text-align: center;
    position: absolute;
    font-size: 22px;
    line-height: 1.38em;
}
.section1 .text h3
{
    font-size: 30px;
    margin: 25px 0;
}
.section1 .text p
{
    color: white;
}
.search
{
    position: relative;
    width: 50%;
    margin: auto;
    margin-top: 100px;
    text-align: center;
}
.search .searchInput
{
    padding: 8px;
    border-radius: 5px;
    border: none;
    outline: none;
    padding-right: 35px; 
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 16px;
    right: 0;
    left: 0;
}
.search img
{
    width:41px;
    padding: 10px;
    background-color: #c1ab84;
    position: absolute;
    right: 0px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.contanir
{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 50px;
    font-size: 18px;
    padding: 70px 0;
}
.item 
{
    max-width: 350px;
    height: 600px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}
.item img
{
    width: 100%;
    height: 60%;
    border-radius: 50%;
    background-size: cover;
    background-position: center center;
}
.caption
{
    text-align: center;
    bottom: 50px;
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 20px;
    line-height: 30px;
}
.caption h3
{
    font-size: 30px;
    font-weight: 500;
}
.bordr
{
    
    width: 25%;
    height: 3px;
    background-color: #ccc;
    margin: 5px auto;
} 
#lightBoxContanir
{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0,0.54);
    display: none;
    align-items: center;
    justify-content: center;
}
#lightBoxItem
{
    width:400px;
    height: 500px;
    background-size:cover;
    background-position: center;
    background-image: url(./images/portfolio-1.jpg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
#lightBoxItem img
{
    max-width: 30px;
    margin: 20px;
    cursor: pointer;
}
.close
{
    position: absolute;
    top: 0;
    right: 0;
}
.btnInf,.btnInfo
{
    background-color: #c1ab84;
    border-color: #c1ab84;
}
.btnInf:hover,.btnInfo:hover
{
    background-color: #9e8862;
    border-color: #9e8862;
}
.btnInfo
{
    position: absolute;
    bottom: 50px;
    left:40%;
}
@media screen and (max-width :500px)
{
    .contanir
    {
        font-size: 15px;
    }
    .caption
    {
        line-height: 15px;
        bottom: 20px;
    }
    #lightBoxItem
    {
        width: 80%;
        height: 300px;
    }
}