*,
*::before,
*::after {
    box-sizing: border-box;
}

.container {
    max-width: 1168px;
    padding: 0 20px;
    margin: 0 auto;
}

.page-icon {
    transition: all 1.5s linear;
}

body {
    background: #F0F1F7;
}

/* BREADCRUMBS */
.breadcrumbs {
    margin-bottom: 48px;
}
.breadcrumbs__list {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumbs__list-item {
    background: none;
    margin: 0;
    padding: 0;
}
.breadcrumbs__list-item:last-child {
    color: #98999F;
}
.breadcrumbs__list,
.breadcrumbs__list-item,
.breadcrumbs__list-item a {
    font: 400 16px/24px "Figtree";
    color: #060028;
    margin: 0;
    padding: 0;
}
.breadcrumbs__list span {
    display: inline-block;
    margin: 0 12px;
}
/* BREADCRUMBS */

/* HEAD SECTION */
.head__inner {
    padding: 40px 0 64px;
}
.head__info {
    text-align: center;
    max-width: 806px;
    margin: 0 auto;
}
.head__info-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.head__info-tag {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 6px 12px;
    font: 400 16px/24px "Figtree";
    color: #5273EF;
    margin: 0 4px;
    text-transform: capitalize;
}
.head__info-tag:visited {
    color: #5273EF;
}
.head__info-tag:hover,
.head__info-tag:visited:hover {
    color: #fff;
    background: #5273EF;
}
.head__info-title {
    font: 600 40px/50px "Jokker";
    max-width: 100%;
    margin: 0 0 16px;
    color: #272727;
}
.head__info-desc {
    font: 400 18px/26px "Figtree";
    margin: 0;
    color: #272727;
}
/* HEAD SECTION */

/* BENEFITS */
.benefits {
    margin-bottom: 72px;
}
.benefits__inner {
    display: flex;
    justify-content: space-between;
}
.benefits__item {
    max-width: 49%;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E2E4EE;
    border-radius: 18px;
    padding: 32px 40px;
    position: relative;
    overflow: hidden;
}
h3.benefits__item-title {
    color: #272727;
    font: 600 24px/26px "Figtree";
    margin: 0 0 24px;
}
ul.benefits__item-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.benefits__item-list li {
    background: none;
    padding: 0 0 0 40px;
    position: relative;
    color: #272727;
    font: 400 16px/24px "Figtree";
    margin: 0 0 12px;
}
ul.benefits__item-list li:last-child {
    margin: 0;
}
.benefits__item ul.benefits__item-list li::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 24px;
    height: 24px;
}
.benefits__item.benefits-adver ul.benefits__item-list li::before {
    background: center / contain no-repeat url("/https/epom.com/resources/ad-formats/benefits/benefits-check-green.svg");
}
.benefits__item.benefits-pub ul.benefits__item-list li::before {
    background: center / contain no-repeat url("/https/epom.com/resources/ad-formats/benefits/benefits-check-fiolet.svg");
}
.benefits__item.benefits-adver svg {
    position: absolute;
    top: 0;
    right: 0;
    animation: moveBenefitsLine 30s linear 0s infinite;
}
.benefits__item.benefits-pub svg {
    position: absolute;
    bottom: 0;
    right: 0;
    stroke-dashoffset: 378;
    stroke-dashoffset: 0;
    animation: moveBenefitsLine 30s linear 0s infinite;
}
@keyframes moveBenefitsLine {
    from {
        stroke-dashoffset: 378;
    }
    to {
        stroke-dashoffset: 0;
    }
}
/* BENEFITS */

