@font-face {
    font-family: 'Roobert';
    src: url('/fonts/Roobert-Light.woff2') format('woff2'), url('/fonts/Roobert-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roobert';
    src: url('/fonts/Roobert-LightItalic.woff2') format('woff2'), url('/fonts/Roobert-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SangBleu Kingdom';
    src: url('/fonts/SangBleuKingdom-RegularItalic.woff2') format('woff2'), url('/fonts/SangBleuKingdom-RegularItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SangBleu Kingdom';
    src: url('SangBleuKingdom-Regular.woff2') format('woff2'), url('SangBleuKingdom-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body {
    font-family: 'Roobert';
    font-size: 14px;
    background: #eae7de;
    color: #484845;
    margin: 0;
    padding: 0 0 0 0;
    line-height: 1.5;
}

.italic {
    font-style: italic;
}

#page-home, #page-contact, #page-register, #page-team {
    background: #E3F0EC;
}

#page-home {
    padding-top: 100vh;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#mouseControl {
    position: fixed;
    top: 10px;
    left: 0;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 10px;
    display: block;
    text-align: center;
}

#main {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: inherit;
}

body.touch {
    position: fixed;
    height: 100vh;
    overflow: hidden;
    width: 100%;
}

.touch #main {
    overflow: scroll;
}

.scroll-content {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    background: inherit;
}

.scroll-content {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

    .scroll-content::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }

.clear, * html .clearfix, *:first-child + html .clearfix {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

    .clearfix:after {
        clear: both;
        content: ' ';
        display: block;
        font-size: 0;
        line-height: 0;
        visibility: hidden;
        width: 0;
        height: 0;
    }

section {
    position: relative;
}

.fullheight {
    position: relative;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.fullyvideo {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    background-size: cover !important;
    min-height: 100%;
    width: auto !important;
}


@media screen and (max-aspect-ratio: 1920/1080) {
    .fullyvideo {
        height: 100vh;
    }
}

@media screen and (min-aspect-ratio: 1920/1080) {
    .fullyvideo {
        width: 100% !important;
    }
}

.fadeInUp {
    opacity: 0;
    -webkit-transition: opacity 1.1s cubic-bezier( 0.6, 0.2, 0.1, 1 ) 0s;
    transition: opacity 1.1s cubic-bezier( 0.6, 0.2, 0.1, 1 ) 0s;
}

    .fadeInUp.animated {
        opacity: 1;
    }

.bg {
    background: inherit;
}

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

.auto-t {
    margin: -250px 0 0 5%;
}

.mright5 {
    margin: 5% 0 0 5%;
}

.mb100 {
    margin-bottom: 100px;
}

.mb170 {
    margin-bottom: 170px;
}

.pt100 {
    padding-top: 100px;
}

.pt170 {
    padding-top: 170px;
}

.ptb200 {
    padding-top: 200px;
    padding-bottom: 200px;
}

.pb170 {
    padding-bottom: 170px;
}

.pt300 {
    padding-top: 300px;
}

.pt230 {
    padding-top: 230px;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

img {
    border: none;
    max-width: 100%;
}

a, img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}




.max784 {
    max-width: 784px;
}



textarea:focus, input:focus, select:focus {
    outline: none;
}
/* General */

.container {
    width: 1450px;
    margin: 0 auto;
    max-width: calc(100% - 120px);
    position: relative;
}

    .container.w1500 {
        width: 1500px;
    }

    .container.w1600 {
        width: calc(100% - 240px);
    }

.flex-c {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex-s {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.flex-d {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
}

.flex-h {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.flex-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flex-cr {
    flex-direction: column-reverse;
    display: flex;
}

.flex-e {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
}

.mb30 {
    margin-bottom: 30px;
}

.pr50 {
    padding-right: 50px;
}

.pl50 {
    padding-left: 50px;
}

.pr150 {
    padding-right: 150px;
}

.tr50 {
    transform: translateX(50px);
}

.w502 {
    width: 502px;
    max-width: 45%;
}

.w550 {
    width: 550px;
    max-width: 40%;
}

.v_w550 {
    width: 728px;
    max-width: 60%;
}

.w360 {
    width: 360px;
    max-width: 100%;
}

.w362 {
    width: 362px;
    max-width: 100%;
}

.v_w360 {
    width: 960px;
    max-width: calc(100% - 380px);
    transform: translateX(50px);
}

.w420 {
    width: 420px;
    max-width: 100%;
}

.v_w420 {
    width: 780px;
    max-width: calc(100% - 480px);
}

.w1020 {
    width: 1020px;
    max-width: calc(100% - 420px);
}

.w540 {
    width: 540px;
    max-width: 45%;
}

.trn50 {
    transform: translate(50px,50px);
}

.trn50p {
    transform: translateY(-40%);
}

.trn100 {
    margin-top: -175px;
    padding-left: 10%;
}

.trn200 {
    margin-top: -175px;
    padding-left: 8%;
}

.g28 {
    width: 28%;
    margin-left: 5%;
}

.g32 {
    width: 32%;
}

.g64.auto-t {
    margin: -250px 0 0 15%;
}

.g44 {
    width: 44%;
}

.g50 {
    width: 50%;
}

.g56 {
    width: 56%;
}

.g64 {
    width: 64%;
}

.g40 {
    width: 40%;
}

.g36 {
    width: 36%;
}

.g56 {
    width: 56%;
}

.g48 {
    width: 48%;
}

.g88 {
    width: 88%;
}

.nextpage {
    font-family: 'SangBleu Kingdom';
    display: block;
    padding: 170px 0;
    font-size: 45px;
    text-align: center;
}

.img {
    width: 100%;
    display: block;
}

/* Headings */
h1, h2, h3, h5 {
    font-family: 'SangBleu Kingdom';
    margin: 0;
    font-weight: normal;
}

p {
    text-align: left;
    margin: 0;
}

h1 {
    font-family: SangBleu Kingdom;
    font-size: 64px;
    line-height: 1;
    text-align: center;
    font-family: SangBleu Kingdom;
    overflow: hidden;
    transition: opacity 1.5s;
    opacity: 0;
}

    h1.fadeIn {
        opacity: 1;
    }



h2 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 0.75em;
}

h3 {
    font-family: SangBleu Kingdom;
    font-size: 55px;
    text-align: center;
    line-height: 1.38;
    margin-bottom: 0.5em;
}

h4 {
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    line-height: 2.73;
}

.mauto {
    margin-left: auto;
    margin-right: auto;
}

.btn {
    border: 1px solid #484845;
    height: 34px;
    display: flex;
    line-height: 1;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-align: center;
    text-transform: uppercase;
    width: 360px;
    max-width: 100%;
}
/* Navigation */
html.active-header {
}

#rainbow {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 100px;
    font-size: 14px;
    letter-spacing: 0.3em;
    text-align: right;
    width: 150px;
    z-index: 50;
    display: none;
    transition: color 0.5s;
    color: #E9E7DE;
}

.moved #rainbow {
    color: #484845;
}

#page-home #rainbow {
    display: block;
}

#headeAncher {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

header {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    padding: 0 60px;
    width: 100%;
    z-index: 12;
}

#mainNav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    display: none;
    opacity: 0;
    padding: 0 0 0 0;
    background: #484845;
    z-index: 10;
    transition: opacity 0.7s;
    left: 0;
}

#logo {
    display: block;
    width: 176px;
    z-index: 50;
    position: relative;
    transition: opacity 0.7s;
}


    #logo svg {
        width: 100%;
        height: auto;
    }

#page-home #logo {
    opacity: 0;
}

#page-home .passed #logo {
    opacity: 1;
}

.passed #rainbow {
    opacity: 0;
}

.active-header #logo svg path {
    fill: #fff;
}

#mainmenu {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    #mainmenu li {
        display: block;
        list-style: none;
        padding: 2vh 0;
    }

        #mainmenu li a {
            font-family: SangBleu Kingdom;
            font-size: 45px;
            line-height: 1;
            display: block;
            text-align: center;
            color: #E9E7DE;
            position: relative;
            display: inline-block;
        }

            #mainmenu li a:after {
                content: '';
                display: none;
                position: absolute;
                left: 0;
                right: 0;
                margin: auto;
                bottom: -4px;
                background: #fff;
                height: 2px;
            }

