/*--------------------------------------------------------------
✍️ FONTS
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300i,400,400i,600,600i,700');
.pge-not-found {
    position: fixed;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 4vw;
}
.form-group .form-control { color:#fff;}

div#loader {
    position: fixed;
    overflow: hidden;
    height: 100%;
    width: 100%;
    background: rgb(19, 19, 19);
    z-index: 99999;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

svg.loderlogo {
    fill: rgba(255, 255, 255, 0.86);
    width: 150px;
    display: inline-block;
}

@keyframes loader-anim {

    0% {
        fill: rgba(255, 255, 255, 0.1);

    }
    
    
    50% {
        fill: rgba(255, 255, 255, 0.5);

    }
    
   
    100% {
         fill: rgba(255, 255, 255, 1);
    }
}

svg.loderlogo path {
    animation: loader-anim 3s infinite;
}
svg.loderlogo path:nth-child(1) {
    
    animation-delay: .1s;
}
svg.loderlogo path:nth-child(2) {
    
    animation-delay: .5s;
}
svg.loderlogo path:nth-child(3) {
    
    animation-delay: .8s;
}

html,
body { overflow: hidden;}

html.close-popup,
.overflow-visible{
    overflow: visible;
}
/*--------------------------------------------------------------
🚧 GLOBAL LAYOUT
--------------------------------------------------------------*/

/*General*/

* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}


html,
body {
    min-height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000;

}


h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    margin: 0 0 20px;
    font-weight: normal;

}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
}

p {
    font-size: 14px;
    line-height: 25px;
    margin: 0;
    margin-bottom: 10px;
}

a {
    color: #000;
    text-decoration: none;
}

.home__header {
    background: #000;
    color: #fff;
    display: table;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.home__header__wrapper {
    display: table-cell;
    position: relative;
    text-align: center;
    vertical-align: middle;
    z-index: 99;
}

.home__header__wrapper:after {
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.62);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 99;
}

.home__header__video {
    bottom: 0;
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    transform: scale(1);
    width: 100%;
}

.home__header__content {
    display: inline-block;
    position: relative;
    max-width: 91.5rem;
    width: 100%;
    z-index: 999;
}

.home__header .xl_logo {
    display: block;
    fill: #fff;
    margin: auto;
    width: 100%;
    max-width: 900px;
}

.home__header .xl_logo path {
    fill: transparent;
    stroke: #fff;


}

.logo,
.navigation__button {
    position: fixed;
    top: 30px;
    left: 50px;
    z-index: 99;
}

.navigation__button {
    right: 50px;
    left: auto;
}

.logo-xs {
    fill: #000;
    width: 95px;
    height: auto;
    margin-top: 0px;
}

@keyframes logo_anm {

    from {
        stroke-width: 14px;
        stroke-dasharray: 1200;
        stroke-dashoffset: 1200;
        fill: transparent;
        stroke: #fff;


    }

    to {
        stroke-width: 14px;
        stroke-dasharray: 0;
        stroke-dashoffset: 0;
        stroke: #fff;
        fill: transparent;

    }


}


.navigation__button__icon {
    display: inline-block;
    margin-right: 1.5rem;
    margin-top: -.3rem;
    vertical-align: middle;
}

.navigation__button__icon:after,
.navigation__button__icon:before {
    background: #000;
    content: "";
    display: block;
    height: 1px;
    width: 2rem;
}

.navigation__button__icon:after {
    margin-top: .4rem;
}

.navigation__button__text {
    display: inline-block;
    transition: letter-spacing .5s ease;
    width: 3rem;
    color: #fff;
}

