/*-------------------------------------------------------------------------------------------------------------------------------*/
/* HEADER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.main-menu {
    visibility: hidden;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100vw;
    color: #FFFFFF;
    width: 100vw;
    z-index: 100;
    -webkit-transition: left .5s linear;
    transition: left .5s linear;
}

.main-menu.active {
    visibility: visible;
    left: 0;
}

.main-menu.active .menu-layer {
    width: 100%;
}

.main-menu a {
    color: #FFFFFF;
}

.main-menu .menu-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    background-color: rgba(0, 0, 0, 0.66);
    z-index: 1;
    -webkit-transition: width .8s linear;
    transition: width .8s linear;
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    max-width: 1070px;
    width: 100%;
    background-color: #161616;
    border-left: 18px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.nav__left {
    width: 100%;
    padding: 50px 70px 50px 130px;
}

.nav__right {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 140px;
    padding: 15px 22px;
    background-color: #1D1D1D;
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    overflow-y: auto;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 992px) {
    body.ie .menu-primary a:hover {
        background-image: none;
        color: #FF0E40;
    }

    body.ie .menu-primary a:hover:before {
        width: 35px;
        margin-right: 10px;
    }
}

body.ie .menu-primary a:before {
    background-image: none;
    background-color: #FF0E40;
}

.menu-primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 30px;
}

@media (min-width: 992px) {
    .menu-primary {
        width: 310px;
    }
}

.menu-primary li {
    margin: 15px 0;
}

.menu-primary a {
    display: inline-block;
    position: relative;
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media (min-width: 992px) {
    .menu-primary a:hover {
        background-image: -webkit-gradient(linear, left top, right top, from(#FF0E40), to(#E4259A));
        background-image: linear-gradient(to right, #FF0E40 0%, #E4259A 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: #D81531;
        padding-left: 45px;
    }

    .menu-primary a:hover:before {
        left: 0;
    }
}

.menu-primary a:before {
    position: absolute;
    content: '';
    left: -35px;
    top: 50%;
    width: 35px;
    height: 2px;
    background-image: -webkit-gradient(linear, left top, right top, from(#FF0E40), to(#E4259A));
    background-image: linear-gradient(to right, #FF0E40 0%, #E4259A 100%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.menu-secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 1310px) {
    .menu-secondary {
        margin: 15px;
    }
}

@media (min-width: 767px) {
    .menu-secondary ul ul {
        margin-left: 20px;
        margin-bottom: 15px;
    }
}

.menu-secondary ul li {
    margin-bottom: 4px;
}

.menu-secondary > a {
    margin-bottom: 7px;
}

.menu-secondary a {
    display: inline-block;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (min-width: 992px) {
    .menu-secondary a:hover {
        color: #D81531;
    }
}

.menu-secondary a > span {
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .menu-secondary ul li ul a {
        position: relative;
        padding-right: 22px;
    }

    .menu-secondary ul li ul a:after {
        position: absolute;
        content: '';
        top: 3px;
        right: 0;
        width: 16px;
        height: 16px;
        opacity: 0;
        background: url("../img/external-link.svg") no-repeat center;
        background-size: cover;
        -webkit-transition: opacity .2s ease;
        transition: opacity .2s ease;
    }

    .menu-secondary ul li ul a:hover {
        color: #D81531;
    }

    .menu-secondary ul li ul a:hover:after {
        opacity: 1;
    }
}

@media (min-width: 767px) {
    .menu-secondary ul li ul a {
        text-transform: uppercase;
    }
}

@media (max-width: 1310px) {
    .nav__left {
        padding: 20px 15px;
    }

    .menu {
        width: 100%;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .menu-primary,
    .menu-secondary {
        margin: 15px;
    }
}

@media (max-width: 991px) {
    .menu {
        display: block;
    }

    .menu-primary li {
        margin: 10px 0;
    }

    .menu-primary a {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .nav {
        background-color: #1D1D1D;
        border-left: none;
    }

    .nav__left {
        padding: 40px 0 0;
    }

    .nav__right {
        width: 0;
        padding: 0;
    }

    .nav__right .close-wrap {
        position: absolute;
        top: 1px;
        left: 1px;
    }

    .nav__right .close-wrap .btn-close {
        height: 57px;
        width: 57px;
        padding: 17px;
    }

    .nav__right .close-wrap .btn-close span {
        width: 23px;
        height: 23px;
    }

    .nav__right .close-wrap .btn-close span:before, .nav__right .close-wrap .btn-close span:after {
        top: -2px;
        left: 11px;
        height: 27px;
    }

    .nav__right .close-wrap .text {
        display: none;
    }

    .nav__right .social {
        display: none;
    }

    .menu > * {
        width: 100%;
    }

    .menu-primary,
    .menu-secondary {
        margin: 0;
    }

    .menu-primary > ul > li,
    .menu-secondary > ul > li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }

    .menu-primary > ul > li > a,
    .menu-secondary > ul > li > a {
        line-height: 59px;
    }

    .menu-primary ul,
    .menu-secondary ul {
        margin: 0;
    }

    .menu-primary a,
    .menu-secondary a {
        font-weight: 600;
        font-size: 1.3rem;
    }

    .menu-secondary > ul > li {
        display: block;
        text-align: left;
    }

    .menu-secondary ul li {
        margin: 0;
    }

    .menu-secondary ul li ul {
        padding: 10px 0;
    }

    .menu-secondary ul li ul li {
        padding: 4px 5px 4px 45px;
    }

    .menu-secondary ul li ul li a {
        font-size: 1.05rem;
    }

    .mobile_toggle_div {
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        width: 100%;
        padding: 0 45px;
    }

    .mobile_toggle_div.active a {
        color: #D81531;
    }

    .mobile_toggle_div a {
        padding: 15px 0;
    }

    .mobile_toggle_div + ul {
        display: none;
    }

    .mobile_toggle_icon {
        position: absolute;
        content: '';
        right: 15px;
        top: 20px;
        width: 15px;
        height: 15px;
        border: 2px solid #ffffff;
        border-top: none;
        border-right: none;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .mobile_toggle_icon.active {
        top: 27px;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        border-color: #D81531;
    }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* GLOBAL SETTINGS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
body {
    overflow: visible;
}

body ::selection {
    color: #fff;
    background: #000;
}

.no-padding {
    padding: 0 !important;
}

.parallax-content {
    position: absolute !important;
    pointer-events: none;
    z-index: 1;
}

.parallax-content .oval-img {
    width: 100%;
    height: 100%;
}

.red-oval {
    height: 131px;
    width: 131px;
    border-radius: 131px;
    background: linear-gradient(135deg, #D81531 30%, #DD2078 100%);
}

.oval01 {
    top: 10px;
    right: -25px;
    height: 46px;
    width: 46px;
}

.oval02 {
    top: -150px;
    left: -45px;
    height: 235px;
    width: 235px;
}

.oval03 {
    top: 40px;
    left: -225px;
    height: 323px;
    width: 323px;
}

.oval04 {
    top: 200px;
    right: 15%;
    height: 643px;
    width: 683px;
    z-index: 0;
}

.oval05 {
    right: -30px;
    bottom: -120px;
    height: 415px;
    width: 153px;
    opacity: .9;
}

.oval06 {
    left: -75px;
    top: 5px;
    height: 309px;
    width: 309px;
}

.oval07 {
    top: 65px;
    right: -145px;
    height: 245px;
    width: 245px;
}

.oval08 {
    left: -120px;
    bottom: 220px;
    height: 313px;
    width: 313px;
    opacity: .85;
}

.oval09 {
    bottom: 200px;
    right: 30px;
    height: 383px;
    width: 383px;
}

.oval09.pos2 {
    top: auto;
    bottom: 30px;
    left: 25%;
    right: auto;
}

.oval09.pos2 .oval-img {
    background-size: contain;
}

.oval09.pos3 {
    right: 25%;
}

.oval09.pos3 .oval-img {
    background-size: contain;
}

.oval10 {
    top: 180px;
    right: 0;
    height: 163px;
    width: 163px;
}

.oval11 {
    bottom: -50px;
    left: -230px;
    height: 549px;
    width: 549px;
}

.oval12 {
    top: -135px;
    left: 70px;
    height: 186px;
    width: 186px;
}

.oval13 {
    right: 25px;
    bottom: 200px;
    height: 132px;
    width: 132px;
}

.oval14 {
    left: 36%;
    top: 50px;
    height: 184px;
    width: 184px;
}

.oval15 {
    right: -240px;
    top: 20px;
    height: 383px;
    width: 383px;
}

.oval16 {
    left: 75px;
    top: -70px;
    height: 97px;
    width: 97px;
}

.oval17 {
    left: -127px;
    top: -100px;
    height: 308px;
    width: 308px;
}

.oval18 {
    right: 0;
    top: -50px;
    height: 163px;
    width: 163px;
    opacity: 0.8;
}

.oval19 {
    right: 20px;
    bottom: 40px;
    height: 383px;
    width: 383px;
    opacity: 0.7;
}

.oval20 {
    right: -225px;
    bottom: 40px;
    height: 530px;
    width: 530px;
    opacity: 0.3;
}

.oval21 {
    left: 225px;
    bottom: -90px;
    height: 103px;
    width: 103px;
    z-index: 2;
}

.oval22 {
    right: -75px;
    bottom: -60px;
    height: 330px;
    width: 330px;
    z-index: 2;
}

.oval23 {
    left: -30px;
    top: -120px;
    height: 583px;
    width: 583px;
    opacity: 0.5;
}

.oval24 {
    left: -165px;
    bottom: 200px;
}

.oval25 {
    left: -250px;
    bottom: -120px;
    height: 245px;
    width: 245px;
    opacity: 0.7;
}

.oval26 {
    right: -250px;
    top: -350px;
    height: 583px;
    width: 583px;
    opacity: 0.5;
}

.oval27 {
    left: -125px;
    bottom: 80px;
}

.oval28 {
    left: -90px;
    bottom: 70px;
    height: 245px;
    width: 245px;
    opacity: 0.7;
}

.oval29 {
    right: -20px;
    bottom: 300px;
    height: 80px;
    width: 80px;
    opacity: 0.7;
}

.oval30 {
    left: 20px;
    top: 80px;
    height: 390px;
    width: 390px;
}

.oval31 {
    left: 46%;
    top: 80px;
    height: 105px;
    width: 105px;
}

.oval32 {
    left: 45%;
    top: 25px;
    height: 290px;
    width: 290px;
}

.oval33 {
    left: 13%;
    top: 124px;
    height: 96px;
    width: 96px;
}

.oval34 {
    left: 38%;
    bottom: -25px;
    height: 360px;
    width: 363px;
    z-index: -1;
}

.oval35 {
    right: -190px;
    bottom: -200px;
    height: 530px;
    width: 530px;
    opacity: 0.7;
}

.oval36 {
    right: -60px;
    bottom: -30px;
    height: 245px;
    width: 245px;
    opacity: 0.8;
}

.oval37 {
    left: 205px;
    bottom: -20px;
}

.oval38 {
    left: 45px;
    bottom: -10px;
    height: 245px;
    width: 245px;
    opacity: 0.7;
}

.oval39 {
    left: -330px;
    top: 25%;
    height: 660px;
    width: 660px;
}

.oval40 {
    left: -240px;
    top: 30%;
    height: 494px;
    width: 494px;
}

.oval41 {
    right: -330px;
    top: 20%;
    height: 790px;
    width: 790px;
}

.oval42 {
    left: 5%;
    bottom: -100px;
    height: 330px;
    width: 330px;
}

.oval43 {
    right: 5%;
    top: -150px;
    height: 290px;
    width: 290px;
}

.oval44 {
    left: 5%;
    top: -150px;
    height: 450px;
    width: 450px;
}

.oval45 {
    right: 5%;
    top: -150px;
    height: 190px;
    width: 190px;
}

.oval46 {
    left: -80px;
    top: 100px;
    height: 200px;
    width: 200px;
}

.oval47 {
    right: -150px;
    top: 135px;
    height: 312px;
    width: 312px;
}

.oval48 {
    right: -86px;
    top: 90px;
    height: 309px;
    width: 311px;
}

.oval49 {
    left: -65px;
    top: -65px;
    height: 494px;
    width: 494px;
}

.oval50 {
    right: -95px;
    top: -135px;
    height: 260px;
    width: 260px;
}

.oval51 {
    right: -30px;
    top: 150px;
}

.oval51 .red-oval {
    height: 67px;
    width: 67px;
}

.oval52 {
    left: -127px;
    top: -180px;
    width: 308px;
    height: 308px;
    opacity: .8;
}

@media (max-width: 991px) {
    .parallax-content {
        display: none;
    }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* SIMPLE ARTICLE */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.simple-article {
    color: #4A4A4A;
    font-size: .933rem;
    letter-spacing: 0.1px;
    margin: 20px 0;
}

.simple-article h1, .simple-article h2, .simple-article h3, .simple-article h4, .simple-article h5, .simple-article h6 {
    margin-bottom: .5rem;
}

.simple-article > * {
    margin-bottom: 1.5rem;
}

.simple-article > * *:last-child {
    margin-bottom: 0;
}

.simple-article strong {
    font-weight: 700;
}

.simple-article img {
    max-width: 100%;
    height: auto;
    display: block;
}

.simple-article ol {
    counter-reset: step-counter;
    list-style-type: none;
}

.simple-article ol ol {
    margin-left: .9rem;
}

.simple-article ol ol li {
    padding-left: 0;
    margin-bottom: .5rem;
}

.simple-article ol ol li:before {
    counter-increment: step-counter;
    content: counters(step-counter, ".") ".";
    color: red;
    font-size: 12px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0.18px;
    margin-right: 15px;
}

.simple-article ul ul {
    margin-left: .9rem;
}

.simple-article ul li {
    margin-bottom: .5rem;
}

.simple-article ul li:before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: red;
    border-radius: 100%;
    display: inline-block;
    margin: 0 10px 0 0;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.simple-article ul li:last-child,
.simple-article ul ol:last-child {
    margin-bottom: 0;
}

.simple-article ul ol,
.simple-article ol ol,
.simple-article ol ul {
    margin-top: .25rem;
}

.simple-article i,
.simple-article em,
.simple-article cite,
.simple-article address {
    font-style: italic;
}

.simple-article blockquote {
    position: relative;
    padding: .5rem 0 .5rem 1.2rem;
    margin-left: 1.2rem;
}

.simple-article blockquote:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: currentColor;
}

.simple-article blockquote cite {
    font-size: .9em;
}

.simple-article dt {
    color: #000000;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.3em;
    margin-bottom: .5em;
}

.simple-article dd {
    margin-bottom: 1em;
}

.simple-article abbr {
    text-decoration: none;
}

.simple-article code,
.simple-article kbd {
    background-color: #3E3E3E;
    padding: 0.125em 0.25em;
    font-family: monospace;
    color: #fff;
}

.simple-article ins {
    text-decoration: underline;
}

.simple-article pre {
    border: 1px solid #A8A8A8;
    padding: 1.75em;
    font-family: monospace;
}

.simple-article sub,
.simple-article sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

.simple-article sup {
    top: -0.5em;
}

.simple-article sub {
    bottom: -0.25em;
}

.simple-article table {
    width: 100%;
    border-collapse: collapse;
}

.simple-article td,
.simple-article th {
    border: 1px solid #3E3E3E;
    padding: 10px;
}

.simple-article tr:nth-child(even) {
    background-color: #a6a6a6;
}

.simple-article tr:nth-child(odd) {
    background-color: #b3b3b3;
}

.simple-article th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #999999;
    color: #fff;
}

.simple-article a {
    color: #000000;
}

.simple-article p span {
    color: #0070c9;
}

@media (min-width: 992px) {
    .simple-article a:hover {
        text-decoration: underline;
    }
}

.simple-article br {
    line-height: 1em;
}

.simple-article b {
    font-weight: 500;
}

