:root {
    --primary-color: #ff8008;
    --secondary-color: #424242;
    --heading-font: 'Josefin Sans', sans-serif;
    --sidelink-font: 'Space Mono', monospace;
    --other-font: 'Open Sans', sans-serif;
}

/* Global Style
* ------------------------------------------------------------------- */

section {
    margin-bottom: 8rem;
}

.heading-text {
    font-size: 3.36859rem;
    text-transform: capitalize;
    line-height: 1.8;
    position: relative;
    font-family: var(--heading-font);
    color: var(--secondary-color);
}

.small-hr {
    width: 60px;
    display: inline-block;
    margin-top: 0.25rem;
    color: var(--primary-color);
    border-top: 3px solid var(--primary-color);
    padding-bottom: 50px;
}

.m-l-50 {
    margin-left: 50%;
}

.a-desc,
ol>li,
ul>li {
    font-size: 16px;
    text-align: justify;
    font-family: var(--other-font);
}

.bold {
    font-weight: bold;
}

.m-auto {
    margin: auto;
}

.back {
    font-family: var(--sidelink-font);
    font-size: 15px;
    color: black;
    border-bottom: 1px solid var(--secondary-color);
}

.p-10 {
    padding: 10px;
}

.p-t-70 {
    padding-top: 70px;
}

.portfolio-text-img {
    display: block;
    position: relative;
}

.portfolio-text-img img {
    width: 100%;
    height: 300px;
}

.portfolio-text-img .p-name {
    background-color: #ffffff;
    position: absolute;
    padding: 10px;
    text-align: center;
    font-weight: 500;
    z-index: 9;
    color: #636060;
}

.portfolio-text-img h4 {
    font-size: 18px;
    word-spacing: 3px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    margin-top: 10px;
}

.image-hover-zoom {
    display: block;
    overflow: hidden;
}

.image-hover-zoom img {
    transition: all 0.20s linear 0s;
    -o-transition: all 0.20s linear 0s;
    -ms-transition: all 0.20s linear 0s;
    -moz-transition: all 0.20s linear 0s;
    -webkit-transition: all 0.20s linear 0s;
}

.image-hover-zoom:hover img {
    transform: scale(1.1);
}

.menu-info {
    position: absolute;
    top: 60%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 25px 30px;
    transition: 0.5s 0.2s;
}

.menu-item {
    width: 180px;
    margin: auto;
}

.image-hover-zoom .menu-info .button {
    transform: translateY(100%);
    opacity: 0;
    display: block;
    transition: 0.5s 0.2s;
    color: #ffffff;
    z-index: 2;
    position: relative;
    border: 1px solid white;
    background: transparent;
    padding: 10px 12px;
    font-size: 16px;
    letter-spacing: 2px;
}

.image-hover-zoom .menu-info a {
    text-align: center;
    text-decoration: none;
}

.image-hover-zoom:hover .menu-info .button {
    transform: translateY(0px);
    opacity: 1;
}

.image-hover-zoom:hover .menu-info {
    background: rgba(17, 17, 17, 0.774);
}

.h-200 {
    height: 193px !important;
}

.h-300 {
    height: 300px !important;
}

.h-400 {
    height: 450px !important;
}

.w-100 {
    width: 100%;
}

.p-l-r-0 {
    padding-left: 0px;
    padding-right: 0px;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

.left-align {
    text-align: left;
}

.right-align {
    text-align: right;
}

.tools-heading {
    font-size: 26px;
    font-family: var(--heading-font);
    margin-top: 0px;
}

.p-r-0 {
    padding-right: 0px;
}

.p-l-0 {
    padding-left: 0px;
}

.p-l-25 {
    padding-left: 25px;
}

.p-r-25 {
    padding-right: 25px;
}

.p-t-100 {
    padding-top: 100px;
}

/* Preloader
* ------------------------------------------------------------------- */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #050505;
    z-index: 800;
    height: 100%;
    width: 100%;
}

.no-js #preloader,
.oldie #preloader {
    display: none;
}

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    padding: 0;
}

