.main {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.showcase-wrapper {
    display: flex;
    max-width: 1540px;
    margin: 0 auto;
}

.showcase-section {
    padding: 80px 0 0;
}

.showcase-section .section-title {
    padding: 0;
}

.showcase-sidebar {
    max-width: 40%;
    padding-top: 60px;
}

.ss-title {
    font-weight: bold;
    font-size: 30px;
    padding-left: 40px;
    color: #282639;
    margin-bottom: 40px;
}

.sc-tabs {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sct-single {
    background: #484c4d;
    min-width: 370px;
    display: inline-flex;
    align-items: center;
    width: 100%;
    min-height: 68px;
    padding: 12px 20px;
    cursor: pointer;
    position: relative;
    border: 1px solid #5e6162;
    border-radius: 16px;
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.2);
    transition: .4s var(--transition);
}

.sct-single--1,
.sct-single8 {
    display: none;
}

.sct-single:hover {
    border-color: #2cbfc5;
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.2), 0 0 0 1px #2cbfc5 inset;
}

.sct-single.sct-single-active {
    background-color: #2b9a9f;
    border-color: #2cbfc5;
    box-shadow: 0 10px 24px 0 rgba(0,0,0,0.3), 0 0 0 1px #2cbfc5 inset;
}

.sct-single-image {
    width: 36px;
    height: 40px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin: auto 16px auto 0;
}

.sctsi-title {
    padding-right: 10px;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.sctsi-subtitle {
    font-size: 14px;
    color: var(--faded);
    margin-top: 4px;
}

.sct-single .tooltip-content {
    padding: 30px;
}

.sc-tab-bar {
    position: absolute;
    height: 100%;
    width: 12px;
    left: 0;
    top: 0;
    background-color: var(--boxHoverBg);
    display: none;
}

.sc-bar-line {
    height: calc(100% / 6);
    width: 12px;
    background-color: var(--primary);
    transition: margin .4s var(--transition);
}

#country .sc-bar-line {
    height: calc(100% / 3);
    transition: margin .4s var(--transition);
}

/** Showcase Contents */
.showcase-contents {
    width: 100%;
    max-width: calc(100% - 425px);
    padding: 32px;
    position: relative;
    background: #333939;
    border-radius: 16px;
    margin: 60px 0 0 55px;
    border: 1px solid #5f6262;
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.2);
}

.sc-export {
    position: relative;
    position: relative;
    margin: 20px auto 0;
    text-align: center;
    width: 100%;
}

.sc-buttons-wrap-left {
    min-width: 50px;
}

.sc-buttons-wrap {
    display: flex;
    justify-content: center;
    margin: 0 auto 20px;
}

.sc-buttons-wrap .btn-export {
    margin-left: auto;
}

@media screen and (min-width: 768px) {
    .sc-export {
        width: auto;
        position: absolute;
        right: 40px;
        top: 60px;
        margin: 0;
    }

    .sc-buttons-wrap {
        margin: 0 auto 32px;
    }
}

.sc-buttons {
    background-color: transparent;
    border-radius: 40px;
    position: relative;
    display: flex;
    margin-left: auto;
    gap: 24px;
}

.button-active {
    display: none;
}

.sc-buttons span {
    background: #4b4f50;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    width: 190px;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    border: 1px solid #666b6b;
    border-radius: 8px;
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
}

.sc-buttons span.active {
    background: #2e9da2;
    border-color: #2cbfc5;
    box-shadow: 0 10px 24px 0 rgba(0,0,0,0.3), 0 0 0 1px #2cbfc5 inset;
}

.sc-section {
    background: #151716;
    display: none;
    overflow: hidden;
    position: relative;
    border: 1px solid #666b6b;
    border-radius: 16px;
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.2);
}

.sc-ctn {
    display: none;
}

@media screen and (min-width: 768px) {
    .sc-ctn {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        position: absolute;
        bottom: 120px;
        width: 100%;
        padding: 0 20px;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
    }

    .sc-ctn.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .sc-ctn h3 {
        max-width: 260px;
        margin: 0;
        color: rgba(255,255,255,0.5);
    }

    .sc-ctn p {
        max-width: 220px;
        margin: 0;
        color: rgba(255,255,255,0.5);
        font-size: 12px;
        line-height: 1.5;
    }

}

