/******************************************************************


	------------------------
	-- TABLE OF CONTENTS --
	------------------------
	
	--  01. Basic
	--  02. Preloader
    --  03. Background Content
    --  04. Navigation
    --  05. Section
    --  06. Section --> Intro
    --  07. Section --> About
    --  08. Section --> How We Can Help (hwch)
    --  09. Section --> Studies
    --  10. Section --> Concept
    --  11. Section --> Contact
    --  12. Section --> Footer
 
 
 ******************************************************************/




/** 1. Basic
*******************************************************************/

html
{
    font-size: 10px;
}

body
{
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-style: normal;

    color: #fff;
    background: #fff;

    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6
{
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;

    letter-spacing: 0;

    color: #fff;
}

h1
{
    font-size: 5rem;
}

h2
{
    font-size: 4rem;
}

h3
{
    font-size: 3.5rem;
}

h4
{
    font-size: 3rem;
}

h5
{
    font-size: 2.5rem;
}

h6
{
    font-size: 2rem;
}

p
{
    /* font-size: 1.5rem;
    line-height: 1.74em; */
    font-size: 1.85rem;
    line-height: 2em;

    letter-spacing: .02em;
}

a,
a:hover,
a:focus
{
    cursor: pointer;
    -webkit-transition: all 300ms ease;
         -o-transition: all 300ms ease;
            transition: all 300ms ease;
    text-decoration: none;
}

a:hover
{
    color: #111;
}

@media (max-width:600px)
{
    html
    {
        font-size: 8px;
    }
}

@media (max-width:500px)
{
    html
    {
        font-size: 7px;
    }
}



/** 2. Preloader
*******************************************************************/

.preloader
{
    position: fixed;
    z-index: 100000;
    bottom: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: 100%;

    background: #fff;
}

.preloader.hide-preloader
{
    height: 0;
    
    -webkit-transition: .8s ease .3s;
         -o-transition: .8s ease .3s;
            transition: .8s ease .3s;
}

.preloader .spinner
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;

    -webkit-animation: spinner-pulse .6s infinite ease-in-out;
            animation: spinner-pulse .6s infinite ease-in-out;
    text-align: center;

    opacity: 1;
    border-radius: 100%;
    background-color: #111;
}

.preloader.hide-preloader .spinner
{
    opacity: 0;
    
    -webkit-transition: .3s ease;
         -o-transition: .3s ease;
            transition: .3s ease;
}

@-webkit-keyframes spinner-pulse
{
    0%
    {
        -webkit-transform: scale(0);
    }
    100%
    {
        -webkit-transform: scale(1.0);

        opacity: 0;
    }
}

@keyframes spinner-pulse
{
    0%
    {
        -webkit-transform: scale(0);
                transform: scale(0);
    }
    100%
    {
        -webkit-transform: scale(1.0);
                transform: scale(1.0);

        opacity: 0;
    }
}



/** 3. Background Content
*******************************************************************/

.background-content
{
    position: fixed;
    z-index: -1;
    top: 0;
    left: 50%;

    overflow: hidden;

    width: 100%;
    height: 100%;

    -webkit-transform: translate3d(-50%,0,0) !important;
            transform: translate3d(-50%,0,0) !important;
}

.background-content-inner
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 110%;
    height: 110%;

    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}

.background-content .background-img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    /* background: url(../img/background.jpg); */
    background: url(../img/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}



/** 4. Navigation
*******************************************************************/

.navigation-main
{
    position: fixed;
    z-index: 100 !important;
    top: 0;

    width: 100%;
    height: 80px;
    padding: 0 30px;

    border-bottom: 1px solid rgba(0,0,0,.12);
    /* background: #fff; */
    background: #F5F5F5;
    -webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,.14);
            box-shadow: 0 0 6px 0 rgba(0,0,0,.14);
}

.navigation-main .container-fluid
{
    max-width: 960px;
}

.navigation-main .navbar-collapse
{
    /* width: 100%; */
    width: 70%;
    margin: 0px 0px 0px 200px;
    /* background: #e8e112; */
}

.navigation-main .navbar-brand
{
    padding: 0;
}

