.one-service {
    background: rgba(2, 91, 153, 0.90);
    position: relative;
}

.one-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.one-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.one-top .title {
    color: var(--text-color-white);
    text-align: center;
    /* font-family: var(--font-family); */
    font-size: var(--font-title-size);
    font-style: var(--font-style);
    font-weight: var(--font-title-weight);
    line-height: var(--line-height);
    /* 150% */
    text-transform: capitalize;
    padding-top: 110px;
}

.one-top .desc {
    color: var(--text-color-white);
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-title-desc);
    font-style: var(--font-style);
    font-weight: var(--font-title-desc-weight);
    line-height: var(--line-height);
    /* 150% */
    text-transform: capitalize;
    margin-top: 12px;
}

.one-top .button {
    display: inline-flex;
    height: 50px;
    padding: 10px 42px;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    background: var(--second-color);
    color: var(--text-color-black);
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-title-desc);
    font-style: var(--font-style);
    font-weight: 700;
    line-height: var(--line-height);
    /* 150% */
    text-transform: capitalize;
    margin-top: 50px;
}

.one-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 27px;
    margin-top: 60px;
    padding-bottom: 132px;
}

.one-bottom .one-con {
    width: 340px;
    height: 210px;
    transition: 0.5s all ease;
}

.one-con .line {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.10);
    margin-bottom: 30px;
}

.one-bottom .one-text {
    display: flex;
    position: relative;
    justify-content: space-between;
}

.one-bottom .one-text .text {
    color: var(--text-color-white);
    font-family: var(--font-family);
    font-size: 26px;
    font-style: var(--font-style);
    font-weight: 600;
    line-height: var(--line-height);
    text-transform: capitalize;
}

.one-bottom .one-text .img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.one-bottom .one-text .num {
    color: rgba(255, 255, 255, 0.10);
    font-family: var(--font-family);
    font-size: 140px;
    font-style: var(--font-style);
    font-weight: 600;
    line-height: 140px;
    text-transform: capitalize;
    position: absolute;
    top: 0;
    left: 0;
}

.move {
    border-radius: 20px;
    background: var(--primary-color);
}

.move .line,
.move .one-text .num {
    opacity: 0;
}

.move .one-text {
    flex-direction: column-reverse;
    align-items: center;
    gap: 35px;
}

.move .one-text .text {
    text-align: center;
}

@media screen and (max-width:1919px) {
    .one-bottom {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .one-bottom .one-con {
        width: auto;
    }
}

@media screen and (max-width: 1500px) {
    .one-bottom .one-text .num {
        font-size: 120px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 1200px) {
    .one-bottom .one-text .num {
        font-size: 100px;
    }

    .one-bottom .one-text .text {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .one-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .one-bottom .one-text {
        flex-direction: column-reverse;
        align-items: center;
    }

    .one-bottom .one-text .text {
        text-align: center;
        margin-top: 20px;
    }
}