.two_boxes_info {
    background-color: var(--color_white);
    padding-bottom: 80px;
    padding-top: 40px
}

.two_boxes_info__inner {
    gap: 16px
}

.two_boxes_info__left_box,
.two_boxes_info__right_box {
    width: 100%
}

.two_boxes_info__box_layout {
    background-color: #000a18;
    border-radius: 32px;
    height: 100%;
    padding: 44px 48px;
    position: relative
}

.two_boxes_info__box_layout .custom_btn {
    margin-top: 32px
}

.two_boxes_info__right_top {
    height: 100%
}

.two_boxes_info .heading {
    color: #fdfdfd;
    font-family: var(--font_GeneralSans_Regular);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 32px;
    position: relative;
}

.two_boxes_info .heading .two_boxes_info__type_selection {
    align-items: center;
    border-bottom: 1px solid var(--color_neon_teal);
    color: var(--color_neon_teal);
    display: flex;
    gap: 9px;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
}

.two_boxes_info .heading .two_boxes_info__type_dropdown {
    position: absolute;
    top: calc(100% + 5px);
    z-index: 11;
    background-color: #FFFFFF;
    margin: 0 !important;
    padding: 0 0 !important;
    color: #000000;
    font-size: 16px;
    border-radius: 5px;
    overflow: hidden;
    max-height: 0;
    transition: all 0.5s ease;
    min-width: 200px;
}

.two_boxes_info .heading .two_boxes_info__type_selection > * {
    pointer-events: none;
}

.two_boxes_info .heading .two_boxes_info__type_dropdown .two_boxes_info__type_dropdown_item {
    padding: 10px 12px !important;
    margin: 0;
    cursor: pointer;
}

.two_boxes_info .heading .two_boxes_info__type_dropdown .two_boxes_info__type_dropdown_item:first-child {
    margin-top: 10px !important;
}

.two_boxes_info .heading .two_boxes_info__type_dropdown .two_boxes_info__type_dropdown_item:last-child {
    margin-bottom: 10px !important;
}

.two_boxes_info .heading .two_boxes_info__type_dropdown .two_boxes_info__type_dropdown_item.active,
.two_boxes_info .heading .two_boxes_info__type_dropdown .two_boxes_info__type_dropdown_item:hover {
    background-color: #000a18;
    color: var(--color_neon_teal);
}

.two_boxes_info .heading .two_boxes_info__type_dropdown .two_boxes_info__type_dropdown_item:before {
    display: none;
}

/* .two_boxes_info .heading .two_boxes_info__type_dropdown .two_boxes_info__type_dropdown_item:last-child {
    margin-bottom: 0 !important;
} */

.two_boxes_info .heading .two_boxes_info__type_selection svg {
    transition: all 0.5s ease;
    transform: rotate(0deg);
}

.two_boxes_info .heading .two_boxes_info__type_selection.active svg {
    transform: rotate(180deg);
}

.two_boxes_info .accordion_list__item .title {
    color: hsla(0, 0%, 99%, .5);
    cursor: pointer;
    font-family: var(--font_GeneralSans_Medium);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    letter-spacing: .6px;
    line-height: 1.5;
    margin-bottom: 0;
    transition: all .3s ease-in-out
}

.two_boxes_info .accordion_list__item.open .title,
.two_boxes_info .accordion_list__item.open:before {
    color: #fdfdfd
}

.two_boxes_info .accordion_list__item .text {
    color: #fdfdfd;
    font-family: var(--font_GeneralSans_Medium);
    font-size: 16px;
    line-height: 1.5;
    padding-top: 12px;
    position: relative
}

.two_boxes_info .accordion_list__item .text:after {
    background-color: #dfe2eb;
    bottom: 0;
    content: "";
    height: calc(100% - 14px);
    left: -41px;
    position: absolute;
    width: 1px
}

.two_boxes_info .two_boxes_info__box_layout .accordion_list_outer .accordion_list:not(.active) {
    display: none;
}

.two_boxes_info__right_box .text {
    margin-left: auto;
    margin-right: auto;
    max-width: 492px
}

.two_boxes_info__right_box .two_boxes_info__box_layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center
}

