@import url("https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick.min.css");
body {
    font-family: 'Muli', sans-serif;
    font-weight: 400;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0px 0;
    background: white;
    -webkit-transition: background 300ms ease-in-out;
    -o-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.header.is-fixed {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: #f3f3f3 solid 1px;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .header.is-fixed {
        height: 55px;
    }
}

.header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__top img {
    margin-top: 3px;
}

.header__logo {
    max-width: 200px;
    padding-top: 5px;
}

@media (max-width: 767px) {
    .header__logo {
        max-width: 170px;
        position: absolute;
        z-index: 9999;
    }
}

@media (min-width: 1440px) {
    .header__logo {
        max-width: 220px;
    }
}

.header__trigger {
    background: transparent;
    border: 1px solid transparent;
    width: 33px;
    height: 33px;
    background: url(../images/menu.svg) no-repeat top center/cover;
    cursor: pointer;
}

.header__trigger:hover {
    opacity: 0.75;
}

.header .logo-color {
    fill: black;
    color: #000;
}

.header-bg {
    background: #000;
}

.banner {
    position: relative;
    height: 400px;
}

.banner__slider {
    height: 100%;
}

.banner__slider .slick-list {
    height: 100%;
}

.banner__slider .slick-list .slick-track {
    height: 100%;
}

.banner__slider .slick-list .slick-track .slick-slide>div,
.banner__slider .slick-list .slick-track .slick-slide>div>div {
    height: 100%;
}