@media (max-width: 767px) {
    .simple-article ul li:before {
        margin-right: 10px;
    }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* BLOCKS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.section-anchor {
    position: absolute;
    top: -95px;
}

/*page pagination*/
.page-pag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    color: #616161;
    font-size: .8rem;
    letter-spacing: -0.04px;
    line-height: 1.3;
    margin: 20px 0 40px;
}

.items-per-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.items-per-page .SumoSelect {
    width: 45px;
    color: #C8102E;
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    margin-left: 5px;
    margin-top: 1px;
}

.items-per-page .SumoSelect > .CaptionCont {
    border: none;
    background-color: transparent;
}

.items-per-page .SumoSelect > .CaptionCont > span {
    padding-right: 15px;
    padding-left: 5px;
    line-height: 20px;
    cursor: pointer;
}

.items-per-page .SumoSelect > .CaptionCont > label,
.items-per-page .SumoSelect > .CaptionCont > .label {
    width: 15px;
    cursor: pointer;
}

.items-per-page .SumoSelect > .CaptionCont > label > i,
.items-per-page .SumoSelect > .CaptionCont > .label > i {
    background-image: none;
    width: 16px;
    height: 16px;
    opacity: 1;
}

.items-per-page .SumoSelect > .CaptionCont > label > i:before,
.items-per-page .SumoSelect > .CaptionCont > .label > i:before {
    position: absolute;
    content: '';
    top: 2px;
    left: 3px;
    width: 8px;
    height: 8px;
    border: 2px solid #C8102E;
    border-right: none;
    border-bottom: none;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.items-per-page .SumoSelect > .optWrapper > .options li.opt {
    padding: 5px;
}

.arrows-pag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.arrows-pag .arrows {
    width: 88px;
    height: 44px;
    margin-left: 20px;
}

.arrows-pag .arrow {
    display: block;
    position: relative;
    float: left;
    width: 50%;
    height: 100%;
    cursor: pointer;
    background-color: #1F1F1F;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

@media (min-width: 992px) {
    .arrows-pag .arrow:hover {
        opacity: .8;
    }
}

.arrows-pag .arrow:before {
    position: absolute;
    content: '';
    top: 17px;
    left: 15px;
    width: 10px;
    height: 10px;
    border: 2px solid #FFFFFF;
    border-right: none;
    border-bottom: none;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.arrows-pag .arrow.disabled {
    background-color: #656565;
    cursor: default;
}

.arrows-pag .arrow.disabled:hover {
    opacity: 1;
}

.arrows-pag .arrow-left {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.arrows-pag .arrow-right:before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

/*social*/
.social .title {
    color: #FFFFFF;
    font-family: "Work Sans", sans-serif;
    font-size: .7rem;
    line-height: 1.7;
    text-align: center;
}

.social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px 0;
}

.s-link {
    display: block;
    position: relative;
    height: 37px;
    width: 37px;
    border-radius: 100%;
    opacity: 0.33;
    background-color: #fff;
    padding: 7px;
    margin: 5px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.s-link:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    border-radius: 100%;
    background: linear-gradient(135deg, #D81531 30%, #DD2078 100%);
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

@media (min-width: 992px) {
    .s-link:hover {
        opacity: 1;
    }

    .s-link:hover:before {
        opacity: 1;
    }
}

.s-link img {
    max-height: 100%;
    position: relative;
    z-index: 1;
}

/*what new*/
.s-what-new {
    padding: 15px 0;
}

.what-new {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    min-height: 275px;
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    background-color: #FFFFFF;
    border: 5px solid #ffffff;
}

.what-new .img-slider {
    width: 50%;
}

.what-new .img-slider .swiper-entry,
.what-new .img-slider .swiper-container,
.what-new .img-slider .swiper-wrapper,
.what-new .img-slider .swiper-slide {
    height: 100%;
}

.what-new .img-slider .img-link {
    display: block;
    height: 100%;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.what-new .img-slider .img-link:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media (min-width: 992px) {
    .what-new .img-slider .img-link:hover {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    .what-new .img-slider .img-link:hover:before {
        opacity: .2;
    }
}

.what-new-slider {
    width: 50%;
    position: relative;
}

.what-new-slider .wn-text {
    position: absolute;
    top: 0;
    left: 0;
    height: 37px;
    line-height: 37px;
    width: 102px;
    color: #FFFFFF;
    font-size: .933rem;
    font-weight: 500;
    text-align: center;
    background-color: #E3009B;
    z-index: 5;
}

.what-new-slider .swiper-slide-cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #161616;
    font-family: "Poppins", sans-serif;
    font-size: 1.667rem;
    font-weight: 700;
    line-height: 1.32;
    padding: 55px 30px 65px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 275px;
}

.what-new-slider .swiper-slide-cont .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #D81531;
}

.what-new-slider .swiper-slide-cont p {
    max-height: 99px;
    overflow: hidden;
}

/*what we do*/
.s-what-we-do .circle {
    position: absolute;
    top: 65px;
    left: 50%;
    height: 481px;
    width: 481px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 1.5px solid #C2C6D8;
    border-radius: 100%;
    opacity: 0.3;
    background-color: transparent;
}

.what-we-do-left {
    position: relative;
    padding: 110px 15px;
}

.what-we-do-left:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 0;
    width: 50vw;
    background: linear-gradient(135deg, #D81531 50%, #DD2078 100%);
    z-index: -1;
}

.what-we-do-left .support-text {
    max-width: 460px;
    color: #FFFFFF;
}

.what-we-do-left .text {
    max-width: 435px;
    font-size: 1.067rem;
    margin: 30px 0 20px;
}

.what-we-do-right {
    padding: 120px 15px 30px 155px;
}

.what-we-do-right .item {
    position: relative;
    max-width: 380px;
    padding: 5px 25px;
}

.what-we-do-right .item:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 36px;
    width: 36px;
    border: 1.5px solid #6771AF;
    border-radius: 100%;
    opacity: 0.3;
}

.what-we-do-right .item:nth-child(2) {
    margin: 40px 0 30px 65px;
}

.what-we-do-right .title {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 1.466rem;
    font-weight: 700;
    letter-spacing: 0.44px;
    line-height: 1.363;
}

.what-we-do-right .text {
    font-size: .933rem;
    line-height: 1.64;
    height: 66px;
    overflow-y: hidden;
}

/*how it work*/
.s-how-it-work {
    padding: 50px 0;
}

.s-how-it-work .support-text {
    margin-bottom: 15px;
}

.how-it-work {
    position: relative;
    height: 100vh;
    width: 100vh;
    max-height: 977px;
    min-height: 800px;
    max-width: 977px;
    min-width: 800px;
    margin: 0 auto;
}

.how-it-work .center-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 180px;
    right: 180px;
    bottom: 180px;
    left: 180px;
    border: 1.5px solid rgba(103, 113, 175, 0.3);
    border-radius: 100%;
    padding: 60px 45px 30px;
}

.how-it-work .center-item .title {
    max-width: 410px;
    margin: 0 auto 20px;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 2.666rem;
    font-weight: 700;
    letter-spacing: 0.47px;
    line-height: 1.25;
}

.how-it-work .ig-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    margin: 15px 0;
}

.how-it-work .ig-item .icon {
    width: 125px;
    height: 125px;
    margin: 0 auto;
}

.how-it-work .ig-item .icon img {
    width: 100%;
    height: 100%;
}

.how-it-work .ig-item .title {
    color: #E90A3F;
    font-family: "Poppins", sans-serif;
    font-size: 1.466rem;
    font-weight: 700;
    letter-spacing: 0.44px;
    line-height: 1.36;
    margin: 20px 0 15px;
}

.how-it-work .ig-item .title span {
    display: inline-block;
    vertical-align: middle;
}

.how-it-work .ig-item .title .number {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: .866rem;
    font-weight: 700;
    letter-spacing: 0.26px;
    text-align: center;
    border-radius: 30px;
    background-color: #E90A3F;
    margin-right: 5px;
}

.how-it-work .ig-item-1 {
    width: 380px;
    top: 0;
    left: 50%;
    margin-left: -190px;
}

.how-it-work .ig-item-1 .icon {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 10px;
}

.how-it-work .ig-item-2 {
    width: 290px;
    top: 38%;
    right: 2%;
}

.how-it-work .ig-item-3 {
    width: 380px;
    bottom: 0;
    left: 50%;
    margin-left: -190px;
}

.how-it-work .ig-item-4 {
    width: 290px;
    top: 38%;
    left: 2%;
}

/*s news*/
.s-news {
    padding: 35px 0 15px;
}

.s-news .subtitle {
    max-width: 540px;
    margin: 5px auto 35px;
}

.s-news-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.s-news-line .title {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1.31px;
    text-transform: uppercase;
}

.s-media-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -20px 10px;
}

.s-media-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 20px;
    width: calc(33.333% - 40px);
    background-color: #fff;
    padding: 15px 12px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media (min-width: 992px) {
    .s-media-list .item:hover {
        -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    }
}

.s-media-list .icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 38px;
    margin-right: 6px;
}

.s-media-list .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px 0;
}

.s-media-list .date {
    color: #282828;
    font-size: .933rem;
}

.s-media-list .title {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.61;
}

.s-news-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.s-news-list .item {
    margin: 20px;
    width: calc(33.333% - 40px);
    background-color: #fff;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media (min-width: 992px) {
    .s-news-list .item:hover {
        -webkit-transform: translateY(-7px);
        transform: translateY(-7px);
    }

    .s-news-list .item:hover .img {
        -webkit-filter: grayscale(1);
        filter: grayscale(1);
    }
}

.s-news-list .item .img {
    padding-bottom: 78%;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.s-news-list .item-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 34px 24px;
}

.s-news-list .item .cat {
    position: absolute;
    top: -18px;
    left: 0;
    height: 37px;
    width: 105px;
    color: #FFFFFF;
    font-size: .933rem;
    font-weight: 500;
    line-height: 37px;
    text-align: center;
    padding: 0 5px;
}

.s-news-list .item .title {
    color: #000000;
    font-family: "Montserrat", sans-serif;
    font-size: 1.466rem;
    font-weight: 500;
    line-height: 1.545;
}

/*s member portal*/
.s-member-portal {
    z-index: 1;
}

.mp-text {
    position: relative;
    padding: 65px 15px 65px 85px;
    height: 100%;
}

.mp-text:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: linear-gradient(135deg, #D81531 30%, #DD2078 100%);
    z-index: -1;
}

.mp-text .subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.333rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 15px 0;
}

.mp-text ul {
    list-style: disc inside;
    font-weight: 500;
}

.mp-text ul li {
    margin: 1px 0;
}

.mp-text .btn {
    margin-top: 20px;
}

.mp-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 60px 0 30px;
    width: 50vw;
    height: 100%;
}

.mp-img img {
    max-height: 565px;
}

/*s Artists and Repertoire*/
.s-music {
    background-repeat: no-repeat;
    background-position: left bottom;
}

.s-music.style01 {
    padding-top: 70px;
    margin-top: -185px;
}

.s-music.style02 .s-music-text {
    margin-top: 60px;
}

.s-music-text {
    position: relative;
    margin-left: -15px;
    margin-top: 115px;
    padding: 180px 0 140px;
}

.s-music-text .support-text {
    position: absolute;
    top: 0px;
    right: -120px;
    opacity: 1;
    color: #5e5e5e;
    font-size: 205px;
    letter-spacing: 2.38px;
    text-transform: none;
}

.s-music-text .h2 {
    margin-left: -66px;
}

.s-music-text .h2 span {
    display: block;
}

.s-music-text .h2 .bottom {
    margin-left: 33px;
}

.s-music-text .text {
    margin: 15px 0 20px;
    max-width: 500px;
}

.s-music-text .text a {
    font-weight: 700;
    color: #6A71B5;
}

@media (min-width: 992px) {
    .s-music-text .text a:hover {
        text-decoration: underline;
    }
}

/*member faq*/
.s-faq {
    padding: 75px 0 45px;
}

.s-faq .faq-tabs {
    margin-left: 40px;
}

.s-faq .faq-tabs__right {
    position: relative;
    border-left: 2px solid rgba(194, 198, 216, 0.3);
    padding: 13px 0 33px 70px;
    margin-left: 60px;
}

.s-faq .faq-tabs__right:before, .s-faq .faq-tabs__right:after {
    position: absolute;
    content: '';
    left: 0;
    width: 100vw;
    height: 2px;
    background-color: rgba(194, 198, 216, 0.3);
}

.s-faq .faq-tabs__right:before {
    top: 0;
}

.s-faq .faq-tabs__right:after {
    bottom: 0;
}

.s-faq .faq-tabs__right .btn {
    margin-top: 25px;
}

.s-faq .faq-accordeon .acc-head {
    font-size: 1.113rem;
}

.s-faq .h2 {
    margin: 0 15px 30px 0;
}

/*FAQ*/
.faq-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
}

.faq-tabs__left {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 240px;
}