#loader:before {
    content: "";
    border-top: 6px solid rgba(255, 255, 255, 0.1);
    border-right: 6px solid rgba(255, 255, 255, 0.1);
    border-bottom: 6px solid rgba(255, 255, 255, 0.1);
    border-left: 6px solid var(--primary-color);
    -webkit-animation: load 1.1s infinite linear;
    animation: load 1.1s infinite linear;
    display: block;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Header
* ------------------------------------------------------------------- */

.c-header {
    z-index: 500;
    width: 100%;
    height: 96px;
    background-color: transparent;
    position: absolute;
    top: 24px;
}

@media only screen and (max-width: 600px) {
    .c-header {
        height: 90px;
        top: 12px;
    }
}

@media only screen and (max-width: 400px) {
    .c-header {
        top: 6px;
    }
}

.header-logo {
    z-index: 501;
    display: inline-block;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 110px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-logo a {
    display: block;
    padding: 0;
    outline: 0;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-logo img {
    width: 200px;
    height: 78px;
}

/* Intro Section
* ------------------------------------------------------------------- */

.intro-home {
    background: url("../img/b1.jpg") no-repeat center center fixed;
    width: 100%;
    height: 100vh;
    min-height: 786px;
    background-color: transparent;
    position: relative;
    display: table;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.intro-home .shadow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background: -webkit-linear-gradient(to right, rgba(115, 200, 169, 0.808), rgba(55, 59, 68, 0.808));
    background: linear-gradient(to right, rgba(115, 200, 169, 0.808), rgba(55, 59, 68, 0.808));
}

.intro-home::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.65;
    background-color: #000000;
}

.home-content {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    padding-bottom: 15.6rem;
    overflow: hidden;
    position: relative;
}

.home-content_text {
    left: 110px;
    padding-top: 15rem;
    padding-right: 20rem;
    position: relative;
    font-family: var(--heading-font);
}

.home-content h1 {
    font-size: 9rem;
    line-height: 1.1;
    margin-top: 0;
    color: #ffffff;
    letter-spacing: 5px;
}

.home-content h1+p {
    font-size: 3.8rem;
    line-height: 1.421;
    color: #ffffff;
    margin-top: 2.4rem;
    padding-left: 10rem;
    position: relative;
    letter-spacing: 5px;
}

.home-content h1+p::before {
    content: "";
    display: block;
    width: 6.5rem;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    left: 6px;
    top: 2.7rem;
}

.home-sidelinks {
    font-family: var(--sidelink-font);
    list-style: none;
    font-size: 1.4rem;
    line-height: 1.714;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    margin: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 0;
    letter-spacing: 2px;
}

.home-sidelinks li {
    display: block;
    padding: 0;
    text-align: left;
    background-color: rgb(39, 35, 35);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.home-sidelinks li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.home-sidelinks li::before {
    content: "";
    display: block;
    height: 6px;
    width: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 3rem;
    left: 2rem;
}

.home-sidelinks a {
    display: block;
    padding: 2.1rem 15rem 2.1rem 4rem;
    color: #ffffff;
}

.home-sidelinks a:focus,
.home-sidelinks a:hover {
    text-decoration: none;
}

.home-sidelinks li:hover {
    background-color: rgb(26, 22, 22);
    border-top: 1px solid rgba(19, 18, 18, 0.1);
}

ul {
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0px;
}

.home-social {
    list-style: none;
    font-size: 22px;
    line-height: 4.8rem;
    margin: 0;
    color: #ffffff;
    position: absolute;
    bottom: 6.6rem;
    left: 110px;
}

.home-social .home-social-title {
    font-size: 15px;
    padding-right: 4rem;
    margin-right: 0.8rem;
    position: relative;
    font-weight: 600;
}

.home-social .home-social-title::after {
    display: block;
    content: "";
    width: 2.4rem;
    height: 1px;
    background-color: var(--primary-color);
    position: absolute;
    right: 0;
    top: 50%;
}

.home-social a {
    color: #ffffff;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.home-social a:hover {
    border-bottom: 1px solid #ffffff;
}

.home-social li {
    display: inline-block;
    position: relative;
    margin-right: 0.6rem;
}

.home-social li a {
    display: block;
}

.home-social li:last-child {
    margin-right: 0;
}

.home-social i {
    font-size: 20px;
}

#twitter-color:hover {
    color: #0084b4;
}

#fb-color:hover {
    color: #3b5998;
}

