.accordion-panel {
    border: solid 1px #F2F2F2;
    margin-bottom: 16px;
    border-radius: 10px;

    .acc-head {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 18px;
        cursor: pointer;

        .icon {
            position: relative;
            width: 15px;
            height: 15px;
            margin-left: 10px;

            &:before,
            &:after {
                content: '';
                position: absolute;
                top: 0;
                right: calc(50% - 1px);
                width: 2px;
                height: 100%;
                background-color: var(--accent-color2);
                transition: all 0.3s ease;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
            }

            &:after {
                transform: rotate(-90deg);
                -webkit-transform: rotate(-90deg);
                -moz-transform: rotate(-90deg);
                -ms-transform: rotate(-90deg);
                -o-transform: rotate(-90deg);
            }
        }

        .title {
            font-size: 1.1rem;
        }
    }

    .acc-body {
        display: none;
        padding: 18px;
        border-top: solid 1px #F2F2F2;

        .desc {
            font-size: 1rem;
        }
    }

    &.open {
        .acc-head {
            .icon {
                &:before {
                    transform: rotate(90deg);
                    -webkit-transform: rotate(90deg);
                    -moz-transform: rotate(90deg);
                    -ms-transform: rotate(90deg);
                    -o-transform: rotate(90deg);
                }
            }
        }
    }
}

.service-categories {
    li {
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 220px;
        padding: 0;
        list-style: none;
        border-radius: var(--b-radius);
        overflow: hidden;

        img {
            width: 100%;
        }

        .serviceTitle {
            background: linear-gradient(270deg,
                    rgba(54, 38, 202, 1) 0%,
                    rgba(255, 123, 253, 1) 100%);
            color: var(--White);
            bottom: 0;
            border-radius: 0 0 var(--b-radius) var(--b-radius);

            .txt {
                font-size: 1.15rem;
            }
        }
    }


    @media (max-width: 996px) {
        & {
            li {}
        }
    }

    @media (max-width: 760px) {
        & {
            margin: auto;

            li {
                width: calc((100% / 2) - 8px);

                .serviceTitle {
                    .txt {
                        font-size: 0.8rem;
                    }
                }
            }
        }
    }

    @media (max-width: 540px) {
        & {
            li {
                width: 100%;
            }
        }
    }
}

.service-item {
    width: calc(100% / 3);
    min-width: 350px;

    &:last-child {
        margin-left: 0 !important;
    }

    &:after {
        content: '';
        position: absolute;
        right: -21%;
        bottom: -18%;
        width: 43%;
        height: 39%;
        background: var(--button-color);
        border-radius: 50%;
        z-index: 10;
        transition: all 0.1s ease-in-out;
    }

    &:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgb(0, 0, 0);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    }

    .title-box {
        right: 25%;
        bottom: 18%;
        z-index: 100;

        .title {
            font-size: 1.2rem;

            &:after {
                content: '';
                position: absolute;
                top: calc(50% - 8px);
                right: -8px;
                bottom: calc(50% - 8px);
                width: 2px;
                background: var(--button-color);

            }

        }

        .subtitle {
            font-size: 1.25rem;
        }
    }

    &:hover {
        &:after {
            right: -74%;
            bottom: -69%;
            width: 144%;
            height: 130%;
        }

        .title-box {

            .title {

                &:after {
                    background: #FF7BFD;
                }
            }
        }
    }

    @media (max-width: 540px) {
        & {
            min-width: 230px;

            .title-box {
                right: 10%;
                bottom: 10%;

                .title,
                .subtitle {
                    font-size: 0.8rem;
                }
            }
        }
    }
}