.navigation-main .navbar-brand img
{
    position: absolute;
    top: 50%;

    max-height: 44px;
    margin: 0;
    padding: 0;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.navigation-main button
{
    /* font-size: 28px; */
    font-size: 28px;

    margin-right: 0;

    color: #d80247;
}

.navigation-main ul
{
    margin: 0;
    padding: 0;

    list-style: none;
}

.navigation-main ul li a,
.navigation-main ul li span
{
    font-family: 'Open Sans', sans-serif;
    /* font-size: 13px;
    font-weight: 200; */
    font-size: 13px;
    font-weight: 600;
    /* font-weight: 100;
    line-height: 75px; */
    line-height: 40px;

    display: block;

    margin: 0;
    padding: 0 15px;

    cursor: pointer;
    -webkit-transition: all .1s  linear;
         -o-transition: all .1s  linear;
            transition: all .1s  linear;
    letter-spacing: .096em;
    text-transform: uppercase;

    color: #111;
    background: none !important;
}

.navigation-main ul li a:hover,
.navigation-main ul li span:hover,
.navigation-main ul li.current a
{
    /* color: #13bbbd; */
    color: #d80247;
}

h6
{
    font-family: 'Open Sans', sans-serif;
}


/** MEDIA QUERIES  **/

@media (max-width: 1000px)
{
    .navigation-main ul li a,
    .navigation-main ul li span
    {
        padding: 0 10px;
    }

    .navigation-main .container-fluid
    {
        padding: 0;
    }

    .navigation-main
    {
        padding: 0;
    }

    .navbar-header
    {
        padding: 0 24px;
    }
}

@media (min-width: 841px)
{
    .navigation-main .dropdown:hover .dropdown-menu
    {
        display: block;
    }
}

@media (max-width: 840px)
{
    .navigation-main
    {
        height: 60px;
    }

    .navbar-header
    {
        float: none;

        margin: 0 !important;
    }

    .navbar-toggle
    {
        line-height: 60px;

        display: block;

        margin-top: -4px !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .navbar-collapse
    {
        margin: 0 !important;
        padding: 0;

        border-top: 1px solid transparent;
        background: #fff;
        -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
                box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
    }

    .navbar-collapse.collapse
    {
        display: none!important;
    }

    .navbar-nav
    {
        float: none!important;

        margin: 7.5px -15px;
        padding-top: 15px !important;
        padding-bottom: 26px !important;
    }

    .navbar-nav > li
    {
        float: none;
    }

    .navbar-nav > li > a
    {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-text
    {
        float: none;

        margin: 15px 0;
    }

    .navbar-collapse.collapse.in
    {
        display: block !important;
    }

    .collapsing
    {
        overflow: hidden !important;
    }

    .navigation-main ul li a,
    .navigation-main ul li span,
    .navigation-main ul li .dropdown-menu a
    {
        line-height: 60px !important;

        padding-left: 40px !important;
    }

    .navbar-nav .open .dropdown-menu
    {
        position: static;

        float: none;

        width: auto;
        margin-top: 0;
        padding: 0;

        border: 0;
        background-color: transparent;
        -webkit-box-shadow: none;
                box-shadow: none;
    }

    .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-nav .open .dropdown-menu > li > a
    {
        padding: 0;
    }
}

@media (max-height: 840px) and (max-width: 840px)
{
    .navigation-main ul li a,
    .navigation-main ul li span,
    .navigation-main ul li .dropdown-menu a
    {
        line-height: 44px !important;
    }

    .navigation-main
    {
        height: 60px;
    }

    .navigation-main .navbar-brand img
    {
        max-width: 120px;
    }
}

@media (max-height: 600px) and (max-width: 840px)
{
    .navigation-main ul li a,
    .navigation-main ul li span,
    .navigation-main ul li .dropdown-menu a
    {
        line-height: 34px !important;
    }
}



/** 5. Section
*******************************************************************/

section
{
    position: relative;

    margin: 0 auto;
    padding: 16rem 0;

    background: rgba(45, 45, 45, .86);
}

section.white
{
    position: relative;

    /* background: #fff; */
    background: #ebeeed;
}

section.white h1,
section.white h2,
section.white h3,
section.white h4,
section.white h5,
section.white h6
{
    color: #222;
}

section.white p,
section.white a,
section.white span,
section.white button
{
    color: #222;
}

section.white navigation-button p:hover:after
{
    color: #222;
    border-color: transparent #cccccc transparent transparent;
}

section:last-of-type
{
    padding-bottom: 20rem;
}

section .container-fluid
{
    max-width: 980px;
}

section .headline
{
    line-height: 1.4em;

    margin-top: 0;
    margin-bottom: .9em;
}

@media (max-width:768px)
{
    section .headline br
    {
        display: none;
    }
}


/** 6. Section --> Intro
*******************************************************************/

#intro
{
    position: relative;

    height: 100vh;
}

#intro .container-mid
{
    position: absolute;
    top: 50%;

    width: 100%;

    /* padding-left: 20em;
    padding-right: 20em; */

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

#intro .container-mid h1
{
    line-height: 1.2em;

    margin-top: 0;
    margin-bottom: 1em;
}

#intro .container-mid p.subline
{
    display: inline-block;

    margin: 0;
    margin-right: .8em;

    vertical-align: middle;
}

#intro .container-mid p.linktext
{
    font-size: 1.5rem;
    line-height: 1.74em;

    font-style: italic; 

    display: inline-block;

    margin: 0;
    margin-right: 1em;

    vertical-align: middle;
}

#intro .container-mid a
{
    line-height: 2em;

    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 2em;
    margin: 0;
    padding: 0;

    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;
    text-align: center;
    vertical-align: middle;

    color: #fff;
    border-radius: 10%;
    background: none;

}

#intro .container-mid a:hover
{
    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 2em;
    margin: 0;
    padding: 0;

    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;
    text-align: center;
    vertical-align: middle;

    color:#111;
    background: #cccccc;
    border-radius: 10%;
    background: none;
}

#intro .container-mid a:before
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    -webkit-transition: .15s ease;
         -o-transition: .15s ease;
            transition: .15s ease;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);

    color: #fff;
    border-radius: 10%;
    /* background: #13bbbd; */
    background: #d80247;
}

#intro .container-mid a:hover:before
{
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
}

#intro .container-mid a:after
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    -webkit-transition: .15s ease;
         -o-transition: .15s ease;
            transition: .15s ease;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);

    border-radius: 10%;
    color:#111;
    background: #cccccc;
}

