.section-3 .container .photos{
    width: 100%;
    position: relative;
}
.photos-container{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 20px;
}
.top{
    background-color: var(--colorPrimary);
    width: 50%;
    height: 50%;
    position: absolute;
    top: -0em;
    left: -0em;
    z-index: 1;
} 
.bottom{
    background-color: var(--colorPrimary);
    width: 50%;
    height: 50%;
    position: absolute;
    bottom: -0em;
    right: -0em;
    z-index: 1;
} 
.section-3 .container .photos .photos-container .box-image{
    width: 100%;
    max-width: 550px;
    cursor: pointer;
    transition: all 0.4s;
    scale: 0.3;
}
.section-3 .container .photos .photos-container .box-image.active{
    scale: 1;
}
.section-3 .container .photos .photos-container .box-image:hover{
    scale: 1.02;
}
.section-3 .container .photos .photos-container .box-image img{
    width: 100%;
}

@media screen and (max-width: 720px) {
    .section-3 .container .photos{
        padding: 20px;
    }
    .section-3 .container .photos .top, .bottom{
        margin: 30px;
    }
}

/*------galery-----*/

.all-photos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.all-photos .text{
    width: 100%;
    text-align: center;
    padding: 10px;
    font-weight: 500;
    font-size: 25px;
    color: var(--colorTextPrimary);
}
.galery{
    width: 100%;
    max-width: 600px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.galery .box {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.galery .box::-webkit-scrollbar {
    height: 0;
    width: 2px;
    border: 1px solid #d5d5d5;
    background: #d5d5d5;
}
.galery .box::-webkit-scrollbar-track {
    --webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
.galery .box .image{
    flex: 0 0 auto;
	cursor: pointer;
    overflow: hidden;
    transition: all .3s;

    width: 200px;
    margin: 0 10px;
}
.galery .box .image:hover {
    transform: scale(1);
}
.galery .box .image img{
    width: 200px;
    height: 200px;
    object-fit: cover;
}
.galery .fa-angle-left, .fa-chevron-right{
    margin: 0 1rem;
    cursor: pointer;
    height: 100%;
    color: #808699;
    font-size: 20px;
}
.galery .fa-angle-left:hover, .fa-chevron-right:hover{
    color: #3A7CEC;
}
@media screen and (max-width: 1050px) {
    .galery .box .image{
        width: 160px;
        height: 160px;
        object-fit: cover;
    }
    .galery{
        width: 100vw;
    }
    .galery{
        max-width: 500px;
    }
}
@media screen and (max-width: 860px) {
    .galery .box .image{
        width: 130px;
        height: 130px;
        object-fit: cover;
    }
    .galery{
        max-width: 400px;
    }
}
@media screen and (max-width: 480px) {
    .galery .box .image{
        width: 110px;
        height: 110px;
        object-fit: cover;
    }
}