.sc-section-active {
    display: block;
}

.sc-inner {
    display: flex;
    opacity: 0;
    transition: all .4s var(--transition);
}

.sc-section-active-animation .sc-inner {
    opacity: 1;
    /* transition: opacity 1s cubic-bezier(0.13, 0.39, 0.37, 1.11); */
}

.sc-inner-part {
    padding: 32px 32px 32px 0;;
    flex: 1 0 100%;
    max-height: 400px;
    overflow: hidden;
}

.sc-inner-part.sc-inner-active {
    max-height: initial;
}

.our-take-wrapper {
    display: none !important;
}

.mobile-tabs {
    display: none;
    position: relative;
}

.mobile-current-tab {
    width: 100%;
    padding: 10px 40px 10px 20px;
    margin: 0;
    display: flex;
    align-items: center;
    border: 1px solid var(--primaryHover);
    border-radius: 8px;
}

.mobile-tabs-icon {
    position: absolute;
    right: 30px;
    top: 20px;
    pointer-events: none;
}

.mobile-tabs-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #333939;
    z-index: 10;
    border: 1px solid transparent;
    max-height: 0;
    overflow-y: auto;
    box-shadow: none;
    border: none;
    transition: maxHeight .4s ease-in-out;
}

.mobile-tabs-dropdown-active {
    max-height: 400px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 7px 24px 0 rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.mdrop-single-active {
    background-color: var(--primaryHover);
}

.mdrop-single-active .sctsi-title {
    color: var(--primary);
}

.sct-single:nth-child(1).mdrop-single-active .sct-single-image,
.sct-single:nth-child(2).mdrop-single-active .sct-single-image {
    background-image: url(/wp-content/themes/aemonitoring/lp/lightning/images/cloud_blue.png) !important;
}

.sct-single:nth-child(3).mdrop-single-active .sct-single-image,
.sct-single:nth-child(4).mdrop-single-active .sct-single-image {
    background-image: url(/wp-content/themes/aemonitoring/lp/lightning/images/pin_blue.png) !important;
}

.sct-single:nth-child(5).mdrop-single-active .sct-single-image {
    background-image: url(/wp-content/themes/aemonitoring/lp/lightning/images/alert_blue.png) !important;
}

.industry-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    list-style: none;
    margin: 30px 0 0;
    padding: 0 0 0 10px;
    position: relative;
}

.industry-tabs li:last-child {
    display: none;
}

.industry-tabs .industry-tab {
    background: #535758;
    width: 100%;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 18px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.2);
}

.industry-tabs .industry-tab:hover {
    border-color: #2cbfc5;
}

.industry-tabs .industry-tab-active,
.industry-tabs .industry-tab-active:hover {
    background: #2b9a9f;
    border-color: #2cbfc5;
    box-shadow: 0 10px 24px 0 rgba(0,0,0,0.3), 0 0 0 1px #2cbfc5 inset;
}

.industry-tab-ctn {
    display: none;
}

.industry-tab-ctn-active {
    background: #333939;
    max-width: 1540px;
    display: block;
    position: relative;
    margin: 40px auto 0;
    padding: 32px;
    border: 1px solid #5f6262;
    border-radius: 16px;
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.2);
}

.tab-info {
    max-width: 380px;
    min-height: 225px;
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0,40px,0);    
}

.tab-info.active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0,0,0);
    transition: 0.3s;
}

.tab-info h5 {
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
}