#google-color:hover {
    color: #d34836;
}

#ln-color:hover {
    color: #0077B5;
}

.home-scroll {
    height: 4.8rem;
    position: absolute;
    right: 110px;
    bottom: 6.6rem;
}

.home-scroll__text {
    display: inline-block;
    font-size: 11px;
    line-height: 4.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: #ffffff;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    right: 7.5rem;
}

.home-scroll__icon {
    display: block;
    height: 4.8rem;
    width: 4.8rem;
    background-color: #ffffff;
    background-image: url("../img/icon-arrow-down.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 10px 15px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 0;
    right: 0;
}

.home-scroll:hover .home-scroll__text {
    border-bottom: 1px solid #ffffff;
}

/* Animate - Intro text
 * ------------------------------------------------------------------- */

html.cl-preload .home-content_text {
    opacity: 0;
}

html.cl-loaded .home-content_text {
    animation-duration: 2s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

html.no-csstransitions .home-content_text {
    opacity: 1;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 150%, 0);
        -ms-transform: translate3d(0, 150%, 0);
        transform: translate3d(0, 150%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 150%, 0);
        -ms-transform: translate3d(0, 150%, 0);
        transform: translate3d(0, 150%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -150%, 0);
        -ms-transform: translate3d(0, -150%, 0);
        transform: translate3d(0, -150%, 0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -150%, 0);
        -ms-transform: translate3d(0, -150%, 0);
        transform: translate3d(0, -150%, 0);
    }
}

/* About - Intro text
 * ------------------------------------------------------------------- */

.a-img {
    width: 100%;
    height: 350px;
}

.a-img-name {
    font-family: var(--heading-font);
    margin-top: 5px;
    padding-bottom: 20px;
}

.a-img-name span {
    font-size: 15px;
}

/* Stats
 * ------------------------------------------------------------------- */

.white-color {
    color: white;
}

.white-border {
    border-color: white;
}

.s-stats {
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
    background-image: url('../img/jp4.jpg');
    background-color: #050505;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.s-stats::before {
    display: block;
    content: "";
    background-color: #050505;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.stats {
    text-align: center;
    font-family: var(--heading-font);
}