#page-home a.home, #page-residences a.residences, #page-amenities a.amenities, #page-lifestyle a.lifestyle, #page-community a.community #page-contact a.contact, #page-team a.team, #page-register a.reglink {
    font-style: italic;
}

    #page-home a.home:after, #page-residences a.residences:after, #page-amenities a.amenities:after, #page-lifestyle a.lifestyle:after, #page-community a.community:after, #page-contact a.contact:after, #page-team a.team:after, #page-register a.reglink:after {
        display: block;
    }

#menu {
    display: block;
    width: 100px;
    font-size: 14px;
    letter-spacing: 0.3em;
    text-align: left;
    transition: opacity 0.7s;
}

#page-home #menu {
    color: #E9E7DE;
}

.moved #menu {
    opacity: 1;
    color: #484845 !important;
}

.reg-now {
    display: block;
    position: fixed;
    left: 100%;
    font-size: 14px;
    bottom: 80px;
    transform: rotate(-90deg) translateY(100%) translateY(-40px);
    transform-origin: left bottom;
    width: calc(100vh - 300px);
    line-height: 1;
    letter-spacing: 0.3em;
    z-index: 10;
    text-align: left;
}

.active-header .reg-now {
    color: #E9E7DE;
}

.bg header {
    background: #E3F0EC;
}

.close {
    position: absolute;
    top: 50px;
    left: 60px;
    margin: 0 auto;
    width: 20px;
    height: 20px;
    display: block;
    text-align: center;
    cursor: pointer;
    font-size: 0;
    z-index: 50;
}

    .close:after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 2px;
        height: 20px;
        transform: rotate(45deg);
        transform-origin: center;
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: center;
        background: #fff;
    }

    .close:before {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 2px;
        height: 20px;
        transform: rotate(-45deg);
        transform-origin: center;
        -webkit-transform: rotate(-45deg);
        -webkit-transform-origin: center;
        background: #fff;
    }

.holm {
    display: block;
    width: 340px;
    max-width: calc(100% - 130px);
    margin: auto;
    position: relative;
    z-index: 5;
}


/* enquiry */

.mb {
}

.register {
    width: 523px;
    max-width: 100%;
}

#contact {
    padding: 230px 0 30px 0;
    display: flex;
    min-height: calc(100vh - 165px);
    flex-direction: column;
    justify-content: space-between;
}

input, select {
    font-size: 13px;
    margin: 0 auto;
    padding: 18px 0;
    width: 100%;
    color: #4D4A47;
    border: 0 none;
    font-weight: 300;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    border-bottom: 1px solid #a6a4a3;
    text-align: left;
    font-family: 'Roobert';
}

select {
    background-image: url(/images/buttons/arrow.svg);
    background-position: right center;
    background-repeat: no-repeat;
}

.submitholder {
    padding: 30px 0 20px 0;
}

.b_submit {
    float: right;
    width: 200px;
    padding: 10px 0;
    border: 1px solid #a6a4a3;
    color: #4D4A47;
    text-align: center;
    line-height: 1;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s;
    letter-spacing: 0.15em;
}

    .b_submit:hover {
        background: #a6a4a3;
        color: #E3F0EC;
    }

#thank p {
    font-size: 13px;
}

.privacy {
    font-size: 10px;
    margin-bottom: 100px;
}

.chk_holder {
    padding: 20px 0;
    border-bottom: 1px solid #a6a4a3;
}

.logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1000px;
    max-width: 100%;
}

    .logos p {
        font-size: 11px;
        text-align: left;
        margin: 0;
        display: flex;
        align-items: center;
        letter-spacing: 0.15em;
    }

        .logos p a {
            display: inline-block;
            margin-left: 25px;
        }

.ct-m {
    display: flex;
    justify-content: space-between;
}

.fb {
    display: inline-block;
    width: 9px;
}