#intro .container-mid a:hover:after
{
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

#intro .container-mid a i
{
    position: relative;
    z-index: 2;
}

#intro .animation-container
{
    -webkit-transition: .5s ease;
         -o-transition: .5s ease;
            transition: .5s ease;
}

#intro .animation-container.animation-fade
{
    opacity: 0;
}

#intro .animation-container.animation-fade.run-animation
{
    opacity: 1;
}

#intro .animation-container.animation-fade-up
{
    -webkit-transform: translateY(10vh);
        -ms-transform: translateY(10vh);
            transform: translateY(10vh);

    opacity: 0;
}

#intro .animation-container.animation-fade-up.run-animation
{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);

    opacity: 1;
}

#intro .animation-container.animation-fade-down
{
    -webkit-transform: translateY(-10vh);
        -ms-transform: translateY(-10vh);
            transform: translateY(-10vh);

    opacity: 0;
}

#intro .animation-container.animation-fade-down.run-animation
{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);

    opacity: 1;
}

#intro .animation-container.animation-fade-left
{
    -webkit-transform: translateX(10vh);
        -ms-transform: translateX(10vh);
            transform: translateX(10vh);

    opacity: 0;
}

#intro .animation-container.animation-fade-left.run-animation
{
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);

    opacity: 1;
}

#intro .animation-container.animation-fade-right
{
    -webkit-transform: translateX(-10vh);
        -ms-transform: translateX(-10vh);
            transform: translateX(-10vh);

    opacity: 0;
}

#intro .animation-container.animation-fade-right.run-animation
{
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);

    opacity: 1;
}


@media (max-width:1200px)
{
    #intro
    {
        height: auto;
    }

    #intro .container-mid
    {
        position: relative;
        top: 0;

        margin: 15vh 0;

        -webkit-transform: translate(0);
            -ms-transform: translate(0);
                transform: translate(0);
    }
}


/** 8. Section --> How We Can Help (hwch)
*******************************************************************/

#hwch .hwch-item
{
    margin-top: 4rem;
}

#hwch .hwch-item i
{
    display: inline-block;

    width: 2em;
    margin-right: .8em;

    text-align: center;
    vertical-align: middle;

    border-radius: 100%;
    /* background: #13bbbd; */
    background: #710e0b;
}

#hwch .hwch-item h2
{
    display: inline-block;

    vertical-align: middle;
}

#hwch .hwch-item h5
{
    font-size: 1.5em;
    font-style: normal;

    display: inline-block;

    vertical-align: middle;
}

#hwch .hwch-item p
{
    margin-top: 2.5em;
    margin-bottom: 0;

}

#hwch .help-process p.subline
{
    display: inline-block;

    margin: 0;
    margin-right: .8em;

    vertical-align: middle;
}

#hwch .help-process
{
    padding-top: 2rem;
    padding-bottom: 2em;;
    
}

#hwch .help-process .help-process-item
{
    margin-bottom: 1rem;

}

#hwch .help-process .help-process-item h5
{
    font-weight: bold;
    text-align: center;

}

#hwch .help-process .help-process-item p.subline
{

    padding-left: 0.75em;
    border-radius: 10%;
     

}

#hwch .help-process .help-process-item:last-child
{
    margin-bottom: 0;
}


#hwch .help-process .help-process-item ul.myitem
{
    list-style: square;
    font-size: 1.8rem;
    line-height: 1.6em;   

    /* margin-top: 2em; */

    text-align: left;
    
}




#hwch .help-process p.linktext
{
    font-size: 1.5rem;
    line-height: 1.74em;

    font-style: italic; 

    display: inline-block;

    margin: 0;
    margin-right: 1em;

    vertical-align: middle;
}

#hwch .help-process a
{
    line-height: 1.75em;
    
    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 1.75em;
    margin: 0;
    padding: 0;

    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;
    text-align: center;
    vertical-align: middle;

    color: #fff;
    border-radius: 10%;
    background: none;
}

#hwch .help-process a:hover
{
    line-height: 1.75em;
    
    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 1.75em;
    margin: 0;
    padding: 0;

    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;
    text-align: center;
    vertical-align: middle;

    color:#222;
    border-radius: 10%;
    background: none;
}

#hwch .help-process a:before
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    -webkit-transition: .15s ease;
         -o-transition: .15s ease;
            transition: .15s ease;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);

    border-radius: 10%;
    /* background: #13bbbd;*/
    background: #d80247; 
}