.service-details {
    .desc-box {
        img {
            max-width: 100%;
            width: 100%;
            margin: auto;
        }

        .title {
            font-size: 1.1rem;
            margin: 0 0 5px;
        }

        .desc {
            font-size: 1.1rem;
            color: #6F6F6F;
        }

        .list-items {
            .item {
                display: flex;
                align-items: center;
                font-size: 1.1rem;
                color: #6F6F6F;
                list-style: none;
                margin-bottom: 8px;

                &:before {
                    content: url("/DesktopModules/EasyDNNnews/Templates/_default/AkoAtlas/assets/images/common/left-arrow-circle.svg");
                    width: 18px;
                    height: 18px;
                    margin-left: 8px;
                }
            }
        }
    }

    .SideBarBlog {
        position: sticky;
        top: 14%;
        min-height: 200px;
        overflow: auto;

        img {
            width: 100%;
        }
    }
}

.puzzle-article {
    padding-bottom: 90px;

    .item {
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .title-box {
            right: 0;
            bottom: 0;
            left: 0;
            padding: 16px 14px;
            background: #3626ca;
            background: linear-gradient(90deg, rgba(54, 38, 202, 0) 0%, rgba(54, 38, 202, 1) 93%, rgba(54, 38, 202, 1) 100%);
            color: #fff;

            svg {
                width: 16px;
                margin-left: 10px;
            }

            .title {
                font-size: 1.1rem;
            }
        }
    }

    .right-col {
        .item {
            .title-box {
                padding: 21px 14px;
            }
        }
    }

    @media (max-width: 1320px) {
        .item {
            .title-box {
                padding: 8px !important;

                svg {
                    width: 12px;
                }

                .title {
                    font-size: 0.9rem;
                }
            }
        }
    }
}

.figure-title span {
    border-right: 0.2rem solid var(--accent-color2);
}

.parent-figure {
    overflow: hidden;
    z-index: 3;
    border-radius: var(--b-radius) var(--b-radius) 0 var(--b-radius);
}

.parent-figure::before {
    content: "";
    width: 40%;
    height: 40%;
    border-radius: 50%;
    background-color: var(--accent-color2);
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateX(50%) translateY(50%);
    z-index: 3;
}

.parent-figure figcaption {
    position: absolute;
    bottom: 20%;
    right: 20%;
    z-index: 3;
}

.image-article {
    width: 100%;
    height: 100%;
}

.parent-figure::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 1) 100%);
}

/***********news*************/
.item-holder {
    padding-top: 5rem;
    margin-bottom: 24px;

    .news-card {
        border: 0.1rem solid #f2f2f2;
        border-radius: var(--b-radius);
        background: transparent;
        position: relative;
        transition: all 0.3s ease-in-out;

        .img-holder {
            margin: -5rem auto 32px;
        }

        .date {
            top: 0;
            right: 0;
            width: 90px;
            height: 90px;
            min-width: max-content;
            min-height: max-content;
            padding: 8px;
            background: linear-gradient(90deg,
                    rgba(255, 123, 253, 1) 0%,
                    rgba(54, 38, 202, 1) 100%);
            border-radius: 0 var(--b-radius);

            span {
                font-size: 1.1rem;
                color: #fff;
            }
        }

        .more {
            padding: 30px 16px;
            border-top: 0.1rem solid #f2f2f2;
            color: #6f6f6f !important;
            text-align: center;
            margin-block: 0.5rem;
            z-index: 2;
        }

        .title {
            min-height: 90px;
            font-size: 1.14rem;
            z-index: 2;
        }

        &:before {
            transition: all 0.3s ease-in-out;
            content: "";
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    rgba(255, 123, 253, 1) 0%,
                    rgba(54, 38, 202, 1) 100%);
            position: absolute;
            border-radius: var(--b-radius);
            opacity: 0;
            pointer-events: none;
        }

        &:hover {
            &:before {
                opacity: 1;
            }

            .title,
            .more {
                color: var(--White) !important;
            }
        }


        .news-article-parent {
            overflow: unset;
        }
    }

    @media (max-width: 996px) {
        .news-card {

            .title,
            .more {
                font-size: 0.9rem;
            }

            .more {
                padding: 20px 16px;
            }

            .date {
                width: auto;
                height: auto;

                span {
                    font-size: 0.9rem;
                }
            }
        }
    }

    @media (max-width: 760px) {
        .news-card {
            .title {
                min-height: auto;
                margin-bottom: 24px;
            }

            .more {
                font-size: 0.9rem;
            }
        }
    }
}