.social {
    width: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inst {
    display: inline-block;
    width: 18px;
}



#chkInternational {
    border: 0 none;
    clip: rect(0px, 0px, 0px, 0px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    cursor: pointer;
    display: inline-block;
    line-height: 25px;
    width: 20px;
    text-align: center;
}

    #chkInternational + label {
        padding: 2px 0 2px 26px;
        position: relative;
        text-align: center;
        display: block;
        color: #4D4A47;
        font-size: 13px;
        font-family: inherit;
        display: inline;
        margin: auto;
    }

        #chkInternational + label:before {
            position: absolute;
            left: 0;
            width: 20px;
            height: 20px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            border: 1px solid #a6a4a3;
            content: '';
            display: block;
        }

        #chkInternational + label:after {
            position: absolute;
            left: 0;
            width: 5px;
            height: 11px;
            top: 50%;
            left: 8px;
            -webkit-transform: translateY(-60%) rotate(45deg) scale(0);
            transform: translateY(-60%) rotate(45deg) scale(0);
            border-bottom: 2px solid #a6a4a3;
            border-right: 2px solid #a6a4a3;
            content: '';
            display: block;
            -webkit-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
        }

    #chkInternational:checked + label:after {
        -webkit-transform: translateY(-60%) rotate(45deg) scale(1);
        transform: translateY(-60%) rotate(45deg) scale(1);
    }

input:-webkit-input-placeholder, textarea:-webkit-input-placeholder {
    color: #4D4A47;
    opacity: 1;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #4D4A47;
    opacity: 1;
}

input:-moz-placeholder, textarea:-moz-placeholder {
    color: #4D4A47;
    opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: #4D4A47;
    opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #4D4A47;
    opacity: 1;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
    color: transparent;
}

.play {
    display: block;
    text-align: center;
    width: 135px;
    text-align: center;
    color: #fff;
    letter-spacing: 0.3em;
}

    .play img {
        margin-bottom: 20px;
    }

.location-img {
    display: block;
    width: 940px;
    margin: auto;
}

.chapter {
    width: 270px;
}

.summa {
    width: 165px;
}

.plus {
    width: 88px;
}

.urbis {
    width: 130px;
}

.teamImg {
    display: block;
    margin-bottom: 60px;
}

/*footer*/
footer {
    font-family: Roobert;
    font-size: 8px;
    line-height: 1px;
    letter-spacing: 0.4em;
    text-align: left;
    padding: 0 0 37px 0;
    position: relative;
}

    footer .container {
        display: flex;
        align-items: center;
    }

    footer a {
        display: inline-block;
        margin-right: 73px;
    }

        footer a.fb, footer a.ins {
            margin-right: 100px;
        }

.animated .fadeIn {
    opacity: 1;
}

.delay1 {
    transition-delay: 0.25s;
}

.delay2 {
    transition-delay: 0.50s;
}

.delay3 {
    transition-delay: 0.75s;
}

.delay4 {
    transition-delay: 1s;
}

.delay5 {
    transition-delay: 1.25s;
}


/* Token Style */
ul.token-input-list-project {
    border: none;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    text-align: left;
    text-align-last: left;
    text-align: -moz-left;
    text-align: -webkit-left;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    clear: both;
}

li.token-input-input-token-project {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
}

ul.token-input-list-project li input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100% !important;
    margin-bottom: 0;
}

li.token-input-token-project p {
    display: inline;
    padding: 0;
    margin: 0 5px 0 0;
    line-height: 20px;
    font-size: 11px;
}

li.token-input-token-project {
    overflow: hidden;
    height: 25px;
    margin: 0;
    padding: 2px 5px;
    background-color: #ccc;
    color: #000;
    cursor: default;
    border: 1px solid #525252;
    font-size: 12px;
    white-space: nowrap;
    list-style: none;
    display: inline-block;
}

div.token-input-dropdown-project {
    position: absolute;
    width: 100%;
    background-color: #fff;
    overflow-x: hidden;
    cursor: default;
    font-size: 11px;
    z-index: 13;
    color: #000000;
}

    div.token-input-dropdown-project ul {
        margin: 0;
        padding: 0;
        display: block !important;
        max-height: 205px;
    }

        div.token-input-dropdown-project ul li {
            background-color: #fff;
            font-size: 14px;
            padding: 3px;
            margin: 0;
            list-style-type: none;
            font-weight: 100 !important;
        }

            div.token-input-dropdown-project ul li.token-input-dropdown-item-project {
                background-color: #fff;
            }

            div.token-input-dropdown-project ul li.token-input-dropdown-item2-project {
                background-color: #fff;
            }

            div.token-input-dropdown-project ul li em {
                font-weight: bold;
                font-style: normal;
            }

            div.token-input-dropdown-project ul li.token-input-selected-dropdown-item-project {
                background-color: #ccc;
                color: #fff;
            }