#hwch .help-process a:hover:before
{
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
}

#hwch .help-process a:after
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    -webkit-transition: .15s ease;
         -o-transition: .15s ease; 
            transition: .15s ease;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);

    border-radius: 10%;
    background: #cccccc;
}

#hwch .help-process a:hover:after
{
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

#hwch .help-process a i
{
    position: relative;
    z-index: 2;
}

#hwch .container-tail
{
    position:relative;
    align-content: center;
 
    width: 100%;
    margin: auto;
    margin-top: 4em;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); 

}

#hwch .container-tail p.linktext
{
    font-size: 1.5rem;
    line-height: 1.74em;

    font-style: italic; 

    display: inline-block;

    margin: 0;
    margin-right: 1em;

    vertical-align: middle;
}

#hwch .container-tail a
{
    line-height: 2em;
    
    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 2em;
    margin: 0;
    padding: 0;

    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;
    text-align: center;
    vertical-align: middle;

    color: #fff;
    border-radius: 10%;
    background: none;
}

#hwch .container-tail a:hover
{
    line-height: 2em;
    
    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 2em;
    margin: 0;
    padding: 0;

    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;
    text-align: center;
    vertical-align: middle;

    color:#222;
    border-radius: 10%;
    background:#cccccc;
}

#hwch .container-tail a:before
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    -webkit-transition: .15s ease;
         -o-transition: .15s ease;
            transition: .15s ease;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);

    border-radius: 10%;
    /* background: #13bbbd;*/
    background: #d80247; 
}

#hwch .container-tail a:hover:before
{
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
}

#hwch .container-tail a:after
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    -webkit-transition: .15s ease;
         -o-transition: .15s ease; 
            transition: .15s ease;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);

    border-radius: 10%;
    background: #cccccc;
}

#hwch .container-tail a:hover:after
{
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

#hwch .container-tail a i
{
    position: relative;
    z-index: 2;
}

#hwch .h-item .h-lightbox-wrapper
{
    position: absolute;

    display: none;

    opacity: 0;
}

.featherlight .featherlight-content
{
    max-height: 95%;
    padding: 0;

    border-radius: 1%;

    border-bottom: 0;
}

.featherlight .featherlight-content .hwch-lightbox h1,
.featherlight .featherlight-content .hwch-lightbox h2,
.featherlight .featherlight-content .hwch-lightbox h3,
.featherlight .featherlight-content .hwch-lightbox h4,
.featherlight .featherlight-content .hwch-lightbox h5,
.featherlight .featherlight-content .hwch-lightbox h6,
.featherlight .featherlight-content .hwch-lightbox p,
.featherlight .featherlight-content .hwch-lightbox ol,
.featherlight .featherlight-content .hwch-lightbox li
{
    color: #111;
}

.featherlight .featherlight-content  .featherlight-close-icon
{
    font-size: 2rem;
    line-height: 2em;

    top: .7em;
    left: .7em;

    width: 2em;

    border-radius: 100%;
    outline: none !important;
    
    color: #222;
}

.featherlight .featherlight-content .hwch-lightbox
{
    max-width: 1400px;
    padding: 0 0 10vh 0;

    text-align: center;
}

.featherlight .featherlight-content .hwch-lightbox img
{
    margin: 0 auto 7vh auto;
    margin-top: 2em;
    height: 50%;
    width: 50%;

    border-radius: 8px;

}

.featherlight .featherlight-content .hwch-lightbox .description
{
    font-size: 1.85rem;
    line-height: 2em;

    letter-spacing: .02em;

    max-width: 700px;
    margin: 0 auto;
    padding: 0 5rem;
}

.featherlight .featherlight-content .hwch-lightbox .video-container
{

    margin-top: 5em;

}
.featherlight .featherlight-content .hwch-lightbox .description h4
{
    margin-top: 2em;
    margin-bottom: .25em;
;

    text-align: center;
}

.featherlight .featherlight-content .hwch-lightbox .description h5
{
    margin-bottom: .25em;

    text-align: left;
}

.featherlight .featherlight-content .hwch-lightbox .description h6
{
    margin-bottom: .25em;

    text-align: center;

    font-size: 1em;
}

.featherlight .featherlight-content .hwch-lightbox .description p.subline
{
    margin-bottom: 2em;

    letter-spacing: .025em;
}

.featherlight .featherlight-content .hwch-lightbox .description p
{
    font-size: 1.8rem;
    line-height: 1.6em;   

    margin-top: 2em;

    text-align: left;
}

.featherlight .featherlight-content .hwch-lightbox .description ol
{
    margin-bottom: 2em;

    text-align: left;
}

.featherlight .featherlight-content .hwch-lightbox .description ul
{
    margin-bottom: 2em;

    text-align: left;
}

.featherlight .featherlight-content .hwch-lightbox .description li
{
    margin-bottom: 1em;

    text-align: left;

    font-size: 1.1em;

    line-height: 2em;
}




@media (max-width:768px)
{
    #hwch .hwch-item
    {
        text-align: center !important;
    }
}


@media (max-width:768px)
{
    #hwch .help-process .help-process-item img
    {
        margin: 0 auto 3rem auto;
    }

    #hwch .help-process .help-process-item .text-left
    {
        text-align: center;
    }
}


/** 9. Section --> Real World Case Studies (rwcs)
*******************************************************************/
#rwcs .container-mid
{    
    position: absolute;
    top: 50%;

    width: 100%;
    align-items: center;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);

}