.desktop .navigation__button:hover .navigation__button__text {
    letter-spacing: .3rem;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.social_icn {
    position: fixed;
    bottom: 50px;
    left: 50px;
    z-index: 9;
    width: 20px;
}

.social_icn li {
    float: left;
    padding-bottom: 20px;
}

.social_icn li a,
.navigation__contact__text,
.navigation__button__text {
    color: #000;
}

.navigation__contact {
    bottom: 50px;
    position: fixed;
    right: 50px;
    z-index: 4;
}

.navigation__button__text {
    display: none;
}

.navigation__contact__text {
    bottom: 0;
    position: absolute;
    right: 0;

    transition: letter-spacing .5s ease;
    transform: rotate(90deg) translateY(100%);
    transform-origin: bottom right;
    white-space: nowrap;
}

.navigation__contact__dash {
    background: #000;
    display: inline-block;
    height: 1px;
    margin: 1px 1.25rem 0;
    transition: width .4s ease;
    vertical-align: middle;
    width: 2rem;
}

.navigation__contact__text:hover {
    letter-spacing: .3rem;
}

.content__wrapper {
    margin: auto;
    max-width: 1170px;
    padding: 0 20px;
}

h1.home__about-us__title {
    font-size: 200px;
    color: #f2f2f2;
    position: absolute;
    max-width: 90%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

#who_3,
#who_6 {
    padding: 0 29px;
}

h1.home__about-us__title span {
    display: inline-block;
    padding: 0 10px;
    transition: 0.8s;
}

p.home__about-us__description {
    font-size: 41px;
    margin-top: 54px;
    line-height: normal;
}

p.home__about-us__description span {
    display: block;
}

.home__about-us__columns__column {
    position: relative;
    z-index: 1;
}

a.home__about-us__button {
    display: inline-block;
    margin-top: 40px;
}

.home__about-us__button__text {
    transition: 0.5s;
}

.home__about-us__button__text:hover {
    letter-spacing: 5px;
}

a.home__about-us__button i {
    padding-left: 10px;
}

.home__about-us {
    overflow: hidden;
    max-height: 300px;
    position: relative;
}

.hp_case_study {
    float: left;
    width: 100%;

}

.hp_case_bg {
    float: left;
    width: 100%;
}

.hp_case_rt {
    float: right;
    width: 21%;
    padding-left: 43px;
}

.hp_case_bt {
    float: left;
    width: 100%;
    padding: 25px 0 0;
}

.list_itm {
    float: left;
    width: 100%;
    margin-bottom: 16px;

}



.hp_case_bt_inner {
    margin: auto;
    max-width: 100%;
}

.list_itm strong {
    font-family: 'Playfair Display', serif;
    margin-bottom: 11px;
    display: block;
    font-size: 48px;
    font-weight: normal;
    color: #000;
    text-transform: uppercase;
}

.hp_case_b-l {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    text-align: center;



}

.hp_case_b-l h3 {
    font-size: 35px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    margin: 0;
}


.hp_case_b-r {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
}

.hp_case_bg {
    position: relative;
}

.haading_text {
    font-size: 8vw;
    position: absolute;
    top: 50%;
    left: -36px;
    right: 0;
    margin: auto;
    z-index: 9999;
    color: #fff;
    font-weight: normal;
    letter-spacing: 1px;
    text-align: center;
    transform: translateY(-50%);
    line-height: 180px;
    word-break: break-word;
}

.home__work__counter {
    left: -7rem;
    position: absolute;
    top: 3rem;
    transform: rotate(-90deg);
}

.home__work__counter__dash {
    position: relative;
    background: #000;
    display: inline-block;
    font-size: 0;
    height: 1px;
    margin: 0 1rem;
    transform-origin: left;
    vertical-align: middle;
    width: 3.5rem;
}

/*.home__work__counter__dash span {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: rgb(0, 0, 0);
    height: 1px;
    width: 0;
}*/

.home.fp-viewing-0 .logo-xs,
.contact_body.fp-viewing-1 .logo-xs {
    fill: #fff;
}

.home.fp-viewing-0 .navigation__button__text,
.home.fp-viewing-0 .navigation__button__icon:after,
.home.fp-viewing-0 .navigation__button__icon:before,
.home.fp-viewing-0 .social_icn li a,
.home.fp-viewing-0 .navigation__contact__text,
.close_menu .navigation__button__text,
.contact_body.fp-viewing-1 .navigation__button__text,
.contact_body.fp-viewing-1 .navigation__button__icon:after,
.contact_body.fp-viewing-1 .navigation__button__icon:before {
    color: #fff;
}

.home.fp-viewing-0 .navigation__contact__dash,
.home.fp-viewing-0 .navigation__button__icon:after,
.home.fp-viewing-0 .navigation__button__icon:before,
.close_menu .navigation__button__icon:after,
.close_menu .navigation__button__icon:before,
.contact_body.fp-viewing-1 .navigation__button__icon:after,
.contact_body.fp-viewing-1 .navigation__button__icon:before {
    background: #fff;
}

#section-3 {
    background-color: rgb(247, 219, 231);
}

.fp-section {
    transition: 0.5s;
    height: 100vh;
}

.home__work__counter {
    opacity: 0;
}

.case_study_banner {
    position: relative;
}

