.vertical-tabs-section {
    padding:0px 0 40px 0;
    background: #f6f8fc;
}
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}
.section-heading span {
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}
.section-heading h2 {
    margin: 10px 0;
    font-size: 38px;
    font-weight: 700;
    color: #172033;
}
.section-heading p {
    color: #667085;
}
.vertical-tabs {
    display: grid;
    grid-template-columns: 240px minmax(400px, 1fr) 240px;
    gap: 25px;
    align-items: stretch;
    position: relative;
}
/* ===================================
   HIDE RADIO BUTTONS
=================================== */
.vertical-tabs > input {
    display: none;
}
/* ===================================
   LEFT / RIGHT COLUMNS
=================================== */
.tabs-left,
.tabs-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* ===================================
   TAB BUTTON
=================================== */

.tab-button {
    min-height: 62px;

    display: flex;
    align-items: center;

    padding: 10px 14px;

    background: #ffffff;

    border: 1px solid #e3e8ef;

    border-radius: 12px;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}


/* LEFT */

.tabs-left .tab-button {
    gap: 10px;
}

.tabs-left .tab-button span:nth-child(2) {
    flex: 1;
}


/* RIGHT */

.tabs-right .tab-button {
    gap: 10px;
}

.tabs-right .tab-button span:nth-child(2) {
    flex: 1;
    text-align: left;
}


/* ===================================
   NUMBER
=================================== */

.tab-number {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f0f3f7;

    color: #667085;

    font-size: 20px;
    font-weight: 700;

    transition: all 0.3s ease;
}
.tab-button > span:not(.tab-number) {
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}
.tab-button b {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}
.tab-button:hover {
    border-color: #1471d4;
    transform: translateY(-2px);
    box-shadow:0 8px 25px rgba(13, 110, 253, 0.12);
}
.tab-button:hover .tab-number {
    background: #1471d4;
    color: #ffffff;
}
.tab-button:hover span:not(.tab-number) {
    color: #1471d4;
}

.tab-button:hover b {
    color: #1471d4;
}


/* ===================================
   CONTENT BOX
=================================== */

.tab-content-box {
    position: relative;
    min-height: 430px;
    background: #dfefff;
    border-radius: 25px;
    padding: 40px 55px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow:0 15px 50px rgba(20, 30, 50, 0.08);
    /* background: linear-gradient(45deg, #3e669e , #29649e 21%, #1e6bbd 48%, #134d8b 100%);--blue */
}


/* Decorative circle */
.tab-content-box::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    /* background: rgb(23, 95, 173);--blue */
    background: #c9e8fb;
    right: -80px;
    top: -80px;
}
/* ===================================
   CONTENT
=================================== */

.content {
    width: 100%;

    position: relative;

    z-index: 2;

    display: none;
}

.content-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1471d4;
    color: #ffffff;
    border-radius: 20px;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow:0 10px 25px rgba(13, 110, 253, 0.25);
}
.content h3 {
    font-size: 30px;
    font-weight: 600;
    color: #172033;
    margin-bottom: 15px;
}
.content p {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;text-align: left;
}

.content a {
    color: #0d6efd;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.content a:hover {
    padding-left: 5px;
}
/* ===================================
   CONTENT SWITCHING
=================================== */

/* TAB 01 */

#tab01:checked ~ .tab-content-box .c01 {
    display: block;
}

/* TAB 02 */

#tab02:checked ~ .tab-content-box .c02 {
    display: block;
}

/* TAB 03 */

#tab03:checked ~ .tab-content-box .c03 {
    display: block;
}

/* TAB 04 */

#tab04:checked ~ .tab-content-box .c04 {
    display: block;
}

/* TAB 05 */

#tab05:checked ~ .tab-content-box .c05 {
    display: block;
}

/* TAB 06 */

#tab06:checked ~ .tab-content-box .c06 {
    display: block;
}

/* TAB 07 */

#tab07:checked ~ .tab-content-box .c07 {
    display: block;
}

/* TAB 08 */

#tab08:checked ~ .tab-content-box .c08 {
    display: block;
}

/* TAB 09 */