#rwcs .container-fluid
{    
    width: 100%;

}


#rwcs .rwcs-carousel
{
    margin-top: 2em;

}

#rwcs .rwcs-carousel .owl-dots
{
    position: relative;

    margin-top: 1em;
    margin-bottom: 1em;

    text-align: center;

}

#rwcs .rwcs-carousel .owl-dots .owl-dot
{
    position: relative;

    display: inline-block;

    width: 15px;
    height: 15px;
    margin: 0 6px;

    -webkit-transition: .3s ease;
         -o-transition: .3s ease;
            transition: .3s ease;
    vertical-align: middle;

    border-radius: 10%;
    border-width: 10em;
    background-color:#d80247;

}

#rwcs .rwcs-carousel .owl-dots .owl-dot:hover
{
    position: relative;

    display: inline-block;

    width: 15px;
    height: 15px;
    margin: 0 6px;

    -webkit-transition: .3s ease;
         -o-transition: .3s ease;
            transition: .3s ease;
    vertical-align: middle;

    border-radius: 10%;
    background: #cccccc;
}

#rwcs .rwcs-carousel .owl-dots .owl-dot:active
{
    border-color: rgba(0,0,0,0);

}

#rwcs .rwcs-carousel .owl-dots .owl-dot:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 15px;
    height: 15px;

    content: '';
    -webkit-transition: .3s ease;
         -o-transition: .3s ease;
            transition: .3s ease;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);

    opacity: 0;
    border-radius: 10%;
    color: #111;

}

#rwcs .rwcs-carousel .owl-dots .owl-dot.active:after,
#rwcs .rwcs-carousel .owl-dots .owl-dot:hover:after
{
    opacity: 1;
}

#rwcs .rwcs-carousel .item
{
    position: relative;

    display: block;
    overflow: hidden;

    min-height: 46rem;

    background: none;
  

}

#rwcs .rwcs-carousel .item .bg-image
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    border-radius: 8px;

    background-position: center;
    background-size: cover;

}

#rwcs .rwcs-carousel .item .info
{
    position: absolute;
    /* z-index: -4; */
    z-index: -3;
    top: 0;
    left: 0;

    display: block;
    text-align: center;

    width: 100%;
    height: 100%;

    -webkit-transition: .4s ease;
         -o-transition: .4s ease;
            transition: .4s ease;
    pointer-events: none;

    opacity: 1;
    background: rgba(10,10,10,.6);
}

#rwcs .rwcs-carousel .item:hover .info
{
    z-index: 2;

    pointer-events: all;

    opacity: 1;
}

#rwcs .rwcs-carousel .item .info .container-mid
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
}

#rwcs .rwcs-carousel .item .info .container-mid h5
{
    width: 100%;
    margin: auto;

    -webkit-transform: translateX(2rem);
        -ms-transform: translateX(2rem);
            transform: translateX(2rem);

    opacity: 0;
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}

#rwcs .rwcs-carousel .item:hover .info .container-mid h5
{
    width: 100%;
    margin: auto;

    -webkit-transition: .2s ease .1s;
         -o-transition: .2s ease .1s;
            transition: .2s ease .1s;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);

    opacity: 10;
}


#rwcs .rwcs-carousel .item .info .container-mid p
{
    width: 100%;
    margin: auto;

    -webkit-transform: translateX(2rem);
        -ms-transform: translateX(2rem);
            transform: translateX(2rem);

    opacity: 0;
    color: #fff;
    font-weight: bolder;
}

#rwcs .rwcs-carousel .item:hover .info .container-mid p
{
    -webkit-transition: .2s ease .1s;
         -o-transition: .2s ease .1s;
            transition: .2s ease .1s;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);

    opacity: 10;
}

#rwcs .rwcs-carousel .item .info .container-mid i
{
    display: block;

    width: 2em;
    line-height: 2em;

    margin: 1em auto 0 auto;

    -webkit-transform: translateX(-2rem);
        -ms-transform: translateX(-2rem);
            transform: translateX(-2rem);
    text-align: center;

    opacity: 0;
    color: #fff;
    border-radius: 10%;
    background-color: #d80247;

}

#rwcs .rwcs-carousel .item:hover .info .container-mid i
{
    -webkit-transition: .2s ease .1s;
         -o-transition: .2s ease .1s;
            transition: .2s ease .1s;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);

    opacity: 1;
}

#rwcs .rwcs-carousel .item .lightbox-wrapper
{
    position: absolute;

    display: none;

    opacity: 0;
}