/* Parsley-error */
ul.parsley-errors-list.filled, ul.parsley-errors-list {
    font-size: 10px;
    list-style: outside none none;
    margin: 0 auto;
    padding: 0;
    position: relative;
    text-align: left;
    top: 0;
}

    ul.parsley-errors-list.filled li, ul.parsley-errors-list li {
        padding: 0;
        text-align: left;
        color: #F00D0D;
    }

* {
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
}


.holder {
    position: relative;
    width: 5px;
}

.in-ancher {
    width: 0;
    display: block;
    position: absolute;
    z-index: 11;
    opacity: 0;
}

.hasNo {
    position: relative;
}

    .hasNo span {
        display: block;
        left: -52px;
        top: 0;
        position: absolute;
        font-family: 'SangBleu Kingdom';
        font-style: italic;
        font-size: 18px;
    }

.h-ancher {
    display: block;
}

.m {
    display: none;
}

@media screen and (max-width : 1380px) {
      * .italic
    {
        font-size:0.9em
    }
   
    .container {
        max-width: calc(100% - 160px);
    }
    .v_w360 {

    transform: translateX(0);
        max-width: calc(100% - 420px);
}
    .w360 {
        width: 320px;
    }
    .w420 {
    width: 370px;
   
}
.g64 {
    width: 55%;
}
.ptPad
{
    padding-top:80px
}

    #menu, .close {
        left: 30px;
        top: 20px;
    }

    header {
        padding: 0 30px;
    }

    .pr150 {
        padding-right: 0;
    }

    .tr50 {
        transform: translateX(0);
    }

    .prl_m {
        padding-left: 0;
    }

    .g64 {
        width: 60%;
    }

    .trn50 {
        transform: translateX(0);
    }

    .pl50 {
        padding-left: 0;
        padding-right: 50px;
    }

    .max65m {
        max-width: 100%;
    }

    .auto-t {
        margin: -250px 0 0 0%;
    }
    .ptPad {
    padding-top: 0;
}
    .trn100 {
        margin-top: -146px;
        padding-left: 6%;
    }


    .trn200 {
        margin-top: -115px;
        padding-left: 4%;
        margin-bottom: 5%;
    }
}





