.wrapper.home {
    overflow: hidden;
    background: #000000;
}


.box-list-services {
    display: flex;
    gap: 0px 0px;
}

.content-services {
    background: #e4c16f;
    text-align: center;
    padding: 10px;
    font-weight: 800;
    font-size: 20px;
    color: #000;
    padding-top: 15px;
    position: relative;
}

.content-services a {
    color: #000;
}

.images-item-services {
    position: relative;
    overflow: hidden;
}

.title-services {
    color: #fff;
    position: absolute;
    bottom: 40px;
    text-align: center;
    width: 100%;
}

.title-services h2 {
    font-size: 44px;
    text-shadow: 2px 1px BLACK;
}

.images-item-services img {
    height: 100%;
    display: block;
}

section.list-services {
    padding: 0;
}

.item-services {
    border-right: 1px solid #cdcdcd80;
}


.title-out-temp {
    text-align: center;
    margin-bottom: 30px;
}

.title-out-temp h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
}

.title-out-temp img {
    height: 15px;
}


.name-team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
}

.name-team .name {
    color: #f9f497;
    font-size: 22px;
    font-family: "Quicksand", sans-serif;
}

.sbd-team {
    font-size: 18px;
    color: #fff;
    text-shadow: 0px 0px #f9f497;
}

section.out-teamplate {
    padding: 35px 0px 60px;
}

section.out-teamplate .slick-dots {
    bottom: -35px;
}

section.out-teamplate .slick-dots li {
    width: 15px;
    height: 15px;
    background: #545454;
    border: none;
}

section.out-teamplate .slick-dots .slick-active {
    background: #f9f497;
}

section.out-teamplate .slick-dots li button:before {
    content:""
}
.row-list-member {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.item-images-album {
    width: calc(100% / 4 - 15px);
}

.item-images-album img {
    display: block;
    width: 100%;
    height: 180px;
    border-radius: 5px;
}

section.albums {
    margin: 30px 0px;
}
.item-sldier-teamp {
    margin: 0 0 10px 0;
}

.list-member-header nav ul li {
    transform: translateY(0px);
    transition: 0.5s ease;
}

.list-member-header nav ul li:hover {
    transform: translateY(-10px);
    transition: 0.5s ease;
    filter: drop-shadow(2px 4px 6px #cdcdcd);
}
.images-item-services:hover img {
    transform: scale(1.2);
    transition: 0.5s ease;
}
.images-item-services img {
    transform: scale(1);
    transition: 0.5s ease;
}

.images-templ {
    position: relative;
    overflow: hidden;
}

.images-templ:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    display: none;
}

.images-templ:hover:before {
        animation: shine 1.75s;
    display: block;
}
@keyframes shine {
    100% {
        left: 125%;
    }
}

.item-images-album {
    position: relative;
}

.item-images-album:before {
    transition: 0.3s ease;
    width: 1px;
    height: 0;
    top: 10px;
    right: -7px;
    height: 0px;
    content: "";
    position: absolute;
    background: #ffffff;
}

.item-images-album:after {
        width: 0;
        height: 1px;
        bottom: -5px;
        left: 18px;
        content: "";
        position: absolute;
        background: #ffffff;
        transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
}

.item-images-album:hover:after {
    width: calc(98% + 5px);
}

.item-images-album:hover:before {
    height: calc(98% + 5px);
}