.two-columns-cards-with-icon {
    padding: 80px 20px;
}

.two-columns-cards-with-icon .section-wrap-centered {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

.two-columns-cards-with-icon .section-wrap-centered .top-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-bottom: 40px;
}

.two-columns-cards-with-icon .section-wrap-centered .top-content .animated-arrows {
    position: relative;
    width: 17px;
    height: 32px;
    margin: 0 auto;
    margin-bottom: 32px;
}

.two-columns-cards-with-icon .section-wrap-centered .top-content .down-arrow-animated {
    position: absolute;
    left: 0;
    right: 0;
}

.two-columns-cards-with-icon .section-wrap-centered .top-content .down-arrow-animated span {
    display: block;
    width: 13px;
    height: 13px;
    border-bottom: 3px solid #308E4A;
    border-right: 3px solid #308E4A;
    transform: rotate(45deg);
    margin: -2px auto;
    -webkit-animation: animate-down-arrow 2s infinite;
    animation: animate-down-arrow 2s infinite;
}

.two-columns-cards-with-icon .section-wrap-centered .top-content .down-arrow-animated span:nth-child(2) {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

.two-columns-cards-with-icon .section-wrap-centered .top-content .down-arrow-animated span:nth-child(3) {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

@-webkit-keyframes animate-down-arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-8px, -8px);
    }

    50% {
        transform: rotate(45deg) translate(-8px, -8px);
        opacity: 0.7;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(8px, 8px);
    }
}

@keyframes animate-down-arrow {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg) translate(-8px, -8px);
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(8px, 8px);
    }
}

.two-columns-cards-with-icon .section-wrap-centered .top-content .top-text {
    font-family: Lato;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 6%;
    text-align: center;
    text-transform: uppercase;
    color: #308E4A;
}

.two-columns-cards-with-icon .section-wrap-centered .top-content h2 {
    font-family: Lato;
    font-weight: 900;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #000000;
}

.two-columns-cards-with-icon .section-wrap-centered .top-content .description {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.two-columns-cards-with-icon .section-wrap-centered .top-content .description p {
    font-family: Lato;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    color: #404040;
}

.two-columns-cards-with-icon .section-wrap-centered .list-icon {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;

}

.two-columns-cards-with-icon .section-wrap-centered .list-icon .icon-desc {
    box-shadow: 0px 4px 10px 0px #4275AE40;
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: calc(100% / 2 - 10px);
    display: flex;
    gap: 28px;
}

.two-columns-cards-with-icon .section-wrap-centered .list-icon .icon-desc .icon-wrap {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 200px;
    overflow: hidden;
}

.two-columns-cards-with-icon .section-wrap-centered .list-icon .icon-desc .desc-wrap h4 {
    font-family: Lato;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #000;
    margin-bottom: 12px;
}

.two-columns-cards-with-icon .section-wrap-centered .list-icon .icon-desc .desc-wrap .description>* {
    font-family: Lato;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #404040;
}

.two-columns-cards-with-icon .section-wrap-centered .list-icon .icon-desc .desc-wrap ul {
    margin: 0;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.two-columns-cards-with-icon .section-wrap-centered .list-icon .icon-desc .desc-wrap ul li::marker {
    color: #64AA91;
    font-size: 18px;
}

.two-columns-cards-with-icon .section-wrap-centered .button-wrapper {
    margin-top: 40px;
}

.two-columns-cards-with-icon .section-wrap-centered .button-wrapper a {
    display: flex;
    padding: 28px 40px;
    background: #1A5699;
    border: 1.2px solid #1A5699;
    width: fit-content;
    border-radius: 200px;
    font-family: Lato;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: #fff;
    margin: 0 auto;
    transition: all 0.2s ease;
}

.two-columns-cards-with-icon .section-wrap-centered .button-wrapper a:hover {
    background: #82D9CB;
    color: #1A5699 !important;
    border-color: #82D9CB !important;
}

.two-columns-cards-with-icon .section-wrap-centered .button-wrapper a:active {
    opacity: .75;
}

@media only screen and (max-width: 767px) {
    .two-columns-cards-with-icon {
        padding: 40px 20px;
    }

    .two-columns-cards-with-icon .section-wrap-centered .top-content h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .two-columns-cards-with-icon .section-wrap-centered .top-content .description {
        width: 100%;
    }

    .two-columns-cards-with-icon .section-wrap-centered .list-icon .icon-desc {
        max-width: 100%;
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }

    .two-columns-cards-with-icon .section-wrap-centered .list-icon .icon-desc .desc-wrap h4 {
        font-size: 18px;
        line-height: 26px;
    }

    .two-columns-cards-with-icon .section-wrap-centered .button-wrapper a {
        width: 100%;
        justify-content: center;

    }

    .two-columns-cards-with-icon .section-wrap-centered .top-content .description p {
        font-size: 16px;
        line-height: 24px;
    }

    .two-columns-cards-with-icon .section-wrap-centered .list-icon .icon-desc .desc-wrap .description>* {
        font-size: 16px;
        line-height: 24px;
    }
}