.clip_mask {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgb(247, 219, 231);
    height: 100%;
    left: 0;
}

#section-4 .clip_mask {
    background: #dce9f7;
}

#section-4 {
    background-color: #dce9f7;
}

#section-5 .clip_mask {
    background: #f7ede8;
}

#section-5 {
    background-color: #f7ede8;
}

#section-6 {
    background-color: #f5f5f5;
}

#section-6 .clip_mask {
    background: #f5f5f5;
}

#section-7 {
    background: #e6e6e6;
}

.hp_awards {
    position: relative;
}

.hp_awards_items {
    text-align: center;
}

.hp_awards_items li {
    width: 24%;
    display: inline-block;
    vertical-align: middle;
    padding: 0 40px;
    border: double 4px #dcdcdc;
    height: 142px;
    position: relative;
}

#section-7 .haading_text {
    color: rgb(0, 0, 0);
    margin: 0;
    position: static;
}

.hp_awards_items li img {
    position: absolute;
    width: 70%;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translatey(-50%);
}


/* Menu css
====================================*/

.header-menu-wrapper .navigation__button__icon {
    display: inline-block;
    margin-right: 0;
    margin-top: 0;
    vertical-align: middle;
}

.header-menu-wrapper .navigation__button__icon:after,
.header-menu-wrapper .navigation__button__icon:before {
    position: relative;

}

.header-menu-wrapper .navigation__button__icon:before {
    transform: rotate(50deg);
    -webkit-transform: rotate(50deg);
}

.header-menu-wrapper .navigation__button__icon:after {
    transform: rotate(-50deg);
    -webkit-transform: rotate(-50deg);
    top: -7px;
}

.header-menu-wrapper {
    color: #fff;
    display: table;
    height: 100%;
    position: fixed;
    visibility: hidden;
    width: 100%;
    top: 0;
    left: 0;
    padding: 55px;

    z-index: 99;
}

.close_menu {
    opacity: 0;
}

.menu-wrapper {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.menu-list {
    font-size: 0;
    margin: auto;
    max-width: 1101px;
    position: relative;
    z-index: 1;
}

.menu_list_item {
    display: block;
    font-size: 48px;
    vertical-align: middle;
    margin-bottom: 20px;
    font-weight: 600;
    transform: translateY(-50px);
    opacity: 0;
}

.menu_list_dash {
    background: #fff;
    height: 1px;
    margin: 1rem auto;
    transform-origin: left;
    vertical-align: middle;
    width: 7.5rem;
    display: block;
    transform: scaleX(0);
    opacity: 0;
}

.menu_list_item a {
    color: #fff;
    transition: 0.5s;
    display: inline-block;
    border-bottom: solid 1px rgb(35, 35, 35);
}

.menu_list_item a:hover {
    color: #a0a0a0;
}

.menu-bg {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: right;
}

.menu-bg-left,
.menu-bg-right {
    background-color: #0a110d;
    bottom: 0;
    position: absolute;
    top: 0;
}

.menu-bg-left {
    left: 0;
    right: 49%;
}

.menu-bg-right {
    right: 0;
    left: 50%;
}

svg.menu_xl_logo {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    z-index: 0;
    max-width: 1200px;
    transform: translateY(-50%);
}

.menu_xl_logo path {
    fill: rgba(255, 255, 255, 0.03) !important;
}

.menu_social_icn {
    position: fixed;
    bottom: 50px;
    left: 0;
    z-index: 9;
    width: 130px;
    right: 0;
    margin: auto;
}

.menu_social_icn li {
    display: inline-block;
    padding: 0 8px;
}

.menu_social_icn li a {
    color: #fff;
}



/*.ab_1 { position: relative; height: 100vh; display: table; width: 100%;}*/

.inner_title {
    /*display: table-cell; vertical-align: middle;*/
    font-size: 200px;
    letter-spacing: 10px;
    color: #000;
    text-align: center;
}


.col-1,
.col-2,
.col-3,
.col-4 {
    position: relative;
}


.form-group {
    float: left;
    width: 100%;
    margin-bottom: 15px;
}

.form-group .form-control {
    height: 40px;
    border: none;
    width: 100%;
    background: none;
    border-radius: 0;
    font-size: 16px;
    padding: 0 10px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.18);
}
.form-group .form-control { color:#fff;}
.form-group textarea.form-control {
    height: 150px; color:#fff;
    font-family: 'Open Sans', sans-serif;
    padding: 10px 20px;
}

.form-group .btn {
    cursor: pointer;
    border: none;
    background: none;
    color: rgb(255, 255, 255);
    font-size: 23px;
    border-radius: 35px;
    padding: 19px 81px;
    border: solid 1px rgba(255, 255, 255, 0.51);
    margin-top: 33px;
}

.cont_l p {
    font-size: 20px;
    color: rgb(255, 255, 255);
    line-height: 40px;
    font-weight: 300;
}

.cont_l p a {
    color: #fff;
}

.contact_us h6 {
    font-size: 44px;
    margin: 0 0 23px;
    color: rgb(255, 255, 255);
    font-weight: 300;
}

.contact_us .col-r {
    padding: 0;
}

.xl_text p {
    font-size: 30px;
    line-height: 48px;
    margin-bottom: 10px;
    text-align: center;
}

.md_text p {
    font-size: 21px;
    line-height: 38px;
    margin-bottom: 10px;
    text-align: center;
}

.bottom_line {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 16%;
    background: rgb(0, 0, 0);
    height: 4px;
    bottom: -40px;
    transform: scaleX(0);
    transform-origin: bottom left;
    opacity: 0;
}

.xl_hd_h3 {
    font-size: 80px;
    text-align: center;
    letter-spacing: 0px;
}

.contact__wrapper {
    margin: auto;

    background: url(../images/bg1.jpg) no-repeat;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
}

.contact__wrapper:after {
    content: "";
    position: absolute;
    height: 100%;
    background: rgba(0, 0, 0, 0.87);
    top: 0;
    left: 0;
    right: 0;
}

.contact__wrapper > div {
    width: 50%;
    padding: 100px 55px;
    z-index: 1;
    position: relative;

}

.section.contact_us {
    position: relative;
    padding: 0;
}

#w-section-1 {
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
}

