.web-trends-page {
    position: relative;
}

.web-trends-page .trends-year {
    opacity: 1;
}

.web-trends-page .trends-year .year {
    opacity: 0.5;
}

.dce-alternate-content-dt .alternate-content .row {
    display: flex;
    flex-wrap: wrap;
}

.dce-alternate-content-dt .alternate-content .row [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
}

.dce-alternate-content-dt .alternate-content:nth-child(even) .row {
    flex-direction: row-reverse;
}

.digital-trends-top .content-img {
    height: initial;
}

.shape-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.shape-container-red {
    background: #e0004d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100vh;
    height: 100svh;
}

.alternate-content-dt {
    overflow: inherit;
}

.digital-trends-top .page-title {
    bottom: 1.2vw;
}

@media only screen and (max-width: 1920px) {
    .web-trends-page h1 {
        font-size: 5.8vw;
        line-height: 5.8vw;
        height: 7.5vw;
    }

    .web-trends-page .trends-year {
        font-size: 20vw;
        bottom: 1.5vw;
        left: calc(100% - 5.6vw);
    }
}

/* Arrow 1 */

.arrow {
    position: absolute;
    bottom: calc(100% - 8px);
    width: 105px;
    right: 90px;
}

/* Cross */
.plus {
    position: relative;
    width: 124px;
    height: 124px;
    transform: rotate(45deg);
    animation: rotateBounce 5s cubic-bezier(0.47, 1.64, 0.41, 0.8) infinite;
    z-index: -1;
}

.alternate-content .plus {
    position: absolute;
    bottom: -50px;
    left: 0;
}

.plus:before {
    content: "";
    background: #7cecca;
    width: 100%;
    height: 14px;
    position: absolute;
    left: 0;
    top: calc(50% - 7px);
    animation: bounce1 5s cubic-bezier(0.47, 1.64, 0.41, 0.8) infinite;
}

.plus:after {
    content: "";
    background: #7cecca;
    height: 100%;
    width: 14px;
    position: absolute;
    top: 0;
    left: calc(50% - 7px);
    animation: bounce2 5s cubic-bezier(0.47, 1.64, 0.41, 0.8) infinite;
}

@keyframes bounce1 {
    0% {
        border-radius: 100%;
        transform: scaleX(0.11);
    }
    15% {
        border-radius: 0%;
        transform: scaleX(0.11);
    }
    20% {
        transform: scaleX(1);
    }
    90% {
        transform: scaleX(1);
        border-radius: 0%;
    }
    100% {
        transform: scaleX(0.11);
        border-radius: 100%;
    }
}

@keyframes bounce2 {
    0% {
        border-radius: 100%;
        transform: scaleY(0.11);
    }
    15% {
        border-radius: 0%;
        transform: scaleY(0.11);
    }
    20% {
        transform: scaleY(1);
    }
    90% {
        transform: scaleY(1);
        border-radius: 0%;
    }
    100% {
        border-radius: 100%;
        transform: scaleY(0.11);
    }
}

@keyframes rotateBounce {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(155deg);
    }
    90% {
        transform: rotate(165deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Square */

.square-shape .square {
    width: 80px;
    height: 80px;
    background-color: #f2fdd1;
    position: relative;
    z-index: -1;
}

.alternate-content .square-shape .square {
    position: absolute;
    bottom: 65px;
    left: 22%;
}

.square-shape .square:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    box-sizing: border-box;
    content: "";
    transform-origin: center center;
    border: 2px solid #f2fdd1;
    animation: sonarEffect 3s ease-out infinite;
}

@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 1;
    }
    100% {
        transform: scale(2.1);
        opacity: 0;
    }
}

/* Globe */

.globe-txt {
    width: 298px;
    width: 15.5vw;
    left: 57%;
    top: 24%;
    position: absolute;
}

.globe-txt .txt {
    width: 100%;
    height: auto;
    transform-origin: center;
    width: 100%;
    animation: rotate 12s linear infinite;
}

.globe-txt .globe {
    position: absolute;
    width: 54%;
    height: auto;
    left: 50%;
    top: 50%;
    transform: rotate(25deg) translate(-50%, -50%);
    transform-origin: 0 0;
}