.two_boxes_info__right_box .two_boxes_info__box_layout .star_rating {
    margin-top: 32px
}

.two_boxes_info .accordion_list {
    counter-reset: item_count
}

.two_boxes_info .accordion_list__item {
    counter-increment: item_count;
    margin-bottom: 32px;
    padding-left: 56px;
    position: relative
}

.two_boxes_info .accordion_list__item:last-child {
    margin-bottom: 0
}

.two_boxes_info .accordion_list__item:before {
    align-items: center;
    border: 1px solid #fff;
    border-radius: 20px;
    color: hsla(0, 0%, 99%, .5);
    content: counter(item_count);
    display: flex;
    font-family: var(--font_GeneralSans_Medium);
    height: 32px;
    justify-content: center;
    left: 0;
    position: absolute;
    top: -4px;
    width: 32px
}

.two_boxes_info__right_box .heading {
    margin-left: auto;
    margin-right: auto
}

.two_boxes_info__right_top .heading {
    line-height: 1.6;
    margin: 0
}

.two_boxes_info__right_box .heading>span {
    border-radius: 4px;
    color: #16181a;
    font-family: var(--font_GeneralSans_MediumItalic);
    font-size: 26px;
    font-style: italic;
    letter-spacing: 0;
    line-height: 1.1;
    padding: 6px 16px;
    text-transform: uppercase
}

.two_boxes_info__right_box .heading>.blue {
    background-color: var(--blue01)
}

.two_boxes_info__right_box .heading>.teal {
    background-color: var(--color_neon_teal)
}

.two_boxes_info__right_box .heading>.yellow {
    background-color: var(--color_neon_yellow)
}

.two_boxes_info__right_bottom .custom_btn span:before {
    background-image: url(../../images/sim_card_download_black.svg);
    background-size: initial
}

.two_boxes_info__right_bottom .custom_btn span:after {
    background-image: url(../../images/sim_card_download_blue.svg);
    background-size: initial
}