.social-icon-in-detail {
    display: flex;
    border: 0.1rem solid var(--Black);
    border-radius: 50%;
    padding: 0.5rem;
}

/***********related links************/
.related-links {
    strong {
        padding-block: 2rem;
    }
}

.related-link {
    background-color: var(--White);
    color: var(--Black) !important;

    svg {
        width: 15px;
    }
}

.list-sidebar {
    position: sticky;
}

/*******************Comments*************************/
.edNews__showCommentsTrigger {
    background-color: unset;
    color: var(--Black) !important;
    border: unset;
    padding: 0;
    cursor: pointer;
}

.edNews__commentPendingApproval.show,
.edNews_errorMessage.show {
    max-height: 3rem;
    opacity: 1;
    background: var(--accent-color5);
    padding: .4em;
    display: block;
}

.edNews__editComment {
    display: none;
}

.edNews__deleteComment {
    display: none;
}

.edNews__commentsSubmitComment {
    background-color: #00A54F !important;
    color: var(--White);
    border-radius: var(--b-radius);
}

.comment-container {
    border: 0.2rem solid #f2f2f2;
    border-radius: var(--b-radius);
    padding: 1rem;

    .media-heading {
        font-size: 1.1rem;

        .date {
            color: #6F6F6F;
        }

    }
}


.edNews__commentsWrapper .btn-submit {
    cursor: pointer;
    position: relative;
}

.media-footer {
    .btn-submit {
        color: #000;
        font-size: 1.1rem;
        font-weight: normal;
        padding: 12px 40px;
        background: #D9D9D9 !important;

        svg {
            width: 15px;
            margin-right: 8px;
        }
    }
}

.edNews__commentsWrapper :where(input[type="text"], input[type="email"], textarea) {
    border: 0.1em solid #f2f2f2;
    border-radius: var(--b-radius);
    padding: 0.5rem;
}

.edNews__commentContentWrapper {
    margin-bottom: 5px;

    .edNews__commentContent {
        p {
            color: #000;
            font-weight: bold;
            margin: 0;
        }
    }
}

.edNews__childCommentsContainer {
    margin-right: 20px;

    .edNews__commentContent {
        p {
            color: #6F6F6F;
            font-weight: normal;
            margin: 0;
        }
    }
}

input:where([type="email"], [type="cell"]) {
    direction: ltr;
}

.edNews__commentsWrapper .form-group label {
    padding: .4rem 0
}

.edNews__commentsCollapseWrapper {
    width: 100%
}

.edNews_errorMessage {
    display: none;
}

.edNews_commentActions {
    color: #3626CA;
}

.edNews_commentActions span {
    color: var(--accent-color2) !important;
    padding: 0.5em 0.25rem;
    margin: 0 0.5em;
    border-radius: var(--b-radius);
}

.edNews_commentActions::after {
    content: url("data:image/svg+xml,%3Csvg width='16' height='13' viewBox='0 0 16 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.66667 3.50008V0.166748L15.5 6.00008L9.66667 11.8334V8.41675C5.5 8.41675 2.58333 9.75008 0.5 12.6667C1.33333 8.50008 3.83333 4.33341 9.66667 3.50008Z' fill='%233626CA'/%3E%3C/svg%3E%0A");
    top: 0;
    width: 1.25rem;
    height: 1.25rem;
}

.edNews_loadMoreTriggerWrapper button {
    background: var(--accent-color3);
    border: 1px solid var(--accent-color2);
    padding: 1rem;
    margin-bottom: 2rem;
    cursor: pointer
}

.edNews__commentsAuthorNameInput {
    border-radius: var(--b-radius) !important;
}

