.about-one {
    padding-bottom: 120px;
    background: var(--digitalfirehouse-white, #fff);
}

@media (max-width: 991px) {
    .about-one {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .about-one {
        padding-bottom: 80px;
    }
}

.about-one__left {
    margin-right: 50px;
    position: relative; /* Ensure it acts as a reference for the absolute positioning */
}

@media (max-width: 991px) {
    .about-one__left {
        margin-right: 0px;
    }
}

.about-one__thumb {
    position: relative;
    z-index: 1;
}

.about-one__thumb__item {
    position: relative;
    z-index: 1;
}

.about-one__thumb__item--one img {
    width: 100%; /* Adjusts width to fit container */
    height: auto; /* Height adjusts to maintain aspect ratio */
    max-width: 6.53in; /* Maximum width to maintain consistent size */
    object-fit: cover;
}

@media (max-width: 1199px) and (min-width: 991px) {
    .about-one__thumb__item--one img {
        left: -90px;
    }
}

@media (max-width: 767px) {
    .about-one__thumb__item--one img {
        width: 100%; /* Adjusts width to fit container */
        height: auto; /* Maintains aspect ratio */
    }
}

.about-one__thumb__item__two {
    position: absolute;
    bottom: -44px;
    right: -60px; /* Move the image further to the right */
}

.about-one__thumb__item__two img {
    width: 85%; /* 15% smaller on computer screens */
    height: auto; /* Height adjusts to maintain aspect ratio */
    max-width: 3.78in; /* Maximum width to maintain consistent size */
    object-fit: cover;
}

@media (max-width: 991px) {
    .about-one__thumb__item__two {
        display: none; /* Hide image 2 on screens smaller than 991px */
    }
}

.about-one__thumb__item__three {
    position: absolute;
    left: -90px;
    bottom: -80px;
    animation: topBottom 4s ease-in-out infinite;
}

.about-one__thumb__item__three img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .about-one__thumb__item--three {
        display: none; /* Hide image 3 on screens smaller than 1199px */
    }
}

@media (max-width: 767px) {
    .about-one__thumb__item__two {
        display: none; /* Hide image 2 on phone screens */
    }

    .about-one__thumb__item--three {
        display: none; /* Hide image 3 on phone screens */
    }
}

.about-one__thumb__funfact {
    margin-top: -48px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    max-width: 239px;
    width: 100%;
    background: var(--digitalfirehouse-secondary, #232728);
    border-top: 4px solid var(--digitalfirehouse-white, #fff);
    border-left: 4px solid var(--digitalfirehouse-white, #fff);
    border-right: 4px solid var(--digitalfirehouse-white, #fff);
    padding: 28px 0px;
}

.about-one__thumb__funfact__coun {
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 85%;
    margin-bottom: 14px;
    padding-bottom: 0;
    color: var(--digitalfirehouse-base, #CA4445);
}

.about-one__thumb__funfact__text {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: var(--digitalfirehouse-white, #fff);
    margin-bottom: -4px;
    padding-bottom: 0;
    text-align: center;
}

.about-one__thumb::after {
    content: "";
    width: 24px;
    height: 100%; /* Ensure it covers the full height of the parent */
    position: absolute;
    right: -48px; /* 24px spacing plus 24px width */
    top: 0;
    background: linear-gradient(180deg, #CA4445 0%, rgba(202, 68, 69, 0) 100%);
    animation: ping2 4s ease-in-out infinite;
    z-index: -1; /* Ensure it appears behind the content */
}

@media (max-width: 767px) {
    .about-one__thumb {
        flex-direction: column;
        align-items: center;
    }

    .about-one__thumb__item--one img {
        object-fit: cover;
        width: 100%;
    }

    .about-one__thumb__item__two {
        display: none; /* Hide image 2 on phone screens */
    }

    .about-one__thumb__item--three {
        display: none; /* Hide image 3 on phone screens */
    }
}

.about-two {
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .about-two {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .about-two {
        padding: 80px 0px;
    }
}

.about-two__right {
    margin-left: 45px;
}

@media (max-width: 1199px) {
    .about-two__right {
        margin-left: 0px;
    }

    .about-two__right .about-two__thumb__item--one img {
        object-fit: cover;
        width: 100%;
    }
}

.about-two__top {
    margin-bottom: 32px;
}

.about-two__top .sec-title {
    padding-bottom: 20px;
}

.about-two__top__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--digitalfirehouse-text, #7D8081);
}

.about-two__box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 40px 37px;
}

@media (max-width: 1199px) and (min-width: 991px) {
    .about-two__box {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .about-two__box {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

.about-two__box__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.about-two__box__bg::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background: rgba(var(--digitalfirehouse-base-rgb, 202, 68, 69), 0.9);
    z-index: 1;
}

.about-two__box__icon {
    max-width: 85px;
    width: 100%;
    height: 85px;
    background: var(--digitalfirehouse-white, #fff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--digitalfirehouse-base, #CA4445);
    transition: all 0.4s ease-in-out;
}

.about-two__box__content__title {
    margin-top: -5px;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 7px;
    padding-bottom: 0;
    color: var(--digitalfirehouse-white, #fff);
}

.about-two__box__content__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: -10px;
    padding-bottom: 0;
    color: var(--digitalfirehouse-white, #fff);
    max-width: 340px;
}

.about-two__box:hover .about-two__box__icon {
    color: var(--digitalfirehouse-white, #fff);
    background: var(--digitalfirehouse-secondary, #232728);
}

.about-two__list {
    margin-top: 30px;
    border-top: 1px solid var(--digitalfirehouse-text-gray, #EFE6E1);
    padding-top: 30px;
    margin-bottom: 47px;
}

.about-two__list__item {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.about-two__list__item__content {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--digitalfirehouse-text, #7D8081);
    text-transform: uppercase;
}

.about-two__list__item__content i {
    color: var(--digitalfirehouse-base, #CA4445);
    margin-right: 8px;
}

.about-two__list__item__content + .about-two__list__item__content {
    margin-top: 18px;
}

.about-two__thumb {
    position: relative;
    z-index: 1;
}

.about-two__thumb__item {
    position: relative;
    z-index: 1;
}

.about-two__thumb__item--one > img {
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.about-two__thumb__item--one {
    margin-bottom: 30px;
}

.about-two__thumb__item--two {
    position: relative;
    z-index: -1;
    height: 188px;
}

.about-two__thumb__item--two img {
    width: 276px;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.about-two__thumb__funfact {
    background: var(--digitalfirehouse-base, #CA4445);
    max-width: 223px;
    width: 100%;
    padding: 35px 45px;
    margin-left: auto;
    margin-right: 0;
    position: absolute;
    right: 0;
    bottom: -93px;
}

.about-two__thumb__funfact__coun {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 85%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--digitalfirehouse-white, #fff);
    margin-bottom: 10px;
}

.about-two__thumb__funfact__coun span {
    color: inherit;
}

.about-two__thumb__funfact__text {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: -5px;
    padding-bottom: 0;
    color: var(--digitalfirehouse-white, #fff);
}

.about-two__thumb__call {
    background: var(--digitalfirehouse-secondary, #232728);
    padding: 35px 30px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 366px;
    width: 100%;
    position: absolute;
    bottom: -24px;
    right: 0;
}

.about-two__thumb__call__item {
    display: flex;
    gap: 25px;
    align-items: center;
}

.about-two__thumb__call__icon {
    width: 89px;
    height: 79px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--digitalfirehouse-base, #CA4445);
    font-size: 35px;
    color: var(--digitalfirehouse-white, #fff);
}

.about-two__thumb__call__dec {
    font-family: var(--digitalfirehouse-font, "Roboto", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--digitalfirehouse-text, #7D8081);
    text-transform: uppercase;
}

.about-two__thumb__call__number {
    margin-top: -5px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 193%;
    margin-bottom: -5px;
    padding-bottom: 0;
    color: var(--digitalfirehouse-white, #fff);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.about-two__thumb__call__number:hover {
    background-size: 100% 1px;
}

@media (max-width: 992px) {
    .about-two__thumb__item--two img {
        width: 440px;
    }
}

@media (max-width: 766px) {
    .about-two__thumb__item--two img {
        width: 276px;
    }
}

/**About three**/
.about-three {
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .about-three {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .about-three {
        padding: 80px 0px;
    }
}

.about-three__top {
    margin-bottom: 32px;
}

.about-three__top .sec-title {
    padding-bottom: 20px;
}

.about-three__top__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--digitalfirehouse-text, #7D8081);
}

.about-three__feature {
    background: var(--digitalfirehouse-text-gray, #EFE6E1);
    padding: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--digitalfirehouse-text-gray, #EFE6E1);
}

@media (max-width: 767px) {
    .about-three__feature {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 30px;
    }
}

.about-three__feature__item__top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 12px;
}

.about-three__feature__item__top__title {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-three__feature__item__top:hover .about-three__feature__item__icon {
    color: var(--digitalfirehouse-white, #fff);
}

.about-three__feature__item__top:hover .about-three__feature__item__icon::after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.about-three__feature__item__icon {
    max-width: 50px;
    width: 100%;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--digitalfirehouse-white, #fff);
    font-size: 27px;
    color: var(--digitalfirehouse-base, #CA4445);
    position: relative;
    z-index: 1;
}

.about-three__feature__item__icon::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 0%;
    border-radius: 50%;
    background: var(--digitalfirehouse-secondary, #232728);
    left: 50%;
    top: 50%;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.about-three__feature__item__text {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: -8px;
    padding-bottom: 0;
    color: var(--digitalfirehouse-text, #7D8081);
}

.about-three__feature__item + .about-three__feature__item {
    margin-left: 40px;
    padding-left: 40px;
    border-left: 1px solid var(--digitalfirehouse-white, #fff);
}

@media (max-width: 767px) {
    .about-three__feature__item + .about-three__feature__item {
        margin-left: 0;
        padding-left: 0px;
        border-left: 0px solid var(--digitalfirehouse-white, #fff);
    }
}

.about-three__list {
    margin-top: 30px;
    border-top: 1px solid var(--digitalfirehouse-text-gray, #EFE6E1);
    padding-top: 30px;
    margin-bottom: 47px;
}

.about-three__list__item {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.about-three__list__item__content {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--digitalfirehouse-text, #7D8081);
    text-transform: uppercase;
}

.about-three__list__item__content i {
    color: var(--digitalfirehouse-base, #CA4445);
    margin-right: 8px;
}

.about-three__list__item__content + .about-three__list__item__content {
    margin-top: 18px;
}

.about-three__thumb {
    position: relative;
    z-index: 1;
}

.about-three__thumb__item {
    position: relative;
    z-index: 1;
}

.about-three__thumb__item--one {
    margin-left: -50px;
    margin-right: 95px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) and (min-width: 991px) {
    .about-three__thumb__item--one {
        margin-left: -100px;
        margin-right: 95px;
    }

    .about-three__thumb__item--one img {
        object-fit: cover;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .about-three__thumb__item--one {
        margin-left: 0px;
        margin-right: 0px;
    }

    .about-three__thumb__item--one img {
        object-fit: cover;
        width: 100%;
    }
}

.about-three__thumb__item--two {
    position: absolute;
    right: 0px;
    bottom: 85px;
}

.about-three__thumb__item--two::after {
    content: "";
    width: 68%;
    height: 100%;
    background-color: var(--digitalfirehouse-white, #fff);
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: -1;
}

@media (max-width: 991px) {
    .about-three__thumb__item--two::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .about-three__thumb__item--two {
        width: 75%;
    }
}

.about-three__thumb__funfact {
    background: var(--digitalfirehouse-base, #CA4445);
    max-width: 245px;
    width: 100%;
    padding: 35px 45px;
    margin-left: auto;
    margin-right: 0;
    position: absolute;
    right: 95px;
    bottom: 0px;
    z-index: 2;
}

.about-three__thumb__funfact__coun {
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 85%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--digitalfirehouse-white, #fff);
    margin-bottom: 10px;
}

.about-three__thumb__funfact__coun span {
    color: inherit;
}

.about-three__thumb__funfact__text {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: -5px;
    padding-bottom: 0;
    color: var(--digitalfirehouse-white, #fff);
    text-align: center;
}

.about-three__thumb__funfact::after {
    content: "";
    width: 27px;
    height: 27px;
    position: absolute;
    top: 20px;
    left: -26px;
    background: var(--digitalfirehouse-base, #CA4445);
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
}