.two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout {
    background: var(--gray06, #23262d);
    border-radius: 32px
}

.two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout .text * {
    color: var(--gray01, #f3f5fb);
    font-family: var(--font-work_sans_medium);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px
}

.two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout .text * .pill-blue,
.two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout .text * .pill-green,
.two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout .text .pill-blue,
.two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout .text .pill-green {
    border: 1px solid var(--blue02, #3296ff);
    border-radius: 24px;
    color: var(--blue02, #3296ff);
    display: inline-block;
    font-family: var(--font-work_sans_semibold);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0 8px 8px;
    padding: 4px 12px
}

.two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout .text * .pill-green,
.two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout .text .pill-green {
    border: 1px solid var(--light_green, #82f0b4);
    color: var(--light_green, #82f0b4)
}

.two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout .text p {
    display: inline
}

.two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout .text .star {
    background: rgba(70, 78, 97, .35);
    border-radius: 24px;
    bottom: -3px;
    display: inline-block;
    font-size: 0;
    line-height: 0;
    margin-left: 8px;
    padding: 8px 12px;
    position: relative
}

.two_boxes_info__right_bottom {
    position: relative
}

.two_boxes_info__right_bottom:before {
    bottom: 0;
    left: -40px
}

.two_boxes_info__right_bottom:after,
.two_boxes_info__right_bottom:before {
    background-image: url(../../images/off_white_corner_icon.svg);
    content: "";
    height: 40px;
    position: absolute;
    width: 40px
}

.two_boxes_info__right_bottom:after {
    right: 0;
    top: -40px
}

.two_boxes_info__box_layout .btn {
    align-items: center;
    background-color: #0df6c6;
    color: #16181a;
    display: flex;
    gap: 10px;
    height: 40px;
    margin-top: 32px;
    padding-left: 26px;
    padding-right: 16px
}

.two_boxes_info__box_layout .btn:hover {
    background-color: var(--color_blue_1)
}

@media (min-width:768px) {
    .two_boxes_info .accordion_list__item svg {
        height: 36px;
        left: -2px;
        opacity: 0;
        position: absolute;
        top: -6px;
        transform: rotate(-90deg);
        transition: all .1s ease-in-out;
        visibility: hidden;
        width: 36px
    }

    .two_boxes_info .accordion_list__item.open svg {
        opacity: 1;
        visibility: visible
    }

    .two_boxes_info .accordion_list__item svg circle {
        stroke-dasharray: 100px;
        stroke-dashoffset: 100px;
        stroke-linecap: round;
        stroke-width: 4px;
        stroke: var(--color_neon_teal);
        fill: none
    }

    .two_boxes_info .accordion_list__item.open svg circle {
        animation: countdown_accordion 5.1s linear infinite
    }
}

@keyframes countdown_accordion {
    0% {
        stroke-dashoffset: 100px
    }

    to {
        stroke-dashoffset: 0px
    }
}

@media (max-width:1359px) {
    .two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout {
        padding: 48px 38px
    }
}

@media (max-width:1199px) {
    .two_boxes_info {
        padding-bottom: 65px
    }

    .two_boxes_info__box_layout {
        padding: 32px
    }

    .two_boxes_info__right_box .heading {
        font-size: 44px
    }

    .two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout {
        padding: 48px 32px
    }
}

@media (max-width:991px) {
    .two_boxes_info {
        padding-bottom: 40px
    }

    .two_boxes_info__box_layout {
        padding: 48px 28px
    }

    .two_boxes_info__left_box {
        margin-bottom: 16px
    }

    .two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout {
        padding: 40px 32px
    }
}

@media (max-width:767px) {

    .two_boxes_info__right_bottom:after,
    .two_boxes_info__right_bottom:before {
        display: none
    }

    .two_boxes_info {
        padding-bottom: 40px;
        padding-top: 40px
    }

    .two_boxes_info__right_box .heading {
        font-size: 32px
    }

    .two_boxes_info__right_box .heading>span {
        font-size: 24px;
        line-height: 32px;
        padding: 4px 16px
    }

    .two_boxes_info .accordion_list__item,
    .two_boxes_info .heading {
        margin-bottom: 24px
    }

    .two_boxes_info__box_layout .custom_btn {
        font-size: 16px;
        letter-spacing: -.01em;
        margin-left: auto;
        margin-right: auto;
        padding-left: 26px;
        padding-right: 26px
    }

    .two_boxes_info .accordion_list__item:before {
        top: 7px
    }

    .two_boxes_info .accordion_list__item svg {
        display: none
    }

    .two_boxes_info__right_bottom .two_boxes_info__box_layout {
        padding-bottom: 48px;
        padding-top: 48px
    }

    .two_boxes_info .accordion_list__item .title:after {
        border-bottom: 1px solid var(--blue02);
        content: "Show more";
        display: inherit;
        letter-spacing: 0;
        margin-top: 8px;
        max-width: -moz-fit-content;
        max-width: fit-content;
        transition: var(--transition_short_easeinoutcustom)
    }

    .two_boxes_info .accordion_list__item.open .title {
        position: relative
    }

    .two_boxes_info .accordion_list__item.open .title:after {
        font-size: 0;
        opacity: 0;
        position: absolute
    }

    .two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout {
        padding: 32px
    }

    .two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout .text * .pill-blue,
    .two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout .text * .pill-green,
    .two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout .text .pill-blue,
    .two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout .text .pill-green {
        margin-bottom: 4px
    }
}

@media (max-width:575px) {
    .two_boxes_info .section_container {
        padding-left: 16px;
        padding-right: 16px
    }

    .two_boxes_info__right_box .two_boxes_info__right_bottom .two_boxes_info__box_layout {
        padding: 20px
    }
}

.two_boxes_info .bottom_box {
    margin-top: 16px;
    position: relative
}

.two_boxes_info .bottom_box .two_boxes_info__right_bottom {
    background: var(--gray00, #f6f8fe);
    border-radius: 32px 0 0 0;
    bottom: 0;
    position: absolute;
    right: 0;
    width: 49%
}

.two_boxes_info .bottom_box .two_boxes_info__box_layout {
    background-color: transparent;
    margin: 0;
    padding: 39px 48px
}

.two_boxes_info .bottom_box .two_boxes_info__box_layout .text {
    text-align: center
}

.two_boxes_info .bottom_box .two_boxes_info__box_layout .text * {
    color: var(--gray06, #23262d);
    font-family: var(--font-work_sans_medium);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px
}

.two_boxes_info .bottom_box .two_boxes_info__box_layout .text * .pill-blue,
.two_boxes_info .bottom_box .two_boxes_info__box_layout .text * .pill-green,
.two_boxes_info .bottom_box .two_boxes_info__box_layout .text .pill-blue,
.two_boxes_info .bottom_box .two_boxes_info__box_layout .text .pill-green {
    background-color: var(--blue02, #3296ff);
    border: 1px solid var(--blue02, #3296ff);
    border-radius: 24px;
    display: inline-block;
    font-family: var(--font-work_sans_semibold);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0 8px 8px;
    padding: 4px 12px
}

.two_boxes_info .bottom_box .two_boxes_info__box_layout .text * .pill-green,
.two_boxes_info .bottom_box .two_boxes_info__box_layout .text .pill-green {
    background-color: var(--light_green, #82f0b4);
    border: 1px solid var(--light_green, #82f0b4)
}

.two_boxes_info .bottom_box .two_boxes_info__box_layout .text p {
    display: inline
}

.two_boxes_info .bottom_box .two_boxes_info__box_layout .text .star {
    background: var(--gray06, #23262d);
    border-radius: 24px;
    bottom: -3px;
    display: inline-block;
    font-size: 0;
    line-height: 0;
    margin-left: 8px;
    padding: 8px 12px;
    position: relative
}

.two_boxes_info .bottom_box .img_sec {
    border-radius: 32px;
    display: flex;
    line-height: 1;
    position: relative
}

.two_boxes_info .bottom_box .img_sec img {
    border-radius: 32px
}

.two_boxes_info .bottom_box .img_sec img:after {
    background-color: #e4b997;
    content: "";
    height: 100%;
    left: 0;
    mix-blend-mode: hue;
    opacity: .65;
    position: absolute;
    top: 0;
    width: 100%
}

@media (min-width:768px) {
    .two_boxes_info .bottom_box .img_sec .mob_img {
        display: none
    }
}

@media (max-width:1440px) {
    .two_boxes_info .bottom_box .two_boxes_info__right_bottom {
        width: 55%
    }

    .two_boxes_info__box_layout {
        padding: 40px 36px
    }

    .two_boxes_info__right_top .heading {
        font-size: 30px
    }

    .two_boxes_info__right_box .heading>span {
        font-size: 24px;
        padding: 4px 14px
    }
}

@media (max-width:1199px) {
    .two_boxes_info .bottom_box .two_boxes_info__right_bottom {
        width: 65%
    }

    .two_boxes_info__box_layout {
        padding: 30px 22px
    }

    .two_boxes_info__right_top .heading {
        font-size: 24px
    }

    .two_boxes_info__right_box .heading>span {
        font-size: 82%;
        padding: 2px 12px
    }

    .two_boxes_info .heading {
        font-size: 28px
    }
}

@media (max-width:991px) {
    .two_boxes_info .bottom_box .two_boxes_info__right_bottom {
        width: 70.2%
    }
}

@media (max-width:767px) {
    .two_boxes_info .bottom_box {
        margin-top: 16px
    }

    .two_boxes_info .bottom_box .img_sec .desk_img {
        display: none
    }

    .two_boxes_info .bottom_box .two_boxes_info__right_bottom {
        border-radius: 32px;
        position: static;
        width: 100%
    }

    .two_boxes_info .bottom_box .two_boxes_info__box_layout {
        padding: 24px 24px 0
    }

    .two_boxes_info .bottom_box .img_sec img.mob_img {
        border-radius: 32px;
        width: 100%
    }

    .two_boxes_info .heading>br {
        display: none
    }

    .two_boxes_info .heading {
        margin-bottom: 32px
    }

    .two_boxes_info__right_top .heading {
        margin-bottom: 0
    }

    .two_boxes_info__right_box .heading>span {
        font-size: 20px
    }

    .two_boxes_info__box_layout {
        padding: 48px 20px;
    }

    .two_boxes_info__box_layout .btn {
        margin-left: auto;
        margin-right: auto
    }
}

/*# sourceMappingURL=how_work_review_boxes.css.map */