/* TOP BIG ENU */

.topmenu {
    position: fixed;
    z-index: -2;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    top: 0;
    left: 0;
    color: #FFF;
    visibility: hidden;
    opacity: 0;
    transition: all .9s ease .5s;
}

.topmenu.activated {
    visibility: visible;
    opacity: 1;
    z-index: 1000;
    transition: all .9s ease 0s;
}

.topmenuWrap {
    /*background: #2D2C2F;*/
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    transition: all 0s ease 0s;
}

.topmenuWrap:before {
    content: '';
    display: block;
    width: 50%;
    height: 10vh;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: #2D2C2F;
}

.topmenuWrap:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    transform: translateY(-100%);
    position: absolute;
    top: 0;
    left: 0;
    background: #2D2C2F;
    /*transition: all 1s cubic-bezier(0.65, 0.05, 0.36, 1);*/
    transition: all .5s cubic-bezier(0.14, 0.13, 0.9, 0.07);
}

.topmenu.activated .topmenuWrap:after {
    transform: translateY(0);
}

.topmenuTxt {
    position: absolute;
    z-index: 1;
    right: 10%;
    top: 10%;
    display: block;
    height: 80%;
    transition: all .3s ease;
}

.topmenuTxt.disable {
    opacity: 0;
}

.menuItems {
    padding: 6% 0 2%;
    overflow: auto;
    width: 50%;
    min-width: 50%;
    position: relative;
    z-index: 1;
}

.menuItems::-webkit-scrollbar {
  width: 5px;
  display: none;
}

.menuItems {
  scrollbar-width: none;
}

/*.menuItems::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
.menuItems::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}*/

.menuItems-parent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: fit-content;
    box-sizing: border-box;
}

.menuItems-parentLink {
    font-size: 48px;
    font-size: 2vw;
    line-height: 1.3;
    display: block;
    padding: 3.5vh 10vw;
    transition: background .7s ease, color .7s ease;
}

.menuItems-parentLink:hover,
.menuItems-parent .active .menuItems-parentLink {
    color: #FBD691;
    background: rgba(0, 0, 0, 0.1);
}

.topmenuWrap .t-header-l-logoImg {
    position: absolute;
    z-index: 2;
    left: 7vw;
    top: 1.7vw;
}