.tab-info ul {
    display: flex;
    align-items: center;
    gap: 0 20px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.tab-info ul li {
    background: #434747;
    width: 50px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #505251;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.2);
    transition: 0.4s;
}

.tab-info ul li.active {
    background: #ce4b20;
    border-color: #ce4b20;
    box-shadow: 0 10px 24px 0 rgba(0,0,0,0.3);
}

.tab-info ul li img {
    max-height: 34px;
    width: auto;
}

.info-popup {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translate3d(0, 20px,0);
    opacity: 0;
}

.info-popup.active {
    max-height: unset;
    opacity: 1;
    visibility: visible;
    transform: translate3d(0,0,0);
    transition: 0.4s;
}

.tab-info p {
    margin: 20px 0 0;
    color: #FFF;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.5;
}

.tab-info .tiny {
    display: block;
    margin: 6px 0 0;
    font-size: 11px;
    line-height: 1.5;
    opacity: 0.5;
}

.industry-tab-ctn h3 {
    margin: 0 auto 40px;
    color: #FFF;
    font-weight: 600;
    text-align: center;
}

.industry-tabs .industry-tab-indicator {
    background: #2abec5;
    width: 10px;
    height: 33.33%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.4s;
}

@media screen and (min-width: 768px) {
    .industry-tabs {
        max-width: 1350px;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px 16px;
        margin: 60px auto 0;
        padding: 0 0 16px;
    }

    .industry-tabs .industry-tab {
        width: 100%;
        height: 60px;
        font-size: 20px;
        font-weight: 300;
    }

    .industry-tabs .industry-tab-indicator {
        background: #2abec5;
        width: 33.33%;
        height: 16px;
        position: absolute;
        bottom: 0;
        top: auto;
        transition: 0.4s;
    }
}

@media screen and (min-width: 1600px) { 
    .industry-tabs .industry-tab {
        height: 90px;
        font-size: 28px;
    }
}

.title-swithcer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
    padding: 0 10px;
}

.switcher {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 20px 0 -30px;
    position: relative;
}

.switcher span {
    background: #484c4d;
    width: 100px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 14px;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border: 1px solid #5f6262;
    border-radius: 8px;
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.2);
    transition: 0.4s;
}

.switcher span:hover {
    border-color: #2cbfc5;
}

.switcher span.active {
    background: #2b9a9f;
    border-color: #2cbfc5;
    box-shadow: 0 10px 24px 0 rgba(0,0,0,0.3), 0 0 0 1px #2cbfc5 inset;
}

.switcher .active-switch {
    background: #2abec5;
    position: absolute;
    top: 7px;
    left: 7px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4) inset;
    border-radius: 100px;
    z-index: 0;
    transition: 0.3s;
    display: none;
}

.title-swithcer-left {
    width: 50px;
    min-width: 50px;
}

.title-swithcer-right {
    display: flex;
    align-items: center;
    gap: 0 24px;
}

.title-swithcer-right span.btn-export {
    display: none;
}

.btn-export {
    background: #a54324;
    width: 50px;
    height: 52px;
    font-size: 0;
    border: 1px solid #da592e;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: 0.4s;
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.2);
    cursor: pointer;
}

.btn-export.active {
    background: #2b9a9f;
    border-color: #2cbfc5;
}

.btn-export.active-export {
    opacity: 1;
    visibility: visible;
    margin-top: 50px;
}

.switcher-tab {
    width: 100%;
    height: 200px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 0;
    position: relative;
}

.switcher-tab.switcher-tab-active::before {
    content: '';
    background: #151716;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    border-radius: 12px;

    animation-name: showCtn;
    animation-duration: 0.4s;
    animation-delay: 0.2s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-direction: normal;
}

@keyframes showCtn {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(100%, 0, 0);
    }
}

#airports-rankings,
#wind-farm-rankings,
#golf-courses-rankings {
    height: 600px;
}

.switcher-tab-table {
    height: 950px;
}

.switcher-tab.switcher-tab-active {
    background: #151716;
    max-width: 1540px;
    max-height: unset;
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    overflow: auto;
    border: 1px solid #5f6262;
    border-radius: 16px;
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.2);
}

.industry-table {
    width: 100%;
    border-spacing: 10px 0;
    margin: 24px 0;
}

@media screen and (min-width: 768px) {
    .switcher-tab {
        height: 900px;
    }

    #industry-map,
    #wind-farm-map,
    #golf-courses-map {
        height: 600px;
    }

    #airports-rankings,
    #wind-farm-rankings,
    #golf-courses-rankings {
        height: 1000px;
    }

    .switcher-tab.switcher-tab-active {
        overflow: hidden;
    }
}

@media screen and (min-width: 1600px) {
    #industry-map,
    #wind-farm-map,
    #golf-courses-map {
        height: 900px;
    }
}


.industry-table th {
    min-width: 200px;
    background: #ce4b1f;
    padding: 12px 0;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
}

@media screen and (min-width: 768px) {
    .industry-table th {
        min-width: unset;
        padding: 16px 0;
    }

    .industry-table th:nth-child(1) {
        border-radius: 4px 0 0 0;
    }

    .industry-table th:last-child {
        border-radius: 0 4px 0 0;
    }
}