.faq-tabs__right {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.faq-tabs .faq-title {
    color: #161616;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(194, 198, 216, 0.3);
    padding-bottom: 5px;
}

.tabs-caption {
    color: #3C3C3C;
    font-family: "Poppins", sans-serif;
    font-size: .866rem;
    font-weight: 700;
    letter-spacing: 0.26px;
    line-height: 1.2;
    border-left: 1px solid #979797;
}

.tabs-caption li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 45px;
    padding: 5px 15px;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.tabs-caption li:before {
    position: absolute;
    content: '';
    left: -2px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: transparent;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.tabs-caption li button {
    display: block;
    text-align: left;
}

@media (min-width: 992px) {
    .tabs-caption li:hover {
        color: #E90A3F;
    }
}

.tabs-caption li.active {
    color: #E90A3F;
}

.tabs-caption li.active:before {
    background-color: #FF006A;
}

.tabs-content {
    display: none;
}

.tabs-content.active {
    display: block;
}

.faq-accordeon .acc-item {
    font-size: 1rem;
    border-bottom: 2px solid rgba(194, 198, 216, 0.3);
}

.faq-accordeon .acc-head {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 60px;
    color: #1D1D1D;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.5;
    padding: 5px 15px 5px 30px;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

@media (min-width: 992px) {
    .faq-accordeon .acc-head:hover {
        background-color: #fddbe3;
    }
}

.faq-accordeon .acc-head.active .plus {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.faq-accordeon .acc-head span {
    max-height: 44px;
    overflow: hidden;
}

.faq-accordeon .acc-head .plus {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 29px;
    width: 29px;
    font-family: Arial, Baskerville, monospace;
    font-size: 27px;
    color: #6A71B5;
    font-weight: 300;
    line-height: 27px;
    border: 2px solid #6A71B5;
    border-radius: 10em;
    margin-left: 15px;
    text-align: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.faq-accordeon .acc-body {
    display: none;
    color: #3C3C3C;
    line-height: 1.8;
    padding: 5px 15px 20px 34px;
}

/*faq main*/
.faq-main {
    padding: 100px 0 75px;
}

.faq-main .h1 {
    margin: 30px 0 25px;
}

.faq-main .h1 span {
    display: block;
    margin-left: 35px;
}

/*s resources center*/
.s-resources {
    background: linear-gradient(135deg, #D81531 30%, #DD2078 100%);
    padding: 60px 0 0;
}

.s-resources .subtitle {
    max-width: 500px;
    margin: 7px auto 37px;
}

.s-resource-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000000;
    font-size: .866rem;
    font-weight: 700;
    letter-spacing: 0.43px;
    line-height: 1.46;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255, 255, 255, 0.26);
    padding: 5px 0;
    margin-bottom: 5px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media (min-width: 992px) {
    .s-resource-item:hover {
        color: rgba(255, 255, 255, 0.3);
    }

    .s-resource-item:hover .arrow-btn {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.s-resource-item span:first-child {
    max-height: 54px;
    overflow: hidden;
}

.s-resource-item .arrow-btn {
    opacity: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}

.s-resources-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-top: 40px;
    padding: 25px 0 75px;
}

.s-resources-bottom:before {
    position: absolute;
    content: '';
    left: -50vw;
    right: -50vw;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .15);
}

.s-resources-bottom .text {
    position: relative;
    z-index: 1;
}

.s-resources-bottom .btn {
    margin-left: 25px;
}

/*s licensing benefits*/
.s-licensing-benefits {
    margin-top: -50px;
    z-index: 1;
}

.s-licensing-benefits .lb-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.s-licensing-benefits .lb-img img {
    max-height: 100%;
}

.s-licensing-benefits .mw1200 {
    position: relative;
    padding: 100px 0;
}

.s-licensing-benefits .mw1200:before, .s-licensing-benefits .mw1200:after {
    position: absolute;
    content: '';
    width: 100vw;
}

.s-licensing-benefits .mw1200:before {
    top: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(323.31deg, #D2D2D2 0%, #EDEDED 100%);
    z-index: -2;
}

.s-licensing-benefits .mw1200:after {
    left: 0;
    bottom: 0;
    height: 42%;
    opacity: .2;
    background: linear-gradient(179.03deg, rgba(238, 238, 238, 0) 0%, #6A71B5 100%);
    z-index: -1;
}

.licensing-benefits {
    position: relative;
    height: 100%;
    padding: 35px 0 50px 75px;
}

.licensing-benefits .h2 {
    margin-bottom: 10px;
}

.licensing-benefits-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.lb-item {
    width: 50%;
    cursor: pointer;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    margin: 20px 0;
    padding-right: 50px;
}

@media (min-width: 992px) {
    .lb-item:hover {
        opacity: 1;
    }

    .lb-item:hover .title, .lb-item:hover .small-desc {
        opacity: .42;
    }
}

.lb-item .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 52px;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 1.066rem;
    font-weight: 700;
    letter-spacing: 0.32px;
    line-height: 1.687;
    overflow: hidden;
}

.lb-item .small-desc {
    height: 66px;
    color: #282828;
    font-size: .933rem;
    line-height: 1.64;
    overflow: hidden;
}

/*s testimonials*/
.s-testimonials__inner {
    position: relative;
}

.s-testimonials__inner:before {
    position: absolute;
    content: '';
    top: 0;
    right: 50px;
    bottom: 0;
    width: 100vw;
    background-color: #1D1D1D;
    z-index: -1;
}

.s-testimonials .h2 {
    position: absolute;
    top: 185px;
    left: 0;
    color: #6A71B5;
    font-family: "Rubik", sans-serif;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: 1.09px;
    text-transform: uppercase;
}

.testimonial-slider {
    position: relative;
    padding-bottom: 120px;
}

.testimonial-slider:after {
    position: absolute;
    content: '';
    top: 10px;
    right: 65px;
    width: 550px;
    height: 550px;
    background: url("../img/oval-1.png") no-repeat center;
    background-size: 100% auto;
    opacity: .4;
}

.testimonial-slider .swiper-container-horizontal > .swiper-scrollbar {
    bottom: 10px;
    left: 0;
    right: 255px;
    width: auto;
}

.testimonial-slider .swiper-nav-container {
    width: auto;
    right: 170px;
    bottom: 4px;
}

.testimonial-slider .swiper-nav-container .swiper-pagination {
    color: #FFFFFF;
    letter-spacing: 0.3px;
    line-height: 1;
    text-align: right;
}

.testimonial-slider .swiper-button-prev.style02,
.testimonial-slider .swiper-button-next.style02 {
    top: auto;
    right: auto;
    margin: 0;
    bottom: -70px;
}

.testimonial-slider .swiper-button-prev.style02 {
    left: 0;
}

.testimonial-slider .swiper-button-next.style02 {
    left: 57px;
}

.testimonial-slider .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #FFFFFF;
    padding: 85px 0 60px;
}

.testimonial-slider .t-slider-text {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.6;
    padding: 155px 100px 0 0;
}

.testimonial-slider .t-slider-text .text {
    position: relative;
    padding-left: 70px;
}

.testimonial-slider .t-slider-text .text:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 28px;
    width: 38px;
    background: url("../img/quote.svg") no-repeat center;
    background-size: 100% auto;
}

.testimonial-slider .t-slider-text .name {
    font-family: "Poppins", sans-serif;
    font-size: 1.066rem;
    font-weight: 700;
    letter-spacing: 0.19px;
    margin: 65px 0 10px;
}

.testimonial-slider .t-slider-text .position {
    color: #818181;
    font-family: "Poppins", sans-serif;
    font-size: .933rem;
    letter-spacing: 0.28px;
}

.testimonial-slider .t-slider-media {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 33%;
}

.testimonial-slider .t-slider-media .open-popup {
    display: block;
}

.testimonial-slider .t-slider-media .img {
    padding-bottom: 125%;
}

/*s contact*/
.s-contact {
    padding: 70px 0 85px;
}

.s-contact-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.s-contact__left {
    padding-left: 130px;
    width: 50%;
}

.s-contact__right {
    width: 50%;
    padding-top: 45px;
}

.s-contact__right .checkbox {
    margin-bottom: 30px;
}

.s-contact .h2, .s-contact .contact-text-big {
    font-family: "Poppins", sans-serif;
    font-size: 3.333rem;
    font-weight: 700;
    letter-spacing: 0.58px;
    line-height: 1.1;
}

.s-contact .h2 {
    width: 100%;
    padding-left: 40px;
}

.contact-info {
    color: #2F2F2F;
    margin-top: 10px;
}

.contact-info a {
    color: #D81531;
}

@media (min-width: 992px) {
    .contact-info a:hover {
        text-decoration: underline;
    }
}

/*s camp*/
.s-camp {
    margin-bottom: 60px;
}

.s-camp .support-text {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.1;
    color: #F7F6F6;
    font-size: 13.66rem;
    letter-spacing: 2.38px;
    text-transform: none;
}

.camp-img {
    position: relative;
    height: 100%;
    padding: 60px;
}

.camp-img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: linear-gradient(135deg, #D81531 30%, #DD2078 100%);
    z-index: -1;
}

.camp-img .img {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 100%;
    z-index: 1;
}

.camp-text {
    font-size: .933rem;
    letter-spacing: 0.1px;
    line-height: 1.71;
    padding: 65px 0;
}

.camp-text .h2 {
    margin-bottom: 10px;
}

.camp-text .subtitle {
    font-weight: 500;
}

.camp-text .text {
    margin-bottom: 20px;
}

.camp-text .small-title {
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.camp-text ul {
    list-style: disc inside;
    max-width: 450px;
    margin: 0 0 15px 15px;
}

.camp-text .btn-secondary {
    margin-left: 15px;
}

/*s houses*/
.s-houses__inner {
    position: relative;
    padding: 55px 85px 245px 0;
}

.s-houses__inner:before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    background: linear-gradient(323.31deg, #D2D2D2 0%, #EDEDED 100%);
    z-index: 1;
}

.s-houses__inner:after {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    opacity: 0.4;
    background: linear-gradient(179.03deg, rgba(238, 238, 238, 0) 0%, #6A71B5 100%);
    z-index: 2;
}

.s-houses__inner > * {
    position: relative;
    z-index: 3;
}

.s-houses__inner > .support-text {
    position: absolute;
    top: 75px;
    right: 50px;
    color: #FFFFFF;
    opacity: .4;
}

.s-houses__inner .t-payable {
    color: #000000;
    font-size: .866rem;
}

.s-houses .h2 {
    margin-bottom: 10px;
}

.s-houses .subtitle {
    max-width: 700px;
    color: #525252;
    margin-bottom: 30px;
}

.sing-up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000000;
    font-size: .933rem;
    font-weight: 700;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1;
}

.sing-up .btn {
    margin-left: 10px;
}

.house-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 55px;
}

.house-item:last-child {
    margin-bottom: 15px;
}

.house-slider {
    width: 500px;
}

.house-slider .house-img {
    padding-bottom: 64%;
    width: 100%;
}

.house-slider .swiper-nav-container .swiper-pagination {
    color: #767676;
    background: #161616;
}

.house-slider .swiper-nav-container .swiper-pagination .swiper-pagination-current {
    font-weight: 700;
}

.house-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    padding: 25px 30px 30px;
}

.house-content:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 15px;
    left: 0;
    background-color: rgba(250, 250, 250, 0.8);
    z-index: -1;
}

.house-content .text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    color: #4C4C4C;
    font-size: .933rem;
    letter-spacing: 0.1px;
    line-height: 1.5;
    margin: 15px 0;
}

.house-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.house-buttons .house-btn {
    width: auto;
    position: relative;
    color: #6A71B5;
    font-size: .933rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.14;
    text-transform: uppercase;
    border-bottom: 2px solid #6A71B5;
    margin-right: 15px;
    -webkit-transition: border-bottom-color .2s ease;
    transition: border-bottom-color .2s ease;
    cursor: pointer;
}

@media (min-width: 992px) {
    .house-buttons .house-btn:hover {
        border-bottom-color: transparent;
    }
}

.house-buttons .show-details {
    padding-right: 23px;
}

.house-buttons .show-details:after {
    position: absolute;
    content: '';
    right: 8px;
    top: 0;
    width: 8px;
    height: 8px;
    border: 2px solid transparent;
    border-left-color: #6A71B5;
    border-top-color: #6A71B5;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.house-details {
    display: none;
    position: relative;
    top: -15px;
    width: 100%;
    padding: 55px 30px 20px;
    background-color: rgba(250, 250, 250, 0.8);
}

.house-details-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.house-details-list .item {
    position: relative;
    width: 25%;
    color: #1D1D1D;
    font-size: .933rem;
    letter-spacing: 0.1px;
    line-height: 1.2;
    margin-bottom: 18px;
    padding: 6px 0 6px 38px;
}

.house-details-list .item:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 28px;
    width: 28px;
    border-radius: 28px;
    border: 2px solid #7AC563;
    background: url("../img/check-green.svg") no-repeat center;
    background-size: 14px auto;
}

.house-details-list .item.disable {
    color: #5e5e5e;
    opacity: 1;
}

.house-details-list .item.disable:before {
    border-color: #3C3C3C;
    background: url("../img/cancel.svg") no-repeat center;
    background-size: 10px auto;
}

.house-details-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: .866rem;
    font-weight: 600;
}

.house-details-links .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 40px;
}

.house-details-links .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.house-details-links .item img {
    margin-top: 15px;
}

.house-details-links .submit-link {
    color: #D81531;
    margin-left: 5px;
}

@media (min-width: 992px) {
    .house-details-links .submit-link:hover {
        text-decoration: underline;
    }
}

.house-details-links .download-link {
    color: #000000;
}

@media (min-width: 992px) {
    .house-details-links .download-link:hover {
        color: #D81531;
    }
}

.house-info {
    color: #222222;
    font-size: .933rem;
    line-height: 1.64;
    margin-top: 30px;
}

.house-info .h4 {
    margin-bottom: 15px;
}

.house-info ul {
    list-style: disc inside;
}

/*s songcamps dest*/
.s-songcamps-dest {
    margin-top: -200px;
    z-index: 4;
}

.songcamp-dest {
    position: relative;
    padding: 80px 160px 107px;
    background-color: #000000;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    margin-right: -17vw;
}

.songcamp-dest:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#000000), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.songcamp-dest__inner {
    position: relative;
    max-width: 550px;
    z-index: 1;
}

.songcamp-dest .h2 {
    margin-bottom: 20px;
}

/*s cecd*/
.s-cecd {
    padding: 70px 0;
}

.cecd-img {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 100%;
    overflow: hidden;
    z-index: 2;
}

.cecd-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    max-width: 485px;
    padding: 40px 0;
    margin-left: auto;
    color: #525252;
}

.cecd-text .h2 {
    position: relative;
    margin-bottom: 15px;
}

.cecd-text .h2:before {
    position: absolute;
    content: '';
    top: -38px;
    left: -30px;
    height: 64px;
    width: 64px;
    border-radius: 100%;
    border: 2px solid #6771AF;
    opacity: 0.3;
}

/*resource main*/
.resource-main {
    padding: 30px 0;
}

.resource-main .text {
    color: rgba(0, 0, 0, 0.6);
    font-size: .933rem;
    letter-spacing: 0.1px;
    line-height: 1.7;
    padding: 15px 60px;
}

.resource-main .text ul {
    color: #000000;
    list-style: disc inside;
    font-weight: 700;
}

.page-video {
    position: relative;
    padding-bottom: 55%;
}

.page-video .open-popup {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

@media (min-width: 992px) {
    .page-video .open-popup:hover {
        background-color: rgba(0, 0, 0, 0.4);
    }

    .page-video .open-popup:hover .play-btn {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

.page-video .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 90px;
    width: 90px;
    margin-top: -45px;
    margin-left: -45px;
    border: 1px solid #FFFFFF;
    border-radius: 90px;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

.page-video .play-btn:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    top: 26px;
    left: 33px;
    border-width: 18px 29px;
    border-style: solid;
    border-color: transparent;
    border-left-color: #FFFFFF;
}

/*side scroll*/
.side-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.side-scroll .h2 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 450px;
    margin-bottom: 50px;
}

.side-scroll-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: calc(100vh - 95px);
    color: #FFFFFF;
    padding: 100px 60px 40px 80px;
}

.side-scroll-inner.style02 {
    color: #282828;
}

.side-scroll-inner.style02:before {
    background: #FFFFFF;
}

.side-scroll-inner.style02 .title {
    color: #E90A3F;
}

.side-scroll-inner:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D81531 40%, #DD2078 100%);
    z-index: -1;
}

.side-scroll-inner:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    margin-top: -1px;
    width: 5000px;
    height: 2px;
    background-color: #E029A9;
}

.side-scroll-inner .curve-line {
    position: absolute;
    top: 50%;
    margin-top: 2px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.side-scroll-inner .curve-line-1 {
    left: 0;
}

.side-scroll-inner .curve-line-2 {
    left: 50%;
}

.side-scroll-inner .item {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 350px;
    min-width: 350px;
    margin-left: 160px;
    z-index: 2;
}

.side-scroll-inner .title {
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 1.466rem;
    font-weight: 700;
    letter-spacing: 0.44px;
    line-height: 1.22;
    margin: 25px 0 10px;
}

.side-scroll-inner .title:before {
    position: absolute;
    content: '';
    top: -12px;
    left: -45px;
    height: 64px;
    width: 64px;
    border-radius: 64px;
    border: 2px solid #6771AF;
    opacity: 0.3;
    z-index: -1;
}

.side-scroll-inner .text {
    font-size: .933rem;
    line-height: 23px;
    margin-bottom: 15px;
}

.side-scroll-inner .text > * {
    margin: 0;
}

.side-scroll-inner .img {
    width: 100%;
    padding-bottom: 100%;
}

.side-scroll-inner .btn {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 15px;
}

/*s get licensed*/
.s-get-licensed {
    margin-top: 60px;
}

.s-get-licensed .mw1200 {
    position: relative;
    padding: 100px 0;
}

.s-get-licensed .mw1200:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    background-color: #EDEDED;
}

.get-licensed-left {
    padding-left: 70px;
}

.get-licensed-left .h4 {
    margin: 10px 0;
}

.get-licensed-left > .text {
    color: #1E1E1E;
}

.get-licensed-left .licensed-download-form {
    max-width: 400px;
    margin-top: 60px;
}

.get-licensed-left .ld-form-title {
    color: #545454;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.94px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.get-licensed-left .ld-form-item {
    position: relative;
    font-size: .933rem;
    border-bottom: 2px solid rgba(209, 209, 209, 0.5);
    padding: 5px 65px 5px 0;
    margin-bottom: 15px;
}

