.image-container {
    display: flex;
    flex-direction: column;
}

.image-item {
    width: 48%;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
}

/* .img_box {
width: 300px;
height: 300px;
overflow: hidden;
} */
div .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 8px;
}

.image-row {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

div.image-item .item_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

div.image-item .item_desc {
    color: #6B6B6B;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 0;
}

div.image-item p.item_sum {
    font-size: 24px;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #2175FF;
}

.image_wrapper {
    margin: 0 auto;
    padding: 0 200px;
}

@media screen and (max-width: 480px) {
    .image-row {
        flex-direction: column;
    }

    .image-item {
        width: 100%;
        margin: 0;
    }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.video-container video {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cutom_btn_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 0;
    height: 64px !important;
    overflow: hidden;
    text-decoration: none !important;
    border-bottom: none !important;
}

.custom_btn {
    font-size: 18px;
    text-transform: capitalize;
    padding: 20px 30px;
    color: #fff !important;
    background-color: #0550C8;
}

.arrow_wrapper {
    position: relative;
    width: 40px;
    height: 64px;
    box-sizing: border-box;
    background-color: #316AC3;
}

.arrow {
    transform: rotate(90deg);
    color: #000;
    width: 20px;
    position: absolute;
    bottom: 25px;
    right: 15px;
    animation: arrowDown 2s infinite;

}

.arrow img {
    margin-bottom: 0 !important;
}

.arrow.two {
    opacity: 0;
    animation-delay: 1s;
}

.arrow.three {
    opacity: 0.5;
    animation-delay: 1.5s;
}

.bordered {
    padding-left: 16px;
    border-left: 5px solid #0550C8;
    font-weight: bolder;
    background-color: rgba(33, 117, 255, 0.1);
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
}

@keyframes arrowDown {
    0% {
        bottom: 30px;
        opacity: 1;
    }

    100% {
        bottom: 0px;
        opacity: 0;
    }
}

.article_list {
    color: #2175FF;
    padding-left: 16px;
}

.bottob_list {
    padding-left: 16px !important;
}

.bottob_list li {
    margin-bottom: 16px;
    font-size: 16px;
}

.article__body .block-content a {
    font-weight: bold;
    text-decoration: underline;
}

.bordered {
    padding-left: 16px;
    border-left: 5px solid #2175FF;
    font-weight: bolder;
    background-color: rgba(33, 117, 255, 0.1);
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
}

figure {
    margin: 24px 0;
}

figcaption {
    font-size: 14px;
    text-align: center;
    font-style: italic;
    font-weight: bolder;
    color: #6B6B6B;
}

.article__body-croppable h2 {
    font-size: 30px;
    margin: 40px 0;
}

.review_wrapper {
    background-color: rgba(33, 117, 255, 0.1);
    padding: 10px;
    border-radius: 16px;
    margin: 30px 0;
}

.review_wrapper h2 {
    text-align: center;
    margin: 16px;
}

@media screen and (max-width: 768px) {
    .article__body-croppable h2 {
        font-size: 22px;
    }
}

.calc_wrapper--item p {
    margin-bottom: 8px !important;
}

.calculate_container .result {
    margin-bottom: 24px;
    display: inline-block;
}

.calculate_container {
    text-align: center;
    width: 100%;
    margin: 24px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: height 0.5s ease;
    box-shadow: 3px 3px 6px #00000030;
}

.calculate_container label {
    display: block;
    margin-bottom: 10px;
}

.calculate_container input {
    width: 100%;
    text-align: center;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #eee;
}

.calculate_container input[type=number]::-webkit-inner-spin-button,
.calculate_container input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calculate_container input[type=number] {
    -moz-appearance: textfield;
}

.calculate_container button {
    width: 100%;
    max-width: 150px;
    padding: 10px 20px;
    margin: 20px 0;
    background-color: #0550C8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.calculate_container button:hover {
    background-color: rgba(33, 117, 255, 0.9);
}

.calculate_container .result {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 24px;
    color: #0550C8;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.calculate_container .result p {
    margin: 5px 0;
}

.calculate_container .calc_wrapper--item {
    display: flex;
    flex-direction: column;
}

.calculate_container .calc_wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

#calcWrapper .calc_message {
    text-align: center;
    color: #D32E21 !important;
}

#calcWrapper .calc_message p {
    color: #D32E21 !important;
}

.calc_btn {
    margin-top: 40px;
}

.text--author a {
    text-decoration: none;
    color: #0550C8;
}

@media screen and (max-width: 480px) {
    .calculate_container {
        padding: 5px;
        padding-bottom: 20px;
    }
}

.new_list {
    padding-left: 0 !important;
}