.industry-table tr td {
    background: #2d2f2e;
    padding: 12px 0;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    transition: 0.4s;
    border-top: 1px solid #151716;
}

.industry-table tr:nth-child(even) td {
    background: #212322;
}

.industry-table th:first-child,
.industry-table td:first-child {
    min-width: 300px;
}

.industry-table tr:hover td {
    background: #151716;
}

.takeaways-boxes {
    max-width: 1540px;
    width: 100%;
    margin: 60px auto 0;
    display: block;
}

.takeaways-box {
    background: #171819;
    height: auto;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.2);
    transition: 0.4s;
}

.takeaways-box:hover {
    border-color: #2cbfc5;
    box-shadow: 0 10px 24px 0 rgba(0,0,0,0.3);
}

.takeaways-box .number {
    display: block;
    margin: 0 0 40px;
    color: rgba(255,255,255,0.3);
    font-size: 32px;
    font-weight: 600;
}

.takeaways-box h5 {
    margin: 0 0 40px;
    color: #2cbfc5;
    font-size: 23px;
}

.takeaways-box p {
    margin: 0;
    color: #FFF;
}

.takeaways-ctn {
    background: #484c4d;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    margin: 60px auto 0;
    padding: 20px;
    border: 1px solid #5f6262;
    border-radius: 16px;
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.2);
}

.takeaways-boxes .swiper {
    padding-bottom: 100px;
}

.takeaways-boxes .swiper-pagination-bullet {
    width: 80px;
    height: 8px;
    border-radius: 8px;
}

.swiper-pagination-bullet-active {
    background: #2cbfc5;
}

.takeaways-boxes .swiper-pagination-bullet:hover,
.takeaways-boxes .swiper-pagination-bullet:focus,
.takeaways-boxes .swiper-pagination-bullet:active {
    outline: none !important;
}

.swiper-prev,
.swiper-next  {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;    
    bottom: 0;
    z-index: 99;
    cursor: pointer;
    border: 2px solid #2cbfc5;
    border-radius: 100%;
}

.swiper-prev:focus,
.swiper-next:focus,
.swiper-prev:hover,
.swiper-next:hover,
.swiper-prev:active,
.swiper-next:active {
    outline: none !important;
}

.swiper-prev {
    right: 60px;
}

.swiper-next {
    right: 0;
}

.swiper-prev::before,
.swiper-next::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 3px solid #2cbfc5;
    border-top: 0;
    border-right: 0;
    position: relative;
}

.swiper-prev::before {
    left: 2px;
    transform: rotate(45deg);
}

.swiper-next::before {
    right: 2px;
    transform: rotate(225deg);
}

@media screen and (min-width: 1200px) {
    .takeaways-ctn {
        max-width: 1540px;
        grid-template-columns: 1fr 1.2fr;
        gap: 0;
        padding: 60px;
    }
}

@media screen and (min-width: 1600px) {
    .takeaways-ctn {
        padding: 60px;
    }
}

.takeaways-ctn-left h3 {
    color: #2cbfc5;
}

.takeaways-ctn-left p {
    line-height: 1.5;
}

.takeaways-ctn-left p:first-child {
    margin-top: 0;
}

.takeaways-ctn-left p:last-child {
    margin-bottom: 0;
}

.takeaways-ctn-rigth video,
.takeaways-ctn-rigth iframe {
    max-width: 100%;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid #FFF;
    border-radius: 16px;
    box-shadow: 0 7px 24px 0 rgba(0, 0, 0, 0.2);
}

.snapshots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0 0;
    padding: 0 10px;
}

.snapshot-graph {
    width: 100%;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #093a44;
}

.snapshot-graph img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
}

.snapshot-graph .ms-chart {
    width: 160px;
    height: 160px;
}

#pie-snap-1 {
    position: relative;
}

#pie-snap-1::before {
    content: 'Total flashes';
    font-size: 14px;
    color: #FFF;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
}

.snapshot {
    background: #1C1D1E;
    padding: 12px 12px 12px 32px;
    display: flex;
    justify-content: space-between;
    gap: 0 24px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.2);
    transition: 0.4s;
    overflow: hidden;
    position: relative;
}