.featherlight .featherlight-content
{
    max-height: 95%;
    padding: 0;

    border-bottom: 0;
}

.featherlight .featherlight-content .rwcs-lightbox h1,
.featherlight .featherlight-content .rwcs-lightbox h2,
.featherlight .featherlight-content .rwcs-lightbox h3,
.featherlight .featherlight-content .rwcs-lightbox h4,
.featherlight .featherlight-content .rwcs-lightbox h5,
.featherlight .featherlight-content .rwcs-lightbox h6,
.featherlight .featherlight-content .rwcs-lightbox p
{
    color: #111;
}

.featherlight .featherlight-content  .featherlight-close-icon
{
    font-size: 2.4rem;
    line-height: 2.4em;

    top: .7em;
    left: .7em;

    width: 2.4em;

    border-radius: 100%;
    outline: none !important;
    color:#222;
}

.featherlight .featherlight-content .rwcs-lightbox
{
    max-width: 700px;
    padding: 0 0 10vh 0;

    text-align: center;
}

.featherlight .featherlight-content .rwcs-lightbox img
{
    margin: 0 auto 7vh auto;
    max-height: 50%;
    max-width: 50%;

}

.featherlight .featherlight-content .rwcs-lightbox .description
{
    max-width: 700px;
    margin: 0 auto;
    padding: 0 5rem;
}

.featherlight .featherlight-content .rwcs-lightbox .description h3
{
    margin-bottom: .25em;

    text-align: left;
}

.featherlight .featherlight-content .rwcs-lightbox .description p.subline
{
    margin-bottom: 2em;

    letter-spacing: .025em;
}

.featherlight .featherlight-content .rwcs-lightbox .description p
{
    margin-bottom: 2em;

    text-align: left;

    color:#222;
}

#rwcs .container-tail
{
    position:relative;
    align-content: center;

    width: 100%;
    margin: auto;

    margin: auto;
    margin-top: 4em;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); 

}


#rwcs .container-tail p.linktext
{
    font-size: 1.5rem;
    line-height: 1.74em;
    
    font-style: italic; 

    display: inline-block;

    margin: 0;
    margin-right: 1em;

    vertical-align: middle; 
}


#rwcs .container-tail a
{
    line-height: 2em;

    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 2em;
    margin: 0;
    padding: 0;

    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;
    text-align: center;
    vertical-align: middle;

    color: #fff;
    border-radius: 10%;
    background: none;
}

#rwcs .container-tail a:hover
{
    line-height: 2em;
    
    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 2em;
    margin: 0;
    padding: 0;

    -webkit-transition: .2s ease;
         -o-transition: .2s ease;
            transition: .2s ease;
    text-align: center;
    vertical-align: middle;

    color:#222;
    border-radius: 10%;
    background: none;
}

#rwcs .container-tail a:before
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    -webkit-transition: .15s ease;
         -o-transition: .15s ease;
            transition: .15s ease;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);

    border-radius: 10%;
    /* background: #13bbbd;*/
    background: #d80247; 
}

#rwcs .container-tail a:hover:before
{
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
}

#rwcs .container-tail a:after
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    -webkit-transition: .15s ease;
         -o-transition: .15s ease; 
            transition: .15s ease;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);

    border-radius: 10%;
    background: #cccccc;
}