.edNews_loadMoreTriggerWrapper .loadingOverlay {
    display: none
}

.edNews_loadMoreTriggerWrapper.loading,
.edNews__editingComment .edNews__editCommentContainer {
    display: block
}

.edNews_loadMoreTriggerWrapper.hide,
.edNews__editCommentContainer {
    display: none
}

.submit-comment-btn {
    cursor: pointer;
}

.submit-comment-btn svg {
    width: 1.5rem;
    vertical-align: middle;
}

.list {
    border: 0.2rem solid #f2f2f2;
}

.card-title {
    border: 0.1rem solid #f2f2f2;
}

.card-title-link {
    color: var(--Black) !important;
}

.filter-btn {
    border: none;
    outline: none;
    border-radius: var(--b-radius);
    border: 0.1rem solid #f2f2f2;
    background-color: var(--White);
    color: var(--Black);
    cursor: pointer;
    font-weight: bold;
}

.filter-btn:focus {
    background-color: var(--accent-color2);
    color: var(--White);
}

.siper_wrapper {
    width: 4rem;
    height: 2rem;
}

/******************buy product from china landing*******************/

.detail-primary-link {
    cursor: pointer;
    background: linear-gradient(90deg, rgba(255, 123, 253, 1) 0%, rgba(54, 38, 202, 1) 100%);
    width: 21rem;
    display: inline-block;
    text-align: center;
}

.box-content-1-title {
    text-align: right !important;
}

.detail-secondary-link {
    color: var(--accent-color2);
    text-align: center;
    border: 0.15rem solid transparent;
    border-image: linear-gradient(90deg, rgba(255, 123, 253, 1) 0%, rgba(54, 38, 202, 1) 100%);
    border-image-slice: 1;
    width: 20.8rem;
}

.detail-secondary-link:hover {
    color: var(--accent-color2) !important;
    cursor: pointer;
}

.box-content-1 {
    position: relative;
}

.box-content-1 .box-content-1-media {
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    margin: 0;
    z-index: 3;
}

.box-content-1-media>div {
    max-width: 70%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.box-content-1::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--White);
    opacity: 0.9;
}

.media-services {
    margin-top: 5rem;
    max-width: 15rem;
    text-align: center;
}

.media-services strong {
    text-align: center !important;
}

.edn__contentBlock_hide {
    border: 0.1rem solid #f2f2f2;
    padding: 0.5rem 3rem;
    border-radius: var(--b-radius);
    text-decoration: none;

    &:hover,
    &.edn__contentBlock_active {
        background-color: var(--accent-color2);
        color: var(--White);
        transition: all 0.15s ease-in-out;
        cursor: pointer;
    }
}

.edn__contentBlock_itemList {
    list-style: none;
    display: flex;
    gap: 1rem;
}

/*************landing contact us***************/

.contact-us-content {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 3;

    >* {
        text-align: center !important;
    }
}

.landing-contact-us::after {
    content: "";
    background-color: var(--Black);
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0.7;
    border-radius: var(--b-radius);
}

