.img-row {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.img-row img {
    width: 280px;
    margin-left: 30px;
}

.row-img {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.row-img img {
    margin-right: 30px;
    width: 280px;
}

.styled-list {
    display: flex;
    margin: auto;
    max-width: 640px;
    list-style: none;
    padding: 0;
    flex-direction: column;
}

.styled-list li {
    font-family: GothamBold;
    background-color: #223a98;
    font-size: 13pt;
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
    height: 56px;
    margin-top: 10px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.styled-list li:nth-child(even) {
    background-color: #0c1c5c;
}

.styled-list li::after, .styled-list li::before {
    content: "\00a0";
}

.styled-list li::after {
    border-right: 0;
    border-top: 28px solid white !important;
    position: absolute;
    font-size: 0;
    border-bottom: 28px solid white !important;
    border-left: 28px solid #223a98;
    top: 0;
    left: 100%;
}

.styled-list li::before {
    border-left: 0;
    border-top: 28px solid white !important;
    position: absolute;
    font-size: 0;
    border-bottom: 28px solid white !important;
    border-right: 28px solid #223a98;
    top: 0;
    right: 100%;
}

.styled-list li span {
    position: absolute;
    height: 2px;
    width: calc(100% + 56px);
    left: -28px;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 0;
}

.styled-list li span::before, .styled-list li span::after {
    content: "\00a0";
    position: absolute;
    border: 1px solid #223a98;
    width: 200px;
    top: 0;
    font-size: 0;
}

.styled-list li span::before {
    right: calc(100% - 1px);
}

.styled-list li span::after {
    left: calc(100% - 1px);
}

.styled-list li:nth-child(even)::before, .styled-list li:nth-child(even)::after, .styled-list li:nth-child(even) span::before, .styled-list li:nth-child(even) span::after {
    border-color: #0c1c5c;
}

.content p.subtitle {
    font-family: GothamBold;
    text-align: center;
    margin-bottom: 40px;
}

.basic-list {
    padding: 0;
    list-style: none;
}

.basic-list li {
    position: relative;
    font-size: 13pt;
    text-align: justify;
    list-style: none;
    line-height: 21px;
    margin-bottom: 20px;
    padding-left: 30px;
}

.basic-list li img {
    position: absolute;
    width: 16px;
    left: 0;
    margin: 0;
    top: 4px;
}

.contact-us-wrapper {
    background-color: #6bc9fc;
    padding: 40px 0;
}

.contact-us-wrapper .row-img {
    margin: 0;
    justify-content: center;
}

.contact-us-wrapper p {
    margin: 0;
    font-family: GothamBold;
}

.contact-us-wrapper a {
    background-color: #0c1c5c;
    color: white;
    font-size: 13pt;
    text-decoration: none;
    margin-left: 30px;
    padding: 15px 40px;
    border-radius: 20px;
    transition: 0.3s;
}

.contact-us-wrapper a:hover {
    background-color: #04103e;
}

@media (min-width: 993px) and (max-width: 1200px) {
    .styled-list li span::before, .styled-list li span::after {
        width: 130px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .styled-list li span::before, .styled-list li span::after {
        width: 25px;
    }

    .contact-us-wrapper a {
        margin-left: 10px;
        padding: 15px;
        font-size: 12pt;
    }
}

@media (max-width: 768px) {
    .styled-list li span {
        display: none;
    }

    .styled-list {
        max-width: 520px;
    }

    .styled-list li {
        font-size: 11pt;
        padding: 0 10px;
        height: 50px;
    }

    .styled-list li::after, .styled-list li::before {
        border-top-width: 25px !important;
        border-bottom-width: 25px !important;
    }

    .styled-list li::after {
        border-left-width: 25px;
    }

    .styled-list li::before {
        border-right-width: 25px;
    }

    .basic-list li {
        font-size: 11pt;
        line-height: 18px;
        margin-bottom: 10px;
    }

    .contact-us-wrapper {
        padding: 15px 0;
    }

    .contact-us-wrapper a {
        font-size: 11pt;
        margin-left: 10px;
        padding: 10px 0;
        min-width: 130px;
        text-align: center;
    }

    .contact-us-wrapper p {
        text-align: right;
    }
}


@media (max-width: 600px) {
    .img-row, .row-img {
        display: block;
        margin: 0;
    }

    .img-row img {
        float: right;
        max-width: 35%;
        margin-left: 10px;
    }

    .row-img img {
        float: left;
        margin-right: 10px;
        max-width: 40%;
    }

    .contact-us-wrapper .row-img {
        display: flex;
    }
}
@media (max-width: 580px) {
    .styled-list li::after, .styled-list li::before {
        display: none;
    }
    .styled-list li {
        height: auto;
        min-height: 50px;
        padding: 8px 20px;
        border-radius: 28px;
    }
}
@media (max-width: 500px) {
    .basic-list li {
        text-align: left;
    }
}