.get-licensed-left .ld-form-item .title {
    color: #000000;
    font-weight: 700;
    letter-spacing: 0.47px;
    line-height: 19px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.get-licensed-left .ld-form-item .desc {
    color: #282828;
}

.get-licensed-left .ld-form-item .download-link {
    position: absolute;
    top: -5px;
    right: 0;
    width: 42px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

@media (min-width: 992px) {
    .get-licensed-left .ld-form-item .download-link:hover {
        opacity: .7;
    }
}

.get-licensed-left .ld-form-questions {
    color: #4C4C4C;
    font-size: .933rem;
    letter-spacing: 0.1px;
    padding: 10px 0;
}

.get-licensed-left .ld-form-questions a {
    color: #6A71B5;
    font-weight: 700;
    text-decoration: underline;
}

@media (min-width: 992px) {
    .get-licensed-left .ld-form-questions a:hover {
        text-decoration: none;
    }
}

.get-licensed-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    height: 100%;
}

.gl-question {
    position: relative;
    height: 352px;
    width: 352px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 8px 50px 0 rgba(0, 0, 0, 0.11);
    box-shadow: 0 8px 50px 0 rgba(0, 0, 0, 0.11);
    border-radius: 100%;
    padding: 90px 30px 40px;
    z-index: 2;
}

.gl-question .text {
    margin: 10px 0;
}

.gl-video {
    position: absolute;
    right: -90px;
    top: -160px;
    height: 500px;
    width: 500px;
    background-color: #D8D8D8;
    border-radius: 500px;
    overflow: hidden;
    z-index: 1;
}

.gl-video video {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
}

/*s benefits*/
.s-benefits {
    margin-top: -60px;
    z-index: 2;
}

.s-benefits .benefits-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.s-benefits .benefits-img img {
    max-height: 100%;
}

.s-benefits .mw1200 {
    position: relative;
    z-index: 1;
}

.s-benefits .mw1200:before, .s-benefits .mw1200:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
}

.s-benefits .mw1200:before {
    opacity: .4;
    background: linear-gradient(179.03deg, rgba(238, 238, 238, 0) 0%, #6A71B5 100%);
    z-index: 2;
}

.s-benefits .mw1200:after {
    background-color: #fff;
    z-index: 1;
}

.s-benefits .mw1200 .parallax-content {
    z-index: 3;
}

.benefits-main {
    position: relative;
    padding: 60px 30px 110px 70px;
    z-index: 4;
}

.benefits-main .h2 {
    margin-bottom: 45px;
}

.benefits-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.benefits-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    color: #161616;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.333;
    padding: 0 50px 30px 0;
}

.benefits-list .icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 46px;
    margin-right: 20px;
}

.benefits-list .text {
    padding-top: 7px;
}

/*s governance*/
.s-governance {
    background-color: #161616;
    background-position: 13% center;
    background-repeat: no-repeat;
    padding: 175px 0 80px;
}

.s-governance .text {
    max-width: 420px;
    margin: 25px 0 15px;
}

.s-governance .btn-wrap .btn {
    margin: 20px 15px 0 0;
}

/*innovation*/
.s-innovation__inner {
    position: relative;
    padding: 80px 0 60px;
}

.s-innovation__inner:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    background-color: #1D1D1D;
    z-index: -1;
}

.innovation-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 100%;
    padding: 30px 0 30px 30px;
    z-index: 3;
}

.innovation-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 100%;
}

.innovation-text .text {
    margin: 15px 0 20px;
}

.innovation-text .btn-wrap .btn {
    margin: 0 10px 10px 0;
}

/*s careers*/
.s-careers {
    padding: 55px 0 45px;
}

.s-careers-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    height: 100%;
    padding: 0 0 30px 65px;
    z-index: 3;
}

.s-careers-text .support-text {
    color: #8e8e8e;
    /*margin: 0 0 -30px -65px;*/
}

.s-careers-text .text {
    margin: 15px 0 20px;
    max-width: 380px;
}

.s-careers-img {
    position: relative;
    width: 454px;
    height: 454px;
    border-radius: 100%;
    overflow: hidden;
    z-index: 3;
}

/*s reproduction rights*/
.s-reproduction-rights {
    background-color: #161616;
    padding: 125px 0 60px;
}

.s-reproduction-rights .h2 {
    margin-bottom: 15px;
}

.s-reproduction-rights .h2 + .subtitle {
    max-width: 720px;
    margin: 0 auto 35px;
}

.rr-text {
    padding: 20px 0;
}

.rr-text .h3 {
    color: #6A71B5;
    text-transform: uppercase;
}

.rr-text .subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 30px;
}

.rr-text .text {
    margin-bottom: 20px;
}

.rr-img {
    padding: 30px 0;
}

.rr-img img {
    display: inline-block;
}

.rr-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 330px;
    width: 100%;
    height: 55px;
    line-height: 1.357;
    color: #FFFFFF;
    font-size: .933rem;
    font-weight: 700;
    letter-spacing: 0.47px;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(209, 209, 209, 0.5);
    margin-bottom: 15px;
}

.rr-links a:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .rr-links a:hover {
        color: #D81531;
    }
}

.rr-links a span {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-right: 5px;
}

.rr-links a img {
    margin-right: -10px;
}

/*s reproduction rights license*/
.s-reproduction-rights-license {
    padding: 50px 0 60px;
}

.s-reproduction-rights-license .h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 100%;
    padding-bottom: 20px;
    z-index: 3;
}

.rr-license-links .title {
    color: #9B9B9B;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 0.94px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.rr-license-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 70px;
    max-width: 470px;
    width: 100%;
    color: #000000;
    font-size: .933rem;
    font-weight: 700;
    letter-spacing: 0.47px;
    line-height: 1.357;
    text-transform: uppercase;
    margin-top: 10px;
    border-bottom: 2px solid rgba(209, 209, 209, 0.5);
}

@media (min-width: 992px) {
    .rr-license-links a:hover span {
        opacity: .3;
    }

    .rr-license-links a:hover .arrow-btn {
        background-color: #161616;
    }

    .rr-license-links a:hover .arrow-btn svg {
        fill: #ffffff;
    }
}

.rr-license-links a span {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.rr-license-links a .arrow-btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 10px;
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
    background-image: none;
}

.rr-license-links a .arrow-btn svg {
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    fill: #161616;
}

/*ir how it work*/
.ir-how-it-work {
    z-index: 2;
}

.ir-how-it-work-text {
    position: relative;
    padding: 75px 0 80px 70px;
}

.ir-how-it-work-text:before {
    position: absolute;
    content: '';
    left: 0;
    top: 140px;
    bottom: 0;
    width: 100vw;
    opacity: 0.3;
    background: linear-gradient(179.03deg, rgba(238, 238, 238, 0) 0%, #6A71B5 100%);
    z-index: -1;
}

.ir-how-it-work-text .h2 {
    margin-bottom: 40px;
}

.ir-how-it-work-text .item {
    margin-bottom: 25px;
}

.ir-how-it-work-text .item:last-child {
    margin-bottom: 0;
}

.ir-how-it-work-text .item .item-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #161616;
    font-family: "Poppins", sans-serif;
    font-size: 1.066rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.ir-how-it-work-text .item .icon {
    margin-right: 12px;
}

.ir-how-it-work-text .item .text {
    color: #282828;
    font-size: .933rem;
    line-height: 1.64;
}

.ir-how-it-work-img {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 105%;
    z-index: 2;
}

.ir-how-it-work-img img {
    max-height: 100%;
}

/*ir faq*/
.s-ir-faq {
    padding: 55px 0;
}

.ir-faq-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 80px 70px;
}

.ir-faq-item.style01 {
    background: linear-gradient(135deg, #D81531 40%, #DD2078 100%);
}

.ir-faq-item.style02 {
    position: relative;
    background-color: #161616;
    overflow: hidden;
}

.ir-faq-item.style02:before, .ir-faq-item.style02:after {
    position: absolute;
    content: '';
    background-color: #000000;
    z-index: 1;
}

.ir-faq-item.style02:after {
    right: 148px;
    top: 148px;
    height: 146px;
    width: 146px;
}

.ir-faq-item.style02:before {
    left: 136px;
    bottom: 136px;
    height: 46px;
    width: 46px;
}

.ir-faq-item.style02 .h4, .ir-faq-item.style02 .text {
    position: relative;
    z-index: 2;
}

.ir-faq-item.style02 .img {
    position: absolute;
}

.ir-faq-item.style02 .img-1 {
    right: 0;
    top: 0;
    height: 148px;
    width: 148px;
}

.ir-faq-item.style02 .img-2 {
    left: 0;
    bottom: 0;
    height: 136px;
    width: 136px;
}

.ir-faq-item .h4 {
    margin-bottom: 5px;
}

/*socan awards*/
.sa-list {
    padding: 95px 40px 25px;
    border: 2px solid rgba(194, 198, 216, 0.3);
}

.sa-list .table-wrap {
    overflow-x: auto;
}

.sa-list table {
    width: 100%;
    min-width: 870px;
    border-collapse: collapse;
}

.sa-list table thead tr {
    border-bottom: 1px solid #979797;
}

.sa-list table tbody tr {
    border-bottom: 1px solid #C2C6D8;
}

.sa-list table th, .sa-list table td {
    vertical-align: middle;
    padding: 10px 20px;
}

.sa-list table th:first-child, .sa-list table td:first-child {
    width: 60px;
    padding-left: 0;
}

.sa-list table th {
    height: 31px;
    color: #6A71B5;
    font-size: .733rem;
    font-weight: 500;
    letter-spacing: 0.92px;
    text-transform: uppercase;
    text-align: left;
}

.sa-list table td {
    height: 100px;
    color: #000000;
    font-weight: 500;
    letter-spacing: 0.11px;
}

.sa-list table td:nth-child(4) {
    width: 50%;
    color: rgba(0, 0, 0, 0.6);
}

.sa-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background-color: #161616;
    padding: 35px 65px;
    margin-bottom: -55px;
    z-index: 1;
}

.sa-search > * {
    margin: 20px 10px;
}

.sa-search .search-wrap {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
}

.sa-search .search-wrap .text {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: #767676;
    font-size: .8rem;
    line-height: 1.3;
}

.sa-search .search-field {
    position: relative;
}

.sa-search .search {
    height: 35px;
    line-height: 35px;
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-size: 1.066rem;
    border-bottom: 1px solid #E0E0E0;
    padding-right: 30px;
}

.sa-search .search::-webkit-input-placeholder {
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-size: 1.066rem;
}

.sa-search .search:-ms-input-placeholder {
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-size: 1.066rem;
}

.sa-search .search::-ms-input-placeholder {
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-size: 1.066rem;
}

.sa-search .search::placeholder {
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-size: 1.066rem;
}

.sa-search .search-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    padding: 5px 3px;
}

.sa-search .select {
    position: relative;
}

.sa-search .select.size-1 {
    width: 130px;
}

.sa-search .select.size-2 {
    width: 210px;
}

.sa-search .select .title {
    position: absolute;
    top: -15px;
    color: #6A71B5;
    font-size: .733rem;
    font-weight: 500;
    letter-spacing: 0.92px;
    text-transform: uppercase;
}

.sa-search .select .SumoSelect {
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-size: 1.066rem;
}

.sa-search .select .SumoSelect > .CaptionCont {
    position: relative;
    border: none;
    border-bottom: 1px solid #E0E0E0;
    background-color: transparent;
}

.sa-search .select .SumoSelect > .CaptionCont > span {
    line-height: 35px;
    cursor: pointer;
}

.sa-search .select .SumoSelect > .CaptionCont > label,
.sa-search .select .SumoSelect > .CaptionCont > .label {
    cursor: pointer;
}

.sa-search .select .SumoSelect > .CaptionCont > label > i,
.sa-search .select .SumoSelect > .CaptionCont > .label > i {
    position: absolute;
    background-image: none;
    width: 10px;
    height: 10px;
    opacity: 1;
}

.sa-search .select .SumoSelect > .CaptionCont > label > i:before,
.sa-search .select .SumoSelect > .CaptionCont > .label > i:before {
    position: absolute;
    content: '';
    top: 3px;
    left: 0;
    right: 0;
    width: 0;
    border: 5px solid transparent;
    border-top-color: #ffffff;
}

.sa-search .select .SumoSelect > .optWrapper {
    border: none;
    background-color: #232323;
}

@media (min-width: 992px) {
    .sa-search .select .SumoSelect > .optWrapper > .options li.opt:hover {
        background-color: #3c3c3c;
    }
}

/*why socan*/
.s-why-socan {
    margin-top: -80px;
    background-color: #161616;
    padding: 130px 0 190px;
    overflow: hidden;
}

.s-why-socan .support-text {
    position: absolute;
    bottom: 50px;
    left: 10%;
    opacity: 0.03;
    color: #F7F6F6;
    font-size: 13.667rem;
    text-transform: none;
}

.s-why-socan > .img {
    position: absolute;
    height: 173px;
    width: 173px;
}

.s-why-socan > .img:after {
    position: absolute;
    content: '';
}

.s-why-socan > .img-1 {
    top: 27%;
    left: 0;
    opacity: .5;
}

.s-why-socan > .img-1:after {
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
}

.s-why-socan > .img-2 {
    bottom: 0;
    left: 44%;
}

.s-why-socan > .img-2:after {
    left: 100%;
    bottom: 0;
    height: 56px;
    width: 56px;
    background: linear-gradient(135deg, #D81531 30%, #DD2078 100%);
}

.s-why-socan .h2 {
    margin-top: 15px;
}

.s-why-socan .subtitle {
    max-width: 510px;
    font-size: 1.133rem;
    font-weight: 500;
    line-height: 1.47;
    margin: 35px 0 25px;
}

.s-why-socan .text .color-red {
    font-weight: 700;
}

.why-socan-list {
    color: #A3A3A3;
    font-family: "Poppins", sans-serif;
    font-size: .933rem;
    font-weight: 700;
    margin: 0 25px 0 50px;
}

.why-socan-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px;
}

.why-socan-list .item:last-child {
    margin-bottom: 0;
}

.why-socan-list .item .icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 30px;
    margin-right: 12px;
}

.why-socan-list .item .text {
    line-height: 1.4;
}

/*s passion*/
.s-passion {
    padding-bottom: 40px;
}

.s-passion .mw1200 {
    position: relative;
}

.s-passion .mw1200:before {
    position: absolute;
    content: '';
    left: 60px;
    top: 0;
    bottom: 0;
    width: 100vw;
    background: linear-gradient(323.31deg, #D2D2D2 0%, #EDEDED 100%);
}

.passion-img {
    position: absolute;
    right: -10px;
    bottom: -10px;
    height: 417px;
    width: 417px;
    border-radius: 417px;
    overflow: hidden;
}

.passion-text {
    position: relative;
    color: #3C3C3C;
    padding: 90px 0 40px 65px;
}

.passion-text .support-text {
    position: absolute;
    top: 60px;
    left: 65px;
    color: #F7F6F6;
    letter-spacing: 1.28px;
    z-index: 1;
}

.passion-text .h2 {
    position: relative;
    max-width: 375px;
    z-index: 2;
}

.passion-text .subtitle {
    max-width: 500px;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.388;
    margin: 15px 0 20px;
}

.passion-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 430px;
    margin: 10px 0;
}

.passion-logos .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 33.333%;
    padding: 12px 5px;
}

/*s opportunities*/
.s-opportunities {
    padding: 50px 0 60px;
}

.s-opportunities .subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.533rem;
    font-weight: 700;
    letter-spacing: 0.27px;
    line-height: 1.52;
    margin: 20px 0 25px;
}

/*governance*/
.directors .governance-list {
    padding: 10px 20px 50px;
}

.directors .governance-list:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: -20px;
    width: 100vw;
    background-color: #1D1D1D;
    z-index: -1;
}

.directors .governance-list .main-text .h2, .directors .governance-list .main-text .text {
    color: #ffffff;
}

.directors .governance-list .name {
    color: #ffffff;
}

.directors .governance-list .position {
    color: #8F8F8F;
}

.executive-team .governance-list {
    padding: 35px 20px 100px;
}

.executive-team .governance-list .main-text .h2 {
    color: #000000;
}

.executive-team .governance-list .main-text .text {
    color: #8F8F8F;
}

.executive-team .governance-list .name {
    color: #000000;
}

.executive-team .governance-list .position {
    color: #5F5F5F;
}

.governance-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.governance-list .main-text {
    width: 50%;
    padding: 50px 50px 30px 85px;
}