.yellow-globe {
    width: 200px;
    height: auto;
    transform: rotate(-25deg);
    animation: rotate2 5s ease-in-out infinite;
    position: absolute;
    right: 14%;
    top: 0;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate2 {
    0% {
        transform: rotate(-25deg);
    }

    50% {
        transform: rotate(25deg);
    }

    100% {
        transform: rotate(-25deg);
    }
}

/* Stars */

.stars {
    position: absolute;
    bottom: calc(100% + 25px);
    left: calc(100% - 40px);
    height: inherit;
    line-height: 0;
    display: flex;
}

.stars .star-1 {
    width: 75px;
    height: auto;
    animation: bounce3 5s cubic-bezier(0.47, 1.64, 0.41, 0.8) infinite;
    transform: scale(0);
}

.stars .star-2 {
    width: 40px;
    height: auto;
    position: absolute;
    top: -20px;
    left: calc(100% - 20px);
    animation: bounce3 3s cubic-bezier(0.47, 1.64, 0.41, 0.8) 0.5s infinite;
    transform: scale(0);
}

@keyframes bounce3 {
    0% {
        transform: scale(0);
    }
    20% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

/* Atom */
.atom {
    position: relative;
    width: 300px;
}

.alternate-content .atom {
    width: 340px;
    position: absolute;
    top: -10px;
    left: 20px;
    z-index: -1;
}

.digital-trends-top .atom {
    position: absolute;
    width: 470px;
    width: 23vw;
    left: 44%;
    top: -160px;
    top: -8.3vw;
}

/* star morph */
.star-morph {
    width: 300px;
    transform-origin: center 95px;
    z-index: -1;
}

.star-morph.active {
    animation: rotate 6s cubic-bezier(0.47, 1.64, 0.41, 0.8) infinite;
}

.alternate-content .star-morph {
    width: 185px;
    position: absolute;
    right: 19%;
    bottom: -20px;
    transform: rotate(10deg);
}

/* Zigzag */
.zigzag {
    width: 117px;
    height: auto;
    z-index: -1;
}

.alternate-content .zigzag {
    position: absolute;
    right: 14%;
    top: 0;
}

/* Multi atom */
.multi-atom {
    width: 470px;
    width: 21.5vw;
    position: absolute;
    right: 30px;
    right: -4vw;
    bottom: -30px;
    bottom: 10.5vw;
    transform: rotate(-90deg);
}

/* Medal */
.content-img img.medal {
    width: 85px;
    width: 4.5vw;
    height: auto;
    animation: bounce4 6s cubic-bezier(0.47, 1.64, 0.41, 0.8) 1s infinite;
    transform: scale(0);
    position: absolute;
    bottom: 63px;
    bottom: 3.5vw;
    left: 61%;
}

@keyframes bounce4 {
    0% {
        transform: rotate(0deg) scale(0);
    }
    20% {
        transform: rotate(45deg) scale(1);
    }
    80% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: rotate(0deg) scale(0);
        opacity: 0;
    }
}

/* Chart */

.chart {
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: -1;
}

.alternate-content .chart {
    position: absolute;
    top: 0;
    right: 22%;
}

.chart:after {
    content: "";
    width: 150px;
    height: 150px;
    background: #7cecca;
    opacity: 0.2;
    border-radius: 100%;
    position: absolute;
    top: -12px;
    left: -80px;
    transform: scale(0);
}

.active.chart:after {
    animation: bounce 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8) 0.8s forwards;
}

.chart .bar-1,
.chart .bar-2,
.chart .bar-3 {
    background: #7cecca;
    width: 35px;
    height: 95px;
    margin-right: 20px;
    transform: scaleY(0);
    transform-origin: bottom center;
}

.chart.active .bar-1 {
    animation: grow 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8) 0s forwards;
}

.chart.active .bar-2 {
    height: 155px;
    animation: grow 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8) 0.3s forwards;
}

.chart.active .bar-3 {
    height: 200px;
    animation: grow 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8) 0.6s forwards;
}

.chart-arrow {
    position: absolute;
    left: -145px;
    top: -30px;
    width: 225px;
}