.snapshot:hover {
    box-shadow: 0 10px 24px 0 rgba(0,0,0,0.3);
}

.snapshot::before {
    content: '';
    background: #02929D;
    background: linear-gradient(270deg,rgba(2, 146, 157, 1) 0%, rgba(2, 146, 157, 0.2) 55%, rgba(2, 146, 157, 0) 100%);
    width: 60%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.snapshot-graph-stat {
    margin-right: 22px;
    padding-left: 20px;
    position: relative;
}

.snapshot-graph-stat::before {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    top: 5px;
    left: 0;
    box-shadow: 0 0 0 4px #2abec5 inset;
    border-radius: 100px;
}

.snapshot-graph-stat:last-child:before {
    box-shadow: 0 0 0 4px #ce4b20 inset;
}

.snapshot-graph-stat:first-child {
    margin-bottom: 32px;
}

.snapshot-graph-stat h3 {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
}

.snapshot-graph-stat span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.snapshot-graph .bar-chart {
    width: 260px;
    height: 200px;
}

.snapshot-ctn {    
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    position: relative;
}

.snapshot-image {
    background: rgba(255, 255, 255, 0.15);
    width: 130px;
    min-width: 130px;
    min-height: 148px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 7px 24px 0 rgba(0, 0, 0, 0.15);  
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

.snapshot-image img {
    max-width: 110px;
    max-height: 96px;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}

.snapshot-ctn h4 {
    color: #2cbfc5;
    font-size: 28px;
    position: relative;
    z-index: 1;
}

.snapshot-ctn p {
    margin: 10px 0 0;
    color: #edebe6;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.submitted-message p {
    max-width: 380px;
    color: #282639;
    font-size: 20px;
    line-height: 1.5;
}

@media screen and (max-width: 1199px) {
    .switcher-tab.switcher-tab-active::before {
        display: none;
    }

    .title-swithcer-left {
        display: none;
    }

    .title-swithcer {
        padding: 0;
    }

    .switcher {
        margin: 0;
        padding: 0;
    }

    .sct-single-inner .tooltip {
        display: none;
    }

    .sct-single {
        border-radius: 0;
    }
}

@media screen and (max-width: 600px) {
    .snapshot-ctn,
    .industry-tabs .industry-tab,
    .switcher-tab.switcher-tab-active,
    .mst-box,
    .showcase-contents,
    .takeaways-box,
    .takeaways-ctn,
    .takeaways-ctn-rigth video,
    .takeaways-ctn-rigth iframe,
    .sc-section,
    .industry-tab-ctn-active {
        border-radius: 8px;
    }

    .snapshots {
        gap: 10px;
        padding: 0;
    }

    .switcher,
    .btn-export.active-export {
        margin: 0;
        padding: 0;
        gap: 0 8px;
    }

    .industry-tabs {
        padding: 0;
        gap: 12px;
    }
    
    .tab-info.active {
        max-width: 100%;
        position: relative;
        bottom: unset;
        left: unset;
        padding: 20px 12px;
    }

    .tab-info ul {
        gap: 12px;
    }

    .tab-info ul li {
        width: 40px;
        height: 40px;
    }

    .tab-info ul li img {
        max-height: 24px;
    }

    .tab-info p {
        font-size: 16px;
    }

    .industry-tab-ctn-active {
        margin-top: 12px;
        padding: 40px 0 0;
    }

    .sc-section {
        border: none;
        border-bottom: 1px solid #666b6b;
    }

    .title-swithcer-right {
        gap: 0 8px;
    }

    .switcher span {
        width: 92px;
    }

    .title-swithcer-left,
    .sc-buttons-wrap-left {
        display: none;
    }

    .sc-buttons {
        gap: 0 8px;
        margin-right: 16px;
        margin-left: 0;
    }

    .sct-single {
        max-width: 100%;
        min-width: 100%;
        border-radius: 0;
    }

    .tooltip i {
        top: 22px;
        right: auto;
        left: 12px;
    }

    .tooltip:hover .tooltip-content {
        right: 0;
        left: auto;
    }

    .title-swithcer {
        padding: 0 12px;
    }

    .btn-export {
        width: 40px;
        height: 40px;
        margin-top: 0;
    }

    .btn-export img {
        max-height: 24px;
        width: auto;
    }

    .takeaways-boxes {
        max-width: 100%;
        width: 100%;
        margin: 40px auto 0;
        padding: 0;
    }

    .takeaways-box {
        padding: 20px 10px;
    }

    .takeaways-box h5 {
        margin-bottom: 12px;
    }

    .takeaways-box p {
        margin-top: 12px;
    }

    .takeaways-ctn {
        margin-top: 20px;
        padding: 10px;
    }

    .takeaways-ctn-rigth {
        padding-right: 0;
    }
}

@media screen and (min-width: 768px) {
    /* .snapshots {
        max-width: 1540px;
        margin: 60px auto 0;
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    } */

    .snapshot-graph .ms-chart {
        width: 160px;
        height: 160px;
    }

    #pie-snap-1::before {
        width: 100px;
        font-size: 18px;
        text-align: center;
    }

    .snapshot-graph {
        min-height: 345px;
    }

    .snapshot-graph-stat {
        padding-left: 40px;
    }

    .snapshot-graph-stat::before {
        width: 28px;
        height: 28px;
        top: 5px;
        box-shadow: 0 0 0 7px #2abec5 inset;
    }

    .snapshot-graph-stat:last-child:before {
        box-shadow: 0 0 0 7px #ce4b20 inset;
    }

    .snapshot-graph-stat h3 {
        font-size: 32px;
    }

    .snapshot-graph-stat span {
        color: rgba(255, 255, 255, 0.5);
        font-size: 16px;
    }

    .snapshot-graph .bar-chart {
        width: 280px;
        height: 240px;
    }

    .switcher span {
        width: 140px;
        height: 52px;
        font-size: 18px;
    }
}

@media screen and (min-width: 1200px) {
    .title-swithcer {
        flex-wrap: nowrap;
        padding: 0;
    }

    .snapshots {
        max-width: 1540px;
        margin: 60px auto 0;
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    }

    .switcher {
        margin: 0 auto;
    }

    .switcher span {
        width: 190px;
    }

    .title-swithcer h3 {
        max-width: 310px;
        margin-right: 20px;
        font-size: 22px;
        text-align: left;
    }

    .industry-tabs {
        gap: 20px 32px;
    }

    .takeaways-boxes {
        margin: 60px auto 0;
    }

    .takeaways-box h5 {
        min-height: 125px;
    }

    .btn-export {
        font-size: 0;
    }

    .btn-export,
    .btn-export.active-export {
        margin-top: 0;
    }

    .takeaways-ctn-rigth {
        padding-right: 80px;
    }
}

@media screen and (min-width: 1280px) {

    .snapshot-graph .ms-chart {
        width: 200px;
        height: 200px;
    }

    .snapshot-graph .bar-chart {
        width: 300px;
        height: 260px;
    }
}

@media screen and (min-width: 1440px) {
    .showcase-contents {
        max-width: calc(100% - 485px);
    }

    .snapshot-ctn h4 {
        font-size: 32px;
    }

    .sc-buttons span,
    .switcher span {
        font-size: 21px;
    }

    .sct-single {
        min-width: 430px;
    }

    .tab-info {
        max-width: 480px;
        min-height: 260px;
        bottom: 80px;
        left: 100px;
    }

    .takeaways-ctn {
        margin: 60px auto 80px;
    }

    .takeaways-box {
        padding: 60px 40px;
    }
 
    .takeaways-box h5 {
        min-height: 62px;
    }

    .snapshot-graph .ms-chart {
        width: 240px;
        height: 240px;
    }

    .snapshot-graph .bar-chart {
        width: 340px;
        height: 300px;
    }
}

@media screen and (min-width: 1600px) {
    .title-swithcer {
        max-width: 1540px;
        margin-inline: auto;
        padding: 0;
    }

    .title-swithcer h3 {
        max-width: 620px;
        font-size: 24px;
    }

    .snapshot-graph .bar-chart {
        width: 400px;
        height: 340px;
    }

    .snapshot-graph-stat span {
        font-size: 18px;
    }

    .sc-ctn {
        bottom: 20px;
        align-items: center;
    }

    .sc-ctn h3 {
        max-width: 200px;
    }
}

@media screen and (min-width: 1900px) {
    .sc-ctn h3 {
        max-width: 260px;
    }
}