.governance-list .main-text .h2 {
    margin-bottom: 25px;
}

.governance-list .item {
    position: relative;
    width: 25%;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.governance-list .open-popup {
    cursor: pointer;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

@media (min-width: 992px) {
    .governance-list .open-popup:hover {
        opacity: .3;
    }
}

.governance-list .photo {
    display: inline-block;
    width: 225px;
    height: 225px;
    border-radius: 255px;
    overflow: hidden;
}

.governance-list .name {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.444;
    margin-bottom: 9px;
}

.governance-list .position {
    font-size: .733rem;
    letter-spacing: 0.55px;
    line-height: 1.454;
}

/*committees*/
.s-committees {
    background-color: #161616;
    padding: 60px 0 80px;
}

.s-committees .subtitle {
    max-width: 340px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.388;
    margin-top: 5px;
}

.committees {
    margin-top: 30px;
}

.committees .faq-tabs__left {
    width: 400px;
    padding-top: 40px;
}

.committees .faq-tabs__right .h4 {
    margin-bottom: 10px;
}

.committees .tabs-caption,
.committees .tabs-caption li button {
    color: #aaa9ad;
}

.committees .tabs-caption li.active,
.committees .tabs-caption li.active button {
    color: #D81531;
}

.committees .tabs-caption li.active:before {
    background-color: #ffffff;
}

/*s annual reports*/
.s-annual-reports {
    padding: 100px 0 135px;
}

.s-annual-reports:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.s-annual-reports .subtitle {
    max-width: 850px;
    margin: 20px auto 0;
    color: #3C3C3C;
}

.reports-slider {
    position: relative;
    margin-top: 35px;
}

.reports-slider .swiper-container:before, .reports-slider .swiper-container:after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 2;
}

.reports-slider .swiper-container:before {
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(225, 255, 255, 0)));
    background: linear-gradient(to right, #fff 0%, rgba(225, 255, 255, 0) 100%);
}

.reports-slider .swiper-container:after {
    right: 0;
    background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(225, 255, 255, 0)));
    background: linear-gradient(to left, #fff 0%, rgba(225, 255, 255, 0) 100%);
}

.reports-slider .swiper-container .swiper-wrapper {
    position: relative;
    z-index: 1;
}

.reports-slider .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 290px;
    color: #000000;
    font-family: "Poppins", sans-serif;
    padding: 120px 0;
}

.reports-slider .swiper-slide.swiper-slide-visible.style01 .slide-link {
    top: 0;
    opacity: 1;
}

.reports-slider .swiper-slide.swiper-slide-visible.style02 .slide-link {
    bottom: 0;
    opacity: 1;
}

.reports-slider .swiper-slide.style01 .slide-link {
    top: 15px;
}

.reports-slider .swiper-slide.style01 .slide-link:after {
    top: 100%;
    border-top: 8px solid #E4E5F3;
}

.reports-slider .swiper-slide.style02 .slide-link {
    bottom: 15px;
}

.reports-slider .swiper-slide.style02 .slide-link:after {
    bottom: 100%;
    border-bottom: 8px solid #E4E5F3;
}

.reports-slider .swiper-slide .year {
    width: 65px;
    font-size: .933rem;
    font-weight: 700;
    letter-spacing: 0.25px;
    line-height: 1;
    text-align: center;
}

.reports-slider .swiper-slide .line {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 1px;
    background-color: #C5C9CD;
}

.reports-slider .swiper-slide .line:after {
    position: absolute;
    content: '';
    left: 50%;
    top: -8px;
    margin-left: -9px;
    height: 18px;
    width: 18px;
    border: 2px solid #EAECED;
    border-radius: 17px;
    background-color: #D81531;
    z-index: 1;
}

.reports-slider .swiper-slide .slide-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 0;
    height: 90px;
    width: 225px;
    color: #000000;
    font-size: 1.066rem;
    font-weight: 500;
    letter-spacing: 1.14px;
    line-height: 1.25;
    text-transform: uppercase;
    background: url("../img/arrow-right-2.svg") no-repeat right 10px center;
    background-size: 25px auto;
    padding: 5px 50px 5px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    -webkit-transition: all .8s ease .8s;
    transition: all .8s ease .8s;
}

@media (min-width: 992px) {
    .reports-slider .swiper-slide .slide-link:hover span {
        color: #6A71B5;
    }
}

