@font-face {
    font-family: "Lato Thin";
    src: url("../assets/fonts/Lato/Lato-Thin.ttf");
}
@font-face {
    font-family: "Lato Bold";
    src: url("../assets/fonts/Lato/Lato-Bold.ttf");
}

.about-us-value-section {
    background-color: var(--dark-color);
}
.about-us-value-container {
    color: var(--light-color);
}
.value-label {
    display: block;
    width: 40%;
    color: var(--light-color);
    font-family: "Lato Light";
    font-size: 26px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-color);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 1000ms;
}
.value-label-active {
    opacity: 1;
    transform: translateX(0%);
}
.about-us-value-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    margin-top: 50px;
    opacity: 0;
    transition: all 1500ms;
}
.about-us-value-list-active {
    opacity: 1;
}
.about-us-value-item-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 252px;
    min-height: 252px;
    color: var(--light-color);
    padding: 20px;
    border: 2px solid var(--light-color);
    border-radius: 50% 50%;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: all 500ms;
}
.about-us-value-item-wrapper::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(38, 38, 38, 0.7);
    transition: all 500ms;
}
.about-us-value-item-wrapper:hover {
    cursor: pointer;
    color: var(--light-color);
    background-size: 110% 110%;
}
.about-us-value-item-wrapper:hover::before {
    background-color: rgba(38, 38, 38, 0);
}
.about-us-value-icon-image {
    width: 150px;
    height: 150px;
    margin: 0px auto;
    background-size: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
}
.about-us-value-item-subtitle {
    display: block;
    width: 100%;
    font-family: "Lato Thin";
    font-size: 28px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 500ms;
}
.about-us-value-item-wrapper:hover .about-us-value-item-subtitle {
    background-color: rgba(38, 38, 38, 0.7);
    border: 2px solid var(--light-color);
    transform: scale(1.2);
}

@media screen and (max-width: 2560px) and (min-width: 1537px) {
    .value-label { font-size: 1.69vw; padding-bottom: 0.97vw; }
    .about-us-value-list { gap: 2.6vw; margin-top: 3.3vw; }
    .about-us-value-item-wrapper { width: 16.4vw; min-height: 16.4vw; padding: 1.3vw; }
    .about-us-value-icon-image { width: 9.7vw; height: 9.7vw; margin-bottom: 1.3vw; }
    .about-us-value-item-subtitle { font-size: 1.8vw; }
}

@media screen and (max-width: 768px) {
    .about-us-value-item-wrapper { width: 200px; min-height: 200px; padding: 15px; } 
    .about-us-value-icon-image { width: 100px; height: 100px; margin-bottom: 15px; }
    .about-us-value-item-subtitle { font-size: 22px; margin-bottom: 15px; } 
}

@media screen and (max-width: 426px) {
    .value-label { width: 80%; font-size: 16px; padding-bottom: 5px; }
}

@media screen and (max-width: 330px) {
    .about-us-value-item-wrapper { width: 180px; min-height: 180px; } 
}