@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
        body {
            font-size: 17px;
            line-height: 30px;
            font-weight: 400;
            -moz-osx-font-smoothing: grayscale;
            word-break: break-word;
            -webkit-font-smoothing: antialiased;
            font-family: "Source Sans 3", sans-serif;
            margin: 0;
            background: #fff;
        }
        * {
            box-sizing: border-box;
        }
        img {
            -ms-interpolation-mode: bicubic;
            border: 0;
            vertical-align: middle;
            max-width: 100%;
            height: auto;
        }
        /* ============ Accordion Design ======================== */
        .creative-accordion {
            background: #fff;
            padding: 50px 0;
        }
        .creative-accordion .container {
            max-width: 1320px;
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }
        .creative-accordion .container .row {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }
        .creative-accordion .container .mb-60 {
            margin-bottom: 60px;
        }
        .creative-accordion .container .row .col-lg-12 {
            flex: 0 0 auto;
            width: 100%;
        }
        .section-title {
            text-align: center;
        }
        .section-title .subtitle {
            font-size: 14px;
            line-height: 15px;
            font-weight: 500;
            margin-bottom: 15px;
            padding: 10px 20px;
            border-radius: 100px;
            text-transform: uppercase;
            display: inline-block;
            background: #b966e721;
            color: #b966e7;
        }
        .section-title .accordion-title {
            margin-bottom: 0px;
            font-weight: 700;
            font-size: 44px;
            line-height: 1.23;
            margin-top: 0px;
            word-break: break-word;
            color: #192335;
        }
        .creative-accordion .container .row .col-lg-6 {
            flex: 0 0 auto;
            width: 50%;
            padding: 0px 15px;
        }
        .accordion-thumbnail {
            position: relative;
            margin-bottom: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .accordion-thumbnail img:nth-child(1) {
            width: 350px; /* Ancho de la primera imagen */
            height: 450px; /* Alto de la primera imagen */
            border-radius: 6px !important;
        }
        .accordion-thumbnail img:nth-child(2) {
            width: 280px; /* Ancho de la segunda imagen */
            height: 280px; /* Alto de la segunda imagen */
            position: absolute;
            right: 10%;
            top: 30%;
            border-radius: 6px;
        }
        .creative-accordion--style {
            margin-top: 10px;
        }
        .creative-accordion--style .accordian-wrap {
            position: relative;
            display: flex;
            flex-direction: column;
            background: #cdd4d2;
            box-shadow: 0px 6px 34px rgba(215, 216, 222, .41);
            border: 0;
            border-radius: 6px;
            margin-bottom: 30px;
        }
        .accordian-wrap.active .accordion-header {
            color: #29292a;
        }
        .accordian-wrap .accordion-header {
            cursor: pointer;
            border-bottom: 0;
            box-shadow: none;
            padding: 20px 38px 20px 30px;
            margin: 0px;
            display: flex;
            align-items: center;
            transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
            font-size: 16px;
            /* line-height: 27px; */
            text-decoration: none;
            width: 100%;
            position: relative;
            font-weight: 700;
            color: #5b6762;
            border: none;
            justify-content: space-between;
        }
        .accordian-wrap .accordion-content {
            background: linear-gradient(90deg, hsla(0, 0%, 100%, .15), rgba(251, 199, 226, .15), rgba(220, 217, 254, .15));
            border-top: 1px solid #ffffff21;
            padding: 20px 30px 25px;
            font-size: 20px;
            display: none;
        }
        .accordian-wrap .accordion-content p {
            margin: 0;
        }

        /* =========== Responsive Ipad ============= */
        @media only screen and (max-width: 981px) {
            .creative-accordion .container .row .col-lg-6 {
                width: 100%;
                padding: 0px 0px;
            }
        }
        /* =========== Responsive Iphone ============= */
        @media only screen and (max-width: 460px) {
            .section-title .accordion-title {
                font-size: 28px;
            }
            .accordion-thumbnail img:nth-child(2) {
                display: none;
            }
            .accordion-thumbnail {
                margin-bottom: 0px;
            }
            .accordian-wrap .accordion-header {
                padding: 20px 15px 20px 15px;
                font-size: 12px;
            }
            .accordian-wrap .accordion-content {
                padding: 20px 15px 25px;
                font-size: 16px;
                line-height: 26px;
            }
        }