.menuLabel {
    width: 3vw;
    position: absolute;
    right: 100%;
    top: 0;
    background: #242426;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8vw 3.5vw;
    /* transition: all .9s ease .3s; */
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

.activated .menuLabel {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

.menuLabel img {
    max-width: 100%;
    height: auto;
    display: block;
}

.menuLabel-icon {
    margin-top: 2vw;
}

@media screen and (min-width: 1050px) {
    .topmenu.activated .topmenuTxt.startAN {
        opacity: 0;
    }
    .mpLink_wrap {
        overflow: hidden;
        width: 100%;
        height: 100%;
    }
    .menuItems-parentLink {
        transform: translateY(100%);
        opacity: 0;
    }
    .mpLink_wrap .menuItems-parentLink.addAn {
        transform: translateY(0);
        opacity: 1;
        max-height: inherit;
        margin-top: -1%;
    }
    .f-lvl {
        overflow: hidden;
    }
    .f-lvl:nth-child(1) .menuItems-parentLink {
        transition: transform .5s cubic-bezier(0.39, 0.58, 0.57, 1) .5s, opacity 1s cubic-bezier(0.4, 0, 1, 1) .5s, background .7s ease, color .7s ease;
    }
    .f-lvl:nth-child(2) .menuItems-parentLink {
        transition: transform .5s cubic-bezier(0.39, 0.58, 0.57, 1) .4s, opacity 1s cubic-bezier(0.4, 0, 1, 1) .4s, background .7s ease, color .7s ease;
    }
    .f-lvl:nth-child(3) .menuItems-parentLink {
        transition: transform .5s cubic-bezier(0.39, 0.58, 0.57, 1) .3s, opacity 1s cubic-bezier(0.4, 0, 1, 1) .3s, background .7s ease, color .7s ease;
    }
    .f-lvl:nth-child(4) .menuItems-parentLink {
        transition: transform .5s cubic-bezier(0.39, 0.58, 0.57, 1) .2s, opacity 1s cubic-bezier(0.4, 0, 1, 1) .2s, background .7s ease, color .7s ease;
    }
    .f-lvl:nth-child(5) .menuItems-parentLink {
        transition: transform .5s cubic-bezier(0.39, 0.58, 0.57, 1) .1s, opacity 1s cubic-bezier(0.4, 0, 1, 1) .1s, background .7s ease, color .7s ease;
    }
}

@media screen and (min-width: 1900px) {
    .menuItems-parentLink {
        font-size: 33px;
    }
}

@media screen and (max-width: 1050px) {
    .t-header-c {
        display: none;
    }
    .menuItems-parentLink {
        font-size: 28px;
    }
}

@media screen and (max-height: 600px) and (orientation: landscape) {
    .menuItems {
        padding: 40px 0 0 20%;
    }
}

@media screen and (max-width: 370px) {
    .menuLabel {
        display: none;
    }
}

.menuItems-more {
    display: none;
}

.sub_menuItems {
    position: relative;
    z-index: 2;
    width: 50%;
}

.not_parent_sub img {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.not_parent_sub,
.sub_menuItems .menuItems-more {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    position: absolute;
    z-index: -1;
    opacity: 0;
    transition: all .7s ease;
}

.not_parent_sub.addAn.active,
.sub_menuItems .menuItems-more.active {
    visibility: visible;
    position: relative;
    z-index: 1;
    opacity: 1;
    transition: all .7s ease .3s;
}

.addAn.not_parent_sub.olwaysvisyble {
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 1;
    transition: all .7s ease .3s;
}

.activated .not_parent_sub.olwaysvisyble.disable {
    opacity: 0;
}

.menuItems-more li {
    background-size: cover;
    background-repeat: no-repeat;
}

.menuItems-more a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10%;
    box-sizing: border-box;
    height: 100%;
    position: relative;
}

.menuItems-more a:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: all .7s ease;
}

.menuItems-more li:hover a:before {
    background: rgba(0, 0, 0, 0.6);
}

.miMore-els-4 {
    height: 25%;
}

.miMore-els-3 {
    height: 33.3%;
}

.miMore-els-2 {
    height: 50%;
}

.miMore-els-1 {
    height: 100%;
}

.miMore_title {
    margin-bottom: .5vh;
    position: relative;
    z-index: 2;
}

.miMore_sub {
    font-weight: bold;
    font-size: 40px;
    font-size: 2vw;
    line-height: 1.4;
    max-width: 70%;
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 1900px) {
    .miMore_sub {
        font-size: 40px;
    }
}

@media screen and (max-width: 1050px) {
    .sub_menuItems {
        display: none;
    }
    .menuItems {
        width: 100%;
    }
    .topmenuTxt,
    .topmenuWrap .t-header-l-logoImg {
        display: none;
    }
}

@media screen and (max-width: 980px) {
    .topmenuWrap {
        background: #28282C;
    }
    .menuItems-parent {
        justify-content: flex-start;
        padding-top: 50px;
        height: auto;
        min-height: 100%;
    }
    .menuItems-parentLink {
        padding: 3vh 30px 3vh 60px;
        position: relative;
    }
    .menuItems-parentLink:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40%;
        height: 2px;
        background: #000;
        background: linear-gradient(to right, rgb(32, 31, 33) 0%, rgb(45, 44, 47) 100%);
        filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#1affffff', GradientType=1);
    }
    .parent-menu .menuItems-parentLink:after {
        content: '';
        position: absolute;
        bottom: 50%;
        left: 25px;
        width: 12px;
        height: 12px;
        background: url(http://paradigma.agency/develop/starkwood_corp/img/arr-bottom.svg) 50% 0 no-repeat;
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }
    .active .menuItems-more {
        display: block;
    }
    .menuItems-parentLink:hover,
    .parent-menu.active .menuItems-parentLink {
        color: #FBD691;
        background: rgb(40, 40, 44);
    }
    .parent-menu.active .menuItems-parentLink:after {
        background: url(http://paradigma.agency/develop/starkwood_corp/img/arr-top.svg) 50% 0 no-repeat;
    }
    .menuItems-more a {
        display: block;
        padding: 20px 20px 20px 60px;
        height: auto;
        position: relative;
        color: #FFF;
        background: #2D2C2F;
    }
    .menuItems-more a:before {
        display: none;
    }
    .menuItems-parentLink {
        font-size: 18px;
    }
}

.menuItems-parentLink.live:hover{
	font-weight: 700;
	color: #FFF!important;
}

.menuItems-parentLink.live:after {
    content: " LIFE";
    font-weight: 500;
    color: #E30613;
}