.stats__col {
    margin: 5.4rem 0;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.stats__col>i {
    z-index: 1;
    color: white;
    padding-bottom: 25px;
}

.stats__count {
    font-size: 9.2rem;
    line-height: 1;
    color: #ffffff;
    padding-bottom: 1.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}

.stats__count::after {
    display: block;
    content: "";
    height: 1px;
    width: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -50px;
}

.stats h5 {
    font-size: 1.8rem;
    line-height: 1.333;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1.8rem;
    position: relative;
}

/* Highlights
 * ------------------------------------------------------------------- */

.carousel-control.left,
.carousel-control.right {
    background-image: none !important;
    filter: none !important;
}

.carousel-indicators {
    display: none;
}

/* Portfolio
 * ------------------------------------------------------------------- */

.p {
    text-align: center;
    font-family: var(--other-font);
}

.p>a {
    padding: 10px;
}

.p-link {
    width: 230px;
    height: 213px;
    border: 1px solid #B5B5B5;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

.p-link i {
    margin-top: 20px;
    transition: all 0.3s ease;
    font-size: 50px;
}

.p-link p {
    padding: 0px 40px;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-link h3 {
    margin: 10px 0px;
    font-size: 23px;
    font-family: var(--heading-font);
}

.pink {
    background: #fc4348;
    border-color: #fc4348;
    color: white;
    box-shadow: 0 4px 20px rgba(252, 67, 72, .5);
}

.grey {
    background: #354b60;
    border-color: #354b60;
    color: white;
    box-shadow: 0 4px 20px rgba(53, 75, 96, .5);
}

.yellow {
    background: #FFC107;
    border-color: #FFC107;
    color: white;
    box-shadow: 0 4px 20px rgba(255, 193, 7, .5);
}

.teal {
    background: #009688;
    border-color: #009688;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 150, 136, .5);
}

.green {
    background: #8BC34A;
    border-color: #8BC34A;
    color: white;
    box-shadow: 0 4px 20px rgba(139, 195, 74, .5);
}

.pink:hover,
.grey:hover,
.yellow:hover,
.teal:hover,
.green:hover {
    box-shadow: none;
}

/* -------------------------------------------------------------------
 * ## go to top
* ------------------------------------------------------------------- */

.cl-go-top {
    z-index: 600;
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
}

.cl-go-top a {
    text-decoration: none;
    border: 0 none;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

#gotop {
    background: var(--primary-color);
    color: white;
}

#bottom {
    background: var(--secondary-color);
    color: white;
}

.cl-go-top a i {
    font-size: 21px;
    line-height: inherit;
}

.full-line {
    border: 0;
    clear: both;
    display: block;
    width: 100%;
    background-color: #c2c2c2;
    height: 2px;
}

.p-t-30 {
    padding-top: 30px;
}

.p-t-10 {
    padding-top: 10px;
}

.sub-heading-left {
    font-family: var(--heading-font);
    float: left;
    font-size: 26px;
    letter-spacing: 1px;
    color: #009688;
}

.sub-heading-right {
    float: right;
    margin-top: 10px;
    font-family: var(--sidelink-font);
    letter-spacing: 1px;
    color: #cf6766;
}

.sub-heading-right span {
    margin-left: 5px;
    padding-left: 5px;
    border-left: 1px solid #cecbcb;
}

.ssub-heading {
    font-family: var(--heading-font);
    letter-spacing: 1px;
    font-size: 25px;
}

.square-list {
    list-style-type: square;
}

ol>li,
ul>li {
    padding: 7px 5px;
}

.p-b-10 {
    padding-bottom: 10px;
}

.p-l-r-20 {
    padding: 0 20px;
}

.strike {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    font-size: 20px;
}

.strike>h5 {
    position: relative;
    display: inline-block;
    font-family: var(--heading-font);
    letter-spacing: 1px;
    font-size: 22px;
}

.strike>h5:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    border-top: 3px solid var(--primary-color);
}

.strike>h5:after {
    left: 100%;
    margin-left: 15px;
    margin-right: 15px;
}

.funders-list {
    list-style: none;
    padding-top: 10px;
    position: absolute;
}

.funders-list li {
    display: inline-block;
    position: relative;
    padding: 0px 5px;
    border-right: 1px solid rgb(192, 188, 188);
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
}

.funders-list li:last-child {
    border: none;
}

/*
 * ===================================================================
 * footer section
 * -------------------------------------------------------------------
 */

#footer-section {
    font-size: 15px;
    font-family: var(--heading-font);
    background: #0d0f13;
    color: #878c93;
    float: left;
    width: 100%;
    letter-spacing: 1px;
}

.padding-top-40 {
    padding-top: 40px;
}

.footer-header {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgb(231, 194, 114);
    margin-bottom: 20px;
    font-weight: 700;
}

.address h3 {
    font-size: 17px;
    color: #aaaeb3;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5em;
    margin-top: 2.5em;
    padding-bottom: 2.5rem;
}

.footer-social li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline;
}

.footer-social li a {
    font-size: 25px;
    padding: 4px 7px;
    color: #878c93;
}

.padding-left-60 {
    padding-left: 60px;
}

#twitter-color:hover {
    color: #0084b4;
}

#fb-color:hover {
    color: #3b5998;
}

#google-color:hover {
    color: #d34836;
}

#ln-color:hover {
    color: #0077B5;
}

.bottom-right {
    position: absolute;
    bottom: calc(92vh - 87vh);
    right: calc(100% - 98%);
    left: calc(100% - 99%);
    top: calc(92% - 9.12%);
}

.top-left {
    position: absolute;
    top: calc(92% - 84.5%);
    right: calc(100% - 99%);
    left: calc(100% - 80%);
    bottom: calc(92% - 10%);
}

.timg {
    /* height: 90px;  */
    width: 100%;
    height: inherit;
}

@media only screen and (max-width: 991px) {
    .a-img-sec {
        text-align: center;
    }
    .a-img {
        width: 300px;
        height: 300px;
    }
    .right-align {
        top:50px;
    }
}