#w-section-1 p {
    font-size: 28px;
    line-height: normal;
}

.w_container {
    width: 100%;
    margin: auto;
    padding: 80px 70px;
}

.w_item,
.grid-item {
    float: left;
    width: 50%;
    padding: 16px;

}

.grid-item {
    margin-bottom: 0px;
}


.w_item .w_item_caption {
    padding: 17px 0;
}

.w_item .w_item_caption h3 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 34px;
}

.w_item .w_item_caption h3:after {
    content: "";
    position: absolute;
    left: 0;
    width: 55px;
    height: 3px;
    background: rgb(0, 0, 0);
    bottom: 0;
    transition: .5s;
}

a.btn {
    border: solid 1px rgb(99, 99, 99);
    padding: 10px;
    min-width: 150px;
    display: inline-block;
    text-align: center;
    transition: .5s;
}

.w_item:hover a.btn {
    background: #000;
    color: #fff;
}

.w_item figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    transition: .5s;
}

.w_item figure img {
    transition: .5s;
}

.w_item:hover h3:after {
    width: 70px;
}

.w_item:hover img {
    transform: scale(1.1);
}

.w_item:hover figure {
    box-shadow: 0 0 45px #0000003d;
}

.mfp-figure figure {
    margin: 0;
    background: rgb(255, 255, 255);
}

.mfp-image-holder .mfp-content {
    max-width: 1100px;
}

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

img.mfp-img {
    padding: 0;
}

.grid-item img {
    width: 100%;
}

.case_study_banner img {
    height: 77vh;
    width: 100%;
    object-fit: cover;
}