@media screen and (max-width : 1000px) {


    h1 {
        font-size: 10vw;
        transform: translateY(-15px);
    }

    body {
        font-size: 12px;
    }
    header.moved{
        background:inherit
    }

    .container, .container-m, .container.w1600 {
        max-width: calc(100% - 60px);
        width: calc(100% - 60px);
        margin-left: auto;
        margin-right: auto;
    }

    header {
        height: 60px;
    }

    #logo {
        width: 90px;
    }

    #page-home #menu line{
        stroke:#E9E7DE
    }
      #page-home .moved #menu line{
        stroke:#484845
    }

    #mainmenu li a {
        font-size: 28px;
      
    }

    .reg-now {
        left: 0%;
        font-size: 12px;
        bottom: 0;
        transform: none;
        width: 100%;
        line-height: 1;
        text-align: center;
        background: inherit;
        padding: 12px 0;
    }

    h2, h3 {
        font-size: 30px;
    }

    p {
        text-align: center;
    }


    .pt300, #contact, .pt230 {
        padding-top: 160px;
    }


    .pt170 {
        padding-top: 70px;
    }

    .pb170 {
        padding-bottom: 70px;
    }

    .container.flex-c, .flex-d {
        display: block;
    }

    .fullm {
        max-width: 100%;
    }

    .toSlide {
        transform: none !important;
    }


    .w502, .w540, .v_w360, .w1020, .v_w420m, .g36 {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        max-width: 100%;
        transform: translateX(0);
    }

    .g64, .g48 {
        width: 100%;
    }

    .g36 {
        width: 100%;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .g56, .g36, .g44, .g48 {
        width: 100%;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
    }

    .g32 {
        width: 100%;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .w360 {
        margin-left: auto;
        margin-right: auto;
    }

    .auto-t {
        margin: 0;
    }

    .mb100m {
        margin-bottom: 60px;
    }

    .mb60m, .mb170 {
        margin-bottom: 60px;
    }

    .btn {
        font-size: 11px;
        margin-left: auto;
        margin-right: auto;
    }

    .h60m {
        height: 60vw;
    }
    .mb30m{
        margin-bottom:30px
    }
    .play {
        width: 80px;
        font-size: 10px;
    }

    .holder {
        display: none !important;
    }



    footer {
        padding-bottom: 60px;
    }

        footer .container {
            display: block;
        }

        footer a, footer p {
            display: block;
            margin-right: 0;
            line-height: 1;
            text-align: left;
            margin: 0 0 10px 0;
            text-align: left;
        }

            footer a.fb {
                position: absolute;
                margin: 0;
                right: 0;
                bottom: -3px;
            }

            footer a.inst {
                position: absolute;
                margin: 0;
                right: 30px;
                bottom: -4px;
            }

    .nextpage {
        padding: 70px 0;
        font-size: 30px;
    }

    .pt120 {
        padding-top: 0;
    }

    .flex-s {
        display: block;
    }

    .v_w550 {
        max-width: 100%;
    }

        .v_w550 p {
            text-align: left;
        }

    .m {
        display: block;
    }

    .d {
        display: none;
    }

    .pr50 {
        padding-right: 0;
    }

    .pl50 {
        padding-left: 0;
    }

    .prl_m {
        padding: 0 20px 0 20px !important;
    }

    .w480m {
        width: 480px;
        max-width: calc(100% - 60px);
    }

    .center-m {
        text-align: center;
        margin-right: auto;
        margin-left: auto;
    }


    .g64.auto-t {
        margin: 0;
    }


    .g50 {
        width: 100%;
    }

    .flex-cr {
        display: block;
    }

    .g28 {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

        .g28 img {
            width: 100%;
            max-width: 420px;
            margin-left: auto;
            margin-right: auto;
        }

    .mb100 {
        margin-bottom: 80px;
    }

    .g40 {
        width: 100%;
        max-width: 590px;
        margin-left: auto;
        margin-right: auto;
    }

    .ptb200 {
        padding: 60px 0;
    }

    .w420 {
        margin-left: auto;
        margin-right: auto;
    }

    .trn50p {
        transform: none;
    }

    .pl50 {
        padding-left: 0;
        padding-right: 0;
    }

    .hasNo {
        padding-left: 40px;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }

        .hasNo span {
            left: 0;
        }

    .trn200 {
        margin-top: 60px;
        padding-left: 0;
    }

    .trn100 {
        margin-top: 0;
        padding-left: 0;
    }

    .g88 {
        width: 100%;
        max-width: 660px;
        margin: auto;
    }
  
    #rainbow {
        top: 20px;
        right: 20px;
        font-size: 13px;
    }

    .delay2 {
        transition-delay: 0s;
    }

    .logos p span {
        display: none;
    }

    .logos p a {
        display: inline-block;
        margin: 0 9px;
    }

    #page-team .w550 {
        max-width: 100%;
        margin:auto
    }

    .holm {
        transform: translateY(-15px);
    }
    .b_submit {
        float:none
    }
    .center-m
    {
        text-align:center;
            max-width: calc(100% - 40px);
    }
      .center-m p{
          text-align:center
      }
      .teamImg {
    margin:0 auto 30px auto
}
      h4.mb30{
          margin-bottom:15px
      }
      .chapter 
      {
          width:150px
      }
      .summa
      {
          width:120px;
      }
      .plus
      {
          width:80px;
      }
      .urbis
      {
          width:100px;
      }

}


/*.pr50m
{
    padding-right:50px
}
    .left_m {
        text-align: left;
    }

.pl50m
{
    padding-left:50px
}*/