.banner__overlaybefore {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.banner__img {
    height: 100%;
    width: 100%;
    background-size: cover !important;
    background-position: top center;
}

.banner__imginner {
    height: 100%;
    width: 100%;
    background-size: cover !important;
    background-position: center center;
}

@media (min-width: 768px) {
    .banner {
        height: 580px;
    }
}

@media (min-width: 992px) {
    .banner {
        height: 80vh;
    }
}

.banner__overlay {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
}

@media (min-width: 992px) {
    .banner__overlay {
        top: 50%;
    }
}

.banner__overlayinner {
    position: absolute;
    bottom: 0%;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.banner__overlayinner ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner__overlayinner ul li {
    padding: 0.3rem 0 0.2rem;
    margin: 0px 7px 0 0;
    color: #ccc;
    font-size: 15px;
}

.banner__overlayinner ul a {
    color: #fff;
    font-size: 15px;
}

.banner__overlayinner ul a:hover {
    text-decoration: none;
    color: #999;
}

.banner__overlayinner ul img {
    max-width: 14px;
    display: inline-block;
    margin-left: 7px;
    margin-bottom: 1px;
}

@media (max-width: 767px) {
    .banner__overlayinner ul {
        height: 50px;
    }
}

.banner__title {
    color: #fff;
    font-weight: 600;
    font-size: 28px;
    max-width: 50%;
}

@media (min-width: 768px) {
    .banner__title {
        font-size: 34px;
    }
}

@media (min-width: 992px) {
    .banner__title {
        font-size: 40px;
    }
}

.banner__para {
    color: #b2bacd;
    font-weight: 600;
    font-size: 18px;
    max-width: 50%;
}

@media (min-width: 768px) {
    .banner__para {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .banner__para {
        font-size: 24px;
    }
}

.banner__arrow {
    display: inline-block;
}

.banner__arrow img {
    max-width: 50px;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.banner__arrow img:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.banner-inner-hg {
    height: 60vh !important;
}

.masthead {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 568px;
}

.masthead__video {
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #000 url(../images/video-bg.jpg) no-repeat center;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 768px) {
    .masthead__video {
        height: 70%;
        width: 70%;
    }
}

.masthead__button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 300ms ease;
    transition: -webkit-transform 300ms ease;
    -o-transition: transform 300ms ease;
    transition: transform 300ms ease;
    transition: transform 300ms ease, -webkit-transform 300ms ease;
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    width: 73.5px;
    height: 73.5px;
}

@media (min-width: 992px) {
    .masthead__button {
        width: 147px;
        height: 147px;
    }
}

.masthead__button:hover {
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    -ms-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.95;
}

.slider-nav {
    overflow: hidden;
}

.slider-nav .slick-arrow {
    position: absolute;
    z-index: 99;
    height: 36px;
    width: 36px;
    display: block;
    padding: 0;
    top: 50%;
    cursor: pointer;
    font-size: 18px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 50%;
    border: none;
    color: #222;
    background-color: #fff;
}

.slider-nav .slick-arrow .fa {
    line-height: 16px;
}

.slider-nav .slick-arrow.slick-prev {
    left: -100px;
    padding: 9px 5px 0 0;
}

.slider-nav .slick-arrow.slick-next {
    right: -100px;
    padding: 9px 0px 0 5px;
}

.slider-nav .slick-arrow:focus {
    outline: none !important;
}

.slider-nav:hover .slick-arrow.slick-prev {
    left: 40px;
}

.slider-nav:hover .slick-arrow.slick-next {
    right: 40px;
}

.slider-nav:focus {
    outline: none !important;
}

.bannerbg {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #7597d3;
    background-size: cover;
}

.bannerbg .img {
    max-height: 650px;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: 0 auto;
}

@media only screen and (max-width: 550px) and (min-width: 320px) {
    .bannerbg .img {
        max-height: 420px;
    }
}

@media only screen and (max-width: 767px) and (min-width: 551px) {
    .bannerbg .img {
        max-height: 320px;
    }
}

@media only screen and (max-width: 3000px) and (min-width: 1661px) {
    .bannerbg .img {
        max-height: 750px;
    }
}

.bannerbg .img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 61, 174, 0.6);
}

.bannerbg .slider-caption .bannerleft-logo {
    padding-top: 32%;
    max-width: 230px;
    width: 100%;
    display: block;
    margin-left: 50px;
}

.bannerbg .slider-caption .bannerleft-logo img {
    margin-bottom: 10px;
}

@media only screen and (max-width: 550px) and (min-width: 320px) {
    .bannerbg .slider-caption .bannerleft-logo {
        padding-top: 25%;
        max-width: 150px;
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) and (min-width: 551px) {
    .bannerbg .slider-caption .bannerleft-logo {
        max-width: 150px;
        margin-left: 30px;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .bannerbg .slider-caption .bannerleft-logo {
        margin-left: 50px;
        padding-top: 70%;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .bannerbg .slider-caption .bannerleft-logo {
        margin-left: 20px;
    }
}

@media only screen and (max-width: 1660px) and (min-width: 1400px) {
    .bannerbg .slider-caption .bannerleft-logo {
        padding-top: 30%;
    }
}

@media only screen and (max-width: 3000px) and (min-width: 1661px) {
    .bannerbg .slider-caption .bannerleft-logo {
        padding-top: 40%;
        margin-left: 0px;
    }
}

.bannerbg .slider-caption .bannerright-logo {
    padding-top: 55%;
    max-width: 230px;
    width: 100%;
    display: block;
    margin-left: 300px;
}

.bannerbg .slider-caption .bannerright-logo img {
    margin-bottom: 10px;
}

@media only screen and (max-width: 550px) and (min-width: 320px) {
    .bannerbg .slider-caption .bannerright-logo {
        padding-top: 30px;
        max-width: 150px;
        float: right;
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) and (min-width: 551px) {
    .bannerbg .slider-caption .bannerright-logo {
        max-width: 150px;
        margin-left: 135px;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .bannerbg .slider-caption .bannerright-logo {
        margin-left: 60px;
        padding-top: 100%;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .bannerbg .slider-caption .bannerright-logo {
        margin-left: 150px;
        padding-top: 45%;
    }
}

@media only screen and (max-width: 1660px) and (min-width: 1400px) {
    .bannerbg .slider-caption .bannerright-logo {
        padding-top: 62%;
    }
}

@media only screen and (max-width: 3000px) and (min-width: 1661px) {
    .bannerbg .slider-caption .bannerright-logo {
        padding-top: 70%;
        margin-left: 350px;
    }
}

.services-box {
    position: relative;
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .services-box {
        margin-top: -52px;
    }
}

.services-box .services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.services-box .services .w20 {
    width: 20%;
}

.services-box .services .brands {
    position: absolute;
}

.services-box .services .brands .overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 61, 174, 0.6);
}

.services-box .services .brands .overlay p {
    color: #fff;
    font-family: 'Autor ExtLt';
    text-align: right;
    padding-right: 15px;
    padding-top: 25px;
    font-weight: 300;
    font-size: 22px;
}

.services-box .services .brands .overlay .arrow {
    text-align: center;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mastheadhalf {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 300px;
    height: 100%;
}

@media (max-width: 550px) {
    .mastheadhalf img {
        min-height: 120px;
    }
}

.grid {
    position: relative;
    margin: 0 auto;
    padding: 0em 0 0em;
    width: 100%;
    list-style: none;
    text-align: center;
}


/* Common style */

.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    width: 20%;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
    margin: 0px;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 1;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

@media screen and (max-width: 550px) and (min-width: 320px) {
    .grid figure img {
        width: 100%;
    }
}

.grid figure:hover img {
    opacity: 0.5;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.grid figure figcaption {
    padding: 1em;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    z-index: 9;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid figure figcaption>a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.grid figure h2 {
    word-spacing: -0.15em;
    font-weight: 500;
    font-size: 22px;
}

.grid figure h2 span {
    font-weight: 300;
}

.grid figure h2,
.grid figure p {
    margin: 0;
}

figure.effect-marley figcaption {
    text-align: right;
}

figure.effect-marley h2,
figure.effect-marley p {
    position: absolute;
    right: 30px;
    left: 30px;
    padding: 10px 0;
}

figure.effect-marley p {
    bottom: 30px;
    line-height: 1.5;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

figure.effect-marley h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    -o-transition: transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}

figure.effect-marley:hover h2 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

figure.effect-marley h2::after,
figure.effect-marley p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
}

figure.effect-marley:hover h2::after,
figure.effect-marley:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 500px) and (min-width: 320px) {
    .grid figure {
        width: 100%;
        margin: 0px;
    }
}

@media screen and (max-width: 767px) and (min-width: 501px) {
    .grid figure {
        margin: 0px;
    }
    .grid figure p img {
        max-width: 80px;
    }
    .grid figure h2 {
        font-size: 17px;
    }
    figure.effect-marley h2,
    figure.effect-marley p {
        position: absolute;
        padding: 0px 0;
    }
}

@media screen and (max-width: 1100px) and (min-width: 768px) {
    .grid figure p img {
        max-width: 70px;
    }
    .grid figure h2 {
        font-size: 18px;
    }
    figure.effect-marley h2,
    figure.effect-marley p {
        position: absolute;
        right: 30px;
        left: 20px;
        padding: 0px 0;
        text-align: right;
    }
    .grid figure figcaption {
        padding: 0.5em 1em;
    }
}

@-webkit-keyframes titleAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-300%);
    }
    8% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
    17% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
    19% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-moz-keyframes titleAnimation {
    0% {
        opacity: 0;
        -moz-transform: translateY(-300%);
    }
    8% {
        opacity: 1;
        -moz-transform: translateY(0%);
    }
    17% {
        opacity: 1;
        -moz-transform: translateY(0%);
    }
    19% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-o-keyframes titleAnimation {
    0% {
        opacity: 0;
        -o-transform: translateY(-300%);
    }
    8% {
        opacity: 1;
        -o-transform: translateY(0%);
    }
    17% {
        opacity: 1;
        -o-transform: translateY(0%);
    }
    19% {
        opacity: 0;
        -o-transform: translateY(100%);
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-ms-keyframes titleAnimation {
    0% {
        opacity: 0;
        -ms-transform: translateY(-300%);
    }
    8% {
        opacity: 1;
        -ms-transform: translateY(0%);
    }
    17% {
        opacity: 1;
        -ms-transform: translateY(0%);
    }
    19% {
        opacity: 0;
        -ms-transform: translateY(100%);
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes titleAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-300%);
        transform: translateY(-300%);
    }
    8% {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
    17% {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
    19% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.carousel-control-next,
.carousel-control-prev {
    width: 0px;
}

@media (max-width: 1199px) {
    .carousel-control-next,
    .carousel-control-prev {
        display: none;
    }
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-caption {
    left: 0px;
    right: 0px;
    padding: 0px;
    text-align: left;
    bottom: 0px;
}

.carousel-inner img {
    width: 100%;
    height: 100%;
}

.bannerbox {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.bannerbox .slide-serv {
    width: 31%;
    text-align: left;
    margin: 1%;
    background: #fff;
    -webkit-box-shadow: 0px 5px 10px 0px #e6e6e6;
    -moz-box-shadow: 0px 5px 10px 0px #e6e6e6;
    box-shadow: 0px 5px 10px 0px #e6e6e6;
    border: #eee solid 1px;
    overflow: hidden;
    padding: 20px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    color: #333;
}

.bannerbox .slide-serv h4 {
    font-size: 17px;
    border-bottom: #eee solid 1px;
    margin: 0px;
    padding: 10px;
    color: #333;
}

.bannerbox .slide-serv a {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    border: #09a223 solid 1px;
    padding: 7px 10px;
    font-size: 14px;
    background: #09a223;
}

.bannerbox .slide-serv a:hover {
    text-decoration: none;
}

@media screen and (max-width: 550px) and (min-width: 320px) {
    .bannerbox .slide-serv {
        width: 98%;
    }
}

@media screen and (max-width: 550px) and (min-width: 320px) {
    .bannerbox {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.bannerbox .gst-fill .icon {
    width: 60px;
    height: 60px;
    background: #ccc;
    padding: 15px;
    margin-right: 10px;
    float: left;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.bannerbox .gst-fill h5 {
    font-size: 17px;
    margin: 0px 0 8px;
    padding: 0px;
}

.bannerbox .gst-fill p {
    font-size: 14px;
}

.homebanner {
    background-size: cover;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    /* /////////// IMAGE ZOOM /////////// */
}

.homebanner .banner-bg {
    background: url(../images/bannerbg.png) no-repeat top right;
    background-size: cover;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .homebanner .banner-bg {
        padding: 120px 0 50px;
    }
}

@media (min-width: 992px) {

    .homebanner .slider,
    .homebanner .slide {
        height: 100%;
        padding-top: 170px;
        padding-bottom: 170px;
    }
    .homebanner .slider,
    .homebanner .slide2 {
        height: 100%;
        padding-top: 60px !important;
        padding-bottom: 100px !important;
    }
}

.homebanner .slide {
    position: relative;
}

.homebanner .slide .slide__img {
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {
    .homebanner .slide .slide__img {
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.homebanner .slide .slide__img img {
    max-width: 100%;
    height: auto;
    opacity: 1 !important;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.homebanner .slide .slide__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
}

.homebanner .slide .slide__content .phone {
    margin-bottom: -10px;
}

.slide__content--headings {
    text-align: left;
    color: #000;
    padding-top: 10%;
}

.slide__content--headings h1 {
    font-size: 2.8rem;
    margin: 10px 0 30px;
}

.slide__content--headings h1 span {
    color: #09a223;
}

.slide__content--headings p {
    font-size: 1.4rem;
}

.slide__content--headings .animated {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.slide__content--headings h2 {
    font-size: 2.2rem;
    margin: 10px 0 10px;
}

.slide__content--headings h2 span {
    color: #09a223;
}

.slide__content--headings h6 {
    font-size: 1.1rem;
    font-weight: 300;
}

.homebanner .slider [data-animation-in] {
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-transition: opacity 0.2s ease 0.1s;
    -o-transition: opacity 0.2s ease 0.1s;
    transition: opacity 0.2s ease 0.1s;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .slide__content--headings h2 {
        font-size: 1.3rem;
        margin: 10px 0 10px;
    }
    .slide__content--headings h2 span {
        color: #09a223;
    }
    .slide__content--headings h6 {
        font-size: 0.9rem;
        font-weight: 300;
    }
    .slide__img img {
        max-width: 100%;
        height: 100%;
        position: relative;
    }
    .slide__content {
        position: absolute;
        top: 0;
        text-align: center;
        margin: 0 auto;
    }
    .slide__content--headings {
        padding-top: 0%;
        margin-top: -5px;
    }
    .slide__content .phone {
        max-height: 180px;
        text-align: center;
        margin: 0 auto;
    }
    .slide__content--headings h1 {
        font-size: 1.5rem;
        margin: 10px 0 15px;
        font-weight: 400;
    }
    .slide__content--headings h1 span {
        color: #396afb;
        font-weight: bold;
    }
    .slide__content--headings p {
        font-size: 1.1rem;
        text-align: center;
    }
    .slide__content .btn-knowmore {
        margin: 0 auto;
        display: table;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .homebanner .slide {
        min-height: 450px;
        overflow: hidden;
    }
    .homebanner .slide .slide__img img {
        min-height: 450px;
        position: relative;
    }
    .homebanner .slide .slide__content {
        position: absolute;
        bottom: -93px;
        text-align: center;
        margin: 0 auto;
    }
    .slide__content--headings {
        padding-top: 0%;
    }
    .slide__content .phone {
        max-height: 400px;
        text-align: center;
        margin: 0 auto;
    }
    .slide__content--headings h1 {
        font-size: 1.8rem;
        margin: 10px 0 15px;
        font-weight: 400;
        text-align: center;
    }
    .slide__content--headings h1 span {
        display: block;
        color: #396afb;
        font-weight: bold;
    }
    .slide__content--headings p {
        font-size: 1.2rem;
        text-align: center;
    }
    .slide__content .btn-knowmore {
        margin: 0 auto;
        display: table;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .homebanner .slide {
        min-height: 500px;
        overflow: hidden;
    }
    .homebanner .slide .slide__img img {
        min-height: 500px;
        position: relative;
    }
    .homebanner .slide .slide__content {
        position: absolute;
        bottom: -93px;
        text-align: center;
        margin: 0 auto;
    }
    .slide__content--headings {
        padding-top: 8%;
    }
    .slide__content .phone {
        max-height: 400px;
        text-align: center;
        margin: 0 auto;
    }
    .slide__content--headings h1 {
        font-size: 1.8rem;
        margin: 10px 0 15px;
        font-weight: 400;
        text-align: center;
    }
    .slide__content--headings h1 span {
        display: block;
        color: #396afb;
        font-weight: bold;
    }
    .slide__content--headings p {
        font-size: 1.2rem;
        text-align: center;
    }
    .slide__content .btn-knowmore {
        margin: 0 auto;
        display: table;
    }
}

.homebanner .slick-dotted .slick-slider {
    margin-bottom: 30px;
}

.homebanner .slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.homebanner .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.homebanner .slick-dots li button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.homebanner .slick-dots li button:hover,
.homebanner .slick-dots li button:focus {
    outline: none;
}

.homebanner .simple-dots .slick-dots li {
    width: 20px;
    height: 20px;
}

.homebanner .simple-dots .slick-dots li button {
    border-radius: 50%;
    background-color: white;
    opacity: 0.25;
    width: 20px;
    height: 20px;
}

.homebanner .simple-dots .slick-dots li button:hover,
.homebanner .simple-dots .slick-dots li button:focus {
    opacity: 1;
}

.homebanner .simple-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.homebanner .stick-dots .slick-dots li {
    height: 3px;
    width: 50px;
}

.homebanner .stick-dots .slick-dots li button {
    position: relative;
    background-color: white;
    opacity: 0.25;
    width: 50px;
    height: 3px;
    padding: 0;
}

.homebanner .stick-dots .slick-dots li button:hover,
.homebanner .stick-dots .slick-dots li button:focus {
    opacity: 1;
}

.homebanner .stick-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.homebanner .stick-dots .slick-dots li.slick-active button:hover,
.homebanner .stick-dots .slick-dots li.slick-active button:focus {
    opacity: 1;
}

@-webkit-keyframes zoomInImage {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes zoomInImage {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.homebanner .zoomInImage {
    -webkit-animation-name: zoomInImage;
    animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes zoomOutImage {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.homebanner .zoomOutImage {
    -webkit-animation-name: zoomOutImage;
    animation-name: zoomOutImage;
}

@media screen and (max-width: 1199px) and (min-width: 320px) {
    .pd0 {
        padding: 15px !important;
    }
}

.innerbanner {
    background: url(../images/bannerbg.png) no-repeat bottom center;
    background-size: cover;
    padding: 70px 0 70px;
}

.innerbanner h2 {
    padding-top: 170px;
}

.innerbanner h2 span {
    color: #09a223;
}

.innerbanner .busibanner {
    padding-top: 80px;
}

* {
    outline: none;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section-control {
    padding-top: 45px;
    padding-bottom: 45px;
}

@media (min-width: 992px) {
    .section-control {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

.section-digital {
    padding-top: 30px;
    padding-bottom: 53.5px;
}

@media (min-width: 992px) {
    .section-digital {
        padding-top: 60px;
        padding-bottom: 107px;
    }
}

.section-control-bot0 {
    padding-top: 70px;
    border-bottom: #f3f3f3 solid 1px;
}

@media screen and (max-width: 550px) and (min-width: 320px) {
    .section-control-bot0 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.section-control-top0 {
    padding-bottom: 90px;
    margin-top: -60px;
}

.section-container {
    max-width: 870px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-large {
    font-family: "Montserrat";
    font-size: 36px;
    line-height: 1;
    margin: 0 0 15px;
    font-weight: 500;
}

@media screen and (max-width: 550px) and (min-width: 320px) {
    .section-title-large {
        font-size: 24px;
    }
}

@media screen and (max-width: 992px) and (min-width: 551px) {
    .section-title-large {
        font-size: 30px;
    }
}

.section-heading-exlarge {
    font-family: "Montserrat";
    font-size: 50px;
    line-height: 1;
    margin: 0 0 15px;
    font-weight: 500;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .section-heading-exlarge {
        font-size: 24px;
    }
}

.section-heading {
    font-family: "Montserrat";
    font-size: 36px;
    line-height: 1;
    margin: 0 0 15px;
    font-weight: 300;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .section-heading {
        font-size: 24px;
    }
}

.section-heading-middle {
    font-family: "Montserrat";
    font-size: 30px;
    line-height: 1.4;
    font-weight: 300;
    margin: 0 0 10px;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .section-heading-middle {
        font-size: 24px;
    }
}

.section-heading-small {
    font-family: "Montserrat";
    font-size: 26px;
    line-height: 1;
    margin: 0 0 0px;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .section-heading-small {
        font-size: 22px;
    }
}

.section-sub-heading {
    font-size: 20px;
    margin: 0 0 1.7em;
    line-height: 30px;
}

@media (max-width: 767px) {
    .section-sub-heading {
        font-size: 17px;
    }
}

.section-sub-heading-para {
    font-size: 18px;
    line-height: 26px;
}

.section-para {
    font-size: 17px;
    line-height: 26px;
}

.section-para-small {
    font-size: 15px;
    line-height: 22px;
}
.dir-title {
    font-size: 14px;
    line-height: 20px;
}
.section-para-small-ex {
    font-size: 12px;
    line-height: 18px;
}

.table thead th {
    vertical-align: middle;
}

.pd-rl {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-top: 15px;
    display: inline-block;
    border-left: #eee solid 1px;
}

.hr {
    width: 100px;
    height: 5px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background: #28a745;
    margin: 17px auto;
    display: table;
}

.hr-left {
    width: 100px;
    height: 4px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background: #28a745;
    margin: 17px 0;
    display: block;
}

.blue {
    color: #396afb;
}

.lightblue {
    color: #7b8cb6;
}

.green {
    color: #28a745;
}

.lightcolor {
    color: #fff;
}

.lightwhitegry {
    color: #f1f1f1;
}

.orange {
    color: #f1641f;
}

.darkgrey {
    color: #59595a;
}

.bold {
    font-weight: 600;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb80 {
    margin-bottom: 80px;
}

.mr20 {
    margin-right: 20px;
}

.pdl40 {
    padding-left: 40px;
}

@media screen and (max-width: 550px) and (min-width: 320px) {
    .pdl40 {
        padding-left: 15px;
    }
}

.sectionculture {
    position: relative;
    background: url(../images/work-culture-img.png) no-repeat top left;
    background-size: contain;
    min-height: 1100px;
    height: 100%;
    padding-top: 250px;
}

@media screen and (max-width: 550px) and (min-width: 320px) {
    .sectionculture {
        padding-top: 450px;
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 767px) and (min-width: 551px) {
    .sectionculture {
        padding-top: 800px;
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .sectionculture {
        padding-top: 800px;
        padding-bottom: 50px;
    }
    .sectionculture .col-md-5 {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

a {
    color: #f1641f;
}

.greybackground {
    background-color: #e6eaf1;
}

.pd-all10 {
    padding: 10px 3px;
}

.whitebackground {
    background-color: #fff;
}

.pdt50 {
    padding-top: 50px;
}

.pdb40 {
    padding-bottom: 40px;
}

.pd15 {
    padding: 0 15px;
}

.pdtb20 {
    padding: 20px 0;
}

@media (max-width: 767px) {
    .pdt50 {
        padding-top: 20px;
    }
    .pdb40 {
        padding-bottom: 20px;
    }
}

#back2Top {
    width: 40px;
    line-height: 40px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 40px;
    right: 20px;
    border-radius: 3px;
    background: #ed1e21;
    color: #fff;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
}

.eqWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100%;
    background: #e8eaed;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.eqWrap .equalHW {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.eqWrap .equalHMWrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.eqWrap .equalHM {
    width: 50%;
}

.eqWrap .equalHMRWrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.eqWrap .eq-light {
    background: #e8eaed;
}

.eqWrap .eq-dark {
    background: #082f70;
}

.scrollToTop {
    bottom: 60px;
    border-radius: 4px;
    display: none;
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    height: 50px;
    position: fixed;
    right: 15px;
    text-align: center;
    text-decoration: none;
    width: 50px;
    z-index: 999;
    color: #ef4e25;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.scrollToTop {
    background-color: transparent;
}

.magnific-img img {
    width: 100%;
    height: auto;
    padding: 4px;
    border: #ccc solid 1px;
    margin-bottom: 15px;
}

.magnific-img {
    display: inline-block;
    width: 30.3%;
    margin: 0 1%;
}

a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-arrow-left:before {
    border-right: none !important;
}

.mfp-arrow-right:before {
    border-left: none !important;
}

button.mfp-arrow,
.mfp-counter {
    opacity: 0 !important;
    -webkit-transition: opacity 200ms ease-in, opacity 2000ms ease-out;
    -o-transition: opacity 200ms ease-in, opacity 2000ms ease-out;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}

.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
    opacity: 1 !important;
}


/* Magnific Popup CSS */

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}


/* Main image in popup */

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}


/* The shadow behind the image */

.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
    /**
       * Remove all paddings around the image on small screen
       */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        -ms-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        -ms-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        -ms-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.transp {
    background: #fff !important;
}

@media only screen and (max-width: 768px) {
    .animated {
        visibility: visible !important;
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
        data-delay: none !important;
    }
}

@media only screen and (max-width: 767px) {
    .m-5 {
        margin: 1rem !important;
    }
    .tabs>ul li a {
        padding: 5px !important;
    }
    .tabs>ul li {
        font-size: 13px;
    }
}


/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

@-webkit-keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes shake {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@keyframes shake {
    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    10%,
    20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    10%,
    20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        -ms-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        -ms-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        -ms-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        -ms-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        -ms-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        -ms-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        -ms-transform: scale(0.3);
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
    70% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }
    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    25% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    25% {
        -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        -ms-transform: scale(0.3);
        transform: scale(0.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        -ms-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        -ms-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        -ms-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate(80deg);
        -ms-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        -ms-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    100% {
        -webkit-transform: translateY(700px);
        -ms-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        -ms-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

.right {
    float: right;
    margin-left: 1em;
}

@font-face {
    font-family: icon-font;
    src: url(../fonts/icon-font.eot);
    src: url(../fonts/icon-font.eot?#iefix) format("eot"), url(../fonts/icon-font.woff) format("woff"), url(../fonts/icon-font.ttf) format("truetype"), url(../fonts/icon-font.svg#icon-font) format("svg");
}

.icon-desktop:before,
.icon-menu-close:before,
.icon-menu:before,
.icon-mobile:before,
.icon-submenu-down:before,
.icon-submenu-right:before,
.icon-world:before,
.nav .nav-submenu>a:after,
.nav-button:before,
.nav-close:before,
.nav>ul>.nav-submenu>a:after,
header h1:before {
    font-family: icon-font;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    text-decoration: none;
    text-transform: none;
    vertical-align: top;
}

.icon-desktop:before {
    content: "\E001";
}

.icon-menu-close:before {
    content: "\E002";
}

.icon-menu:before {
    content: "\E003";
}

.icon-mobile:before {
    content: "\E004";
}

.icon-submenu-down:before {
    content: "\E005";
}

.icon-submenu-right:before {
    content: "\E006";
}

.icon-world:before {
    content: "\E007";
}

.nav-button,
.nav-close {
    position: fixed;
    top: 0;
    width: 2.4rem;
    height: 4.4rem;
    z-index: 999;
    cursor: pointer;
    text-decoration: none;
    line-height: 3rem;
    background: transparent;
    color: #f1641f;
}

.nav-button img {
    max-width: 28px;
}

.nav-button:before,
.nav-close:before {
    display: block;
    text-align: center;
}

.nav-button {
    display: block;
    right: 1rem;
    font-size: 1.7rem;
}

.nav-close {
    display: none;
    right: 4rem;
    font-size: 1.9rem;
}

.nav-close:before {
    content: "\E002";
}

.nav {
    background: transparent;
    color: #000;
}

.nav ul {
    border-radius: 0px;
    background: transparent;
}

@media (max-width: 991px) {
    .nav ul {
        padding-top: 60px;
        background: rgba(244, 244, 244, 0.95);
    }
}

.nav ul ul {
    border-radius: 0px !important;
    background: rgba(120, 120, 120, 0.95);
}

@media (max-width: 991px) {
    .nav ul ul {
        padding-top: 0px;
    }
}

.nav ul ul li a {
    color: #fff !important;
    padding: 6px 10px 6px;
    font-size: 14px;
}

.nav ul ul li a:hover {
    padding: 6px 10px 6px;
    font-size: 14px;
}

.nav ul ul ul {
    background: #787878;
    border-radius: 0px !important;
}

.nav ul ul ul ul {
    background: #787878;
    border-radius: 0px !important;
}

.nav ul ul ul ul ul {
    background: #787878;
    border-radius: 0px !important;
}

.nav li {
    cursor: pointer;
}

.nav li.nav-active>a,
.nav li:hover>a {
    color: #f1641f;
}

.nav li .register {
    background: #f1641f;
    color: #fff !important;
    padding: 5px 15px;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.nav li .register:hover {
    background: #28a745;
    padding: 5px 15px;
    color: #fff !important;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.nav .nav-submenu>ul {
    margin-left: 10px;
}

.nav .nav-submenu>a {
    padding-right: 30px !important;
}

.nav a,
.nav a:active,
.nav a:hover,
.nav a:visited {
    border-radius: 0px;
    padding: 12px 10px 12px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.05em;
}

.nav a.active {
    color: #f1641f;
    border-bottom: #f1641f solid 1px;
    margin-bottom: -1px;
}

.nav .nav-submenu>a:after {
    position: absolute;
    display: block;
    right: 10px;
    top: 13px;
    content: "\E005";
}

@media only screen and (min-width: 991px) {
    .nav-button {
        display: none;
        position: absolute;
        z-index: 9998;
    }
    .nav {
        padding: 0 !important;
    }
    .nav>ul>li {
        border-top: none;
    }
    .nav ul ul ul li:first-child {
        border-top: none;
    }
    .nav .nav-submenu li {
        min-width: 220px;
    }
    .nav .nav-submenu>ul {
        margin: 0;
    }
    .nav>ul>.nav-submenu>a:after {
        content: "\E005";
    }
    .nav .nav-submenu>a:after {
        content: "\E006";
    }
}

.desknav {
    display: block;
}

.mobnav {
    display: none !important;
}

@media screen and (max-width: 990px) and (min-width: 320px) {
    .mobnav {
        display: block !important;
    }
    .desknav {
        display: none !important;
    }
    .nav a.active {
        color: #fff;
    }
}

.crypto-feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
}

.crypto-feature .item {
    width: 33.3%;
}

.crypto-feature .item:nth-child(1) {
    padding-right: 40px;
}

.crypto-feature .item:nth-child(3) {
    padding-left: 40px;
}

.crypto-feature .feature {
    display: block;
    clear: both;
}

.crypto-feature .feature .title {
    display: block;
    width: 100%;
    clear: both;
}

.crypto-feature .feature .title h4 {
    font-size: 20px;
    font-weight: 500;
    padding: 15px;
    color: #000;
}

.crypto-feature .feature .title img {
    max-width: 50px;
    border: dotted 1px #f1641f;
    padding: 7px;
    float: left;
    margin-right: 15px;
}

.crypto-feature .feature p {
    display: block;
    margin-bottom: 35px;
    font-size: 16px;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .crypto-feature {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .crypto-feature .item {
        width: 100%;
        margin-bottom: 20px;
        padding: 15px;
    }
    .crypto-feature .feature .title h4 {
        font-size: 20px;
        font-weight: 500;
        padding: 8px 10px 15px;
        color: #000;
    }
}

.sectionsecurity {
    position: relative;
    background: url(../images/bg3.jpg) no-repeat center center;
    background-color: #082f70;
    background-size: cover;
    padding-top: 90px;
    padding-bottom: 80px;
}

.sectionsecurity h3 {
    font-weight: 300;
}

.dtek-power {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
}

.dtek-power .dtek {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
}

.dtek-power .dtek .item {
    width: 50%;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .dtek-power .dtek {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .dtek-power .dtek .item {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
}

.faqs {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
}

.faqs .dtek {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
}

.faqs .dtek .item {
    width: 31%;
    background: #f4f5f7;
    padding: 30px 15px 10px;
    margin: 0 1%;
    position: relative;
}

.faqs .dtek .item img {
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.faqs .dtek .item h6 {
    font-weight: 300;
    color: #000;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .faqs .dtek {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .faqs .dtek .item {
        width: 100%;
        margin-bottom: 50px;
    }
    .faqs .dtek .item:last-child {
        margin-bottom: 10px;
    }
}

.currencycoin {
    background: #f4f5f7;
    padding: 50px 0;
}

.currencycoin .coinlogo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.currencycoin .coinlogo .item:nth-child(1) {
    width: 20%;
}

.currencycoin .coinlogo .item:nth-child(2) {
    width: 30%;
}

.currencycoin .coinlogo .item:nth-child(3) {
    width: 20%;
}

.currencycoin .coinlogo .item:nth-child(4) {
    width: 30%;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .currencycoin .coinlogo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    .currencycoin .coinlogo .item:nth-child(1) {
        width: 60%;
        margin-bottom: 15px;
    }
    .currencycoin .coinlogo .item:nth-child(2) {
        width: 60%;
        margin-bottom: 15px;
    }
    .currencycoin .coinlogo .item:nth-child(3) {
        width: 60%;
        margin-bottom: 15px;
    }
    .currencycoin .coinlogo .item:nth-child(4) {
        width: 60%;
    }
}

.enquirybg {
    background: url(../images/enquiry-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 70px 0;
}

.testimonial {
    padding: 70px 0;
}

.testimonial .col-center {
    margin: 0 auto;
    float: none !important;
}

.testimonial .carousel {
    margin: 50px auto;
    padding: 0 70px;
}

.testimonial .carousel .item {
    color: #333;
    font-size: 17px;
    text-align: center;
    overflow: hidden;
    min-height: 290px;
}

.testimonial .carousel .item .img-box {
    width: 135px;
    height: 135px;
    margin: 0 auto;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 50%;
}

.testimonial .carousel .img-box img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

.testimonial .carousel .testimonial {
    padding: 30px 0 10px;
}

.testimonial .carousel .overview {
    font-style: italic;
}

.testimonial .carousel .overview b {
    text-transform: uppercase;
    color: #28a745;
}

.testimonial .carousel .carousel-control {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    top: 50%;
    background: none;
}

.testimonial .carousel-control i {
    font-size: 68px;
    line-height: 42px;
    position: absolute;
    display: inline-block;
    color: rgba(0, 0, 0, 0.8);
    text-shadow: 0 3px 3px #e6e6e6, 0 0 0 #000;
}

.testimonial .carousel .carousel-indicators {
    bottom: -40px;
}

.testimonial .carousel-indicators li,
.testimonial .carousel-indicators li.active {
    width: 10px;
    height: 10px;
    margin: 1px 3px;
    border-radius: 50%;
}

.testimonial .carousel-indicators li {
    background: #999;
    border-color: transparent;
    -webkit-box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
}

.testimonial .carousel-indicators li.active {
    background: #555;
    -webkit-box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
}

.tabs>ul {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #ccc;
    font-size: 0;
}

.tabs>ul .indicator {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: #28a745;
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tabs>ul li {
    display: inline-block;
    font-size: 14px;
    width: 25%;
}

.tabs>ul li a {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 15px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    color: #212529;
    -webkit-transition: all 0.3s ease 0.4s;
    -o-transition: all 0.3s ease 0.4s;
    transition: all 0.3s ease 0.4s;
}

.tabs>ul li a:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #28a745 !important;
    color: #fff;
    -webkit-transform: translateZ(0) translateY(100%);
    transform: translateZ(0) translateY(100%);
    -webkit-transition: all 0.3s ease 0.3s;
    -o-transition: all 0.3s ease 0.3s;
    transition: all 0.3s ease 0.3s;
    z-index: -1;
}

.tabs>ul li a[aria-selected] {
    color: #fff;
    z-index: 99;
}

.tabs>ul li a[aria-selected]:before {
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
}

.tabs>section[aria-hidden="true"] {
    display: none;
}

.gallery {
    display: block;
    width: 100%;
    position: relative;
    /* Common style */
    /* Anchor will cover the whole item by default */
    /* For some effects it will show as a button */
}

.gallery .grid {
    margin: 0 auto;
    padding: 10px 0;
    max-width: 100%;
    list-style: none;
    text-align: center;
    display: block;
    position: relative;
}

.gallery .grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 1%;
    height: 100%;
    width: 32%;
    height: auto;
    background: #fff;
    text-align: center;
    cursor: pointer;
}

.gallery .grid figure:nth-child(1) {
    margin-left: 0px;
}

.gallery .grid figure:nth-child(4) {
    margin-left: 0px;
}

.gallery .grid figure:nth-child(7) {
    margin-left: 0px;
}

.gallery .grid figure:nth-child(10) {
    margin-left: 0px;
}

.gallery .grid figure:nth-child(3) {
    margin-right: 0px;
}

.gallery .grid figure:nth-child(6) {
    margin-right: 0px;
}

.gallery .grid figure:nth-child(9) {
    margin-right: 0px;
}

.gallery .grid figure:nth-child(12) {
    margin-right: 0px;
}

.gallery .grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
}

.gallery .grid figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.1em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.gallery .grid figure figcaption::before,
.gallery .grid figure figcaption::after {
    pointer-events: none;
}

.gallery .grid figure figcaption,
.gallery .grid figure figcaption>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery .grid figure figcaption>a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.gallery .grid figure h2 {
    word-spacing: -0.15em;
    font-weight: 300;
}

.gallery .grid figure h2 span {
    font-weight: 800;
}

.gallery .grid figure h2,
.gallery .grid figure p {
    margin: 0;
}

.gallery .grid figure p {
    letter-spacing: 1px;
    font-size: 75.5%;
}

.gallery figure.effect-goliath {
    background: #28a745;
}

.gallery figure.effect-goliath img,
.gallery figure.effect-goliath h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    -o-transition: transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
}

.gallery figure.effect-goliath img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.gallery figure.effect-goliath h2,
.gallery figure.effect-goliath p {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px 30px;
}

.gallery figure.effect-goliath p {
    text-transform: none;
    opacity: 0;
    text-align: left;
    font-size: 18px;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
}

.gallery figure.effect-goliath:hover img {
    -webkit-transform: translate3d(0, -80px, 0);
    transform: translate3d(0, -80px, 0);
}

.gallery figure.effect-goliath:hover h2 {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
}

.gallery figure.effect-goliath:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.tabcontent {
    display: block;
    clear: both;
    width: 100%;
    padding: 40px 0;
}

.tabcontent img {
    padding: 0 40px;
}

.tabcontent ul {
    list-style: none;
    padding: 0 0 0 20px;
}

.tabcontent ul li {
    width: 50%;
    padding: 7px 0;
    float: left;
}

.tabcontent ul li .fa {
    color: #28a745;
    margin-right: 3px;
}

.ul-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.ul-list li {
    margin-bottom: 6px;
}

.ul-list li a {
    color: #28a745;
}

.ul-list li .fa {
    margin-right: 7px;
    color: #28a745;
}

.ul-list2 {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.ul-list2 li {
    margin-bottom: 10px;
    font-size: 14px;
}

.ul-list2 li a {
    color: #28a745;
}

.ul-list2 li .fa {
    margin-right: 7px;
    color: #28a745;
}

.tabbing {
    padding: 20px 0;
}

.light-bg {
    background: #f3f9f4;
}

.serv-ont {
    border: #d8dfe3 solid 1px;
    padding: 15px 15px 15px 15px;
    display: block;
    border-radius: 8px;
    margin-bottom: 30px;
    background: #fff;
    -webkit-box-shadow: inset 0px 0px 10px 0px #d4d8e6;
    -moz-box-shadow: inset 0px 0px 10px 0px #d4d8e6;
    box-shadow: inset 0px 0px 10px 0px #d4d8e6;
}

.serv-ont img {
    margin-bottom: 15px;
}

.serv-ont h5 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: #000;
}

.serv-ont p {
    font-size: 14px;
    margin: 0;
    color: #333;
}

.serv-ont:hover {
    text-decoration: none;
    border: #28a745 solid 1px;
}

.pd-right {
    padding-right: 20px;
}

.lightgreenbg {
    background: #edf6ea;
    position: relative;
    padding: 2% 0;
}

.signup {
    background: #edf6ea;
    height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 2%;
}

.myform {
    position: absolute;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding: 3rem;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.4);
    outline: 0;
    max-width: 500px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    -moz-box-shadow: rgba(167, 206, 156, 0.8) 1px 1px 20px inset;
    -webkit-box-shadow: rgba(167, 206, 156, 0.8) 1px 1px 20px inset;
    box-shadow: rgba(167, 206, 156, 0.8) 1px 1px 20px inset;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    -webkit-transition: -webkit-box-shadow 0.2s ease-in;
    transition: -webkit-box-shadow 0.2s ease-in;
    -o-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in, -webkit-box-shadow 0.2s ease-in;
}

.myform:hover {
    -moz-box-shadow: rgba(241, 100, 31, 0.2) 5px 5px 35px inset;
    -webkit-box-shadow: rgba(241, 100, 31, 0.2) 5px 5px 35px inset;
    box-shadow: rgba(241, 100, 31, 0.2) 5px 5px 35px inset;
}

.tx-tfm {
    text-transform: uppercase;
}

.mybtn {
    border-radius: 50px;
}

.login-or {
    position: relative;
    color: #aaa;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.span-or {
    display: block;
    position: absolute;
    left: 50%;
    top: -2px;
    margin-left: -25px;
    background-color: #fff;
    width: 50px;
    text-align: center;
}

.hr-or {
    height: 1px;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.google {
    color: #666;
    width: 100%;
    height: 40px;
    text-align: center;
    outline: none;
    border: 1px solid lightgrey;
}

form .error {
    color: #ff0000;
}

#second {
    display: none;
}

.timelinebg {
    background: #f5f5f5;
}

.timeline {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.timeline *,
.timeline :after,
.timeline :before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

.timeline:not(.timeline--horizontal):before {
    background-color: #ddd;
    bottom: 0;
    content: '';
    left: 50%;
    margin-left: -2px;
    position: absolute;
    top: 0;
    width: 4px;
    z-index: 1;
}

.timeline__wrap {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.timeline__item {
    font-size: 16px;
    font-size: 1rem;
    padding: .625rem 2.5rem .625rem 0;
    position: relative;
    width: 50%;
    z-index: 2;
}

.timeline__item:after {
    background-color: #fff;
    border: 4px solid #ddd;
    border-radius: 50%;
    content: '';
    height: 20px;
    position: absolute;
    right: -10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    width: 20px;
    z-index: 1;
}

.timeline__item.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 0;
}

.timeline__item.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.timeline__item--left {
    left: 0;
}

.timeline__item--right {
    left: 50%;
    padding: .625rem 0 .625rem 2.5rem;
}

.timeline__item--right:after {
    left: -10px;
}

.timeline__item--right .timeline__content:before {
    border-bottom: 10px solid transparent;
    border-right: 12px solid #ccc;
    border-left: none;
    border-top: 10px solid transparent;
    left: -12px;
}

.timeline__item--right .timeline__content:after {
    border-bottom: 9px solid transparent;
    border-right: 11px solid #fff;
    border-left: none;
    border-top: 9px solid transparent;
    left: -10px;
}

.timeline__content {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    color: #333;
    display: block;
    padding: 1.25rem;
    position: relative;
}

.timeline__content:after,
.timeline__content:before {
    content: '';
    height: 0;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    width: 0;
}

.timeline__content:before {
    border-bottom: 10px solid transparent;
    border-left: 12px solid #ccc;
    border-top: 10px solid transparent;
    right: -12px;
    z-index: 1;
}

.timeline__content:after {
    border-bottom: 9px solid transparent;
    border-left: 11px solid #fff;
    border-top: 9px solid transparent;
    right: -10px;
    z-index: 2;
}

.timeline__content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 .625rem;
}

.timeline__content p {
    font-size: .9375rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.timeline--horizontal {
    font-size: 0;
    padding: 0 3.125rem;
    overflow: hidden;
    white-space: nowrap;
}

.timeline--horizontal .timeline-divider {
    background-color: #ddd;
    display: block;
    height: 4px;
    left: 40px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 40px;
    z-index: 1;
}

.timeline--horizontal .timeline__items {
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    will-change: transform;
}

.timeline--horizontal .timeline__item {
    display: inline-block;
    left: 0;
    padding: 0 0 2.5rem;
    position: relative;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    vertical-align: top;
    white-space: normal;
}

.timeline--horizontal .timeline__item:after {
    left: 50%;
    right: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 100%;
}

.timeline--horizontal .timeline__item .timeline__item__inner {
    display: table;
    height: 100%;
    width: 100%;
}

.timeline--horizontal .timeline__item .timeline__content__wrap {
    display: table-cell;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

.timeline--horizontal .timeline__item .timeline__content:before {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #ccc;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 100%;
}

.timeline--horizontal .timeline__item .timeline__content:after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 100%;
}

.timeline--horizontal .timeline__item--bottom {
    padding: 2.5rem 0 0;
}

.timeline--horizontal .timeline__item--bottom:after {
    top: 0;
}

.timeline--horizontal .timeline__item--bottom .timeline__content__wrap {
    vertical-align: top;
}

.timeline--horizontal .timeline__item--bottom .timeline__content:before {
    border-bottom: 12px solid #ccc;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: none;
    bottom: 100%;
    top: auto;
}

.timeline--horizontal .timeline__item--bottom .timeline__content:after {
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: none;
    bottom: 100%;
    top: auto;
}

.timeline-nav-button {
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    display: block;
    height: 40px;
    outline: 0;
    position: absolute;
    text-indent: -9999px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    width: 40px;
    z-index: 10;
}

.timeline-nav-button:disabled {
    opacity: .5;
    pointer-events: none;
}

.timeline-nav-button:before {
    background-position: center center;
    background-repeat: no-repeat;
    content: '';
    display: block;
    height: 14px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    width: 8px;
}

.timeline-nav-button--prev {
    left: 0;
}

.timeline-nav-button--prev:before {
    background-image: url(../images/arrow-left.svg);
}

.timeline-nav-button--next {
    right: 0;
}

.timeline-nav-button--next:before {
    background-image: url(../images/arrow-right.svg);
}

.timeline--mobile {
    padding: 0;
}

.timeline--mobile:before {
    left: 10px !important;
    margin: 0 !important;
}

.timeline--mobile .timeline__item {
    left: 0;
    padding-left: 40px;
    padding-right: 0;
    width: 100%;
}

.timeline--mobile .timeline__item:after {
    left: 2px;
    margin: 0;
}

.timeline--mobile .timeline__item .timeline__content:before {
    left: -12px;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #ccc;
    border-left: none;
    border-top: 12px solid transparent;
}

.timeline--mobile .timeline__item .timeline__content:after {
    left: -10px;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
    border-left: none;
    border-top: 10px solid transparent;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        top: 70px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        top: 70px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

@-webkit-keyframes liftUp {
    0% {
        top: 0;
    }
    100% {
        top: -15px;
    }
}

@keyframes liftUp {
    0% {
        top: 0;
    }
    100% {
        top: -15px;
    }
}


/*# sourceMappingURL=timeline.min.css.map */

.inner-banner {
    background: #f1f5f8 url(../images/bannerbg.png) no-repeat center bottom;
    background-size: cover;
    padding: 150px 0 90px;
}

.inner-banner .innertext strong {
    color: #28a745;
    font-weight: 700;
}

.efile-income {
    margin: 15px 0;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 14px;
    cursor: pointer;
    padding: 30px;
    display: block;
    text-align: center;
    background: #fff;
    position: relative;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-clip: padding-box;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    border-bottom: transparent solid 3px;
    min-height: 430px;
}

.efile-income p {
    margin-bottom: 35px;
}

.efile-income span {
    display: block;
    font-size: 18px;
}

.efile-income img {
    max-width: 100px;
    margin-bottom: 20px;
}

.efile-income:hover {
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.4);
    border-bottom: #28a745 solid 3px;
    background: #f9f9f9;
}

.bg-black {
    background-color: #141414 !important;
}

.h-100 {
    height: 100% !important;
}

.projects-section .project-text {
    padding: 5rem;
}

.projects-section .project-text {
    padding: 3rem;
    font-family: 'Helvetica Neue';
}

.projects-section .project-text h2 {
    font-weight: 500;
    font-family: 'Helvetica Neue';
    margin-bottom: 20px;
}

.projects-section .project-text p {
    line-height: 30px;
}

.projects-section .project-text ul {
    padding: 0px;
    margin-left: 18px;
}

.projects-section .project-text ul li {
    margin-bottom: 8px;
}

.projects-section .project-text hr {
    border-color: #396afb;
    border-width: .25rem;
    width: 30%;
}

.bg-grey {
    background-color: #222;
    padding: 3rem;
}

.projects-section {
    background: #000;
}


/*-----------------  Image Alignment  ------------------------*/

.alignleft,
img.alignleft {
    display: inline;
    float: left;
    margin-right: 20px;
    margin-top: 4px;
}

.alignright,
img.alignright {
    display: inline;
    float: right;
    margin-left: 20px;
    margin-top: 4px;
}

.aligncenter,
img.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img.alignleft,
img.alignright,
img.aligncenter {
    margin-bottom: 18px;
}


/*-----------------  default Css  ------------------------*/

.content p {
    line-height: 22px;
    margin: 0 0 15px 0;
    font-size: 16px;
}

.content a {
    color: #f1641f;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-property: color;
    -o-transition-property: color;
    transition-property: color;
}

.content a:hover {
    text-decoration: underline;
    color: #f1641f;
}

.content strong {
    font-weight: bold;
}

.content p strong {
    color: #f1641f;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    color: #222222;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.content h1 {
    font-size: 30px;
    font-weight: 700;
}

.content h2 {
    font-size: 26px;
    font-weight: 700;
}

.content h3 {
    font-size: 22px;
}

.content h4 {
    font-size: 20px;
}

.content h5 {
    font-size: 18px;
}

.content h6 {
    font-size: 16px;
}

.content ul {
    margin: 0 0 18px 0;
    padding: 0 0 0 0;
    list-style: none;
}

.content ul li {
    padding: 0 0 0 15px;
}

.content ul ul {
    list-style: circle;
}

.content ol {
    list-style: decimal;
    margin: 0 0 18px 20px;
}

.content ol ol {
    list-style: upper-alpha;
}

.content ol ol ol {
    list-style: lower-roman;
}

.content ol ol ol ol {
    list-style: lower-alpha;
}

.content ul ul,
.content ol ol,
.content ul ol,
.content ol ul {
    margin-bottom: 0;
}

.content li {
    line-height: 22px;
    margin: 0 0 3px 0;
}

.content ul li {
    padding: 0 0 0 0px;
}

.content blockquote {
    font-size: 10px !important;
    background: #ededed;
    padding: 15px;
    margin: 0 0 20px 0;
    font-style: italic;
    line-height: 22px;
}

.content hr {
    border: none;
    border-bottom: #CCC solid 1px;
}

.contact-info h5 {
    margin: 0px;
    font-weight: 600;
}

.contact-form .form-group {
    margin-top: 10px;
}

.contact-form .form-group .form-control {
    font-size: 0.9em;
    color: #333;
    font-weight: 300;
    border-radius: 2px;
    height: 45px !important;
}

.contact-form .form-group textarea.form-control {
    height: 135px !important;
}

.contact-form .form-group .form-control {
    font-size: 0.9em;
    color: #333;
    font-weight: 300;
    border-radius: 2px;
    height: 45px !important;
}

.contactoptiemus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: #ccc dotted 1px;
    margin-bottom: 25px;
}

.contactoptiemus:last-child {
    border: none;
}

.contactoptiemus .icon-contact {
    margin-right: 12px;
}

.contactoptiemus .icon-contact img {
    max-width: 22px;
}

.mb-0>a {
    display: block;
    position: relative;
}

.mb-0>a:after {
    content: "\f078";
    /* fa-chevron-down */
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    color: #28a745;
}

.mb-0>a[aria-expanded="true"]:after {
    content: "\f077";
    color: #0e6622;
}

.card {
    margin-bottom: 3px;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #cedbe5 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%, #cedbe5 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cedbe5));
    background: -o-linear-gradient(top, #ffffff 0%, #cedbe5 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #cedbe5 100%);
}

.card-header a {
    font-size: 16px;
    color: #28a745;
    font-weight: 400;
}

.card-header a:hover {
    text-decoration: none;
    color: #0e6622;
}

.card-body {
    background: #fff;
    font-weight: 300;
}

.faqs-form {
    background: #f7f6f5;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.faqs-form .title-blue {
    background: #555;
    color: #fff;
    padding: 12px;
    font-size: 22px;
    border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -ms-border-radius: 4px 4px 0 0;
    -o-border-radius: 4px 4px 0 0;
}

.wearehelp-form {
    padding: 12px;
}

.wearehelp-form .form-control {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 0;
    -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    -o-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

.wearehelp-form .btn-submit {
    background: #396afb;
    padding: 6px 24px;
    border-radius: 4;
    color: #fff;
    font-size: 20px;
}

.client-list {
    background: #28a745 url(../images/clientlist-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 80px 0;
}

.client-list .list {
    text-align: center;
}

.client-list .list img {
    width: 70px;
    margin-bottom: 12px;
}

.client-list .list h2 {
    font-weight: 700;
}

.hire-ca {
    background: #fff;
    font-weight: 300;
    padding: 40px 30px;
    border: #f3f3f3 solid 1px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.hire-ca .soc-btn {
    background: #005397;
    font-size: 13px;
    color: #fff;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-clip: padding-box;
    padding: 8px 28px;
    border: none;
    text-align: center;
    margin-bottom: 10px;
}

.hire-ca .facebook {
    background: #005397;
}

.hire-ca .google {
    background: #dd4b3e;
}

.grey {
    background: #eee;
    padding: 60px 0;
}

.text-eca img {
    max-width: 70px;
    margin-bottom: 10px;
}

.gstsolutions .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: white;
    padding: 1rem 1rem 1rem 1rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 7px 7px 30px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 7px 7px 30px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.gstsolutions .wrap:hover {
    background: -webkit-linear-gradient(315deg, #666 0%, #000 100%);
    background: -o-linear-gradient(315deg, #666 0%, #000 100%);
    background: linear-gradient(135deg, #666 0%, #000 100%);
    color: white;
}

.gstsolutions .ico-wrap {
    margin: auto;
}

.gstsolutions .mbr-iconfont {
    font-size: 4.5rem !important;
    color: #28a745;
    margin: 1rem;
    padding-right: 1rem;
}

.gstsolutions .vcenter {
    margin: auto;
}

.gstsolutions .mbr-section-title3 {
    text-align: left;
}

.gstsolutions h2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.gstsolutions .display-5 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.4rem;
}

.gstsolutions .mbr-bold {
    font-weight: 700;
}

.btn-add {
    max-height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.btn-add img {
    max-height: 26px;
}

.js .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile+label {
    max-width: 100%;
    font-size: 0.9rem;
    /* 20px */
    font-weight: 400;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
    /* 10px 20px */
}

.no-js .inputfile+label {
    display: none;
}

.inputfile:focus+label,
.inputfile.has-focus+label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile+label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.inputfile+label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}

.inputfile-6+label {
    color: #666;
}

.inputfile-6+label {
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    padding: 0;
    /* width: 100%; */
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.inputfile-6:focus+label,
.inputfile-6.has-focus+label,
.inputfile-6+label:hover {
    border-color: #28a745;
}

.inputfile-6+label span,
.inputfile-6+label strong {
    padding: 0.425rem 1.25rem;
    /* 10px 20px */
}

.inputfile-6+label span {
    min-height: 1.4em;
    display: inline-block;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
}

.inputfile-6+label strong {
    height: 100%;
    color: #28a745;
    background-color: #f2f2f2;
    float: right;
}

.inputfile-6:focus+label strong,
.inputfile-6.has-focus+label strong,
.inputfile-6+label:hover strong {
    background-color: #28a745;
    color: #fff;
}

@media screen and (max-width: 50em) {
    .inputfile-6+label strong {
        display: block;
    }
}

.paymentbox {
    width: 100%;
    padding: 15px;
    background: #f7f7f7;
    border: #f1f1f1 solid 1px;
}

.paymentbox h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.paymentbox ol {
    margin: 0px;
    padding: 0px 0 0 18px;
}

.paymentbox ol li {
    font-size: 13px;
    margin-bottom: 6px;
}
.paymentbox ul li a{
    color: #666;
}

.ol-list-style ol {
    padding: 0px 0 0 20px;
    margin: 0px 0 20px;
}

.ol-list-style ol li {
    margin-bottom: 4px;
}

.btn-knowmore {
    color: #fff;
    border: #09a223 solid 1px;
    padding: 12px 30px;
    font-size: 17px;
    background: #09a223;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.btn-knowmore:hover {
    text-decoration: none;
    background: #000;
    color: #fff;
    border: #fff solid 1px;
}

@media screen and (max-width: 992px) and (min-width: 320px) {
    .btn-knowmore {
        padding: 6px 15px;
        font-size: 15px;
        border-radius: 0px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
    }
}

.btn-hire {
    width: 100%;
    color: #fff;
    border: #09a223 solid 1px;
    padding: 9px 30px;
    font-size: 15px;
    background: #09a223;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.btn-knowmore-b {
    color: #000;
    border: #fff solid 1px;
    background: #fff;
    padding: 12px 30px;
    font-size: 17px;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.btn-knowmore-b:hover {
    text-decoration: none;
    color: #000;
    border: #fff solid 1px;
    background: #fff;
}

@media screen and (max-width: 992px) and (min-width: 320px) {
    .btn-knowmore-b {
        padding: 6px 15px;
        font-size: 15px;
        border-radius: 0px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
    }
}

.btn-knowmore-bark {
    color: #fff;
    border: #013c74 solid 1px;
    background: #013c74;
    padding: 10px 30px;
    font-size: 20px;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.btn-knowmore-bark:hover {
    text-decoration: none;
    border: #000 solid 1px;
    background: #000;
}

@media screen and (max-width: 992px) and (min-width: 320px) {
    .btn-knowmore-bark {
        padding: 6px 15px;
        font-size: 15px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }
}

.btn-knowmore-or {
    color: #fff;
    background: #f1641f;
    border: #f1641f solid 1px;
    padding: 5px 22px;
    font-size: 16px;
    border-radius: 30px;
}

.btn-knowmore-or:hover {
    text-decoration: none;
    color: #fff;
    background: #09a223;
    border: #09a223 solid 1px;
}

.btn-knowmore-next {
    color: #f1641f;
    background: transparent;
    border: #f1641f solid 1px;
    padding: 5px 30px;
    font-size: 16px;
    border-radius: 20px;
}

.btn-knowmore-next:hover {
    text-decoration: none;
    color: #fff;
    background: #09a223;
    border: #09a223 solid 1px;
}

.btn-knowmore-banner {
    color: #fff !important;
    background: #f1641f !important;
    border: #f1641f solid 1px !important;
    padding: 8px 22px;
    font-size: 18px;
}

.btn-add,
.btn-hire {
    cursor: pointer !important;
}

.bhoechie-tab-container {
    z-index: 10;
    background-color: #ffffff;
    padding: 0 !important;
    background-clip: padding-box;
    opacity: 0.97;
    filter: alpha(opacity=97);
    width: 100%;
    margin-bottom: 70px;
}

.bhoechie-tab h2 {
    font-size: 24px;
}

.bhoechie-tab h3 {
    font-size: 24px;
}

.bhoechie-tab-menu {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
    width: 100%;
    text-align: left;
}

.bhoechie-tab-menu .list-group {
    margin-bottom: 0;
    width: 100%;
    text-align: left;
}

.bhoechie-tab-menu .list-group>a {
    margin-bottom: 0;
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
}

.bhoechie-tab-menu .list-group>a:hover {
    text-decoration: none;
}

.bhoechie-tab-menu .list-group>a .glyphicon,
.bhoechie-tab-menu .list-group>a .fa {
    color: #e24720;
}

.bhoechie-tab-menu .list-group>a:first-child {
    border-top-right-radius: 0;
    -moz-border-top-right-radius: 0;
}

.bhoechie-tab-menu .list-group>a:last-child {
    border-bottom-right-radius: 0;
    -moz-border-bottom-right-radius: 0;
}

.bhoechie-tab-menu .list-group>a.active,
.bhoechie-tab-menu .list-group>a.active .glyphicon,
.bhoechie-tab-menu .list-group>a.active .fa {
    background-color: #e24720;
    background-image: #e24720;
    color: #ffffff;
}

.bhoechie-tab-content {
    background-color: #ffffff;
    padding-left: 20px;
}

.bhoechie-tab .bhoechie-tab-content:not(.active) {
    display: none;
}

.committee .table td,
.table th {
    padding: .25rem;
    font-size: 14px;
}

.normal-inv .table th {
    padding: .75rem;
}

.pdficon-single img {
    max-width: 40px;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

#loader {
    bottom: 0;
    height: 72px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 250px;
}

#loader .dot {
    bottom: 0;
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 87.5px;
}

#loader .dot::before {
    border-radius: 100%;
    content: "";
    height: 87.5px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    width: 87.5px;
}

#loader .dot:nth-child(7n+1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#loader .dot:nth-child(7n+1)::before {
    -webkit-animation: 0.8s linear 0.1s normal none infinite running load;
    animation: 0.8s linear 0.1s normal none infinite running load;
    background: #00ff80 none repeat scroll 0 0;
}

#loader .dot:nth-child(7n+2) {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

#loader .dot:nth-child(7n+2)::before {
    -webkit-animation: 0.8s linear 0.2s normal none infinite running load;
    animation: 0.8s linear 0.2s normal none infinite running load;
    background: #00ffea none repeat scroll 0 0;
}

#loader .dot:nth-child(7n+3) {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

#loader .dot:nth-child(7n+3)::before {
    -webkit-animation: 0.8s linear 0.3s normal none infinite running load;
    animation: 0.8s linear 0.3s normal none infinite running load;
    background: #00aaff none repeat scroll 0 0;
}

#loader .dot:nth-child(7n+4) {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

#loader .dot:nth-child(7n+4)::before {
    -webkit-animation: 0.8s linear 0.4s normal none infinite running load;
    animation: 0.8s linear 0.4s normal none infinite running load;
    background: #0040ff none repeat scroll 0 0;
}

#loader .dot:nth-child(7n+5) {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}

#loader .dot:nth-child(7n+5)::before {
    -webkit-animation: 0.8s linear 0.5s normal none infinite running load;
    animation: 0.8s linear 0.5s normal none infinite running load;
    background: #2a00ff none repeat scroll 0 0;
}

#loader .dot:nth-child(7n+6) {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

#loader .dot:nth-child(7n+6)::before {
    -webkit-animation: 0.8s linear 0.6s normal none infinite running load;
    animation: 0.8s linear 0.6s normal none infinite running load;
    background: #9500ff none repeat scroll 0 0;
}

#loader .dot:nth-child(7n+7) {
    -webkit-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
}

#loader .dot:nth-child(7n+7)::before {
    -webkit-animation: 0.8s linear 0.7s normal none infinite running load;
    animation: 0.8s linear 0.7s normal none infinite running load;
    background: magenta none repeat scroll 0 0;
}

#loader .dot:nth-child(7n+8) {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

#loader .dot:nth-child(7n+8)::before {
    -webkit-animation: 0.8s linear 0.8s normal none infinite running load;
    animation: 0.8s linear 0.8s normal none infinite running load;
    background: #ff0095 none repeat scroll 0 0;
}

@-webkit-keyframes load {
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes load {
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes load {
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.footer {
    background: #111 url(../images/footer-shapes.png) no-repeat center center;
    padding: 50px 0;
}

.footer .flist h6 {
    color: #fff;
    font-size: 20px;
    margin: 15px;
}

.footer .flist ul {
    list-style: none;
    margin: 0px;
    padding: 0px 0 0 12px;
}

.footer .flist ul li {
    color: #eee;
    font-size: 13px;
    margin-bottom: 6px;
}

.footer .flist ul li a {
    color: #eee;
}

.footer-bottom {
    background: #000;
    padding: 15px 0 0;
}

.footer-bottom p {
    color: #ccc;
    font-size: 13px;
}

.footer-bottom ul {
    list-style: none;
    margin: 0px;
    padding: 0px 0 0 12px;
}

.footer-bottom ul li {
    float: left;
    font-size: 13px;
}

.footer-bottom ul li a {
    color: #ccc;
}

.footer-bottom .social a {
    margin: 0 7px;
}

.footer-bottom .social .fa {
    color: #ccc;
    font-size: 24px;
}

.footer-bottom .social .fa:hover {
    color: #0056b3;
}

.location {
    padding: 50px 0;
    border-top:#eee solid 1px;
}

.location .locat img {
    margin-bottom: 12px;
}

.location .locat a {
    color: #333;
}

.location .locat p {
    font-size: 20px;
    color: #333;
    margin-bottom: 0;
}

.contact-info {
    padding-left: 50px;
}

.contact-info .contantadd {
    background: #f6f6f6;
    border-bottom: #ccc solid 1px;
    padding: 20px 20px 5px;
    display: block;
}

.contact-info .contantadd img {
    margin-bottom: 12px;
}

.contact-info .contantadd p {
    font-size: 17px;
}

.contact-info .contantadd:last-child {
    border-bottom: #ccc solid 0px;
}

.fontsmall {
    font-size: 11px !important;
}

.service-in ul {
    list-style: none;
    padding: 0 0 0 0px;
}

.service-in ul li {
    margin-bottom: 9px;
    font-size: 14px;
}

.service-in ul li img {
    margin-right: 4px;
}

.service-in ul li a:hover {
    color: #09a223;
    text-decoration: none;
}

.box-business{
    background: #fff;
    border: #f1f1f1 solid 1px;
    padding: 15px;
}
.box-business:hover{
    background: #fff;
    border: #eee solid 1px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(204,204,204,1);
    -moz-box-shadow: 0px 0px 8px 0px rgba(204,204,204,1);
    box-shadow: 0px 0px 8px 0px rgba(204,204,204,1);
}
.business-title h5{
    font-size: 17px;
    font-weight: 700;
    color: #000;
}
.business-title p{
    font-size: 14px;
    font-weight: 700;
    color: #000;
}
.contact-form label{
    font-weight:700;
    font-size: 14px;
    color: #999;
}
.contact-form .form-group .col-sm-12{
    padding: 0px;
}
.para-business{
    border-left: #eee solid 1px;
    padding-left: 40px;
}
.para-business p{
    font-size: 14px;
    color: #666;
}
.form-row{
    padding-right: 20px;
}
.extra{
    font-size: 13px;
    color: #777;
}

.file-upload {
    position: relative;
    display: table;
    margin: 0 auto;
  }

  .file-upload__label {
    display: block;
    width: 100%;
    padding: 10px 6px;
    font-size: 13px !important;
    color: #000;
    background: #eee;
    border:#ccc solid 1px;
    border-radius: .1em;
    transition: background .3s;
  }
  .file-upload__label:hover {
    cursor: pointer;
    background: #ccc;
  }

  .file-upload__input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 1;
    width: 0;
    height: 100%;
    opacity: 0;
  }

  .form-row .form-control{
      font-size: 13px;
  }

  .form-row label{
      font-size: 14px;
      line-height: 26px;
  }
  .bdr-bot{
      background:#eee;
      width:100%;
      height:1px !important;
  }

  #rightbar.sticky {
    position: fixed;
    top: 65px;
  }

  #rightbar.unsticky {
    position: absolute;
    bottom: 0;
  }

.navbar .dropdown-menu {
   border:none;
   background-color:#fff !important;
 }
.dropdown-menu h5 a{
    color: #000;
  }
.dropdown-menu h5 a:hover{
color: #ef4e25;
text-decoration: none;
}
@media screen and (min-width: 992px) {
.navbar {
   padding-top:0px;
   padding-bottom:0px;
 }

.navbar .nav-item {
   margin: 0px 0rem 10px;
   padding: 0 5px;
 }
.navbar-expand-lg{
    float: right;
}
.navbar .dropdown {position:static;}

.navbar .dropdown-menu {
   width:100%;
   left:0;
   right:0;
   top:58px;
   border-radius: 0px;
 }
.navbar .dropdown:hover .dropdown-menu, .navbar .dropdown .dropdown-menu:hover {
   display:block!important;
 }
   .navbar .dropdown-menu {
     background-color: #fff;
     padding-top: 25px;
   }

 }
/* .navbar-dark .navbar-nav .nav-link {
    color: #333;
} */

.navbar-dark .navbar-nav .nav-link{
    color: #333 !important;
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:active  {
    color: #ef4e25 !important;
}


.navbar-dark .navbar-nav .nav-link:hover {
    color: #ef4e25;
}
.flex-column .nav-item .nav-link{
    color: #333;
}
.flex-column .nav-item .nav-link:hover{
    color: #09a223;
}
.navbar-dark .navbar-nav .register {
    background: #eb4729;
    color: #fff !important;
    padding: 5px 15px;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.navbar-dark .navbar-nav .register:hover {
    background: #28a745;
    padding: 5px 15px;
    color: #fff !important;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}
.navbar-toggler{
    text-align: right;
    margin-left: auto;
}
.togglemenu{
    max-width: 20px;
    margin-top: 20px;
}
.navbar-collapse .navbar-nav{
    padding-top: 20px;
    text-align: right !important;
}
.fullmenu{
    padding: 15px 0;
}
.fullmenu h5{
    font-size: 16px;
    text-transform: capitalize !important;
    font-weight: 600;
    margin: 0px 0 5px;
    color: #ef4e25;
}
.fullmenu .flex-column{
    margin-bottom: 18px;
}
.fullmenu .flex-column li{
    margin: 0px;
    padding: 0px;
}
.fullmenu .flex-column li a{
    margin: 0px;
    padding: 5px 0;
    font-size: 14px;
    line-height: 18px;
    color: #333;
}
.fullmenu .flex-column li a:hover{
    color: #28a745;
}
.fullmenu .flex-column .nav-link{
    padding-left: 0rem;
}
.fullmenu .flex-column .nav-link:focus{
    color: #ef4e25;
}

@media screen and (max-width: 991px) and (min-width: 320px) {
    .navbar{
        position: absolute;
        width: 100%;
        background: #fff;
    }
    .navbar-collapse{
        padding-right: 15px;
        overflow-y: scroll;
        height: 300px;
        text-align: right !important;
    }
    .homeslider .desktopview {
        display: none;
    }
    .carousel-inner .mob-screen{
        min-height: 110vh;
    }
    .homeslider .carousel-caption{
        top: 70px !important;
    }
    .bannerbox{
        overflow-x: scroll;
    }
    .carousel-inner img {
        width: 140%;
    }
    .carousel-inner .carousel-item .mob-screen2{
        min-height: 70vh;
    }
    .first-toppd {
        padding-top: 10% !important;
    }
}

.homeslider .carousel-caption {
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 0px;
    bottom: 0px;
}
.first-toppd{
    padding-top: 20%;
}



/*rahul css*/

.plan-item {
    border-radius: .5rem;
    color: #1b1f3b;
    background-color: #fff;
    box-shadow: 0px 28px 50px 0px rgba(130, 136, 147, 0.15);
    position: relative;
    margin-bottom: 2rem;
}

.plan-item .plan-head {
    padding: 2rem;
}

.plan-item .plan-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 1rem;
    color: #1b1f3b;
    font-weight: 700;
}

.plan-item .plan-price {
    font-size: 3rem;
    font-weight: 600;
}

.plan-item .price-var {
    color: #81838a;
    margin-right: .5rem;
}

.plan-item .plan-body {
    padding: 2rem;
}

.plan-item .list-items {
    margin-bottom: 1rem;
    padding: 0;
    margin-left: 0;
}

.plan-item .list-items .item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: #828893;
    text-transform: capitalize;
}

.plan-item .list-items .item i {
    color:  #28a745;
    border-radius: 50%;
    padding: 2px;
    margin-right: 10px;
}
.flex.center {
    justify-content: center;
    align-items: baseline;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}

.btn-block{
    text-align: center;
    padding: .4rem 2rem;
    line-height: 1.5;
    transition: 0.25s cubic-bezier(0, 0, 0.41, 1);
    position: relative;
    font-size: 1.1rem;
    font-weight: normal;
    border-radius: 30px;
    background: #f1641f;
    color: #fff;
    width: 200px;
}

.btn-block:hover{
    color: #fff;
    transform: scale(1.02);
}

.signin-card{
    border-radius: .5rem;
    color: #1b1f3b;
    background-color: #fff;
    box-shadow: 0px 28px 50px 0px rgba(130, 136, 147, 0.3);
    border: 0;
}

.signin-card .section-sub-heading{
    font-weight: 600;
}

.taxco-input{
    font-size: 14px;
    padding: 10px 15px;
    border: 1px solid #ddd;
}

.otp-inprow input, .otp-inprow input:focus {
    border: 0;
    border-bottom: 3px solid #ddd;
    font-size: 35px;
    text-align: center;
    font-weight: 700;
    border-radius: 0;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    padding: 0;
    float: left;
    box-shadow: none;
}

.resend-txt{
  font-size: 14px;
  text-align: center;
  margin: 2rem auto;
}

.otp-mid{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.cart-maincont {
    margin-top: 150px;
    margin-bottom: 70px;
}

.cart-maincont h2{margin-bottom: 2rem; font-weight: 600;}

.cart-prodpic img{border-radius: 5px;}

.cart-prod-des{font-size: 14px;}

.cart-reprow{color: #000;}

.cart-reprow p{margin-bottom: 0;}

.cart-leftcol9{
  background: #fff;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .1);
  padding: 0;
  border-radius: 4px;
}

.cart-leftcol9 > .row{
  margin: 0;
}

.cart-leftcol9 > .row:not(:last-child){border-bottom: 1px solid #ddd;}

.cart-lc9-row1{
  padding: 10px 2rem;
  border-bottom: 0;
}

.cart-lc9-row2{
  padding: 20px 1rem;
}

.mycart-txt {
    font-size: 20px;
    font-weight: 700;
    padding: 10px 0;
}

.add-items{
  display: inline-flex;
  border: 1px solid #ddd;
}

.btn-minus {
    height: 35px;
    background: transparent;
    color: #000;
    cursor: pointer;
    border: 0;
    padding: 0 10px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.btn-plus {
    height: 35px;
    background: transparent;
    color: #000;
    cursor: pointer;
    border: 0;
    padding: 0 10px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.add-value {
    height: 35px;
    background: transparent;
    color: #000;
    cursor: pointer;
    border: 0;
    padding: 0 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 35px;
    margin-left: -1px;
    margin-right: -1px;
}

.cart-header{
  text-transform: uppercase;
  color: #999;
    font-weight: 600;
    font-size: 13px;
}

.cart-leftsec > .row{border-bottom: 1px solid #ddd;}

.cart-title-prod {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 600;
}

.item-delete a{
  text-decoration: none;
  font-weight: bolder;
  color: #000;
}

.cart-leftcol3{
  border-radius: .5rem;
    color: #1b1f3b;
    background-color: #fff;
    box-shadow: 0px 28px 50px 0px rgba(130, 136, 147, 0.15);
    padding: 2rem;
    max-width: 80%;
    margin-left: auto;
}

.cart-raterow{
  padding: 8px 0;
  border-bottom: 0 !important;
  font-weight: 600;
}

.cart-raterow p{margin-bottom: 0;}

.cart-lhed {
    color: #777;
    font-size: 14px;
}

.cart-totxt{
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.prictxt {
    opacity: 0.8;
    font-size: 15px;
}

.cart-torpric{font-size: 18px}

.btn-item-cart{
  background: #ef4c73;
    border: 0;
    color: #fff;
    height: 50px;
    line-height: 50px;
    width: 100%;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
}

.btn-item-buynow{
  background: #f7702e;
    border: 0;
    color: #fff;
    height: 50px;
    line-height: 50px;
    width: 100%;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 15px;
}

.btn-item-cart img, .btn-item-buynow img{
  height: 25px;
  width: 25px;
  margin-right: 3px;
}


.item-price-strike {
    opacity: 0.8;
    text-decoration: line-through;
    margin-left: 10px;
    margin-right: 10px;
}
.ordprice span{
    font-size: 25px;
}

.paytm-radio .custom-control-label::before{top: 10px;}

.profile-cont{
    margin-top: 150px;
    margin-bottom: 70px;
}


#Greetings {
    font-size: 17px;
    font-weight: 300;
    text-transform: capitalize;
    color: #666;
    display: block;
    margin-bottom: -10px;
}

.username {
    font-size: 24px;
    color: #222;
    font-weight: 600;
}

.course-repsec {
    background: #fff;
    border-radius: 6px;
    padding: 20px 10px;
    box-shadow: 0px 16px 32px rgb(224, 224, 224);
    font-size: 14px;
    margin-bottom: 2rem;
}

.course-repsec .mcourse-title {
    margin-bottom: 0;
    font-weight: 600;
}

.course-repsec .mcourse-date {
    font-size: 12px;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.mcourse-date span{font-size: 20px; margin-left: 10px;}

.course-repsec p {
    margin-bottom: 0;
}

.mcourse-rate{font-size: 13px;}

.mcourse-rate i{font-size: 90%; margin-right: 5px;}

.course-repsec button, .course-repsec button:hover {
    background: #f1641f;
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 12px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.5px;
    margin: auto;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.course-repsec ul{
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0;
}

.course-repsec ul li{
    padding: 0 10px;
}

.profile-transaction{max-width: 90%;}

.similar-box {
    background: #fff;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0px 16px 32px rgb(224, 224, 224);
    font-family: 'Quicksand', sans-serif;
}
.user-profx .userimcon {
    margin-bottom: 2rem;
}

.user-profx .user-img {
    max-width: 50%;
    margin-bottom: 10px;
    text-align: center;
}

.editbox a{
    background: transparent;
    color: #f1641f;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 12px;
    display: inline-block;
    border: 1px solid;
    text-decoration: none;
    margin-top: 10px;
}

.editbox a:hover{
    background: #28a745;
    color: #fff;
    border: 1px solid;
}

.user-profx h4.username {
    width: 100%;
    text-align: center;
}

.user-profx .standard {
    background: rgba(40, 167, 69, .1);
    color: #28a745;
    text-align: center;
    padding: 5px 15px;
    border-radius: 6px;
    width: auto;
}

.editprofile {
    padding: 50px 0 30px;
}

.editprofile input, .editprofile label {
    font-size: 14px;
    border: 1px solid rgba(0,0,0,0.1);
    color: #343a40;
    text-align: left;
}

.editprofile button, .editprofile button:hover {
    background: #f1641f;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 8px 22px 0 rgba(255,103,56,0.3);
}

.blog-sidebar-icorow{
    margin-bottom: 1rem;
}

.blog-sidebar-icox {
    background: rgba(40, 167, 69, .1);
    color: #28a745;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    margin-right: 20px;
}

.blog-sidebar-icorow a {
    color: #121213;
    font-size: 14px;
    text-decoration: none;
}

.blog-sidebar-icorow a:hover{color: #28a745;}

.switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 27px;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }

  input:checked + .slider {
    background-color: #2196F3;
  }

  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }

  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }

  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }

  .slider.round:before {
    border-radius: 50%;
  }

  .hideme{display: none;}

@media screen and (max-width: 1028px) and (min-width: 700px){
.profile-transaction {max-width: 100%;}
}

@media screen and (max-width: 500px) and (min-width: 320px){
.course-repsec ul{display: block;
}

.cart-leftcol3{max-width: 100%;}

.course-repsec ul li {
    width: 46%;
    padding: 10px 0px;
}

.course-repsec ul li:first-child{width: 100%}

.profile-transaction {
    max-width: 100%;
}

.course-repsec button, .course-repsec button:hover{padding: 12px;}

}