.HomeSlider {
    position: relative;
    z-index: 101;

    .content-box {
        top: 30%;
        right: 8%;

        .text-box {
            width: 540px;
            max-width: 100%;
            background: rgba(0, 0, 0, 50%);
            border-radius: 0.7rem;
            -webkit-border-radius: 0.7rem;
            -moz-border-radius: 0.7rem;
            -ms-border-radius: 0.7rem;
            -o-border-radius: 0.7rem;
            pointer-events: none;
            color: #fff;

            .txt1 {
                font-size: 1.4rem;
            }

            .txt2 {
                font-size: 2.7rem;
                margin: 0;
            }

            .txt3 {
                font-size: 1.25rem;
            }

        }

        .support-btn {
            position: relative;
            width: max-content;
            font-size: 1.1rem;
            border-radius: 2.1rem;
            background: #9747ff;
            padding: 0.8rem 1.8rem;
            color: var(--White) !important;
            overflow: hidden;
            border: none;

            &:before {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 100%;
                border-radius: 2.1rem;
                opacity: 0;
                background: rgb(255, 123, 253);
                background: linear-gradient(90deg, rgba(255, 123, 253, 1) 0%, rgba(54, 38, 202, 1) 100%);
                transition: all 0.5s ease-in-out;
            }

            &:hover {
                &:before {
                    left: 0;
                    opacity: 1;
                }
            }
        }
    }


    

        .swiper-pagination {
            top: 0;
            bottom: 0;
            left: 3%;
            width: auto;

        }

        .swiper-pagination-bullet {
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
            width: 2rem;
            height: 2rem;
            opacity: 1;
            border-radius: 50%;
            line-height: 1.4;
        }

        .img-box {
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .swiper-slide {
            height: calc(100vh - 166px);
        }

        .swiper-pagination-bullet {
            background: transparent;
            color: var(--White);
            border: 0.1em solid var(--White);
        }

        .swiper-pagination-bullet-active {
            background-color: var(--accent-color2) !important;
            border: 0.1em solid transparent;
        }

        @media (max-width: 1320px) {
            .SliderBox {
                height: 450px;
            }

        }

        @media (max-width: 996px) {
            .SliderBox {
                height: 350px;
            }

            .content-box {
                top: 20%;

                .text-box {
                    .txt1 {
                        font-size: 1.2rem;
                    }

                    .txt2 {
                        font-size: 1.7rem;
                    }

                    .txt3 {
                        font-size: 1.2rem;
                    }
                }

                .support-btn {
                    font-size: 1rem;
                }
            }
        }

        @media (max-width: 760px) {

            .content-box {
                top: 21%;
                right: 3%;

                .text-box {
                    width: max-content;

                    .txt1 {
                        font-size: 1rem;
                    }

                    .txt2 {
                        font-size: 1.2rem;
                    }

                    .txt3 {
                        font-size: 1rem;
                    }
                }
            }
        }

        @media (max-width: 540px) {

            .content-box {
                top: 15%;
                right: 5%;

                .text-box {
                    width: 90%;
                    min-width: auto;

                    .txt1 {
                        font-size: 0.8rem;
                    }

                    .txt2 {
                        font-size: 1rem;
                    }

                    .txt3 {
                        font-size: 0.8rem;
                    }
                }

                .support-btn {
                    font-size: 0.7rem;
                }
            }

            .swiper-pagination {
                top: auto;
                bottom: 10px;
                left: 0;
                right: 0;
                transform: scale(0.8);
            }
        }
    }



    
    .support-menu {
          display:none;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition: .3s;
    }

    .support-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: flex;
        flex-direction: row;
    }

    

 

    .contact-btn {
    padding: 6px 7px;
    background: #fff;
    color: #222;
    text-decoration: none;
    border-radius: 30px;
    align-items: center;
    display: flex;
}




.support-menu{
    display:flex;
    flex-direction:row;
    gap:10px;

    max-height:0;
    overflow:hidden;
    opacity:0;

    transition:.3s;
}