/* FORMAT SECTION */
.format {
    margin-bottom: 80px;
}
.format__switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #060028;
    font: 400 14px/15px "Figtree";
}
.format__switcher-item {
    padding: 20px;
    width: 150px;
    height: 90px;
    position: relative;
    cursor: pointer;
    z-index: 1;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.format__switcher-item.active {
    color: #5273EF;
    transition: 0.3s;
}
.format__switcher-item.disabled {
    pointer-events: none;
    opacity: 0.3 !important;
}
/*.format__switcher-item.disabled::after,*/
/*.format__switcher-item.disabled:hover::after {*/
/*    opacity: 0.7;*/
/*    background: #fff;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/
.format__switcher-item svg {
    margin-bottom: 8px;
    transition: 0.3s;
}
.format__switcher-item.desktop svg {
    width: 32px;
}
.format__switcher-item.tablet svg {
    width: 18px;
}
.format__switcher-item.mobile svg {
    width: 15px;
}
.format__switcher-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #E2E4EE;
    border-left: 1px solid #D5D8E6;
    border-right: 1px solid #D5D8E6;
    border-top: 1px solid #D5D8E6;
    border-radius: 18px 18px 0px 0px;
    opacity: 0;
    z-index: -1;
    transition: 0.3s;
}
.format__switcher-item.active::after,
.format__switcher-item.active:hover::after {
    opacity: 1;
    transition: 0.3s;
}
.format__switcher-item.active.disabled::after,
.format__switcher-item.active.disabled:hover::after {
    opacity: 0.7;
    transition: 0.3s;
}
.format__switcher-item:hover::after {
    opacity: 0.5;
    transition: 0.3s;
}
.format__switcher-item.active svg path,
.format__switcher-item.active svg rect {
    stroke: #5273EF;
    transition: 0.3s;
}
.format__box {
    height: 650px;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    transition: 0.5s;
    overflow: hidden;
    position: relative;
}
.format__box .container {
    padding: 0;
    max-width: 100%;
    height: 100%;
}
.format__box-inner {
    position: relative;
    padding: 56px 32px 24px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: space-between;*/
    transition: 0.5s;
    border: 0px solid transparent;
}
.format__box .format__box-inner::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 8px;
    background: #060028;
    border-radius: 7px;
    transition: 0.5s;
    opacity: 0;
}
.format__box[data-type='desktop'] .format__box-inner {
    padding: 56px 35px 24px;
    transition: 0.3s;
}
.format__box .format__box-inner .format__box-window {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border: 3px solid #060028;
    border-top: 0px solid #060028;
    border-radius: 16px;
    opacity: 0;
    transition: 0.5s;
    max-height: 650px;
    z-index: 100;
}
.format__box .format__box-inner .format__box-window .btns {
    position: absolute;
    left: 16px;
    top: -20px;
    display: flex;
    align-items: center;
}
.format__box .format__box-inner .format__box-window span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}
.format__box .format__box-inner .format__box-window span:nth-child(1) {
    background: #FF8C67;
}
.format__box .format__box-inner .format__box-window span:nth-child(2) {
    background: #FFD964;
}
.format__box .format__box-inner .format__box-window span:nth-child(3) {
    background: #56BE87;
}
.format__box[data-type='desktop'] .format__box-inner .format__box-window {
    top: 0;
    opacity: 1;
    border-top: 32px solid #060028;
    transition: 0.5s;
}
.format__box[data-type='desktop'] .container {
    max-width: 100%;
    transition: 0.5s;
}
.format__box[data-type='tablet'] .container {
    max-width: 784px;
    transition: 0.5s;
}
.format__box[data-type='tablet'] {
    padding: 40px 16px 0;
    transition: 0.5s;
}
.format__box[data-type='tablet'] .format__box-inner {
    padding: 52px 40px 4px;
    border-top: 8px solid #060028;
    border-left: 8px solid #060028;
    border-right: 8px solid #060028;
    border-radius: 32px 32px 0 0;
    transition: 0.5s;
}
.format__box[data-type='tablet'] .format__box-inner::before {
    width: 168px;
    opacity: 1;
    transition: 0.5s;
}
.format__box[data-type='mobile'] .container {
    max-width: 391px;
    transition: 0.5s;
}
.format__box[data-type='mobile'] {
    padding: 40px 16px 0;
    transition: 0.5s;
}
.format__box[data-type='mobile'] .format__box-inner {
    padding: 48px 20px 8px;
    border-top: 8px solid #060028;
    border-left: 8px solid #060028;
    border-right: 8px solid #060028;
    border-radius: 32px 32px 0 0;
    transition: 0.5s;
}
.format__box[data-type='mobile'] .format__box-inner::before {
    width: 183px;
    height: 36px;
    border-radius: 0 0 12px 12px;
    top: -8px;
    opacity: 1;
    transition: 0.5s;
}
.format__box .plug {
    min-height: 32px;
    width: 100%;
    border-radius: 29px;
    background: #DDDEE6;
    margin-bottom: 24px;
}
.format__box .plug-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.format__box .plug-flex .plug {
    max-width: 48%;
    margin: 0;
}
.format__box-item {
    height: auto;
    flex-grow: 1;
    margin: 0 0 24px;
    display: flex;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}