#tab09:checked ~ .tab-content-box .c09 {
    display: block;
}

/* TAB 10 */

#tab10:checked ~ .tab-content-box .c10 {
    display: block;
}

/* TAB 11 */

#tab11:checked ~ .tab-content-box .c11 {
    display: block;
}

/* TAB 12 */

#tab12:checked ~ .tab-content-box .c12 {
    display: block;
}
/* ===================================
   ACTIVE LEFT TAB
=================================== */

#tab01:checked ~ .tabs-left label[for="tab01"],
#tab02:checked ~ .tabs-left label[for="tab02"],
#tab03:checked ~ .tabs-left label[for="tab03"],
#tab04:checked ~ .tabs-left label[for="tab04"],
#tab05:checked ~ .tabs-left label[for="tab05"],
#tab06:checked ~ .tabs-left label[for="tab06"],
#tab07:checked ~ .tabs-right label[for="tab07"],
#tab08:checked ~ .tabs-right label[for="tab08"],
#tab09:checked ~ .tabs-right label[for="tab09"],
#tab10:checked ~ .tabs-right label[for="tab10"],
#tab11:checked ~ .tabs-right label[for="tab11"],
#tab12:checked ~ .tabs-right label[for="tab12"] {
    background: #1471d4;
    border-color: #1471d4;
    box-shadow: 0 5px 5px 5px rgba(48, 89, 149, 0.15);
}
/* Active text */
#tab01:checked ~ .tabs-left label[for="tab01"] span,
#tab02:checked ~ .tabs-left label[for="tab02"] span,
#tab03:checked ~ .tabs-left label[for="tab03"] span,
#tab04:checked ~ .tabs-left label[for="tab04"] span,
#tab05:checked ~ .tabs-left label[for="tab05"] span,
#tab06:checked ~ .tabs-left label[for="tab06"] span,
#tab07:checked ~ .tabs-right label[for="tab07"] span,
#tab08:checked ~ .tabs-right label[for="tab08"] span,
#tab09:checked ~ .tabs-right label[for="tab09"] span,
#tab10:checked ~ .tabs-right label[for="tab10"] span,
#tab11:checked ~ .tabs-right label[for="tab11"] span,
#tab12:checked ~ .tabs-right label[for="tab12"] span {color: #ffffff;}
/* Active number */
#tab01:checked ~ .tabs-left label[for="tab01"] .tab-number,
#tab02:checked ~ .tabs-left label[for="tab02"] .tab-number,
#tab03:checked ~ .tabs-left label[for="tab03"] .tab-number,
#tab04:checked ~ .tabs-left label[for="tab04"] .tab-number,
#tab05:checked ~ .tabs-left label[for="tab05"] .tab-number,
#tab06:checked ~ .tabs-left label[for="tab06"] .tab-number,
#tab07:checked ~ .tabs-right label[for="tab07"] .tab-number,
#tab08:checked ~ .tabs-right label[for="tab08"] .tab-number,
#tab09:checked ~ .tabs-right label[for="tab09"] .tab-number,
#tab10:checked ~ .tabs-right label[for="tab10"] .tab-number,
#tab11:checked ~ .tabs-right label[for="tab11"] .tab-number,
#tab12:checked ~ .tabs-right label[for="tab12"] .tab-number {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1199px) {

    .vertical-tabs {
        grid-template-columns: 200px minmax(300px, 1fr) 200px;
        gap: 15px;
    }

    .tab-content-box {
        padding: 40px;
    }

}
@media (max-width: 991px) {
    .vertical-tabs {
        grid-template-columns: 1fr;
    }

    .tab-content-box {
        order: 2;
    }

    .tabs-left {
        order: 2;
    }

    .tabs-right {
        order: 3;
    }
}
@media (max-width: 575px) {
    .vertical-tabs-section {padding: 30px 15px;}
    .section-heading h2 {font-size: 30px;}
    .tab-content-box {min-height: 350px;padding: 30px 25px;}
    .content h3 {font-size: 22px;}
    .content p {font-size: 14px;}
}
@media only screen and (min-width:768px) and (max-width:1024px){
    .content h3 {font-size: 22px;}
    
}