.fp-section.fp-table .fp-tableCell {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home__about-us {
    width: 100%;
}


.hp_awards h3 {
    margin: 23px 0;
    text-align: center;
    font-size: 25px;
    letter-spacing: 2px;
}
.content__wrapper.thanks-wrap {
    height: 100vh;
    align-items: center;
    display: flex;
    justify-content: center;
}
.content__wrapper.thanks-wrap h1 {
    font-size: 6vw;
    margin: 0;
}
@media (max-width:1400px) {
    .inner_title {
        font-size: 133px;
    }
    .case_study_banner img {
        max-width: 80%;
        margin: auto;
        display: block;

    }
    .home__work__counter {
        top: 13rem;
    }
}

@media (max-width:1200px) {

    h1.home__about-us__title {
        font-size: 133px;
    }
    a.home__about-us__button {
        margin-top: 5px;
    }
    p.home__about-us__description {
        font-size: 30px;
        margin-top: 26px;
    }

    .list_itm strong {
        font-size: 31px;
    }
    .list_itm p {
        font-size: 12px;
        line-height: 18px;

    }
    .hp_case_bt {
        padding: 15px 0;
    }
    .hp_case_b-l h3 {
        font-size: 26px;
    }
    .inner_title {
        font-size: 111px;
    }

}


@media (max-width:992px) {
    section#w-section-2 {
        padding: 0;
    }
    .w_item,
    .grid-item {
        padding: 5px;
        width: 100%;
    }
    .w_container {
        padding: 0 15px
    }
    .social_icn,
    .logo {
        left: 13px;
    }
    .navigation__contact,
    .navigation__button {
        right: 15px;
    }
    p.home__about-us__description {
        font-size: 23px;
        margin-top: 0;
    }
    h1.home__about-us__title {
        font-size: 100px;
    }
    .home__about-us__columns__column {
        text-align: center;
    }
    .xl_text p {
        font-size: 20px;
        line-height: 34px;
    }
    .grid.popup-gallery {
        margin-top: 63px;
    }
}

@media (max-width:767px) {
    .case_study_banner img {
        height: auto;
        max-width: 100%;
    }

    section {
        float: left;
        width: 100%;
        padding: 50px 0;
    }

    .site-header + .social_icn,
    .navigation__contact {
        display: none;
    }
    .haading_text {
        font-size: 36px;
        line-height: 30px;
        left: 0;
    }

    .hp_case_bg,
    .hp_case_bt {
        width: 100%;
    }
    .hp_case_rt {
        width: 100%;
        padding: 14px 0;
    }
    .hp_awards_items li {
        padding: 0 14px;
        height: 86px;
    }

    header.site-header {
        background: rgb(0, 0, 0);
        float: left;
        width: 100%;
        height: 50px;
        position: fixed;
        z-index: 999;
    }
    .logo {
        top: 7px;
    }
    .logo-xs {
        width: 72px;
    }
    .navigation__button {
        top: 12px;
    }
    .navigation__button__icon:after,
    .navigation__button__icon:before {
        background: rgb(255, 255, 255);

    }
    .social_icn li a,
    .navigation__contact__text,
    .navigation__button__text {
        color: rgb(255, 255, 255);
    }
    .menu_list_item {
        font-size: 26px;
    }
    .logo-xs {
        margin-top: 4px;
        fill: rgb(255, 255, 255);
    }
    #fullpage {
        padding-top: 22px;
    }


    .home__header .xl_logo path {
        fill: rgb(255, 255, 255);
    }

    .home__header .xl_logo {
        max-width: 171px;
    }

    .home__header {
        height: 400px;
    }
    h1.home__about-us__title {
        font-size: 52px;
        position: static;
        transform: none;
        max-width: 100%;
        margin: 0px 0 8px;
    }
    p.home__about-us__description {
        font-size: 18px;
        margin-top: 0;
    }
    .home section#section-1 {
        padding: 0;
    }

    .hp_case_study {
        padding: 0;
    }
    .clip_mask {
        display: none;
    }

    .hp_case_bt_inner {
        margin: auto;
        max-width: 100%;
    }
    .hp_case_b-l,
    .hp_case_b-r {
        width: 100%;
        opacity: 10;
        transform: none;
    }
    .list_itm {
        width: 33%;
        text-align: center;
        padding: 0 9px;
    }
    .list_itm p {
        font-size: 10px;
        line-height: 13px;
    }
    .inner_title {
        font-size: 40px;
        border-bottom: solid 1px rgb(204, 204, 204);
        padding-bottom: 20px;
        margin-bottom: 10px;
    }
    .xl_hd_h3 {
        font-size: 30px;
    }
    section#ab_section-1 {
        padding-bottom: 0;
    }
    .md_text p {
        font-size: 15px;
        line-height: 27px;
    }
    .contact__wrapper > div {
        width: 100%;
        padding: 22px;

    }
    .contact__wrapper {

        float: left;
        width: 100%;
    }
    .cont_l p {
        font-size: 15px;
        line-height: 29px;
    }
    .contact_us h6 {
        font-size: 25px;
    }

    .form-group .btn {
        font-size: 15px;
        padding: 12px 58px;

    }
    #w-section-1 p {
        font-size: 20px;
        line-height: normal;
    }
    .w_item {
        width: 100%;
        margin-bottom: 0;
        padding: 0;
    }
    .w_item .w_item_caption h3 {
        font-size: 25px;
    }

}