.reports-slider .swiper-slide .slide-link:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: -webkit-gradient(linear, right top, left top, from(#F0F0F0), to(#C5C9EF));
    background: linear-gradient(270deg, #F0F0F0 0%, #C5C9EF 100%);
    z-index: -1;
}

.reports-slider .swiper-slide .slide-link:after {
    position: absolute;
    content: '';
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

.reports-slider .swiper-slide .slide-link span {
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
}

.reports-slider .swiper-button-prev.style02,
.reports-slider .swiper-button-next.style02 {
    width: 77px;
    height: 77px;
    margin-top: -38px;
}

.reports-slider .swiper-button-prev.style02:before,
.reports-slider .swiper-button-next.style02:before {
    top: 28px;
    width: 20px;
    height: 20px;
}

.reports-slider .swiper-button-prev.style02 {
    left: 0;
}

.reports-slider .swiper-button-prev.style02:before {
    left: 32px;
}

.reports-slider .swiper-button-next.style02 {
    right: 0;
}

.reports-slider .swiper-button-next.style02:before {
    left: 25px;
}

/*media center*/
.media-center {
    padding: 60px 0 0;
}

.media-center__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 2;
}

.media-center .mc-title {
    color: #171717;
    font-family: "Poppins", sans-serif;
    font-size: 1.066rem;
    font-weight: 700;
    letter-spacing: 0.89px;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.mc-filters {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 270px;
}

.mc-filters .mc-title {
    position: relative;
    text-align: center;
}

.mc-filters .mc-title:before, .mc-filters .mc-title:after {
    position: absolute;
    content: '';
    top: 50%;
    height: 1px;
    width: 25%;
    background-color: #D8D8D8;
}

.mc-filters .mc-title:before {
    left: 0;
}

.mc-filters .mc-title:after {
    right: 0;
}

.mc-filters-list {
    padding: 10px 0 20px;
    font-size: .933rem;
}

.mc-filters-list > li {
    position: relative;
    border-bottom: 1px solid #E5E5E5;
    padding: 7px 0 7px 20px;
}

.mc-filters-list > li.active a {
    font-weight: 500;
    color: #000000;
}

.mc-filters-list > li > a {
    color: #666666;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 21px;
}

@media (min-width: 992px) {
    .mc-filters-list > li > a:hover {
        color: #000000;
    }
}

.mc-filters-list li.active a {
    font-weight: 500;
    color: #000000;
}

.mc-filters-list li.with-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.mc-filters-list li.with-dropdown ul {
    display: none;
    width: 100%;
    padding: 10px 0;
}

.mc-filters-list a {
    color: #9C9C9C;
}

@media (min-width: 992px) {
    .mc-filters-list a:hover {
        color: #000000;
    }
}

.mc-mobile-filters-select {
    display: none;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 0.26px;
    line-height: 1.2;
    padding: 10px 35px 10px 15px;
    border-bottom: 1px solid #D8D8D8;
}

.mc-mobile-filters-select:after {
    position: absolute;
    content: '';
    top: 17px;
    right: 17px;
    width: 5px;
    height: 5px;
    border: 5px solid transparent;
    border-top-color: #000000;
}

.mc-mobile-filters-select.active:after {
    top: 12px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mc-filters-toggle {
    position: absolute;
    top: 9px;
    left: 0;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}

@media (min-width: 992px) {
    .mc-filters-toggle:hover:before {
        border-left-color: #000000;
        border-top-color: #000000;
    }
}

.mc-filters-toggle:before {
    position: absolute;
    content: '';
    top: 5px;
    left: 3px;
    width: 5px;
    height: 5px;
    border: 1px solid transparent;
    border-left-color: #666666;
    border-top-color: #666666;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.mc-filters-toggle.active {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mc-list {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-right: 60px;
}

.mc-item-wrap {
    position: relative;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .mc-item-wrap:hover .mc-item {
        background-color: rgba(255, 255, 255, 0.25);
    }

    .mc-item-wrap:hover .mc-item > * {
        opacity: .25;
    }

    .mc-item-wrap:hover .mc-item .arrow-btn {
        opacity: 1;
    }
}

.mc-item-wrap:last-child {
    margin-bottom: 0;
}

.mc-item {
    display: block;
    position: relative;
    color: #4C4C4C;
    font-size: .933rem;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 150px 30px 35px;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.mc-item > * {
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.mc-item a {
    color: #4C4C4C;
}

.mc-item .arrow-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -27px;
    margin-left: -27px;
    opacity: 0;
}

.mc-item .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #282828;
    font-size: .933rem;
}

.mc-item .icon {
    width: 38px;
    margin-right: 7px;
}

.mc-item .icon img {
    width: 100%;
}

.mc-item .h3 {
    margin: 30px 0 20px;
}

.mc-item .small-desc {
    letter-spacing: 0.1px;
}

.mc-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.mc-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 34px;
    width: 34px;
    border: 2px solid #E8E8E8;
    border-radius: 34px;
    overflow: hidden;
    background-color: #E8E8E8;
    margin: 2px;
    padding: 7px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

@media (min-width: 992px) {
    .mc-links a:hover {
        background-color: transparent;
    }
}

.mc-links a img {
    width: 100%;
    opacity: .4;
}

/*article detail*/
.article-detail {
    padding-bottom: 50px;
}

.article-detail:before {
    position: absolute;
    content: '';
    top: 380px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F2F2F2;
    z-index: -1;
}

.article-detail-top {
    position: relative;
    border: 1px solid #C2C6D8;
    border-left: none;
    border-right: none;
}

.article-detail-top > * {
    position: relative;
    z-index: 3;
}

.article-detail-top .top-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: .933rem;
    padding: 7px 0;
}

.article-detail-top .mc-links {
    position: static;
}

.article-detail-top .caption {
    color: #8F8F8F;
    font-size: .866rem;
    padding: 12px 0 15px;
}

.simple-article-wrap {
    padding: 10px 60px;
}

.simple-article-wrap .title {
    font-size: .933rem;
    font-weight: 700;
    letter-spacing: 0.1px;
}

.simple-article-title {
    color: #000000;
    font-size: .933rem;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.1px;
    margin: 10px 0 35px;
}

.article-detail-bottom {
    border-top: 1px solid #C2C6D8;
    padding-top: 20px;
}

.ad-download {
    position: relative;
    width: 240px;
    font-size: .933rem;
    border-bottom: 1px solid rgba(209, 209, 209, 0.5);
    padding: 5px 50px 5px 0;
    margin-bottom: 15px;
}

.ad-download .title {
    color: #000000;
    font-weight: 700;
    letter-spacing: 0.47px;
    line-height: 19px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.ad-download .desc {
    color: #282828;
}

.ad-download .download-link {
    position: absolute;
    top: -5px;
    right: 0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.media-contacts {
    color: #4A4A4A;
    font-size: .933rem;
    letter-spacing: 0.1px;
    max-width: 710px;
}

.media-contacts .title {
    font-weight: 700;
    color: #161616;
    margin-bottom: 3px;
}

.media-contacts .item:last-child {
    margin-top: 25px;
}

.media-contacts .item a {
    color: #6A71B5;
    font-weight: 700;
    text-decoration: underline;
}

@media (min-width: 992px) {
    .media-contacts .item a:hover {
        text-decoration: none;
    }
}

.media-contacts .item span {
    color: #D81531;
}

/*contact*/
.locations {
    position: relative;
    padding: 110px 0 75px;
}

.locations:before {
    position: absolute;
    content: '';
    top: 0;
    left: -15px;
    bottom: 0;
    width: 100vw;
    background-color: #161616;
}

.locations > .row {
    position: relative;
    z-index: 1;
}

.locations > .row .row [class*="col-"] {
    margin: 0 -1px -1px 0;
}

.locations .support-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    opacity: 0.06;
}

.locations-title {
    padding: 10px 15px 15px 80px;
}

.locations-title .h6 {
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.loc-link {
    display: block;
    position: relative;
    height: 100%;
    border: 1px solid #3C3C3C;
    padding: 45px 20px 20px 35px;
}

@media (min-width: 992px) {
    .loc-link:hover .city-img {
        opacity: .1;
    }

    .loc-link:hover .loc-link__bottom {
        color: #ffffff;
    }
}

.loc-link__cont {
    position: relative;
    z-index: 2;
}

.loc-link__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: #6A71B5;
    font-size: .933rem;
    font-weight: 500;
    letter-spacing: 0.25px;
    margin-top: 30px;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
}

.loc-link__bottom span {
    text-decoration: underline;
}

.loc-link .arrow-btn {
    border: 2px solid #6A71B5;
    margin-left: 5px;
}

.loc-link .city-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0;
    z-index: 1;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

.loc-link .address {
    color: #FFFFFF;
    font-size: 1.2rem;
    letter-spacing: 0.32px;
    line-height: 1.611;
    padding: 20px 10px;
}

/*search result*/
.search-result {
    padding: 15px 0 5px;
}

.mc-item.style02 {
    background-color: transparent;
    padding: 25px 25% 10px 0;
    border-bottom: 1px solid #FFFFFF;
}

@media (min-width: 992px) {
    .mc-item.style02:hover > * {
        opacity: .45;
    }

    .mc-item.style02:hover .arrow-btn {
        opacity: 1;
    }
}

.mc-item.style02 .cat {
    color: #6A71B5;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: 0.92px;
    line-height: 1.2;
    text-transform: uppercase;
}

.mc-item.style02 .h3 {
    margin: 5px 0 20px;
}

.mc-item.style02 .small-desc {
    color: #717171;
    font-size: .8rem;
    letter-spacing: 0.09px;
}

.mc-item.style02 .arrow-btn {
    top: 50%;
    left: auto;
    right: 0;
    margin-top: -27px;
    margin-left: 0;
}

/*repertoire search*/
.repertoire-search {
    border-radius: 6px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.rs-bar {
    font-family: "Rubik", sans-serif;
    padding: 30px 20px;
}

.rs-bar-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.rs-bar-bottom {
    padding-top: 20px;
}

.show-rs-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #888888;
    font-size: .8rem;
    letter-spacing: -0.04px;
}

.rs-search-icon {
    width: 23px;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    cursor: pointer;
    margin-right: 30px;
}

@media (min-width: 992px) {
    .rs-search-icon:hover {
        opacity: .7;
    }
}

.rs-search-field-wrap {
    display: none;
    position: relative;
    padding: 20px 0 0;
    margin-bottom: 20px;
}

.rs-search-field {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 520px;
}

.rs-search-field input {
    height: 40px;
    color: #434343;
    font-size: 1.2rem;
    line-height: 38px;
    border-bottom: 2px solid #C8102E;
    padding-right: 30px;
    padding-left: 10px;
}

.rs-search-field input::-webkit-input-placeholder {
    color: #434343;
    font-size: 1.2rem;
}

.rs-search-field input:-ms-input-placeholder {
    color: #434343;
    font-size: 1.2rem;
}

.rs-search-field input::-ms-input-placeholder {
    color: #434343;
    font-size: 1.2rem;
}

.rs-search-field input::placeholder {
    color: #434343;
    font-size: 1.2rem;
}

.rs-search-field .clear-search {
    position: absolute;
    right: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    text-decoration: none;
    text-align: center;
    color: #393939;
    font-size: 32px;
    line-height: 20px;
    opacity: 0.3;
    font-family: Arial, Baskerville, monospace;
    font-weight: 300;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    cursor: pointer;
}

@media (min-width: 992px) {
    .rs-search-field .clear-search:hover {
        opacity: 1;
    }
}

.rs-search-text-top, .rs-search-text-bottom {
    position: absolute;
    left: 0;
    right: 0;
}

.rs-search-text-top {
    top: 0;
    color: #767676;
    font-size: .933rem;
    line-height: 1.2;
}

.rs-search-text-bottom {
    top: 100%;
    color: #767676;
    font-size: .8rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.2;
}

.rs-search-text-right {
    display: inline-block;
    vertical-align: middle;
    color: #888888;
    font-size: .8rem;
    letter-spacing: -0.04px;
    margin-left: 20px;
}

.rs-toggle-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #393939;
    font-size: .8rem;
    font-weight: 500;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
    cursor: pointer;
}

.rs-toggle-filter.active .text-hide {
    display: block;
}

.rs-toggle-filter.active .text-show {
    display: none;
}

@media (min-width: 992px) {
    .rs-toggle-filter:hover {
        color: #C8102E;
    }
}

.rs-toggle-filter .icon {
    width: 13px;
    margin-left: 10px;
}

.rs-toggle-filter .text-hide {
    display: none;
}

.rs-bar-bottom {
    display: none;
}

.rs-select .text {
    color: #767676;
    font-size: .933rem;
}

.rs-table-wrap {
    color: #5D5D5D;
    font-size: .933rem;
    letter-spacing: -0.04px;
    line-height: 1.42;
}

.main-table {
    border-collapse: collapse;
    width: 100%;
    display: block;
}

.main-table > thead {
    display: block;
    background-color: #40484C;
}

.main-table > thead tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.main-table > thead th {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 70px;
    padding: 10px 20px;
    color: #FFFFFF;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    line-height: 1.066rem;
    vertical-align: middle;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
    text-align: left;
    cursor: pointer;
}

@media (min-width: 992px) {
    .main-table > thead th:hover {
        color: #d9d9d9;
    }
}

.main-table > thead th:nth-child(1) {
    width: 5%;
}

.main-table > thead th:nth-child(2) {
    width: 7%;
    padding-left: 0;
}

.main-table > thead th:nth-child(3) {
    width: 28%;
}

.main-table > thead th:nth-child(4) {
    width: 10%;
}

.main-table > thead th:nth-child(5) {
    width: 27%;
}

.main-table > thead th:nth-child(6) {
    width: 23%;
}

.main-table > thead th.tablesorter-headerAsc span:after {
    border-top-color: #C8102E;
}

.main-table > thead th.tablesorter-headerDesc span:before {
    border-bottom-color: #C8102E;
}

.main-table > thead th span {
    position: relative;
    padding-right: 25px;
}

.main-table > thead th span:before, .main-table > thead th span:after {
    position: absolute;
    content: '';
    right: 6px;
    width: 0;
    height: 0;
    border: 6px solid #FFFFFF;
    border-left-color: transparent;
    border-right-color: transparent;
}

.main-table > thead th span:before {
    top: -4px;
    border-top-color: transparent;
}

.main-table > thead th span:after {
    top: 11px;
    border-bottom-color: transparent;
}

.main-table > tbody {
    display: block;
}

.main-table > tbody > tr {
    border: 1px solid #EBEBEB;
}

.main-table > tbody > tr:last-child {
    border-bottom: none;
}

.sort-false {
    pointer-events: none;
}

.table-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.table-item > td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 70px;
    padding: 10px 20px;
}

.table-item > td.table-item-dropdown {
    display: none;
}

.table-item > td:nth-child(1) {
    width: 5%;
}

.table-item > td:nth-child(2) {
    width: 7%;
    padding-left: 0;
}

.table-item > td:nth-child(3) {
    width: 28%;
}

.table-item > td:nth-child(4) {
    width: 10%;
}

.table-item > td:nth-child(5) {
    width: 27%;
}

.table-item > td:nth-child(6) {
    width: 23%;
}

.td-shareholder {
    color: #C8102E;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
}

.table-item-arrow {
    position: relative;
    width: 20px;
    height: 20px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    cursor: pointer;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
}

.table-item-arrow.active {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.table-item-arrow:before {
    position: absolute;
    content: '';
    top: 7px;
    left: 7px;
    width: 10px;
    height: 10px;
    border: 2px solid #C8102E;
    border-right: none;
    border-bottom: none;
}

.table-item-dropdown {
    width: 100%;
    height: auto !important;
    -webkit-transition: none;
    transition: none;
}

.table-item-dropdown .sb-title {
    color: #101010;
    font-size: 1.066rem;
    font-weight: 500;
    line-height: 1.187;
    padding-left: 60px;
    margin-top: 5px;
}

.table-item-dropdown .sb-title-small {
    color: #101010;
    font-weight: 500;
    padding-left: 60px;
}

.table-item-dropdown .code {
    color: #292A2C;
    padding-left: 60px;
    margin: 15px 0;
}

.ie .sub-table tbody {
    background: #F6F6F6;
}

.sub-table {
    width: 100%;
    border-collapse: collapse;
    color: #5D5D5D;
    margin: 10px 0 20px;
}

.sub-table thead tr {
    border-bottom: 1px solid #9E9E9E;
}

.sub-table tbody {
    background: linear-gradient(306.59deg, #F6F6F6 0%, #FFFFFF 100%);
}

.sub-table th, .sub-table td {
    padding: 0 8px;
    vertical-align: middle;
}

.sub-table th {
    height: 30px;
    color: #767676;
    font-size: .8rem;
    line-height: 1.166;
    text-align: left;
}

.sub-table th:first-child {
    padding-left: 60px;
}

.sub-table td {
    height: 40px;
}

.sub-table td:nth-child(1) {
    text-align: right;
    width: 90px;
}

.sub-table td:nth-child(2) {
    width: 200px;
}

.sub-table td:nth-child(4) {
    width: 160px;
}

.sub-table td:nth-child(5) {
    width: 160px;
}

.sub-table td:nth-child(6) {
    width: 160px;
}

.sub-table .open-popup {
    color: #C8102E;
    cursor: pointer;
}

@media (min-width: 992px) {
    .sub-table .open-popup:hover {
        text-decoration: underline;
    }
}

.td-link {
    display: inline-block;
    float: right;
    margin-left: -5px;
    top: 10px;
    height: 26px;
    width: 26px;
    color: #FFFFFF;
    font-size: .8rem;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 100%;
    border: 2px solid #FFFFFF;
}

@media (min-width: 992px) {
    .td-link:hover {
        opacity: .7;
    }
}

.td-link.style00 {
    background-color: #2C5687;
}

.td-link.style01 {
    background-color: #36BA9D;
}

.td-link.style02 {
    background-color: #782C7D;
}

.td-link.style03 {
    background-color: #FFB728;
}

.td-link.style04 {
    background-color: #CA1B37;
}

.td-link.style05 {
    background-color: #FF6A00;
}

.td-link.style06 {
    background-color: #A9FF00;
}

.td-link.style07 {
    background-color: #00E7ff;
}

.td-link.style08 {
    background-color: #FF0099;
}

.td-link.style09 {
    background-color: #00B274;
}

.s-publisher .icon {
    display: inline-block;
    position: relative;
    width: 13px;
    height: 13px;
    border-radius: 0 0 0 5px;
    border: 1px solid #777777;
    border-top: none;
    border-right: none;
    bottom: 4px;
    margin: 0 5px;
}

.s-publisher .icon:after {
    position: absolute;
    content: '';
    bottom: -2px;
    right: -2px;
    height: 3px;
    width: 3px;
    border-radius: 3px;
    background-color: #777777;
}

/*404*/
.error-page {
    color: rgba(0, 0, 0, 0.87);
    font-size: 1.133rem;
    letter-spacing: 0.13px;
    line-height: 1.588;
    background: url("../img/oval-4.png") no-repeat 60% 70px;
    background-size: 275px auto;
    padding: 100px 0 60px;
}

.error-page .h2 {
    margin: 10px 0 15px;
}

.error-page img {
    display: inline-block;
    -webkit-transform: translateX(25%);
    transform: translateX(25%);
}

.error-page .btn {
    margin-top: 20px;
}

/*search not found*/
.error-search {
    color: rgba(0, 0, 0, 0.87);
    font-family: "Roboto", sans-serif;
    font-size: 1.333rem;
    letter-spacing: 0.15px;
    line-height: 1.45;
    background: url("../img/oval-2.png") no-repeat 85% bottom;
    background-size: 490px auto;
    padding: 150px 0 60px;
}

.error-search .h2 {
    margin: 25px 0;
}

.error-search ul {
    list-style: disc inside;
    margin: 30px 0 0 10px;
}

.error-search .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
}

/* breakpoints */
@media (max-height: 880px) {
    .how-it-work .center-item .title {
        max-width: 350px;
        font-size: 2rem;
    }

    .popup-video-btn {
        height: 50px;
        width: 185px;
        padding: 5px 6px 5px 15px;
    }
}

@media (max-width: 1310px) {
    .s-what-we-do .circle {
        height: 400px;
        width: 400px;
    }

    .what-we-do-right {
        padding: 80px 15px 30px 90px;
    }

    .what-we-do-right .item {
        padding: 5px 0 5px 25px;
    }

    .what-we-do-right .item:nth-child(2) {
        margin: 40px 0 30px 90px;
    }

    .camp-img .img {
        width: 290px;
        height: 290px;
        margin: 0 auto;
    }

    .house-slider {
        width: 50%;
    }

    .mp-text {
        padding: 65px 15px;
    }

    .s-faq .faq-tabs {
        margin-left: 0;
    }

    .s-faq .faq-tabs__right {
        padding: 13px 0 33px 15px;
        margin-left: 0;
    }

    .s-licensing-benefits .lb-img img {
        max-height: 60%;
    }

    .licensing-benefits {
        padding: 0 0 0 15px;
    }

    .lb-item {
        padding-right: 15px;
    }

    .testimonial-slider .t-slider-text {
        font-size: 1.6rem;
        padding: 140px 50px 0 0;
    }

    .testimonial-slider .t-slider-text .name {
        margin: 20px 0 10px;
    }

    .get-licensed-left {
        padding-left: 0;
    }

    .benefits-main {
        padding: 40px 0 110px 30px;
    }

    .benefits-list .item {
        padding: 0 15px 30px 0;
    }

    .s-benefits .benefits-img img {
        max-height: 80%;
    }

    .ir-how-it-work-text {
        padding: 40px 0 40px 40px;
    }

    .ir-faq-item {
        padding: 70px 40px;
    }

    .sa-search {
        padding: 25px;
        margin-bottom: 0;
    }

    .sa-list {
        padding: 15px;
    }

    .sa-list table th, .sa-list table td {
        padding: 5px 10px;
    }

    .s-media-list .title {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .mc-filters {
        width: 200px;
    }

    .mc-list {
        padding-right: 30px;
    }

    .mc-item {
        padding: 20px 25px 25px 25px;
    }

    .mc-item .h3 {
        margin: 20px 0 15px;
    }

    .article-detail:before {
        top: 250px;
    }

    .directors .governance-list {
        padding: 10px 0 40px;
    }

    .executive-team .governance-list {
        padding: 35px 0 40px;
    }

    .governance-list .item {
        width: 33.333%;
    }

    .governance-list .main-text {
        width: 66.666%;
        padding: 25px;
    }

    .locations-title {
        padding: 0 15px 15px 50px;
    }

    .rs-table-wrap {
        overflow-y: auto;
    }

    .main-table {
        width: 930px;
    }

    .main-table > thead th {
        padding: 10px;
    }

    .main-table > thead th:nth-child(1) {
        width: 5%;
    }

    .main-table > thead th:nth-child(2) {
        width: 9%;
        padding-left: 0;
    }

    .main-table > thead th:nth-child(3) {
        width: 30%;
    }

    .main-table > thead th:nth-child(4) {
        width: 12%;
    }

    .main-table > thead th:nth-child(5) {
        width: 24%;
    }

    .main-table > thead th:nth-child(6) {
        width: 20%;
    }

    .table-item > td {
        padding: 10px;
    }

    .table-item > td:nth-child(1) {
        width: 5%;
    }

    .table-item > td:nth-child(2) {
        width: 9%;
        padding-left: 0;
    }

    .table-item > td:nth-child(3) {
        width: 30%;
    }

    .table-item > td:nth-child(4) {
        width: 12%;
    }

    .table-item > td:nth-child(5) {
        width: 24%;
    }

    .table-item > td:nth-child(6) {
        width: 20%;
    }

    .sub-table td {
        padding: 5px;
    }

    .side-scroll .h2 {
        width: 320px;
    }
}

@media (max-width: 1199px) {
    .s-music.style02 {
        background-position: right 52vw bottom 0;
    }
}

@media (max-width: 991px) {
    .s-news .subtitle {
        margin: 5px auto 20px;
    }

    .s-news-line .title {
        font-size: 1.2rem;
    }

    .s-news-list .item, .s-media-list .item {
        width: calc(50% - 40px);
    }

    .what-new-slider .swiper-slide-cont {
        font-size: 1.5rem;
        padding: 45px 15px 65px 15px;
    }

    .s-what-we-do .circle {
        display: none;
    }

    .what-we-do-left,
    .what-we-do-right {
        padding: 40px 15px;
    }

    .what-we-do-right .item:nth-child(2) {
        margin: 15px 0;
    }

    .how-it-work {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        max-height: none;
        min-height: auto;
        height: auto;
        max-width: none;
        min-width: auto;
        width: auto;
        margin: 0 -15px;
    }

    .how-it-work .center-item {
        position: relative;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        border: none;
        padding: 0;
        margin-top: -25px;
        margin-bottom: 20px;
    }

    .how-it-work .center-item .title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .how-it-work .ig-item {
        width: calc(50% - 30px);
        position: relative;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: 15px;
    }

    .how-it-work .ig-item-1 .icon {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        margin-top: 0;
    }

    .faq-tabs {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .faq-tabs__left {
        width: 100%;
        margin-bottom: 20px;
    }

    .tabs-caption-wrap {
        position: relative;
    }

    .mobile-active-caption {
        position: relative;
        color: #000000;
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        letter-spacing: 0.26px;
        line-height: 1.2;
        padding: 10px 35px 10px 15px;
        border-bottom: 2px solid rgba(194, 198, 216, 0.3);
    }

    .mobile-active-caption:after {
        position: absolute;
        content: '';
        top: 11px;
        right: 17px;
        width: 10px;
        height: 10px;
        border: 2px solid #000000;
        border-right: none;
        border-bottom: none;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
        -webkit-transition: all .2s linear;
        transition: all .2s linear;
    }

    .mobile-active-caption.active:after {
        top: 16px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .tabs-caption {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #f7f7fa;
        border: 2px solid rgba(194, 198, 216, 0.3);
        border-top: none;
        z-index: 1;
    }

    .tabs-caption li {
        height: 35px;
    }

    .tabs-caption li:before {
        left: 0;
    }

    .s-camp:before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        background: linear-gradient(135deg, #D81531 30%, #DD2078 100%);
        z-index: -1;
    }

    .camp-img {
        padding: 40px 0 0;
    }

    .camp-img:before {
        display: none;
    }

    .camp-text {
        padding: 25px 0 40px;
    }

    .house-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 25px;
    }

    .house-slider {
        width: 100%;
    }

    .house-details {
        padding: 15px 30px;
    }

    .house-details-list {
        margin-bottom: 0;
    }

    .house-details-list .item {
        width: 50%;
    }

    .house-details-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .house-details-links .item {
        margin-right: 0;
    }

    .songcamp-dest {
        padding: 40px 30px;
    }

    .s-cecd {
        padding: 40px 0;
    }

    .cecd-img {
        width: 290px;
        height: 290px;
        margin: 0 auto 25px;
    }

    .cecd-text {
        max-width: none;
        padding: 0;
    }

    .mp-text {
        padding: 40px 15px;
    }

    .s-music {
        background-size: auto 80%;
    }

    .s-music.style02 .s-music-text {
        margin-top: 0;
    }

    .s-music-text {
        padding: 40px 0;
    }

    .s-music-text .support-text {
        position: static;
        font-size: 6rem;
    }

    .s-faq {
        padding: 40px 0;
    }

    .s-faq .faq-tabs__right {
        border-left: none;
        padding: 0;
    }

    .s-faq .faq-tabs__right:before, .s-faq .faq-tabs__right:after {
        display: none;
    }

    .s-resources {
        padding: 40px 0 0;
    }

    .s-resources .subtitle {
        margin: 5px auto 20px;
    }

    .s-resources-bottom {
        display: block;
        padding-bottom: 25px;
        text-align: center;
    }

    .s-resources-bottom .btn {
        margin: 20px 0 0;
    }

    .s-licensing-benefits {
        margin-top: 0;
    }

    .s-licensing-benefits:before, .s-licensing-benefits:after {
        position: absolute;
        content: '';
        width: 100%;
    }

    .s-licensing-benefits:before {
        top: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(323.31deg, #D2D2D2 0%, #EDEDED 100%);
        z-index: -2;
    }

    .s-licensing-benefits:after {
        left: 0;
        bottom: 0;
        height: 42%;
        opacity: .2;
        background: linear-gradient(179.03deg, rgba(238, 238, 238, 0) 0%, #6A71B5 100%);
        z-index: -1;
    }

    .s-licensing-benefits .mw1200 {
        padding: 40px 0;
    }

    .s-licensing-benefits .mw1200:before, .s-licensing-benefits .mw1200:after {
        display: none;
    }

    .s-licensing-benefits .lb-img {
        display: none;
    }

    .licensing-benefits {
        padding: 0;
    }

    .lb-item {
        margin: 10px 0;
    }

    .s-testimonials {
        padding: 40px 0 100px;
        background-color: #1D1D1D;
    }

    .s-testimonials__inner:before {
        display: none;
    }

    .s-testimonials .h2 {
        position: static;
    }

    .testimonial-slider {
        padding: 0;
    }

    .testimonial-slider:after {
        display: none;
    }

    .testimonial-slider .swiper-slide {
        padding: 20px 0 45px;
    }

    .testimonial-slider .t-slider-text {
        font-size: 1.3rem;
        padding: 0 15px 0 0;
    }

    .testimonial-slider .t-slider-text .text {
        padding-left: 25px;
    }

    .testimonial-slider .t-slider-text .text:before {
        width: 15px;
    }

    .testimonial-slider .t-slider-text .name {
        margin: 20px 0 0;
    }

    .s-contact {
        padding: 40px 0;
    }

    .s-contact .h2,
    .s-contact .contact-text-big {
        font-size: 2rem;
    }

    .s-get-licensed {
        background-color: #EDEDED;
        padding: 40px 0;
    }

    .s-get-licensed .mw1200 {
        padding: 0;
    }

    .s-get-licensed .mw1200:before {
        display: none;
    }

    .get-licensed-left .licensed-download-form {
        margin-top: 20px;
    }

    .get-licensed-right {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 20px;
    }

    .gl-video {
        position: relative;
        right: 0;
        top: 0;
        height: 350px;
        width: 350px;
    }

    .gl-question {
        height: 290px;
        width: 290px;
        padding: 50px 25px 25px;
    }

    .s-benefits {
        margin-top: 0;
        padding: 40px 0 20px;
    }

    .s-benefits:before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        opacity: .4;
        background: linear-gradient(179.03deg, rgba(238, 238, 238, 0) 0%, #6A71B5 100%);
    }

    .s-benefits .benefits-img {
        display: none;
    }

    .s-benefits .mw1200:before, .s-benefits .mw1200:after {
        display: none;
    }

    .benefits-main {
        padding: 0;
    }

    .benefits-main .h2 {
        margin-bottom: 25px;
    }

    .benefits-list .item {
        padding: 0 15px 20px 0;
    }

    .s-reproduction-rights {
        padding: 120px 0 30px;
    }

    .s-reproduction-rights .h2 + .subtitle {
        margin: 0 auto;
    }

    .rr-text .subtitle {
        margin-top: 15px;
    }

    .rr-img {
        padding: 30px 0 0;
    }

    .s-reproduction-rights-license {
        padding: 40px 0;
    }

    .rr-license-links .title {
        margin-bottom: 10px;
    }

    .rr-license-links a .arrow-btn {
        background-color: #161616;
    }

    .rr-license-links a .arrow-btn svg {
        fill: #ffffff;
    }

    .ir-faq-item {
        padding: 25px 15px;
    }

    .ir-faq-item.style02 .h4 {
        max-width: none;
        margin: 0 0 5px;
    }

    .s-ir-faq {
        padding: 40px 0;
    }

    .ir-faq-item.style02 {
        position: relative;
        background-color: #161616;
    }

    .ir-faq-item.style02:before, .ir-faq-item.style02:after {
        display: none;
    }

    .sa-search {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .sa-search > * {
        margin: 25px 10px;
    }

    .sa-search .search-wrap {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        width: calc(50% - 20px);
    }

    .sa-search .select.size-1, .sa-search .select.size-2 {
        width: calc(50% - 20px);
    }

    .s-why-socan {
        padding: 120px 0 110px;
    }

    .s-why-socan .support-text {
        bottom: 20px;
        left: 5px;
        font-size: 6rem;
    }

    .s-why-socan > .img {
        width: 100px;
        height: 100px;
    }

    .s-why-socan > .img-1 {
        left: 0;
    }

    .why-socan-list {
        margin: 0;
    }

    .passion-text {
        padding: 90px 0 40px 25px;
    }

    .passion-text .support-text {
        left: 25px;
    }

    .s-opportunities {
        padding: 40px 0;
    }

    .s-opportunities .subtitle {
        max-width: 500px;
    }

    .s-governance {
        background-position: center 25px;
        padding: 60px 0 40px;
    }

    .s-careers-text {
        padding: 0;
    }

    .s-careers-text .support-text {
        color: #F7F6F6;
        margin: 0;
    }

    .s-careers {
        padding: 40px 0;
    }

    .s-careers-img {
        width: 290px;
        height: 290px;
    }

    .article-detail:before {
        top: 200px;
    }

    .simple-article-wrap {
        padding: 10px 0;
    }

    .governance-list .item {
        width: 50%;
    }

    .governance-list .main-text {
        width: 100%;
    }

    .committees .faq-tabs__left {
        width: 100%;
        padding-top: 0;
    }

    .s-committees {
        padding: 40px 0;
    }

    .s-annual-reports {
        padding: 40px 0;
    }

    .reports-slider .swiper-container:before,
    .reports-slider .swiper-container:after {
        width: 5%;
    }

    .reports-slider .swiper-button-prev.style02,
    .reports-slider .swiper-button-next.style02 {
        width: 55px;
        height: 55px;
        margin-top: -27px;
    }

    .reports-slider .swiper-button-prev.style02:before,
    .reports-slider .swiper-button-next.style02:before {
        top: 20px;
        width: 15px;
        height: 15px;
    }

    .reports-slider .swiper-button-prev.style02:before {
        left: 25px;
    }

    .reports-slider .swiper-button-next.style02:before {
        left: 15px;
    }

    .locations {
        padding: 40px 0 75px;
    }

    .loc-link .city-img {
        opacity: .1;
    }

    .mc-item.style02 {
        padding: 25px 0 10px;
    }

    .mc-item.style02 .h3 {
        margin: 5px 0 10px;
    }

    .error-search {
        background-position: center;
        background-size: auto 50%;
    }

    .error-search .h2 {
        margin: 10px 0;
    }

    .error-search .icon {
        display: block;
        margin-bottom: 25px;
    }

    .error-search ul {
        margin: 10px 0 0 10px;
    }

    .rs-search-text-right,
    .rs-search-text-bottom {
        display: none;
    }

    .side-scroll {
        display: block;
        padding-top: 40px;
    }

    .side-scroll .h2 {
        width: 100%;
        margin-bottom: 25px;
        padding-left: 15px;
        text-align: left;
    }

    .side-scroll-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: auto;
        color: #FFFFFF;
        width: 100%;
        padding: 10px 0;
    }

    .side-scroll-inner:after {
        display: none;
    }

    .side-scroll-inner.style02 {
        margin-top: -10px;
        padding: 0 0 20px 0;
    }

    .side-scroll-inner .curve-line {
        display: none;
    }

    .side-scroll-inner .item {
        float: none;
        max-width: 350px;
        width: 100%;
        min-width: auto;
        margin-left: 0;
        padding: 15px;
    }

    .side-scroll-inner .title {
        font-size: 1.2rem;
        margin: 10px 0;
    }

    .s-resource-item .arrow-btn {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .breadcrumbs {
        display: none;
    }

    .m-position-static {
        position: static;
    }

    .what-new {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-height: auto;
    }

    .what-new .img-slider {
        width: 100%;
    }

    .what-new .img-slider .img-link {
        padding-bottom: 56%;
    }

    .what-new .what-new-slider {
        width: 100%;
    }

    .what-new-slider .swiper-slide-cont {
        min-height: auto;
        font-size: 1.4rem;
        padding: 35px 15px 65px 15px;
    }

    .what-new-slider .wn-text {
        top: -18px;
    }

    .s-news-list, .s-media-list {
        padding-bottom: 20px;
    }

    .s-news-list .item, .s-media-list .item {
        width: 100%;
        margin-bottom: 0;
    }

    .what-we-do-left,
    .what-we-do-right {
        padding: 40px 15px 30px;
    }

    .what-we-do-left:before {
        width: 100vw;
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .what-we-do-left .support-text {
        max-width: none;
    }

    .what-we-do-left .text {
        max-width: none;
        margin: 20px 0 10px;
    }

    .what-we-do-right .text {
        height: auto;
    }

    .s-how-it-work {
        padding: 30px 0;
    }

    .how-it-work .ig-item {
        width: 100%;
    }

    .how-it-work .ig-item .icon {
        width: 100px;
        height: 100px;
    }

    .how-it-work .ig-item .title {
        margin: 10px 0 5px;
    }

    .faq-main .h1 {
        margin: 0 0 25px;
    }

    .faq-main .h1 span {
        margin: 0;
    }

    .s-camp {
        margin-bottom: 0;
    }

    .s-camp .support-text {
        font-size: 6rem;
    }

    .s-houses:before {
        position: absolute;
        content: '';
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        background: linear-gradient(323.31deg, #D2D2D2 0%, #EDEDED 100%);
        z-index: 1;
    }

    .s-houses:after {
        position: absolute;
        content: '';
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        opacity: 0.4;
        background: linear-gradient(179.03deg, rgba(238, 238, 238, 0) 0%, #6A71B5 100%);
        z-index: 2;
    }

    .s-houses__inner {
        padding: 40px 0;
    }

    .s-houses__inner:before {
        display: none;
    }

    .s-houses__inner:after {
        display: none;
    }

    .s-songcamps-dest {
        margin-top: 40px;
    }

    .resource-main .text {
        padding: 15px 0;
    }

    .lb-item {
        width: 100%;
        padding: 0;
    }

    .lb-item .title {
        display: block;
        height: auto;
        line-height: 1.5;
        overflow: visible;
    }

    .lb-item .small-desc {
        height: auto;
        line-height: 1.5;
        overflow: visible;
    }

    .testimonial-slider .t-slider-text {
        font-size: 1rem;
    }

    .s-contact-main {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .s-contact__left {
        width: 100%;
        padding: 0;
    }

    .s-contact__right {
        width: 100%;
        padding-top: 15px;
    }

    .s-contact .h2,
    .s-contact .contact-text-big {
        font-size: 1.8rem;
        padding-left: 0;
    }

    .s-get-licensed {
        padding-top: 310px;
    }

    .s-get-licensed .mw1200 {
        position: static;
    }

    .get-licensed-right {
        position: static;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 10px;
    }

    .gl-video {
        position: absolute;
        top: -60px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .benefits-list .item {
        width: 100%;
        padding: 0 0 20px 0;
    }

    .benefits-list .icon {
        margin-right: 10px;
    }

    .ir-how-it-work {
        padding: 0 0 40px 0;
    }

    .ir-how-it-work:before {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        opacity: 0.3;
        background: linear-gradient(179.03deg, rgba(238, 238, 238, 0) 0%, #6A71B5 100%);
        z-index: -1;
    }

    .ir-how-it-work-text {
        padding: 0;
    }

    .ir-how-it-work-text:before {
        display: none;
    }

    .ir-how-it-work-text .h2 {
        margin-bottom: 25px;
    }

    .sa-search {
        padding: 5px;
    }

    .s-why-socan {
        margin-top: 0;
        padding: 40px 0 110px;
    }

    .s-why-socan .h2 {
        margin-top: 0;
    }

    .s-why-socan .subtitle {
        margin: 15px 0;
    }

    .why-socan-list {
        margin-top: 25px;
    }

    .why-socan-list .item {
        margin-bottom: 15px;
    }

    .s-passion {
        background: linear-gradient(323.31deg, #D2D2D2 0%, #EDEDED 100%);
        padding: 40px 0 25px;
    }

    .s-passion .mw1200:before {
        display: none;
    }

    .passion-text {
        padding: 0;
    }

    .passion-text .support-text {
        display: none;
    }

    .s-opportunities .subtitle {
        font-size: 1.3rem;
        margin: 15px 0;
    }

    .s-governance {
        background-size: 80%;
        padding: 40px 0;
    }

    .s-governance .text {
        margin: 15px 0 0;
    }

    .s-innovation {
        background-color: #1D1D1D;
        padding: 40px 0;
    }

    .s-innovation__inner {
        padding: 0;
    }

    .s-innovation__inner:before {
        display: none;
    }

    .innovation-img {
        position: relative;
        padding: 0 0 25px 0;
    }

    .s-careers-img {
        margin-top: 25px;
    }

    .media-center__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .mc-list {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding-right: 0;
    }

    .mc-filters {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 290px;
        margin: 0 auto 30px;
    }

    .mc-mobile-filters-select {
        display: block;
    }

    .mc-filters-list {
        display: none;
        padding-bottom: 0;
    }

    .governance-list .item {
        padding: 10px;
    }

    .s-locations {
        background-color: #161616;
    }

    .locations:before {
        display: none;
    }

    .rs-bar {
        padding: 20px 15px;
    }

    .rs-search-field-wrap {
        margin-bottom: 0;
    }

    .rs-search-field {
        width: 260px;
    }

    .side-scroll-inner .item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .side-scroll-inner .img {
        -webkit-box-ordinal-group: -4;
        -ms-flex-order: -5;
        order: -5;
    }

    .side-scroll-inner .text {
        margin-bottom: 0;
    }

    .side-scroll-inner .btn {
        margin: 15px 0 0;
    }

    .s-music {
        background-image: none !important;
    }

    .s-music-text {
        margin-left: 0;
    }

    .s-music-text .h2 {
        margin-left: 0;
    }

    .s-music-text .h2 .bottom {
        margin-left: 0;
    }

    .songcamp-dest {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (max-width: 575px) {
    .s-news-line {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .s-news-line .btn {
        margin-top: 5px;
    }

    .s-news-list .item-bottom {
        padding: 24px 24px;
    }

    .s-news-list .item .title {
        color: #000000;
        font-family: "Montserrat", sans-serif;
        font-size: 1.3rem;
        font-weight: 500;
        line-height: 1.545;
    }

    .what-we-do-right .title {
        font-size: 1.3rem;
    }

    .tabs-caption li {
        width: 100%;
    }

    .faq-accordeon .acc-head {
        padding: 5px 0;
    }

    .faq-accordeon .acc-body {
        line-height: 1.5;
        padding: 0 0 10px;
    }

    .house-content {
        padding: 20px 15px;
    }

    .house-details {
        padding: 15px;
    }

    .house-details-links .item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .house-details-links .item .submit-link {
        margin: 0;
    }

    .house-details-list .item {
        margin-bottom: 10px;
        padding: 6px 0 6px 32px;
    }

    .house-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .house-buttons .house-btn {
        margin-bottom: 10px;
    }

    .songcamp-dest {
        padding: 20px 15px;
    }

    .testimonial-slider .swiper-container-horizontal > .swiper-scrollbar {
        right: 60px;
    }

    .testimonial-slider .swiper-nav-container {
        width: auto;
        right: 0;
        bottom: 4px;
    }

    .testimonial-slider .swiper-slide {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .testimonial-slider .t-slider-text {
        padding: 15px 0 0 0;
    }

    .testimonial-slider .t-slider-media {
        width: 290px;
    }

    .s-get-licensed {
        padding-top: 250px;
    }

    .gl-video {
        height: 290px;
        width: 290px;
    }

    .sa-search {
        padding: 5px 15px;
    }

    .sa-search > * {
        margin: 25px 0;
    }

    .sa-search .search-wrap {
        width: 100%;
    }

    .sa-search .select.size-1, .sa-search .select.size-2 {
        width: 100%;
    }

    .page-pag {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .items-per-page {
        margin-bottom: 15px;
    }

    .mc-links {
        display: none;
    }

    .mc-item {
        padding: 15px;
    }

    .mc-item .h3 {
        margin: 15px 0 10px;
    }

    .article-detail-top .top-line {
        display: block;
    }

    .article-detail-top .mc-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 10px;
    }

    .directors .governance-list:before {
        width: 110vw;
    }

    .governance-list .photo {
        width: 150px;
        height: 150px;
    }

    .governance-list .name {
        font-size: 1.1rem;
    }

    .governance-list .main-text {
        padding: 15px 0;
    }

    .governance-list .main-text .h2 {
        margin-bottom: 15px;
    }

    .locations-title {
        padding: 0 15px 15px 15px;
    }

    .loc-link {
        padding: 20px 15px 15px 15px;
    }

    .loc-link__bottom {
        margin-top: 10px;
    }

    .loc-link .address {
        padding: 10px;
    }

    .error-page {
        font-size: 1rem;
        padding: 100px 0 40px;
    }

    .error-search {
        font-size: 1.2rem;
        padding: 100px 0 40px;
    }

    .rs-bar-top {
        display: block;
    }

    .rs-search-field {
        width: 100%;
    }

    .rs-toggle-filter {
        margin-top: 25px;
    }

    .rs-select {
        width: 100%;
    }
}

@media (max-width: 370px) {
    .governance-list .item {
        width: 100%;
    }

    .governance-list .photo {
        width: 225px;
        height: 225px;
    }

    .house-details-list .item {
        width: 100%;
    }

    .passion-logos .item {
        width: 50%;
        padding: 10px 7px;
    }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* SWIPER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.swiper-entry {
    position: relative;
}

.swiper-entry .swiper-scrollbar {
    height: 2px !important;
    background-color: #979797;
}

.swiper-entry .swiper-scrollbar-drag {
    height: 4px;
    top: -1px;
    background-color: #FF006A;
    border-radius: 0;
}

.swiper-container:not(.swiper-no-swiping) .swiper-wrapper {
    cursor: url(../img/drag.png) 16 9, ew-resize;
}

.swiper-container-vertical:not(.swiper-no-swiping) .swiper-wrapper {
    cursor: url(../img/drag-vertical.png) 8 16, ns-resize;
}

.swiper-pagination.swiper-pagination-relative {
    position: relative;
    margin-top: 20px;
    bottom: auto;
}

.swiper-pagination {
    line-height: 0;
    z-index: 2;
}

.swiper-nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 177px;
}

.swiper-nav-container .swiper-pagination {
    position: static;
    color: #B3B3B3;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.17px;
    line-height: 55px;
    text-align: center;
}

.swiper-nav-container .swiper-pagination .swiper-pagination-current {
    font-weight: 600;
}

.swiper-nav-container .swiper-button-prev,
.swiper-nav-container .swiper-button-next {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 0;
}

.swiper-button-prev.style02,
.swiper-button-next.style02 {
    height: 55px;
    width: 55px;
    cursor: pointer;
    background-image: none;
    background-color: #161616;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.swiper-button-prev.style02.swiper-button-disabled,
.swiper-button-next.style02.swiper-button-disabled {
    opacity: 1;
    background-color: #EEEEEE;
}

.swiper-button-prev.style02.swiper-button-disabled:before,
.swiper-button-next.style02.swiper-button-disabled:before {
    border-color: #161616;
}

@media (min-width: 992px) {
    .swiper-button-prev.style02:hover,
    .swiper-button-next.style02:hover {
        opacity: .7;
    }
}

.swiper-button-prev.style02:before,
.swiper-button-next.style02:before {
    position: absolute;
    content: '';
    top: 20px;
    width: 15px;
    height: 15px;
    border: 2px solid #FFFFFF;
    border-right: none;
    border-bottom: none;
}

.swiper-button-prev:before {
    left: 25px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.swiper-button-next:before {
    left: 15px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* POPUPS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.popup-wrapper {
    position: fixed;
    z-index: 101;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    left: -100%;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.popup-wrapper.active {
    left: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.popup-wrapper .bg-layer {
    position: absolute;
    left: 0;
    top: -100px;
    right: 0;
    bottom: -100px;
    background: rgba(0, 0, 0, 0.9);
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    opacity: 0;
}

.popup-wrapper.active .bg-layer {
    opacity: 1;
}

.popup-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    text-align: center;
    -webkit-transition: opacity .3s ease-out, left 0s .3s, -webkit-transform .3s ease-out;
    transition: opacity .3s ease-out, left 0s .3s, -webkit-transform .3s ease-out;
    transition: transform .3s ease-out, opacity .3s ease-out, left 0s .3s;
    transition: transform .3s ease-out, opacity .3s ease-out, left 0s .3s, -webkit-transform .3s ease-out;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    opacity: 0;
    left: -10000px;
    padding: 15px;
}

.popup-content .close-wrap {
    position: absolute;
    top: 4px;
    right: 4px;
}

.popup-content.active {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1;
    left: 0;
    -webkit-transition: opacity .3s ease-out, left 0s 0s, -webkit-transform .3s ease-out;
    transition: opacity .3s ease-out, left 0s 0s, -webkit-transform .3s ease-out;
    transition: transform .3s ease-out, opacity .3s ease-out, left 0s 0s;
    transition: transform .3s ease-out, opacity .3s ease-out, left 0s 0s, -webkit-transform .3s ease-out;
    position: relative;
}

.popup-content:after {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    content: "";
}

.popup-container {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    position: relative;
    text-align: left;
    background: #fff;
}

.popup-container.size-1 {
    max-width: 520px;
}

.popup-container.size-2 {
    max-width: 1370px;
}

.popup-container.size-3 {
    max-width: 1900px;
}

.popup-content .layer-close {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 10000px;
}

.popup-align {
    padding: 60px 70px 70px 70px;
    overflow: hidden;
}

.popup-content .embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.popup-content iframe {
    width: 100%;
    height: 100%;
    position: absolute;
}

.video-popup {
    padding: 100px;
}

@media (max-width: 768px) {
    .video-popup {
        padding: 100px 15px;
    }
}

.video-popup .logo {
    position: absolute;
    top: 28px;
    left: 30px;
    text-align: left;
}

.text-popup .popup-container {
    position: relative;
    max-height: 90vh;
    height: 620px;
    padding: 55px;
}

.text-popup .popup-container .photo {
    float: left;
    height: 356px;
    width: 356px;
    margin: 70px 70px 0 0;
}

.text-popup .popup-container .text {
    max-height: 100%;
    color: #676767;
    padding-right: 40px;
    overflow: auto;
}

.text-popup .popup-container .text .position {
    color: #5E5C5C;
    font-size: .8rem;
    letter-spacing: 0.92px;
    line-height: 1.116;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.text-popup-2 .popup-container {
    position: relative;
    max-height: 90vh;
    border-radius: 6px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px 0 rgba(0, 0, 0, 0.2);
    padding: 25px 40px;
}

.text-popup-2 .h4 {
    max-width: 300px;
    line-height: 1.4;
}

.text-popup-2 .name {
    color: #292A2C;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.21px;
    line-height: 1.2;
    border-bottom: 1px solid #9E9E9E;
    padding-bottom: 5px;
}

.text-popup-2 .popup-contact {
    opacity: 0.8;
    color: #000000;
    font-size: .933rem;
    letter-spacing: -0.04px;
}

.text-popup-2 .popup-contact .item {
    margin-bottom: 5px;
}

.text-popup-2 .popup-contact .item:last-child {
    margin-bottom: 0;
}

.text-popup-2 .popup-contact a {
    white-space: nowrap;
    color: #424242;
    opacity: 1;
    font-weight: 500;
    letter-spacing: 0.16px;
    line-height: 20px;
}

@media (min-width: 992px) {
    .text-popup-2 .popup-contact a:hover {
        text-decoration: underline;
    }
}

.search-popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    z-index: 105;
}

.search-popup__overlay {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.66;
    background-color: #000000;
    z-index: 1;
}

.search-popup__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    height: 106px;
    width: 100%;
    background-color: #1D1D1D;
    z-index: 2;
}

.search-popup .close-wrap {
    position: absolute;
    top: 18px;
    right: 21px;
    z-index: 3;
}

.header-search {
    position: relative;
}

.header-search .input-search {
    height: 40px;
    line-height: 38px;
    width: 420px;
    color: #C5C5C5;
    font-family: "Rubik", sans-serif;
    font-size: .933rem;
    font-weight: 500;
    border: 1px solid #676767;
    border-radius: 20px;
    padding: 0 35px 0 17px;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.header-search .input-search::-webkit-input-placeholder {
    color: #C5C5C5;
    font-family: "Rubik", sans-serif;
    font-size: .933rem;
    font-weight: 500;
}

.header-search .input-search:-ms-input-placeholder {
    color: #C5C5C5;
    font-family: "Rubik", sans-serif;
    font-size: .933rem;
    font-weight: 500;
}

.header-search .input-search::-ms-input-placeholder {
    color: #C5C5C5;
    font-family: "Rubik", sans-serif;
    font-size: .933rem;
    font-weight: 500;
}

.header-search .input-search::placeholder {
    color: #C5C5C5;
    font-family: "Rubik", sans-serif;
    font-size: .933rem;
    font-weight: 500;
}

.header-search .input-search:focus {
    border-color: #C5C5C5;
}

.header-search .search-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    padding: 11px 0;
}

@media (max-width: 991px) {
    .text-popup .popup-container {
        padding: 25px 15px;
    }

    .text-popup .popup-container .text {
        padding-right: 20px;
    }

    .text-popup .popup-container .photo {
        height: 290px;
        width: 290px;
        margin: 30px 30px 0 0;
    }
}

@media (max-width: 767px) {
    .text-popup .popup-container .photo {
        height: 100px;
        width: 100px;
        margin: 15px 15px 0 0;
    }

    .search-popup__inner {
        height: 100%;
        width: 100%;
        background-color: #1D1D1D;
    }

    .search-popup .close-wrap {
        top: 1px;
        right: auto;
        left: 1px;
    }

    .header-search .input-search {
        width: 290px;
    }
}

@media (max-width: 575px) {
    .text-popup .popup-container .photo {
        display: none;
    }

    .text-popup-2 .popup-container {
        padding: 30px 15px 20px;
    }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* FOOTER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.footer {
    position: relative;
    background-color: #2F2F2F;
    padding: 55px 25px 45px;
    overflow: hidden;
}

.footer:before {
    position: absolute;
    content: '';
    bottom: -470px;
    left: -100px;
    height: 763px;
    width: 765px;
    border-radius: 100%;
    opacity: 0.35;
    background-color: #1F1F1F;
}

.footer__inner {
    position: relative;
    z-index: 1;
}

.footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 13px;
    color: #ABABAB;
    letter-spacing: 0.5px;
    line-height: 24px;
    text-transform: uppercase;
}

.footer__bottom a {
    color: #ABABAB;
}

.footer .social-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer .s-link {
    opacity: .7;
    margin: 8px;
}

@media (min-width: 992px) {
    .footer .s-link:hover {
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .footer a:hover {
        color: #D81531;
    }
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-menu {
    margin-bottom: 15px;
}

.footer-menu li {
    display: inline-block;
    margin: 5px 15px;
}

.footer-menu a {
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
}

.footer-info {
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-size: .933rem;
    margin-bottom: 10px;
}

.footer-info > * {
    display: inline-block;
    margin: 5px 15px;
}

.footer-info a {
    color: #FFFFFF;
}

@media (min-width: 992px) {
    .footer-info a:hover {
        color: #D81531;
    }
}

.f-bottom-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
}

.f-bottom-links a {
    margin-left: 15px;
}

.f-bottom-links .developer {
    font-weight: 400;
    margin-left: 50px;
}

.f-bottom-links .developer a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.f-bottom-links .developer span {
    margin-right: 12px;
}

@media (max-width: 991px) {
    .footer {
        padding: 40px 0;
    }

    .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .f-bottom-links {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .f-bottom-links .developer {
        margin: 0;
    }

    .f-bottom-links a {
        margin: 5px 7px;
    }
}

@media (max-width: 767px) {
    .footer-menu ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .footer-menu li {
        width: 50%;
        padding-right: 10px;
        margin: 5px 0;
    }

    .footer-info > * {
        display: inline-block;
        margin: 5px 5px;
    }

    .footer-logo {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .footer__bottom {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
    }

    .footer .social-list {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .f-bottom-links {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .f-bottom-links a {
        margin: 5px 10px 5px 0;
    }

    .f-bottom-links .developer {
        width: 100%;
    }
}

.licensing-benefits-list .lb-item {
    position: relative;
}

.licensing-benefits-list .lb-item .arrow-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -27px;
    margin-left: -27px;
    opacity: 0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

@media (min-width: 1200px) {
    .licensing-benefits-list .lb-item:hover .arrow-btn {
        opacity: 1;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .side-scroll-inner {
        padding-top: 50px;
    }

    .side-scroll-inner .img {
        padding-bottom: 76%;
        background-position: center top;
    }
}

/*changes 12.02*/
.form-select .SumoSelect > .CaptionCont > label > i:before,
.form-select .SumoSelect > .CaptionCont > .label > i:before {
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    backface-visibility: hidden;
}

.form-select .SumoSelect.open > .CaptionCont > label > i:before,
.form-select .SumoSelect.open > .CaptionCont > .label > i:before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 6px;
}

.privacy-policy .resource-main .text ul {
    font-weight: 400;
}

@media (max-width: 1500px) {
    .menu-secondary ul li ul a {
        font-size: 0.9rem;
    }
}

@media (min-height: 1200px) {
    .ms-content {
        height: calc(80vh - 215px);
    }
}

/*changes 03.04.2020*/

.menu-primary {
    margin-right: 0;
}

@media (min-width: 992px) {
    .menu-secondary .mobile_toggle_div a {
        display: inline-block;
        position: relative;
        color: #FFFFFF;
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1.2;
        overflow: hidden;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

}

@media (min-width: 992px) {
    .menu-secondary .mobile_toggle_div:hover a {
        background-image: linear-gradient(to right, #FF0E40 0%, #E4259A 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: #D81531;
    }
}


.menu-secondary ul ul li {
    margin-bottom: 6px;
}

.menu-secondary ul ul li:last-of-type {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .menu-secondary ul li ul a {
        white-space: nowrap;
    }

    .menu-secondary > ul > li {
        margin: 15px 0;
        position: relative;
        width: max-content;
    }

    .menu-secondary {
        padding-top: 100px;
    }

    .menu-secondary ul ul {
        display: none;
    }
}

.stylized-ordered-list {
    list-style: none;
}

/* Terms of use list styling */
.page-template-page-terms-of-use .text ol {
    counter-reset: index;
    list-style-type: none;
}

.page-template-page-terms-of-use .text ol ol ol {
    counter-reset: sub-item;
}

.page-template-page-terms-of-use .text ol > li {
    display: table;
    margin-bottom: 0;
}

.page-template-page-terms-of-use .text ol > li::before {
    display: table-cell;
    counter-increment: index;
    content: counters(index, ".", decimal) " ";
    padding-right: 1rem;
}

.page-template-page-terms-of-use .text ol > li ol > li ol > li::before {
    counter-increment: sub-item;
    content: "(" counters(sub-item, "", lower-alpha) ") ";
}

/* Privacy Policy styles */
.privacy-policy h2,
.privacy-policy li[data-gc-list-depth="1"] {
    text-transform: uppercase;
}