@keyframes bounce {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes grow {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

/* Circle */

.circle {
    width: 130px;
    height: 130px;
    background: #ff07ba;
    border-radius: 100%;
    animation: jello 4s infinite;
    z-index: -1;
}

.alternate-content .circle {
    position: absolute;
    left: 26%;
    bottom: 47px;
}

@keyframes jello {
    5.55% {
        transform: none;
    }
    11.1% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    16.65% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    22.2% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    27.75% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    33.3% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    38.85% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    44.4% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
    50% {
        transform: none;
    }
}

/* DT detail */

.dt-h2 {
    margin-bottom: 145px;
}

.dt-h2 h2 {
    position: relative;
    display: inline;
    background-image: linear-gradient(to bottom, #a6fb51 100%, #a6fb51 100%);
    background-size: 100% 15px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    padding-bottom: 17px;
    font-size: 66px;
    font-weight: 700;
    line-height: 1.5;
}
.dt-h2 h2.no-underline {
  background:none;
}

.digital-trends-content:not(.layout-0) .frame-type-html {
    position: relative;
}

.digital-trends-content:not(.layout-0) .position-3 {
    width: 210px;
    height: auto;
    left: calc(100% + 60px);
    bottom: -80px;
    position: absolute;
}

.digital-trends-content:not(.layout-0) .circle.position-3 {
    height: 210px;
}

.digital-trends-content:not(.layout-0) .atom.position-3 {
    width: 300px;
}

.digital-trends-content:not(.layout-0) .position-1 {
    transform: rotate(-25deg) scale(0.7);
    position: absolute;
    left: calc(100% + 100px);
    bottom: -80px;
}

.digital-trends-content:not(.layout-0) .position-2 {
    position: absolute;
    left: -65px;
    bottom: 100%;
}

.digital-trends-content:not(.layout-0) .star-morph.position-2 {
    width: 150px;
    transform-origin: center 80px;
}

/* Big circle + small circle */
.big-circle {
    width: 27vw;
    height: 27vw;
    border: 10px solid #7cecca;
    position: absolute;
    left: calc(100% + (100% / 9) * 3);
    border-radius: 100%;
    bottom: 0;
    transform: translateX(100%);
    transition: 1.5s;
}

.big-circle.active {
    transform: translateX(0);
}

.small-circle {
    width: 18vw;
    height: 18vw;
    border: 10px solid #7cecca;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
}

/* Arrow 2*/

.content-arrow {
    min-width: 177px;
    width: 177px;
    position: absolute;
    display: inline-block;
    margin-top: 30px;
    margin-left: 20px;
}

/* Vector */
.vector {
    width: 300px;
}

.alternate-content .vector {
    width: 275px;
    transform: rotate(45deg);
    position: absolute;
    top: 50px;
    left: 0;
}

/* Responsive */

@media only screen and (max-width: 1200px) {
    .dt-h2 h2 {
        font-size: 55px;
    }

    .content-arrow {
        min-width: 130px;
        width: 130px;
    }

    .dt-h2 {
        margin-bottom: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .dt-h2 {
        padding-right: 150px;
    }

    .dce-alternate-content-dt .alternate-content .row [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .dce-alternate-content-dt .alternate-content .html-col {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .globe-txt {
        width: 21.5vw;
        left: 50%;
        top: 20%;
    }

    .stars .star-1 {
        width: 60px;
    }

    .stars .star-2 {
        width: 30px;
        top: -15px;
        left: calc(100% - 15px);
    }

    .web-trends-page h1 {
        font-size: 8.8vw;
        line-height: 8.8vw;
        height: 16.5vw;
    }

    .web-trends-page .trends-year {
        font-size: 29vw;
        bottom: 7vw;
        left: calc(100% - 8.6vw);
    }

    .alternate-content .chart {
        top: 100%;
        right: -2vw;
        transform: translateY(-100%);
        transform-origin: bottom right;
    }

    .alternate-content .star-morph {
        right: 0;
        bottom: 15px;
    }

    .alternate-content .yellow-globe {
        right: 0;
        top: initial;
        bottom: 20px;
    }

    .alternate-content .zigzag {
        top: initial;
        bottom: 45px;
    }

    .alternate-content .vector {
        width: 230px;
        top: 29%;
        left: initial;
        right: 0;
    }

    .digital-trends-content:not(.layout-0) .position-2 {
        left: 0;
    }

    .alternate-content .plus,
    .alternate-content .atom,
    .alternate-content .square-shape,
    .alternate-content .circle {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .digital-trends-top .page-title {
        bottom: 3vw;
    }

    .dce-slider-dt {
        top: inherit;
        bottom: 0;
    }

    .stars {
        bottom: calc(100% + 20px);
        left: calc(100% - 20px);
    }

    .stars .star-1 {
        width: 50px;
    }

    .stars .star-2 {
        width: 20px;
        top: -7px;
        left: calc(100% - 12px);
    }

    .digital-trends-top .atom {
        width: 35vw;
        left: -8%;
        top: -160px;
        top: 25vw;
    }

    .globe-txt {
        width: 35vw;
        left: 51%;
        top: 21%;
    }

    .web-trends-page h1 {
        font-size: 11.8vw;
        line-height: 11.8vw;
        height: 24.5vw;
    }

    .web-trends-page .trends-year {
        font-size: 35vw;
        bottom: 10.1vw;
        left: calc(100% - 11.6vw);
    }
}

@media only screen and (max-width: 576px) {
    .digital-trends-top .atom {
        width: 60%;
        left: -20%;
        top: 18%;
    }

    .globe-txt {
        width: 200px;
        left: 57%;
        top: 24%;
    }

    .arrow {
        bottom: calc(100% - 3vw);
        width: 26vw;
        right: 7vw;
    }

    .web-trends-page h1 {
        font-size: 14.8vw;
        line-height: 14.8vw;
        height: 7.5vw;
    }

    .web-trends-page .trends-year {
        font-size: 53vw;
        bottom: -8.5vw;
        left: calc(100% - 17.6vw);
    }

    .stars,
    .multi-atom,
    .medal {
        display: none;
    }

    .alternate-content .chart {
        top: 100%;
        right: -2vw;
        transform: translateY(-100%) scale(0.5);
        transform-origin: bottom right;
    }

    .alternate-content .star-morph {
        width: 120px;
        right: 0;
        bottom: 15px;
        transform-origin: center 65px;
    }

    .alternate-content .yellow-globe {
        width: 100px;
        right: 0;
        top: initial;
        bottom: 20px;
    }

    .alternate-content .zigzag {
        right: 0;
        top: initial;
        bottom: 0;
        width: 75px;
    }

    .alternate-content .vector {
        width: 145px;
        top: 29%;
        right: 0;
    }

    .plus {
        width: 70px;
        height: 70px;
    }

    .digital-trends-content:not(.layout-0) .position-2 {
        left: 0;
    }

    .alternate-content .plus,
    .alternate-content .atom,
    .alternate-content .square-shape,
    .alternate-content .circle {
        display: none;
    }

    .plus:after {
        width: 8px;
        left: calc(50% - 4px);
    }
    .plus:before {
        height: 8px;
        top: calc(50% - 4px);
    }

    .dt-h2 {
        margin-bottom: 80px;
        padding-right: 100px;
    }

    .dt-h2 h2 {
        font-size: 35px;
    }

    .content-arrow {
        min-width: 100px;
        width: 100px;
        margin-top: 25px;
        margin-left: 10px;
    }

    .big-circle {
        width: 40vw;
        height: 40vw;
        border: 3px solid #7cecca;
        right: -35px;
        left: initial;
    }

    .small-circle {
        width: 26vw;
        height: 26vw;
        border: 3px solid #7cecca;
    }

    .big-circle.active {
        transform: translateX(50%);
    }

    .digital-trends-content:not(.layout-0) .circle.position-3 {
        height: 100px;
    }
    .digital-trends-content:not(.layout-0) .position-3 {
        width: 100px;
        left: initial;
        right: -60px;
        bottom: initial;
        top: 65px;
    }

    .digital-trends-content:not(.layout-0) .atom.position-3 {
        width: 170px;
    }

    .digital-trends-content:not(.layout-0) .star-morph.position-2 {
        width: 100px;
        transform-origin: center 55px;
    }

    .digital-trends-content:not(.layout-0) .circle.position-2 {
        width: 80px;
        height: 80px;
        bottom: 20px;
    }

    .digital-trends-content:not(.layout-0) .zigzag.position-3 {
        top: -50px;
    }
}

@media only screen and (max-width: 360px) {
    .dt-h2 {
        margin-bottom: 40px;
        padding-right: 0px;
    }

    .dt-h2 svg {
        display: none;
    }
}