.support-menu.active{
    max-height:100px;
    opacity:1;
}

    
    @media (max-width:480px) {
        .contact-btn {
            padding: 3px;
            border-radius: 50px;
        }


        .support-menu {
            transform: translateY(-47px);
            margin-top: 4px;
        }

        .contact-btn svg {
            max-height: 1.5rem !important;
            max-width: 1.5rem !important;
        }
    }
    /*********************Home Story***********************/
    .list-article-story {
        padding: 60px 0;

        @media (max-width: 960px) {
            padding: 30px 0;
        }
    }

    .story-wrapper {
        z-index: -1;
        width: 0px;
        height: 0px;
        overflow: hidden;
    }

    .story-wrapper.active {
        position: fixed;
        z-index: 222222;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(215, 215, 215, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .story-wrapper.active .Story {
        max-width: 40vw;
        max-height: 90vh;
    }

    .autoplay-progress {
        background: var(--CustomColor2);
    }

    .autoplay-progress .progress {
        height: 0.2em;
        background: #fff;
    }

    .story-thumbs .swiper-slide {
        width: 120px;
        padding: 0.3em;
        background: rgb(255, 123, 253);
        background: linear-gradient(90deg, rgba(255, 123, 253, 1) 0%, rgba(54, 38, 202, 1) 100%);
        border-radius: 50%;
        cursor: pointer;
    }

    .story-thumbs .swiper-slide .img-fluid {
        border-radius: 50%;
    }

    /****************SliderOneColHome*******************/
    .HomeSliderOneCol {
        .Slider-text-box {
            position: relative;
            padding: 118px 15px;

            strong,
            span {
                text-shadow: 1px 1px 3px #000;
                line-height: normal;
            }

            .title {
                font-size: 2.5rem;
            }

            .subtitle {
                font-size: 1.5rem;
            }

            .summary {
                font-size: 1.25rem;
            }
        }

        .img-box {
            img {
                object-fit: cover;
                height: 100%;
                width: 100%;
            }
        }

        .OneColSupport {
            position: relative;

            a {
                background: var(--accent-color2);
                padding: 0.7rem 2rem;
                color: var(--White) !important;
                border-radius: calc(var(--b-radius) * 3)
            }

            .OneColReadMore {
                background: transparent;
                border: 0.1em solid var(--accent-color2);
                padding: 0.7rem 3rem;
                border-radius: calc(var(--b-radius) * 3);
            }
        }

        .swiper-pagination-OneCol .swiper-pagination-bullet {
            background: var(--accent-color2);
        }

        @media (max-width: 760px) {

            .Slider-text-box {
                padding: 80px 15px;

                .title {
                    font-size: 1.5rem;
                }

                .subtitle {
                    font-size: 1rem;
                }

                .summary {
                    font-size: 1rem;
                }
            }
        }

        @media (max-width: 540px) {
            .OneColSupport {

                a,
                .OneColReadMore {
                    padding: 0.5rem 1rem;
                    font-size: 0.9rem;
                }
            }
        }
    }


    /**************** Faq Accordion *******************/
    .faq-list {
        input {
            display: none;
        }

        details {
            border: solid 1px #F2F2F2;
            border-radius: 8px;
            margin-bottom: 16px;

            summary {
                position: relative;
                outline: none;
                font-size: 1.15em;
                padding: 18px 40px 18px 18px;
                cursor: pointer;

                &:first-of-type {
                    list-style-type: none;
                }

                &:before,
                &:after {
                    content: '';
                    position: absolute;
                    top: 50%;
                    right: 12px;
                    width: 15px;
                    height: 2px;
                    background: #3626CA;
                    transition: all 0.3s ease;
                }

                &:after {
                    transform: rotate(-90deg);
                }

                h3 {
                    display: inline-block;
                    margin: 0px;
                }
            }

            .content {
                border-top: solid 1px #F2F2F2;
                padding: 18px;

                p {
                    margin: 0;
                }
            }

            &[open] {
                summary {
                    &:after {
                        transform: rotate(0deg);
                    }
                }
            }
        }

    }

    .Representation-Accordion {
        .acc-body {
            padding: 18px 32px;
            border: none;
        }

        &.open {
            background: linear-gradient(90deg, rgba(255, 123, 253, 1) 0%, rgba(54, 38, 202, 1) 100%);
            color: white;

            .acc-head {
                .icon {

                    &:before,
                    &:after {
                        background-color: #fff;
                    }
                }
            }
        }

        .representation-content {
            font-size: 1.1rem;

            .details-item {
                svg {
                    width: 24px;
                    margin-left: 16px;
                }
            }

            iframe {
                max-width: 100%;
                height: 160px;
                border-radius: 10px;
            }
        }
    }