*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root{
    --hexa-dark-d1 : #332F29;
    --dark-d1 : linear-gradient(0deg, #332F29, #332F29),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    --grey-w9 : #E0E0E0;
}
body{
    font-family: "Urbanist", Sans-serif;
}
.container{
    max-width: 1320px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.section {
    padding: 76px 0;
}
@media (max-width: 768px){
    .section{
        padding: 20px 18px;
    }
}
.section-title{
    font-family: "Urbanist", Sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    text-align: left;
    color: #332F29;
    position: relative;
    margin-bottom: 40px;
}
@media (max-width: 768px){
    .section-title{
        margin-bottom: 20px;
    }
}
.section-title::before,
.section-title::after{
    height: 0;
    width: 100%;
    content: '';
    position: absolute;
    bottom: -12px;
}
.section-title::before{
    left: 0;
    width: 58px;
    border-bottom: 1px solid var(--hexa-dark-d1);
    z-index: 2;
}
.section-title::after{
    left: 62px;
    max-width: 416px;
    z-index: 1;
    border-bottom: 1px solid var(--grey-w9);
}
.population-wrapper{
    position: relative;
}
.population-wrapper .item-content{
    margin: auto;
    padding: 10px;
    width: 100%;
    max-width: 325px;
    display: flex;
    flex-direction: column;
}

.population-wrapper .item img{
    width: 100%;
    object-fit: contain;
}

.population-wrapper .item .population-infos{
    position: relative;
    padding: 42px 28px 36px;
    color: #332F29;
    font-family: "Urbanist", Sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 21.78px;
    background-color: #fff;
    min-height: 221px;
}
.population-wrapper .item .population-social-network {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: -20px;
}
.population-wrapper .item .population-social-network li{
    width: 36px;
    height: 36px;
    margin-right: 2px;
}
.population-wrapper .item .population-social-network li a{
    background-color: #377771;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.population-wrapper .item .population-social-network li a svg{
    width: 20px;
    height: 20px;
    fill: #fff;
}
.button-arrow,
.button-arrow svg{
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
}
.button-arrow{
    width: 36px;
    height: 36px;
    overflow: hidden;
    z-index: 9;
}
.button-arrow:hover{
    cursor: pointer;
}
.button-arrow svg{
    left: 0;
    right: 0;
    width: 100%;
}
.next-arrow{
    transform: rotate(90deg);
    left: 0;
}
.prev-arrow{
    transform: rotate(-90deg);
    right: 0;
}

.population-nom{
    margin-bottom: 20px;
    color: #332F29;
    font-family: "Urbanist", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
}