.format__box-item iframe {
    flex-grow: 1;
    transition: all 0.2s ease-in-out;
}
/* FORMAT SECTION */

/* CTA */
.cta {
    margin-bottom: 80px ;
}
.cta:has(.cta__btn:hover) .cta__inner::before {
    left: -5%;
    bottom: -5%;
    transition: 1s ease-in-out;
}
.cta:has(.cta__btn:hover) .cta__inner::after {
    right: -5%;
    bottom: -5%;
    transition: 1s ease-in-out;
}
.cta__inner {
    background: #060028;
    border-radius: 24px;
    padding: 48px 40px 56px;
    position: relative;
    overflow: hidden;
}
.cta__inner::before, .cta__inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: 1s ease-in-out;
}
.cta__inner::before {
    left: 0;
    background-position: left;
    background-image: url("/https/epom.com/resources/ad-formats/cta/bg-left.svg");
}
.cta__inner::after {
    right: 0;
    background-position: right;
    background-image: url("/https/epom.com/resources/ad-formats/cta/bg-right.svg");
}
.cta__title {
    margin-bottom: 12px;
    color: #fff;
    text-align: center;
    font: 600 40px/56px "Jokker";
}
.cta__title span {
    color: #FFD964;
}
.cta__text {
    font: 400 20px/26px "Figtree";
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.cta__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    margin-bottom: 40px;
}
.cta__list-item {
    position: relative;
    padding-left: 36px;
    color: #fff;
    font: 500 16px/22px "Figtree";
}
.cta__list-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 24px;
    height: 24px;
    background: center/contain no-repeat;
}
.cta__list-item:nth-child(1)::before {
    background-image: url("/https/epom.com/resources/ad-formats/cta/icon-1.svg");
}
.cta__list-item:nth-child(2)::before {
    background-image: url("/https/epom.com/resources/ad-formats/cta/icon-2.svg");
}
.cta__list-item:nth-child(3)::before {
    background-image: url("/https/epom.com/resources/ad-formats/cta/icon-3.svg");
}
.cta__btn {
    text-align: center;
    display: table;
    background: #fff;
    padding: 20px 40px;
    border-radius: 100px;
    font: 700 16px/20px "Figtree";
    color: #060028;
    margin: 0 auto;
    cursor: pointer;
    transition: 0.3s;
    &:hover {
        background: #5273ef;
        color: #fff;
        transition: 0.3s;
    }
}
/* CTA */

/*CALL TO ACTION FOR VIDEO*/
.call-to-action {
    position: absolute;
    top: 50%;
    left: -240px;
    transform: rotate(270deg);
    font: 400 20px/30px 'Figtree';
    text-transform: uppercase;
    letter-spacing: 10px;
    animation: cta-anim 2s ease-in-out 0s infinite;
}
.call-to-action::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%) rotate(270deg);
    width: 50px;
    height: 50px;
    background: center / contain no-repeat url(/https/epom.com/resources/img/ad-formats-demos/call-to-scroll-arrow.svg);
    animation: arrowTop 3s ease-in-out 0s infinite;
}
.call-to-action::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -65px;
    transform: translateY(-50%) rotate(90deg);
    width: 50px;
    height: 50px;
    background: center / contain no-repeat url(/https/epom.com/resources/img/ad-formats-demos/call-to-scroll-arrow.svg);
    animation: arrowBottom 3s ease-in-out 0s infinite;
}
@keyframes arrowTop {
    0% {
        right: -50px;
    }
    50% {
        right: -70px;
    }
    100% {
        right: -50px;
    }
}
@keyframes arrowBottom {
    0% {
        let: -65px;
    }
    50% {
        left: -85px;
    }
    100% {
        left: -65px;
    }
}
/*CALL TO ACTION FOR VIDEO*/