#rwcs .container-tail a:hover:after
{
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

#rwcs .container-tail a i
{
    position: relative;
    z-index: 2;
}


/** 10. Section --> Proof of Concept Introduction (poci)
*******************************************************************/

#poci .container-mid
{
    position: absolute;
    top: 15%;
    /* top: 35%;*/

    width: 100%;

    padding-left: 0em;
    padding-right: 0em;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

#poci .container-mid p
{
    font-weight:400;

    margin-right: 4em;
    padding-right: 5px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    line-height: normal;

}


#poci .poci-stages h2
{
    display: inline-block;

    vertical-align: middle;
}

#poci .poci-stages h5
{
    font-size: 1.5em;
    font-style: normal;

    display: inline-block;

    vertical-align: middle;
    
}
#poci .poci-stages h6
{
    font-size: 1.5em;
    font-style: normal;

    display: inline-block;

    vertical-align: middle;
    
}


#poci .poci-stages
{
    padding-top: 2rem;
    
}

#poci .poci-stages .poci-stages-item
{
    margin-bottom: 5rem;

}

#poci .poci-stages .poci-stages-item img
{
    max-width: 75%;
    object-fit: contain;

}


#poci .poci-stages .poci-stages-item:last-child
{
    margin-bottom: 0;
}




/** 6. Tab --> Panel
*******************************************************************/

#poci .container-fluid .tab-content
{
    margin: 4.5rem 0 5vh;

}

#poci .container-fluid .tab-content .tab-pane:after
{
    position: relative;

    display: block;
    clear: both;

    content: '';

}


#poci .container-fluid .tab-content .item
{
    position: relative;

    display: block;
    overflow: hidden;

    height: 30rem;
    margin-bottom: 2em;

    width: 100%;

}

#poci .container-fluid .tab-content .item:before
{
    position: absolute;
    z-index: 20;
    right: 4rem;
    bottom: 0rem;
    left: 4rem;

    /* height: 9rem; */
    /* height: 15rem;*/
    height: 22rem;

    content: '';

    opacity: 0;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    
    border-radius: 8px;

}

#poci .container-fluid .tab-content .item:hover:before
{
    bottom: 4rem;

    -webkit-transition: .3s ease;
         -o-transition: .3s ease;
            transition: .3s ease;

    opacity: 1;

    border-radius: 0;
  
}

#poci .container-fluid .tab-content .item .bg-image
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-position: center;
    background-size: cover;

    border-radius: 8px;
    
}

#poci .container-fluid .tab-content .item .info
{
    position: absolute;
    z-index: -10;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    -webkit-transition: .3s ease;
         -o-transition: .3s ease;
            transition: .3s ease;
    text-align: center;
    pointer-events: none;

    opacity: 0;
    background: rgba(6, 30, 50, .75);
    border-radius: 8px;

}

#poci .container-fluid .tab-content .item:hover .info
{
    z-index: 10;

    pointer-events: all;

    opacity: 1;


}

#poci .container-fluid .tab-content .item .info .container-mid
{
    position: absolute;
    bottom: 6rem;
    left: 6.4rem;

    text-align: left;

    color: #fff;
}

#poci .container-fluid .tab-content .item .info h5
{
    font-weight: 400;

    margin-top: 0;
    margin-bottom: 0;

    -webkit-transform: translateX(2rem);
        -ms-transform: translateX(2rem);
            transform: translateX(2rem);
    letter-spacing: .02em;

    opacity: 0;
}

#poci .container-fluid .tab-content .item:hover .info h5
{
    -webkit-transition: .2s ease .1s;
         -o-transition: .2s ease .1s;
            transition: .2s ease .1s;
    -webkit-transform: translateX(0rem);
        -ms-transform: translateX(0rem);
            transform: translateX(0rem);

    opacity: 1;

    color: #fff;
}

#poci .container-fluid .tab-content .item .info h6
{
    font-weight:bold;

    font-size: 1.7rem;

    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 4rem;

    padding-right: 4rem;
    padding-bottom: 0.5rem;


    -webkit-transform: translateX(2rem);
        -ms-transform: translateX(2rem);
            transform: translateX(2rem);
    letter-spacing: .02em;

    opacity: 0;
}

#poci .container-fluid .tab-content .item:hover .info h6
{
    -webkit-transition: .2s ease .1s;
         -o-transition: .2s ease .1s;
            transition: .2s ease .1s;
    -webkit-transform: translateX(0rem);
        -ms-transform: translateX(0rem);
            transform: translateX(0rem);

    opacity: 1;

    color: #fff;
}

#poci .container-fluid .tab-content .item .info ul li
{
    font-weight:400;

    font-size: 1.6rem;

    line-height: normal;
    padding-top: 0;
    padding-top: 0.5rem;
    padding-right: 4rem;

    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 4rem;

    -webkit-transform: translateX(2rem);
        -ms-transform: translateX(2rem);
            transform: translateX(2rem);
    letter-spacing: .02em;

    opacity: 0;
}

#poci .container-fluid .tab-content .item:hover .info ul li
{
    -webkit-transition: .2s ease .1s;
         -o-transition: .2s ease .1s;
            transition: .2s ease .1s;
    -webkit-transform: translateX(0rem);
        -ms-transform: translateX(0rem);
            transform: translateX(0rem);

    opacity: 1;

    color: #fff;
}

#poci .container-fluid .tab-content .item .info p
{
    font-size: 1.7rem;

    margin-bottom: 0;

    -webkit-transition: .2s ease .1s;
         -o-transition: .2s ease .1s;
            transition: .2s ease .1s;
    -webkit-transform: translateX(2rem);
        -ms-transform: translateX(2rem);
            transform: translateX(2rem);
    letter-spacing: .02em;

    opacity: 0;
}

#poci .container-fluid .tab-content .item:hover .info p
{
    -webkit-transform: translateX(0rem);
        -ms-transform: translateX(0rem);
            transform: translateX(0rem);

    opacity: 1;

    color: #fff;
}
/*
.featherlight .featherlight-content
{
    max-height: 95%;
    padding: 0;

    border-bottom: 0;
    /* background: rgba(6, 30, 50, .8); *//*
    background-color: antiquewhite;
}

.featherlight .featherlight-content  .featherlight-close-icon
{
    font-size: 3rem;
    line-height: 2em;

/*    top: 4.5vh;
    right: 4vh; *//*

    top: 25em;
    right: 5em;

    width: 2em;

    -webkit-transform: translate(50%,-50%);
        -ms-transform: translate(50%,-50%);
            transform: translate(50%,-50%);

    color:#222;
    outline: none !important;
    background: none;
}
*/
.featherlight .featherlight-content .stage-lightbox
{
    max-width: 780px;
    padding: 5rem 7rem;
    /* padding: 11rem 14rem; */

    text-align: left;
}

.featherlight .featherlight-content .stage-lightbox img
{
    margin: 0 auto 6vh auto;

    height: 50%;
    width: 50%;

    border-radius: 8px;
}

.featherlight .featherlight-content .stage-lightbox h4
{
    margin-bottom: .2em;

     color: #111;
}

.featherlight .featherlight-content .stage-lightbox p.subline
{
    font-size: 2rem;

    margin-bottom: 1.6em;

    letter-spacing: .025em;

    color: #111;
}

.featherlight .featherlight-content .stage-lightbox p
{
    margin-bottom: 2em;
    color: #111;
}

.featherlight .featherlight-content .stage-lightbox p:last-child
{
    margin-bottom: 0;
}

@media (max-width:900px)
{
    .featherlight .featherlight-content .stage-lightbox
    {
        padding: 8rem 9rem;
    }
}











@media (max-width:768px)
{
    #poci .poci-stages .poci-stages-item img
    {
        margin: 0 auto 3rem auto;
        background-color: aqua;
        max-width: 10%;
        max-height: 10%;
    }

    #poci .poci-stages .poci-stages-item .text-left
    {
        text-align: center;
    }
}

/** 11. Section --> Contact
*******************************************************************/

#contact .contact-list
{
    display: inline-block;

    margin: 0;
    padding: 3rem 0 0 0;

    list-style: none;

    text-align: left;
}

#contact .contact-list .contact-list-item
{
    margin-bottom: 4rem;
}

#contact .contact-list .contact-list-item .contact-type
{
    display: inline-block;

    margin-left: 1.6rem;
    padding: 0 3.5rem;
    /* width: 240px; */

    border-radius: 3.5rem;
    /* background: #13bbbd; */
    background: #d80247;
}

#contact .contact-list .contact-list-item .contact-type:hover
{
    display: inline-block;

    margin-left: 1.6rem;
    padding: 0 3.5rem;
    /* width: 240px; */

    border-radius: 3.5rem;
    /* background: #13bbbd; */
    background: #cccccc;
    color: #222;
}


#contact .contact-list .contact-list-item .contact-type i
{
    font-size: 2rem;
    line-height: 7rem;

    margin-right: .3em;

    /* Add image colour */
    color: #fff; 
}


#contact .contact-list .contact-list-item .contact-type i:hover
{
    font-size: 2rem;
    line-height: 7rem;

    margin-right: .3em;

    /* Add image colour */
    color: #222;
    background: #cccccc;
}

#contact .contact-list .contact-list-item .contact-type h6
{
    font-weight: 500;

    margin-right: .3em !important;

    color: #fff;
}

#contact .contact-list .contact-list-item .contact-type h6:hover
{
    font-weight: 500;

    margin-right: .3em !important;

    color: #222;
}

#contact .contact-list .contact-list-item h6
{

    font-family: 'Open Sans', sans-serif;

    line-height: 6rem;

    display: inline-block;

    margin: 0;
}

@media (max-width:500px)
{
    #contact .contact-list .contact-list-item
    {
        text-align: center;
    }

    #contact .contact-list .contact-list-item .contact-type
    {
        display: block;

        margin-bottom: 2rem;

        text-align: center;
    }
}



/** 12. Section --> Footer
*******************************************************************/

#footer
{
    position: relative;

    overflow: hidden;

    margin: 0 auto;
    padding: 6rem 0;
}

#footer p
{
    line-height: 6rem;

    margin: 0;
}

#footer p a
{
    font-weight: 400;

    color: inherit;
}

#footer .social-icons
{
    margin: 0;
    padding: 0;

    list-style: none;
}

#footer .social-icons li
{
    font-size: 2rem;
    line-height: 2em;

    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 2em;
    height: 2em;
    margin: 0;
    margin-right: 1em;

    text-align: center;

    color: #fff;
    border-radius: 100%;
    background: none;
}

#footer .social-icons li:last-child
{
    margin-right: 0;
}

#footer .social-icons li:before
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    -webkit-transition: .15s ease;
         -o-transition: .15s ease;
            transition: .15s ease;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);

    border-radius: 100%;
    /* background: #13bbbd; */
    background: #d80247;
}

#footer .social-icons li:hover:before
{
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
}

#footer .social-icons li:after
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    content: '';
    -webkit-transition: .15s ease;
         -o-transition: .15s ease;
            transition: .15s ease;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);

    border-radius: 100%;
    color:#111;
    background: #cccccc;
}

#footer .social-icons li:hover:after
{
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

#footer .social-icons li a
{
    font-size: inherit;

    position: relative;
    z-index: 3;

    display: block;

    color: #fff;
    border: none;
}

#footer .social-icons li a:hover
{
    color: #222;
}

@media (max-width:768px)
{
    #footer p
    {
        margin-bottom: 1em;
    }

    #footer .text-left,
    #footer .text-right
    {
        text-align: center;
    }
}