/* MEDIA */
@media(max-width: 1200px) {
    .call-to-action {
        left: -230px;
    }
}
@media(max-width: 1024px) {
    .format {
        margin-bottom: 64px;
    }
    .format__box-inner {
        padding: 24px;
    }
    .format__box[data-type='tablet'] {
        padding: 40px 12px 0;
    }
    .format__box[data-type='tablet'] .format__box-inner {
        padding: 52px 24px 4px;
    }
    .format__switcher-item.desktop:not(:has(+ .disabled)) {
        pointer-events: none;
        opacity: 0.3 !important;
    }
    .call-to-action {
        top: 10px;
        left: 50%;
        font: 400 16px/24px 'Figtree';
        transform: translate(-50%, 0) rotate(0);
        text-align: center;
        letter-spacing: 5px;
        /*width: 100%;*/
    }
    .call-to-action::before,
    .call-to-action::after {
        display: none;
    }
    .breadcrumbs {
        margin-bottom: 64px;
    }
    .benefits {
        margin-bottom: 64px;
    }
    .benefits__item {
        padding: 24px;
    }
    .benefits__item svg {
        display: none;
    }
    h3.benefits__item-title {
        font: 700 20px/22px "Figtree";
        margin-bottom: 20px;
    }
    .cta {
        padding-bottom: 56px;
    }
    .cta__inner {
        padding: 48px 62px;
        border-radius: 16px;
    }
    .cta__inner::before, .cta__inner::after {
        display: none;
    }
    .cta__title {
        font-size: 32px;
        line-height: 40px;
    }
    .cta__text {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 32px;
    }
    .cta__list {
        margin-bottom: 32px;
        gap: 20px;
    }
    .cta__list-item {
        font-size: 16px;
    }
    .cta__list-item::before {
        top: 0;
        translate: none;
    }
}
@media(max-width: 767px) {
    .breadcrumbs {
        margin-bottom: 40px;
    }
    .breadcrumbs__list,
    .breadcrumbs__list-item,
    .breadcrumbs__list-item a {
        font: 400 14px/24px "Figtree";
    }
    .breadcrumbs__list span {
        margin: 0 8px;
    }
    .head__inner {
        padding: 16px 0 32px;
    }
    .head__info-tags {
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-bottom: 4px;
    }
    .head__info-tag {
        padding: 6px 8px;
        font: 400 14px/16px "Figtree";
        margin: 0 8px 8px 0;
    }
    .head__info {
        text-align: left;
    }
    .head__info-title {
        font: 600 24px/30px "Jokker";
    }
    .head__info-desc {
        font: 400 16px/24px "Figtree";
    }
    .benefits__inner {
        flex-direction: column;
    }
    .benefits__item {
        max-width: 100%;
        margin: 0 0 12px;
        padding: 20px;
    }
    .benefits__item:last-child {
        margin: 0;
    }
    h3.benefits__item-title {
        font: 700 18px/20px "Figtree";
        margin-bottom: 16px;
    }
    .cta {
        padding-bottom: 48px;
    }
    .cta__inner {
        padding: 24px;
    }
    .cta__title {
        font-size: 26px;
        line-height: 32px;
        text-align: center;
        max-width: 250px;
        margin: 0 auto 8px;
    }
    .cta__text {
        max-width: 250px;
        margin: 0 auto 24px;
    }
    .cta__list {
        flex-direction: column;
        margin-bottom: 24px;
    }
    .cta__btn {
        width: 100%;
    }
}
@media(max-width: 639px) {
    .container {
        padding: 0 20px;
    }
    .format {
        margin-bottom: 48px;
    }
    .format .container {
        padding: 0;
    }
    .format__box {
        border-radius: 0;
    }
    .format__box-inner {
        padding: 24px 20px;
    }
    .format__box .format__box-inner .format__box-window {
        border-radius: 0;
    }
    .format__switcher-item {
        padding: 16px 0px 15px;
        max-width: 33.33%;
        width: 100%;
        text-align: center;
    }
    .format__box[data-type='tablet'] .format__box-inner {
        padding: 52px 16px 4px;
    }
    .format__box[data-type='mobile'] {
        padding: 40px 12px 0;
    }
    .format__box[data-type='mobile'] .format__box-inner {
        padding: 52px 16px 4px;
    }
}
@media(max-width: 599px) {
    .format__switcher-item.tablet {
        pointer-events: none;
        opacity: 0.3 !important;
    }
}
@media(max-width: 520px) {
    .format__box .format__box-inner .plug-item div:nth-child(3) {
        margin-bottom: 24px;
    }
}
/* MEDIA */

/* KEYFRAMES */
@keyframes line-animation {
    0% {
        stroke-dashoffset: 240;
        stroke-dasharray: 240;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 240;
    }
}
@keyframes move-icon {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(5%, -5%);
    }
    50% {
        transform: translate(10%, 0%);
    }
    75% {
        transform: translate(5%, 5%);
    }
    100% {
        transform: translate(0, 0);
    }
}
@keyframes rotate-icon {
    0% {
        transform: rotate(0) scale(1);
    }
    50% {
        transform: rotate(360deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}
/* KEYFRAMES */