@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Libre+Baskerville:wght@700&display=swap");
@import url("../css/font-awesome.min.css");

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #000;
}

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0px 0;
    background: #fff;
    -webkit-transition: background 300ms ease-in-out;
    -o-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
}

.header.is-fixed {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: #ccc solid 1px;
    position: fixed;
}

.header.is-fixed .header__logo {
    max-width: 150px;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .header.is-fixed {
        height: 49px;
    }
}

.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: 175px;
    padding-top: 6px;
    padding-bottom: 6px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-transform: translateZ(0);
}

@media (max-width: 767px) {
    .header__logo {
        max-width: 100px;
        position: absolute;
        z-index: 9999;
    }
}

@media (min-width: 1440px) {
    .header__logo {
        max-width: 180px;
    }
}

.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%);
    padding: 7px 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: 440px;
}

@media (min-width: 768px) {
    .masthead {
        height: 550px;
    }
}

@media (min-width: 992px) {
    .masthead {
        height: 100vh;
    }
}

@media (max-width: 768px) {
    .masthead {
        height: 350px;
    }
}

.masthead__home {
    height: 100vh !important;
}

@media screen and (max-width: 600px) and (min-width: 320px) {
    .masthead__home {
        height: 350px !important;
    }
}

@media screen and (max-width: 850px) and (min-width: 601px) {
    .masthead__home {
        height: 450px !important;
    }
}

.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-poster.jpg) no-repeat center;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 768px) {
    .masthead__video {
        height: 70%;
        width: 70%;
    }
}

.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: rgba(235, 127, 36, 0.9);
}

.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;
}

.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;
}

.grid a{
    display: inline-block;
    width: 25%;
    background-color: #ccc;
}
.grid a img{
    max-width: 80px;
}

/* Common style */

.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    width: 25%;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
    margin: 0px;
}

.grid .figheight {
    height: 130px;
}

.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: 300;
    font-size: 28px;
}

.grid figure h2 span {
    font-weight: 300;
}

.grid figure h2,
.grid figure p {
    margin: 0;
}

figure.effect-marley figcaption {
    text-align: right;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    figure.effect-marley figcaption {
        text-align: center;
        padding-top: 35%;
    }
}

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%;
}

.homebanner {
    /* /////////// IMAGE ZOOM /////////// */
}

@media (min-width: 992px) {
    .homebanner .slider,
    .homebanner .slide {
        height: 70vh;
    }
}

.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: 4s;
    animation-duration: 4s;
    -webkit-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
}
.homebanner .slide .slide__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 52%;
    height: 100%;
    background: rgb(223,75,12);
    background: linear-gradient(90deg, rgba(223,75,12,1) 0%, rgba(255,166,0,1) 100%);
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
    z-index: 1;
}

.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%;
    justify-content: start;
}

.homebanner .slide .slide__content--headings {
    text-align: left;
    color: #FFF;
    max-width: 45%;
    padding: 0 3%;
}

.homebanner .slide .slide__content--headings h2 {
    margin: 15px 0;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.4em;
}

.homebanner .slide .slide__content--headings .animated {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.homebanner .slider [data-animation-in] {
    opacity: 0;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-transition: opacity 0.5s ease 0.3s;
    -o-transition: opacity 0.5s ease 0.3s;
    transition: opacity 0.5s ease 0.3s;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .homebanner .slide .slide__img img {
        max-width: 100%;
        min-height: 350px;
    }
    .homebanner .slide .slide__content--headings {
        position: absolute;
        top: 15%;
    }
    .homebanner .slide .slide__content--headings h2 {
        font-size: 1.3rem;
        margin: 5px 0;
    }
    .homebanner .slide .section-sub-heading {
        font-size: 16px;
        line-height: 22px;
        margin: 0 0 0.5em;
    }
    .homebanner .slide .slide__img::before {
        display: none;
    }
    .homebanner .slide .slide__content--headings {
        max-width: 90%;
        padding: 0 3%;
        text-align: center;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .homebanner .slide .slide__img img {
        max-width: 100%;
        min-height: 350px;
    }
    .homebanner .slide .slide__content--headings {
        position: absolute;
        top: 20%;
    }
    .homebanner .slide .slide__content--headings h2 {
        font-size: 1.3rem;
        margin: 5px 0;
    }
    .homebanner .slide .section-sub-heading {
        font-size: 16px;
        line-height: 22px;
        margin: 0 0 0.5em;
    }
    .homebanner .slide .slide__img::before {
        display: none;
    }
    .homebanner .slide .slide__content--headings {
        max-width: 70%;
        padding: 0 3% 0 3%;
        text-align: left;
    }
}

.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.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

@keyframes zoomInImage {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    to {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

.homebanner .zoomInImage {
    -webkit-animation-name: zoomInImage;
    animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
    from {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes zoomOutImage {
    from {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.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;
    }
}

* {
    outline: none;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section-control {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (min-width: 992px) {
    .section-control {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.section-digital {
    padding-top: 30px;
    padding-bottom: 53.5px;
}

@media (min-width: 992px) {
    .section-digital {
        padding-top: 60px;
        padding-bottom: 107px;
    }
}

.section-control-half {
    padding-top: 35px;
    padding-bottom: 35px;
}

@media (min-width: 992px) {
    .section-control-half {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.section-container {
    max-width: 870px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-large {
    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-size: 50px;
    line-height: 1;
    margin: 0 0 15px;
    font-weight: 600;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .section-heading-exlarge {
        font-size: 28px;
    }
}

.section-heading {
    font-size: 40px;
    line-height: 1;
    margin: 0 0 15px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .section-heading {
        font-size: 26px;
    }
}

.section-heading-middle {
    font-size: 36px;
    line-height: 1.4;
    margin: 0 0 10px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .section-heading-middle {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .section-heading-middle {
        font-size: 24px;
    }
}

.section-heading-small {
    font-size: 26px;
    line-height: 1;
    margin: 0 0 0px;
}

@media (min-width: 768px) {
    .section-heading-small {
        font-size: 26px;
    }
}

.section-sub-heading {
    font-size: 24px;
    margin: 0 0 1.7em;
    line-height: 30px;
    font-weight: 500;

}

@media (max-width: 767px) {
    .section-sub-heading {
        font-size: 17px;
    }
}

.section-sub-heading-para {
    font-size: 24px;
    margin: 0 0 1.7em;
    line-height: 26px;
}

.section-para {
    font-size: 16px;
    margin: 0 0 1em;
    line-height: 24px;
}

.section-para-mid {
    font-size: 18px;
    margin: 0 0 1.2em;
    line-height: 28px;
}

.darkblue {
    color: #062456;
}
.strong{
    font-weight: 700 !important;
}

.pinkcolor {
    color: #df430d !important;
}

.lightblue {
    color: #333;
}

.lightcolor {
    color: #fff;
}

.lightwhitegry {
    color: #eee;
}

.orange {
    color: #df430d;
}

.darkgrey {
    color: #333;
}

.font-normal {
    font-weight: 400 !important;
    font-family: 'Autor ExtLt';
}

.bold {
    font-weight: 500;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb80 {
    margin-bottom: 80px;
}

.pdl40 {
    padding-left: 40px;
}

@media screen and (max-width: 550px) and (min-width: 320px) {
    .pdl40 {
        padding-left: 15px;
    }
    .section-para-mid {
        font-size: 16px;
    }
}

.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;
        text-align: center;
    }
}

@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: #df430d;
}

.greybackground {
    background-color: #e6eaf1;
}

.pd-all10 {
    padding: 10px 3px;
}

.whitebackground {
    background-color: #fff;
}

.pdt50 {
    padding-top: 50px;
}

.pdb40 {
    padding-bottom: 40px;
}

.pdall15 {
    padding: 15px;
}

.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: 5px;
}

.magnific-img {
    display: inline-block;
    width: 30.3%;
    margin: 0 1% 10px;
}

.magnific-img a {
    color: #333;
}

.magnific-img a:hover {
    text-decoration: none;
    color: #22499f;
}

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;
    }
}

.pdall40 {
    padding: 40px;
}


.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;
}

nav {
    display: block;
}

.right {
    float: right;
    margin-left: 1em;
}


/* ----------------------------- */


/* == Menu */


/* ----------------------------- */

.nav-lock-scroll {
    overflow: hidden;
}

.nav {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    overflow-x: hidden;
    overflow-y: auto;
}

.nav ul {
    display: block;
    position: relative;
    zoom: 1;
    list-style-type: none;
    margin: 0;
    padding: 0px 0 0 0;
}

.nav a,
.nav a:active,
.nav a:hover,
.nav a:visited {
    display: block;
    position: relative;
}

@media only screen and (min-width: 991px) {
    .nav {
        display: block;
        position: relative;
        bottom: auto;
        overflow: visible;
    }
    .nav li {
        position: relative;
        white-space: nowrap;
    }
    .nav>ul>li {
        display: inline-block;
    }
    .nav ul {
        display: block;
    }
    .nav ul ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 901;
    }
    .nav ul ul ul {
        top: 5px;
        left: 95%;
        z-index: 902;
    }
    .nav ul ul ul ul {
        z-index: 903;
    }
    .nav ul ul ul ul ul {
        z-index: 904;
    }
    .nav ul ul li.nav-left>ul {
        left: auto;
        right: 95%;
    }
    .nav-no-js .nav li:hover>ul {
        display: block;
    }
}

@media only screen and (max-width: 991px) {
    .nav-no-js .nav-button:hover+.nav,
    .nav-no-js .nav-button:hover+.nav+.nav-close,
    .nav-no-js .nav:hover,
    .nav-no-js .nav:hover+.nav-close {
        display: block;
    }
}

@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: #333;
}

.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: #333;
}

.nav ul {
    border-radius: 0px;
    background: transparent;
}

@media (max-width: 991px) {
    .nav ul {
        padding-top: 60px;
        background: #103162;
    }
    .nav a, .nav a:active, .nav a:hover, .nav a:visited{
        color: #fff !important;
        padding: 14px 10px 12px !important;
    }
    .nav .nav-submenu>a:after{
        top: 11px !important;
    }
}

.nav ul ul {
    background: rgba(235, 127, 36, 0.9);
    border-radius: 0px !important;
}

@media (max-width: 991px) {
    .nav ul ul {
        padding-top: 0px;
    }
}

.nav ul ul li a {
    color: #fff !important;
    padding: 8px 10px 8px !important;
}

.nav ul ul li a:hover {
    color: #fff !important;
}

.nav ul ul ul {
    background: rgba(235, 127, 36, 0.9);
    border-radius: 0px !important;
}

.nav ul ul ul ul {
    background: rgba(235, 127, 36, 0.9);
    border-radius: 0px !important;
}

.nav ul ul ul ul ul {
    background: rgba(235, 127, 36, 0.9);
    border-radius: 0px !important;
}

.nav li {
    cursor: pointer;
}

.nav li.nav-active>a,
.nav li:hover>a {
    color: #666;
}

.nav .nav-submenu>ul {
    margin-left: 10px;
}

.nav .nav-submenu>a {
    padding-right: 30px !important;
}

.header.is-fixed .nav a,
.header.is-fixed .nav a:active,
.header.is-fixed .nav a:hover,
.header.is-fixed .nav a:visited {
    border-radius: 0px;
    padding: 25px 10px 16px;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-transform: translateZ(0);
}

.nav a,
.nav a:active,
.nav a:hover,
.nav a:visited {
    border-radius: 0px;
    padding: 28px 10px 19px;
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-transform: translateZ(0);
}

.nav a:hover {
    color: #eb7d21 !important;
}
.header.is-fixed .nav .nav-submenu>a:after {
    top: 25px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-transform: translateZ(0);
}
.nav .nav-submenu>a:after {
    position: absolute;
    display: block;
    right: 10px;
    top: 28px;
    content: "\E005";
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-transform: translateZ(0);
}

@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;
    }
}

.companyprofile {
    position: relative;
    background: url(../images/brand-shadow.png) no-repeat center center;
    background-color: #f4f6f8;
    background-size: cover;
    padding: 70px 0 70px;
}

.companyprofile-grey {
    position: relative;
    background-color: #e6eaf1;
    background-size: cover;
    padding: 50px 0 20px;
}
.company-home img{
    max-width: 250px;
}
.company-home h3{
    font-size: 40px;
    font-weight: 600;
}
.company-home h5{
    font-size: 20px;
    font-weight: 600;
}

.sectioncounter {
    position: relative;
    background: url(../images/map-shadow.png) no-repeat center center;
    background-color: #082f70;
    background-size: cover;
    padding-top: 130px;
    padding-bottom: 130px;
}

.sectioncounter .count-title {
    font-size: 100px;
    margin: 0 auto;
    padding: 0px;
    text-align: center;
    color: #7eacf9;
    font-weight: 800;
    line-height: 140px;
}

.sectioncounter .count-title2::before {
    content: "0";
    text-align: center;
    top: 10px;
}

.sectioncounter .count-title::after {
    content: "";
    background-color: #eb7d21;
    width: 140px;
    height: 3px;
    bottom: 37px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
}

.sectioncounter .count-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .sectioncounter {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .sectioncounter .count-title {
        font-size: 80px;
        line-height: 130px;
    }
    .company-home h3{
        font-size: 30px;
        font-weight: 600;
    }
    .company-home h5{
        font-size: 16px;
        font-weight: 600;
    }
    .company-home img{
        max-width: 200px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .sectioncounter {
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .sectioncounter .count-title {
        font-size: 65px;
        line-height: 130px;
    }
}

.newletterposition {
    padding: 70px 0;
    border-top: #eee solid 1px;
    background-color: #f4f6f8;
}

.newsevents {
    position: relative;
}

.card-img {
    border-radius: 0px;
}

.pd0 {
    padding: 0px;
}

.card {
    border: 0px;
}

.badge {
    font-weight: 600;
    font-size: 13px;
    color: white;
    background-color: #289dcc;
}

.mg-2,
.mg-4 {
    margin-left: -20px;
}

.card-img-overlay {
    padding: 0px;
}

.align-self-end {
    width: 100%;
    background-color: rgba(240, 79, 38, 0.8);
    padding: 15px 15px 15px 15px;
    color: #fff;
    font-family: 'Autor ExtLt';
    font-weight: 100;
    display: block;
    opacity: 1;
    -webkit-animation-name: fadeInOpacity;
    animation-name: fadeInOpacity;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
}

.align-self-end .card-title {
    font-size: 28px;
    margin: 0px;
    font-weight: 600;
}

.align-self-end .card-title-small {
    font-size: 20px;
    margin: 0px;
}

.align-self-end .newsdisplay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-self-end .newsdisplay p {
    margin-bottom: 0px;
}

.align-self-end:hover {
    text-decoration: none;
    color: #fff;
}

.align-self-end .newsbtn {
    background: transparent;
    border: 0px;
    cursor: pointer;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1;
    flex: 0 0 1;
}

.align-self-end .newsbtn img {
    max-width: 26px;
    margin-left: 15px;
}

.align-self-end .dissmall {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-self-end .dissmall h6 {
    margin-bottom: 0px;
}

@media (max-width: 767px) {
    .align-self-end {
        padding: 7px 10px 7px 10px;
    }
    .align-self-end .card-title {
        font-size: 20px;
        margin: 0px;
        font-weight: 600;
    }
    .align-self-end .card-title-small {
        font-size: 17px;
        margin: 0px;
    }
}

@-webkit-keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.whatnew {
    position: relative;
    padding-bottom: 80px;
}

.whatnew::before {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #0b3d92), color-stop(50%, #062456));
    background: -webkit-linear-gradient(left, #0b3d92 50%, #062456 50%);
    background: -o-linear-gradient(left, #0b3d92 50%, #062456 50%);
    background: linear-gradient(90deg, #0b3d92 50%, #062456 50%);
    position: absolute;
    content: "";
    left: 0;
    height: 400px;
    width: 100%;
    top: 0;
}

.whatnew .whatnewssection {
    padding-top: 80px;
    padding-right: 40px;
}

@media screen and (max-width: 550px) and (min-width: 320px) {
    .whatnew {
        padding-top: 20px;
    }
    .whatnew .lightcolor {
        color: #062456;
    }
    .whatnew .mb30 {
        margin-bottom: 20px;
    }
    .whatnew .carousel-inner {
        padding-left: 0px;
    }
    .whatnew .whatnewssection {
        padding-top: 0px;
        padding-right: 15px;
        padding-left: 15px;
        margin-bottom: 40px;
        text-align: center;
    }
    .whatnew .whatnewssection .carousel-item img {
        max-width: 180px;
        height: 100%;
        margin: 0 auto;
        display: table;
    }
    .whatnew .carousel-inner img {
        max-width: 180px;
        height: 100%;
        margin: 0 auto;
        display: table;
    }
    .whatnew .whatnewcontent {
        padding-top: 40px;
        border-bottom: #ccc dotted 1px;
        padding-bottom: 40px;
        text-align: center;
    }
    .whatnew .viewmore-w {
        display: table;
        margin: 0 auto;
    }
    .whatnew .viewmore-w span:after {
        color: #e24720;
    }
    .whatnew::before {
        background: transparent;
        position: absolute;
        content: "";
        left: 0;
        height: 520px;
        width: 100%;
        top: 0;
    }
}

@media screen and (max-width: 767px) and (min-width: 551px) {
    .whatnew {
        padding-top: 20px;
    }
    .whatnew .lightcolor {
        color: #062456;
    }
    .whatnew .section-heading-middle {
        text-align: center;
    }
    .whatnew .mb30 {
        margin-bottom: 20px;
    }
    .whatnew .carousel-inner {
        padding-left: 0px;
    }
    .whatnew .whatnewssection {
        padding-top: 0px;
        padding-right: 15px;
        padding-left: 15px;
        margin-bottom: 40px;
    }
    .whatnew .whatnewssection .carousel-item img {
        max-width: 230px;
        height: 100%;
        margin: 0 auto;
        display: table;
    }
    .whatnew .carousel-inner img {
        max-width: 230px;
        height: 100%;
        margin: 0 auto;
        display: table;
    }
    .whatnew .whatnewcontent {
        padding-top: 40px;
        border-bottom: #ccc dotted 1px;
        padding-bottom: 40px;
        text-align: center;
    }
    .whatnew .viewmore-w {
        margin: 0 auto;
        display: table;
    }
    .whatnew .viewmore-w span:after {
        color: #e24720;
    }
    .whatnew::before {
        background: transparent;
        position: absolute;
        content: "";
        left: 0;
        height: 520px;
        width: 100%;
        top: 0;
    }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
    .whatnew .viewmore-w span:after {
        color: #e24720;
    }
}

.about-newproduct {
    position: relative;
    padding-bottom: 120px;
    background-color: #e6eaf1;
}

.about-newproduct::before {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #cdd3de), color-stop(50%, #d9dfeb));
    background: -webkit-linear-gradient(left, #cdd3de 50%, #d9dfeb 50%);
    background: -o-linear-gradient(left, #cdd3de 50%, #d9dfeb 50%);
    background: linear-gradient(90deg, #cdd3de 50%, #d9dfeb 50%);
    position: absolute;
    content: "";
    left: 0;
    height: 380px;
    width: 100%;
    top: 0;
}

.about-newproduct .whatnewssection {
    padding-top: 80px;
    padding-right: 40px;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .about-newproduct {
        text-align: center;
        padding-top: 60px;
    }
    .about-newproduct .carousel-item {
        max-width: 180px;
        margin: 0 auto;
    }
    .about-newproduct .carousel-inner {
        padding-left: 0px;
    }
    .about-newproduct .whatnewssection {
        padding-top: 20px;
        padding-right: 15px;
        padding-left: 15px;
        margin-bottom: 40px;
    }
    .about-newproduct .whatnewcontent {
        padding-top: 100px;
        border-bottom: #999 dotted 1px;
        padding-bottom: 40px;
    }
    .about-newproduct .button-lg {
        margin: 0 auto;
        display: table;
    }
    .about-newproduct::before {
        background: transparent;
        position: absolute;
        content: "";
        left: 0;
        height: 520px;
        width: 100%;
        top: 0;
    }
}

.title h2 {
    margin-bottom: 0px;
}

.carousel-indicators {
    bottom: -65px;
}

.carousel-indicators li {
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-bottom-color: #d5dae3;
    position: relative;
    top: -8px;
    background: transparent;
    cursor: pointer;
}

.carousel-indicators li::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 8px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: #d5dae3;
}

.carousel-indicators .active {
    border-bottom-color: #eb7d21;
    background: transparent;
}

.carousel-indicators .active::after {
    border-top-color: #eb7d21;
}

@media screen and (max-width: 550px) and (min-width: 320px) {
    .sectioncounter .col-md-4 {
        margin-bottom: 40px;
    }
    .sectioncounter .col-md-4:last-child {
        margin-bottom: 0px;
    }
    .pd0 {
        padding: 0px 15px;
    }
}

.productslider .slide img {
    padding: 0 20px;
}

.productslider .button {
    display: none;
}

.digitalbox {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
}

.digitalbox .item {
    width: 48%;
    background-color: #f7f7f7;
    margin-bottom: 25px;
    margin-left: 1%;
    margin-right: 1%;
    padding: 0px;
    border: #f7f7f7 solid 1px;
}

.digitalbox .item .digital_photo {
    display: table;
    margin: 0 auto;
    min-width: 220px;
}

.digitalbox .item .digital_content {
    margin: 20px 0;
    padding: 0 15px;
}

.digitalbox .item .digital_content .date {
    font-size: 12px;
    color: #000;
    margin: 0px;
    text-transform: uppercase;
}

.digitalbox .item .digital_content .subtitle {
    color: #f05025;
    margin: 0px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.digitalbox .item .digital_content .heading {
    color: #2c333b;
    font-size: 18px;
    font-weight: 600;
}

.digitalbox .item .digital_content .newspara {
    color: #a3a3a3;
    font-size: 15px;
}

.digitalbox .item .digital_content .newspara span {
    color: #f05025;
    display: block;
    margin-top: 6px;
    cursor: pointer;
}

.digitalbox .item .digital_content .newspara span:hover {
    text-decoration: underline;
}

.digitalbox .item .leadership_photo {
    min-width: 400px;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .digitalbox .item .leadership_photo {
        min-width: 100%;
        width: 100%;
    }
}

.digitalbox .item .leadership {
    margin: 20px 0;
    padding: 0 15px;
}

.digitalbox .item .leadership .desg {
    font-size: 14px;
    color: #555;
    margin: 0px 0 10px;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
}

.digitalbox .item .leadership .heading {
    color: #222;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 3px;
}

.digitalbox .item .leadership .newspara {
    color: #555;
    font-size: 15px;
}

.digitalbox .item .leadership .newspara span {
    color: #f05025;
    display: block;
    margin-top: 6px;
    cursor: pointer;
}

.digitalbox .item .leadership .newspara span:hover {
    text-decoration: underline;
}

.digitalbox .item:hover {
    background-color: #fff;
    border: #f7f7f7 solid 1px;
    text-decoration: none;
}

@media screen and (max-width: 550px) and (min-width: 320px) {
    .digitalbox .item {
        width: 98%;
        margin: 0 1% 20px 1%;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .digitalbox .item .digital_photo {
        min-width: 100px;
        padding-top: 26px;
    }
}

@media screen and (max-width: 767px) and (min-width: 551px) {
    .digitalbox .item {
        width: 98%;
        margin: 0 1% 20px 1%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media screen and (max-width: 992px) and (min-width: 768px) {
    .digitalbox .item {
        margin: 0 1% 20px 1%;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .digitalbox .item .digital_photo {
        min-width: 140px;
        padding-top: 26px;
    }
}

.latestannoumance {
    position: relative;
}

.latestannoumance .arrowlist {
    vertical-align: top;
    margin-right: 10px;
}

.latestannoumance .arrowlist img {
    max-height: 12px;
    margin-top: -4px;
}

.latestannoumance .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: #ccc dotted 1px;
    margin-bottom: 15px;
    -webkit-box-shadow: 0 4px 3px -3px #ccc;
    -moz-box-shadow: 0 4px 3px -3px #ccc;
    box-shadow: 0 4px 3px -3px #ccc;
    width: 100%;
}

.latestannoumance .item-bdr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    border: none;
    width: 100%;
}

.latestannoumance .shadownone {
    border-bottom: transparent dotted 0px !important;
    margin-bottom: 0px !important;
    -webkit-box-shadow: 0 4px 3px -3px transparent !important;
    -moz-box-shadow: 0 4px 3px -3px transparent !important;
    box-shadow: 0 4px 3px -3px transparent !important;
}

.latestannoumance h5 {
    padding: 0px 0px 0;
}

.latestannoumance .item2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: #ccc dotted 1px;
    margin-bottom: 15px;
    -webkit-box-shadow: 0 4px 3px -3px #ccc;
    -moz-box-shadow: 0 4px 3px -3px #ccc;
    box-shadow: 0 4px 3px -3px #ccc;
}

.pagination {
    margin-right: 8px;
    padding: 15px 0;
}

.pagination .page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #eb7d21;
    border-color: #eb7d21;
}

.pagination .page-item:last-child .page-link {
    border-top-right-radius: 0rem;
    border-bottom-right-radius: 0rem;
}

.pagination .page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0rem;
    border-bottom-left-radius: 0rem;
}

.pagination .page-link {
    color: #fff;
    border: 1px solid transparent;
    background-color: #111;
    margin-left: 5px;
}


/*-----------------  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: #eb7d21;
    -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: #eb7d21;
}

.content strong {
    font-weight: bold;
}

.content p strong {
    color: #eb7d21;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    color: #222222;
    margin: 0 0 15px 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.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: 1em;
    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: 1em;
    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;
}

.achievement {
    position: relative;
}

.achievement .img100 {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    max-height: 375px;
    position: relative;
}

.achievement .grey1 {
    background: rgba(204, 204, 204, 0.7);
}

.achievement .grey2 {
    background: rgba(166, 166, 166, 0.7);
}

.achievement .grey5 {
    background: rgba(185, 185, 185, 0.7);
}

.achievement .grey3 {
    background: #cccccc;
}

.achievement .grey4 {
    background: #a6a6a6;
}

.achievement .overlay-awards {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
    top: 0;
    bottom: 0px;
    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;
    padding: 0 70px;
    margin: 0 auto;
}

.achievement .hoveron {
    opacity: 0;
}

.achievement .hoveron:hover {
    opacity: 1;
}

.achievement .overlay-brands {
    position: absolute;
    left: 0;
    z-index: 99;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 4%;
}

.achievement .overlay-brands img {
    margin-bottom: 10px;
    max-width: 240px;
}

.achievement .overlay-brands2 {
    position: absolute;
    left: 0;
    z-index: 99;
    top: 0;
    background-color: rgba(12, 64, 151, 0.7);
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 4%;
    padding-right: 4%;
}

.achievement .overlay-brands2 img {
    margin-bottom: 10px;
    max-width: 240px;
}

.achievement .overlay-brands3 {
    position: absolute;
    left: 0;
    z-index: 99;
    top: 0;
    background-color: rgba(34, 36, 112, 0.4);
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 4%;
    padding-right: 4%;
}

.achievement .overlay-brands3 img {
    margin-bottom: 10px;
    max-width: 240px;
}

.digitaltab {
    width: 100%;
    padding-bottom: 50px;
    /* Style the tab content */
}

.digitaltab .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 35px;
}

.digitaltab .social img {
    max-width: 90%;
}

.digitaltab .tab {
    float: left;
    background-color: #f6f6f6;
    width: 100%;
}

.digitaltab .tabcontent {
    float: left;
    padding: 0px 12px;
    border-left: none;
    width: 100%;
}

.timelineBx {
    padding: 100px 0;
    background: #e3e3e3 url(../images/milestone-banner.jpg) no-repeat center center;
    background-size: cover;
}

#autoplay .timeline {
    background: url(../images/about-history-scale.png) no-repeat;
    padding-top: 100px;
    padding-left: 80px;
}

.scale>h5 span {
    margin: 0 30px;
}

.timeline h5 {
    font-size: 60px;
    font-weight: bold;
    color: #fff;
}

.timeline p {
    color: #fff;
}

.scale>h5 {
    display: block;
    position: absolute;
    top: 47px;
    right: -150px;
    z-index: 10;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    font-size: 50px;
    color: #fff;
    font-weight: 700;
}

.investor-details-box {
    background: #c9ccd4;
    padding: 15px;
    margin-bottom: 15px;
}

.investor-details-box .itempdf {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.investor-details-box .itempdf a {
    color: #5f6064;
    padding: 20px 0;
}

.investor-details-box .itempdf a:hover {
    text-decoration: none;
    color: #000;
}

.investor-details-box .itempdf a .pdficon {
    margin-right: 10px;
    float: left;
}

.investor-details-box .itempdf a .pdficon img {
    max-width: 150px;
    width: 100%;
}

.investor-details-box .itempdf a .pdfdetails {
    padding-top: 10px;
}

.investor-details-box .itempdf a .pdfdetails h4 {
    font-size: 36px;
    margin: 0px;
}

.investor-details-box .itempdf a .pdfdetails p {
    margin: 0px;
}

.investor-details-box2 {
    background: #c9ccd4;
    padding: 15px;
    width: 100%;
    margin-bottom: 15px;
}

.investor-details-box2 .itempdf {
    text-align: left;
    width: 25%;
    float: left;
}

.investor-details-box2 .itempdf a {
    color: #5f6064;
    display: inline-block;
    padding: 10px;
    margin-bottom: 10px;
}

.investor-details-box2 .itempdf a:hover {
    color: #000;
    text-decoration: none;
}

@media screen and (max-width: 550px) and (min-width: 320px) {
    .investor-details-box2 .itempdf {
        width: 50%;
    }
}

@media screen and (max-width: 767px) and (min-width: 551px) {
    .investor-details-box2 .itempdf {
        width: 33.33%;
    }
}

.investor-details-box2 .pdficon {
    margin-right: 10px;
    text-align: center;
}

.investor-details-box2 .pdficon img {
    max-width: 80px;
    width: 100%;
    margin-bottom: 8px;
}

.investor-details-box2 .pdficon p {
    margin: 0px;
    font-size: 18px;
    font-weight: 600;
}

.dist-img-logo {
    margin: 0 auto;
    text-align: center;
}

.dist-img-logo img {
    max-width: 300px;
    margin-bottom: 20px;
}

@media (max-width: 550px) {
    .dist-img-logo img {
        max-width: 150px;
        width: 100%;
    }
}

.dist-content {
    padding: 6em 2em;
    color: #fff;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .dist-content {
        padding: 1em 0em;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .dist-content {
        padding: 1em 1em;
    }
}

.manufacturingimg {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
    position: relative;
    background-color: #223f70;
    background-blend-mode: multiply;
}

.manufacturingimg .overlay {
    position: absolute;
    left: 0;
    z-index: 99;
    top: 0;
    background-color: rgba(34, 36, 112, 0.6);
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.image-team {
    width: 100%;
}

.avatar {
    width: 150px;
    border-radius: 50%;
    margin-top: -75px;
    margin-left: 125px;
}

.btn-signup {
    margin-top: 50px;
    text-align: center;
    padding: 20px;
    border: solid 3px #049bea;
    color: #049bea;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-left: 110px;
    margin-bottom: 50px;
}

.btn-signup:hover {
    cursor: pointer;
    -webkit-box-shadow: 5px 5px 10px #d2d2d2;
    box-shadow: 5px 5px 10px #d2d2d2;
}

.team1,
.team2,
.team3 {
    width: 30.33%;
    margin: 0 1.5%;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 5px 5px 10px #d2d2d2;
    box-shadow: 5px 5px 10px #d2d2d2;
    margin-bottom: 20px;
}

.fa {
    display: none !important;
}

.contact-details h4 {
    font-size: 18px;
}

.contact-details p {
    font-size: 15px;
    line-height: 26px;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .timelineBx .slick-next {
        right: -30px;
    }
    .timelineBx .slick-prev {
        left: -30px !important;
    }
    #autoplay .timeline {
        padding-left: 20px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .achievement .overlay-awards {
        padding: 0px;
    }
}

.home-feature {
    background: transparent;
    color: #ffffff;
    padding: 0 40px;
}

.home-feature .showcase-img {
    min-height: 24rem;
    overflow: hidden;
    background-size: cover;
    background-blend-mode: multiply;
    background-color: #222470;
}

@media (max-width: 600px) {
    .home-feature .showcase-img {
        min-height: 21rem;
    }
}

.home-feature .showcase-img .overlay {
    position: absolute;
    left: 0;
    z-index: 99;
    top: 0;
    background-color: rgba(34, 36, 112, 0.6);
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    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;
}

.home-feature .showcase-img .overlay .dist-img-logo img {
    width: 220px;
}

.home-feature .showcase-img .overlay-grey {
    position: absolute;
    left: 0;
    z-index: 99;
    top: 0;
    background-color: #e8eaed;
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    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;
}

.home-feature .showcase-img .overlay-grey .dist-img-logo img {
    width: 220px;
}

.home-feature .showcase-text {
    padding: 1rem 1rem;
    background: #e8eaed;
}

@media (max-width: 768px) {
    .home-feature {
        padding: 0 15px;
    }
    .home-feature .showcase-text {
        padding: 2rem 2rem;
    }
}

.home-feature .showcase-text-blue {
    padding: 0 1rem;
    background: #082f70;
}

@media (max-width: 768px) {
    .home-feature {
        padding: 0 15px;
    }
    .home-feature .showcase-text-blue {
        padding: 2rem 2rem;
    }
}

.retail-logo {
    border: #eee solid;
    border-width: 1px 0 1px 0;
    padding: 90px 0 70px;
    display: block;
}

.marbot5 {
    margin-bottom: -6px !important;
}

.hvrbox * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.hvrbox {
    position: relative;
    display: inline-block;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.hvrbox img {
    max-width: 100%;
}

.hvrbox img.grey1 {
    background: rgba(204, 204, 204, 0.7);
}

.hvrbox img.grey2 {
    background: rgba(166, 166, 166, 0.7);
}

.hvrbox img.grey3 {
    background: rgba(185, 185, 185, 0.7);
}

.hvrbox img.grey4 {
    background: #cccccc;
}

.hvrbox img.grey5 {
    background: #a6a6a6;
}

.hvrbox .hvrbox-layer_bottom {
    display: block;
}

.hvrbox .hvrbox-layer_top {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    padding: 15px;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.hvrbox:hover .hvrbox-layer_top,
.hvrbox.active .hvrbox-layer_top {
    opacity: 1;
}

.hvrbox .hvrbox-text {
    text-align: center;
    width: 60%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hvrbox .hvrbox-text_mobile {
    font-size: 15px;
    border-top: 1px solid #b3b3b3;
    /* for old browsers */
    border-top: 1px solid rgba(179, 179, 179, 0.7);
    margin-top: 5px;
    padding-top: 2px;
    display: none;
}

.hvrbox.active .hvrbox-text_mobile {
    display: block;
}

.customer-logos .slick-slide {
    margin: 0px 20px;
}

.customer-logos .slick-slide img {
    width: 100%;
}

.customer-logos .slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.customer-logos .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.customer-logos .slick-list:focus {
    outline: none;
}

.customer-logos .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.customer-logos .slick-slider .slick-track,
.customer-logos .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.customer-logos .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.customer-logos .slick-track:before,
.customer-logos .slick-track:after {
    display: table;
    content: '';
}

.customer-logos .slick-track:after {
    clear: both;
}

.customer-logos .slick-loading .slick-track {
    visibility: hidden;
}

.customer-logos .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.customer-logos [dir='rtl'] .slick-slide {
    float: right;
}

.customer-logos .slick-slide img {
    display: block;
}

.customer-logos .slick-slide.slick-loading img {
    display: none;
}

.customer-logos .slick-slide.dragging img {
    pointer-events: none;
}

.customer-logos .slick-initialized .slick-slide {
    display: block;
}

.customer-logos .slick-loading .slick-slide {
    visibility: hidden;
}

.customer-logos .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.customer-logos .slick-arrow.slick-hidden {
    display: none;
}

.readmore {
    color: #eb7d21;
    font-size: 16px;
    font-weight: 500;
    margin: 0 auto;
    display: table;
    -webkit-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
    padding: 4px 20px;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.readmore img {
    max-width: 20px;
    margin-left: 7px;
}

.readmore:hover {
    color: #eb7d21;
    text-decoration: none;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.buttonmoreabout {
    border-radius: none;
    background-color: transparent;
    border: none;
    color: #eb7d21;
    text-align: center;
    font-size: 16px;
    padding: 0 10px;
    display: table;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px auto;
    height: 30px;
    overflow: hidden;
}

.buttonmoreabout span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    height: 30px;
}

.buttonmoreabout span img {
    max-width: 20px;
}

.buttonmoreabout span:after {
    content: 'More About the Group';
    position: absolute;
    opacity: 0;
    font-size: 700;
    top: 2px;
    left: -30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    color: #eb7d21;
}

.buttonmoreabout:hover span {
    padding-left: 160px;
}

.buttonmoreabout:hover span:after {
    opacity: 1;
    right: 0;
}

.button {
    border-radius: none;
    background-color: transparent;
    border: none;
    color: #eb7d21;
    text-align: center;
    font-size: 16px;
    padding: 0 10px;
    display: table;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px auto;
    height: 30px;
    overflow: hidden;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    height: 30px;
}

.button span img {
    max-width: 20px;
}

.button span:after {
    content: 'Read All';
    position: absolute;
    opacity: 0;
    font-size: 700;
    top: 4px;
    left: -30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    color: #eb7d21;
}

.button:hover span {
    padding-left: 80px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}

.button-read {
    border-radius: none;
    background-color: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding: 0 10px;
    display: table;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px auto;
    height: 30px;
    overflow: hidden;
}

.button-read span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    height: 30px;
}

.button-read span img {
    max-width: 20px;
}

.button-read span:after {
    content: 'View More';
    position: absolute;
    opacity: 0;
    font-size: 700;
    top: 2px;
    left: -30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
}

.button-read:hover span {
    padding-left: 80px;
}

.button-read:hover span:after {
    opacity: 1;
    right: 0;
}

.button-lg {
    border-radius: none;
    background-color: transparent;
    border: none;
    color: #eb7d21;
    text-align: center;
    font-size: 16px;
    padding: 0px;
    display: table;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    margin: 0px;
    overflow: hidden;
}

.button-lg span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    height: 42px;
}

.button-lg span img {
    max-width: 30px;
}

.button-lg span:after {
    content: 'Explore';
    position: absolute;
    opacity: 0;
    font-size: 700;
    top: 10px;
    left: -30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    color: #eb7d21;
}

.button-lg:hover span {
    padding-left: 70px;
}

.button-lg:hover span:after {
    opacity: 1;
    right: 0;
}

.button-lg-w {
    border-radius: none;
    background-color: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding: 0px;
    display: table;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    margin: 0px;
    height: 30px;
    overflow: hidden;
}

.button-lg-w span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    height: 42px;
}

.button-lg-w span img {
    max-width: 30px;
}

.button-lg-w span:after {
    content: 'Learn More';
    position: absolute;
    opacity: 0;
    font-size: 700;
    top: 10px;
    left: -30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
}

.button-lg-w:hover span {
    padding-left: 90px;
}

.button-lg-w:hover span:after {
    opacity: 1;
    right: 0;
}

.viewmore {
    border-radius: none;
    background-color: transparent;
    border: none;
    color: #eb7d21;
    text-align: center;
    font-size: 16px;
    padding: 0px;
    display: table;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    margin: 0px;
    overflow: hidden;
}

.viewmore span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    height: 42px;
}

.viewmore span img {
    max-width: 30px;
}

.viewmore span:after {
    content: 'View More';
    position: absolute;
    opacity: 0;
    font-size: 700;
    top: 10px;
    left: -30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    color: #eb7d21;
}

.viewmore:hover span {
    padding-left: 80px;
}

.viewmore:hover span:after {
    opacity: 1;
    right: 0;
}

.viewmore-w {
    border-radius: none;
    background-color: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding: 0px;
    display: table;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    margin: 0px;
    height: 30px;
    overflow: hidden;
}

.viewmore-w span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    height: 42px;
}

.viewmore-w span img {
    max-width: 30px;
}

.viewmore-w span:after {
    content: 'Explore';
    position: absolute;
    opacity: 0;
    font-size: 700;
    top: 10px;
    left: -30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
}

.viewmore-w:hover span {
    padding-left: 60px;
}

.viewmore-w:hover span:after {
    opacity: 1;
    right: 0;
}

.btnceenter {
    margin: 0 auto;
    display: table;
}

.viewmore-w:hover span:after {
    opacity: 1;
    right: 0;
}

.digtialbutton {
    display: inline-block;
    font-family: "Montserrat", "Trebuchet MS", Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    position: relative;
    padding: 0.8em 1em;
    padding-right: 2em;
    background: #009ED8;
    border: none;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    text-align: left;
}

.digtialbutton:before,
.digtialbutton:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding-top: inherit;
    padding-bottom: inherit;
    width: 2.8em;
    content: "\00a0";
    font-family: 'FontAwesome', sans-serif;
    font-size: 1.2em;
    text-align: center;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform-origin: 50% 60%;
    -ms-transform-origin: 50% 60%;
    transform-origin: 50% 60%;
}

.digtialbutton:before {
    background: rgba(0, 0, 0, 0.1);
}

.digtialbutton:hover {
    background: #0079a5;
}

.digtialbutton:active,
.digtialbutton:focus {
    background: #002e3f;
    outline: none;
}

.digtialbutton {
    min-width: 100%;
}

.arrow {
    background: #ccc;
    margin-bottom: 6px;
    color: #333;
}

.arrow:hover {
    background: #223f70;
    color: #fff;
    text-decoration: none;
}

.arrow:active,
.arrow:focus {
    background: #e24720;
    color: #fff;
    text-decoration: none;
}

.tab .active {
    background-color: #e24720;
    color: #fff;
}

.arrow:after {
    content: "\F054";
}

.arrow:hover:after {
    -webkit-animation: bounceright 0.3s alternate ease infinite;
    animation: bounceright 0.3s alternate ease infinite;
}

@-webkit-keyframes bounceright {
    from {
        -webkit-transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(3px);
    }
}

@-webkit-keyframes wiggle {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(30deg);
    }
}

@keyframes bounceright {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
}

@keyframes wiggle {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
}

.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;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .bhoechie-tab-content {
        padding-left: 0px;
    }
}

.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: #111;
    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;
    padding: 60px 0px 0px;
}
.footer .social_icon a{
    margin-left: 4px;
    margin-right: 4px;
}
.footer .social_icon img{
    max-width: 40px;
    border-radius: 3px;
}
@media (max-width: 768px) {
    .footer {
        padding: 60px 0px 0px;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .footer {
        margin-top: -40px;
    }
}

.footer .footerlist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: top;
    -ms-flex-align: top;
    align-items: top;
}

.footer .footerlist .flist:nth-child(1) {
    width: 30%;
}

.footer .footerlist .flist:nth-child(2) {
    width: 30%;
}
.footer .footerlist .flist:nth-child(3) {
    width: 40%;
}

.footer .footerlist .flist .address {
    max-width: 20px;
    margin-right: 6px;
}
.footer .footerlist .flist p {
    font-weight: 300;
    color: #eee;
    font-size: 15px;
    line-height: 36px;
    
}
.footer .footerlist .flist h6 {
    font-weight: 500;
    color: #eee;
    margin-bottom: 20px;
}

.footer .footerlist .flist h6 a {
    color: #eee;
}

.footer .footerlist .flist h6 a:hover {
    color: #ccc;
    text-decoration: none;
}

.footer .footerlist .flist ul {
    list-style: none;
    padding: 0px;
}

.footer .footerlist .flist ul li {
    margin: 0px 0 8px;
    padding: 0px;
    line-height: 20px;
}

.footer .footerlist .flist ul a {
    color: #eee;
    font-size: 15px;
}

.footer .footerlist .flist ul a:hover {
    color: #ccc;
    text-decoration: none;
}

.footer .footerlist .flist .flogo {
    max-width: 200px;
}

@media screen and (max-width: 550px) and (min-width: 320px) {
    .footer .footerlist {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        text-align: left;
    }
    .footer .footerlist .flist {
        width: 100%;
        margin-bottom: 20px;
    }
    .footer .footerlist .flist:nth-child(1) {
        width: 100%;
    }
    .footer .footerlist .flist:nth-child(2) {
        width: 100%;
    }
    .footer .footerlist .flist:nth-child(3) {
        width: 100%;
    }
    .footer .footerlist .flist:nth-child(4) {
        width: 100%;
    }
}


.footer .copyright .item {
    width: 100%;
    font-weight: 400;
}

.footer .copyright p {
    font-size: 15px !important;
}
.footer .copyright .flogo {
    max-width: 180px;
}

@media screen and (max-width: 550px) and (min-width: 320px) {
    .footer .copyright {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: left;
    }
    .footer .copyright .item {
        width: 100%;
        font-weight: 300;
        text-align: center !important;
    }
    .social_icon{
        text-align: left;
    }
}

.footer_bottom{
    background-color: #d85326;
    padding: 15px 0;
}
.footer_bottom ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer_bottom ul li, .footer_bottom ul li a{
    font-size: 14px;
    color: #fff;
    margin-right: 15px;
}
.footer_bottom ul li a:hover{
    text-decoration: none;
}
.mt0 {
    margin-top: 0px !important;
}

.banner_btn_appo{
    background-color: #fff;
    padding: 20px;
    position: relative;
    margin-right: 15px;
    border-radius: 5px;
    color: #000;
    font-weight: 600;
}
.banner_btn_abuot{
    background-color: #000;
    padding: 20px;
    position: relative;
    margin-right: 15px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
}
.banner_btn_appo:hover{
    text-decoration: none;
    color: #000;
    opacity: 0.9;
}
.banner_btn_abuot:hover{
    text-decoration: none;
    color: #fff;
    opacity: 0.9;
}
@media (max-width: 550px){
    .banner_btn_appo{
        padding: 10px;
        position: relative;
        margin-right: 5px;
    }
    .banner_btn_abuot{
        padding: 10px;
        position: relative;
        margin-right: 5px;
    }
}

.service_sec{
    flex-wrap: wrap;
}
.service_sec a{
    width: 25%;
    padding: 4% 2%;
    text-align: center;
    color: #222;
}
.service_sec a:nth-child(1) {
    background-color: #eaebed;
 }
.service_sec a:nth-child(2) {
    background-color: #fff;
    border-top: #eaebed solid 1px;
}
.service_sec a:nth-child(3) {
    background-color: #eaebed;
}
.service_sec a:nth-child(4) {
    background-color: #fff;
    border-top: #eaebed solid 1px;
}
.service_sec a:nth-child(5) {
    background-color: #fff;
    border-bottom: #eaebed solid 1px;
}
.service_sec a:nth-child(6) {
    background-color: #eaebed;
}
.service_sec a:nth-child(7) {
    background-color: #fff;
    border-bottom: #eaebed solid 1px;
}
.service_sec a:nth-child(8) {
    background-color: #eaebed;
}
.service_sec a:hover{
    text-decoration: none;
    background-color: #dadada;
    color: #eb7d21;
}
.service_sec a img{
    max-width: 80px;
    margin-bottom: 20px;
}
.service_sec h6{
    font-size: 18px !important;
    font-weight: 600;
}

.ouridentity{
    flex-wrap: wrap;
}
.ouridentity a{
    width: 33.33%;
    padding: 4%;
    text-align: center;
    color: #1357a3;
}
.ouridentity a:nth-child(1) {
    background-color: #eff5f7;
 }
.ouridentity a:nth-child(2) {
    background-color: #fff;
    border-top: #eff5f7 solid 1px;
}
.ouridentity a:nth-child(3) {
    background-color: #eff5f7;
}
.ouridentity a:nth-child(4) {
    background-color: #fff;
    border-top: #eff5f7 solid 1px;
}
.ouridentity a:nth-child(5) {
    background-color: #eff5f7;
    border-bottom: #eff5f7 solid 1px;
}
.ouridentity a:nth-child(6) {
    background-color: #fff;
}

.ouridentity a:hover{
    text-decoration: none;
    background-color: #e1e7ee;
    color: #eb7d21;
}
.ouridentity a img{
    max-width: 100px;
    margin-bottom: 20px;
}
.ouridentity h6{
    font-size: 22px !important;
    font-weight: 600;
    line-height: 32px;
}
@media (max-width: 550px){
    .service_sec a{
        width: 50%;
        padding: 4% 1%;
        border: #eee solid 1px;
    }
    .service_sec h6 {
        font-size: 15px !important;
    }
    .service_sec a img{
        max-width: 70px;
    }

    .ouridentity a{
        width: 50%;
        padding: 4% 1%;
        border: #eee solid 1px;
    }
    .ouridentity h6 {
        font-size: 15px !important;
    }
    .ouridentity a img{
        max-width: 70px;
    }
}
.main_btn{
    background-color: #2b2b2c;
    padding: 15px;
    margin-right: 15px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}
.main_btn:hover{
    background-color: #eb7d21;
    text-decoration: none;
    color: #fff;
}

.home-newsletter .subscribe_btn{
    background-color: #2b2b2c;
    padding: 15px;
    border-radius: 0 5px 5px 0;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
}
.getintouch{
    background-color: #2b2b2c;
    padding: 15px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
}

/* Home Tabs */
.accordion_home .card-header {
    padding: 1.1rem;
    margin-bottom: 0;
    background-color: #e0e0e0;
}
.accordion_home .card-header a{
    color: #eb7717;
}
.accordion_home .card-header a:hover{
    text-decoration: none;
}
.accordion_home .card{
    margin-bottom: 5px;
}
.accordion_home .card-body{
    background-color: #f4f4f4;
}
.collapsible-link::before {
    content: '';
    width: 14px;
    height: 2px;
    background: #eb7717;
    position: absolute;
    top: calc(50% - 1px);
    right: 1rem;
    display: block;
    transition: all 0.3s;
  }
  
  /* Vertical line */
  .collapsible-link::after {
    content: '';
    width: 3px;
    height: 14px;
    background: #eb7717;
    position: absolute;
    top: calc(50% - 7px);
    right: calc(1rem + 6px);
    display: block;
    transition: all 0.3s;
  }
  
  .collapsible-link[aria-expanded='true']::after {
    transform: rotate(90deg) translateX(-1px);
  }
  
  .collapsible-link[aria-expanded='true']::before {
    transform: rotate(180deg);
  }

.project .project-text{
    padding: 1rem 5rem;
}

.servciessolutions .project-text{
    padding: 1rem 2rem;
}
.servciessolutions .project-text{
    padding: 1rem 2rem;
}
.bg-grey-bdr{
    background-color: #f7f7f7;
    border-bottom: #eee solid 1px;
    margin-bottom: 60px;
}

.demo {
    background-color: #E4E4E6;
}
.main-timeline{
    position: relative;
}
.main-timeline:after{
    content: '';
    display: block;
    clear: both;
}
.main-timeline .timeline{
    width: 50%;
    padding: 30px 0 0;
    margin: 0 30px 20px 0;
    float: left;
}
.main-timeline .timeline-content{
    color: #333;
    background: linear-gradient(to left bottom,#F1EFF0,#fff);
    min-height: 140px;
    padding: 0 25px 25px 30px;
    border: 2px solid #fff;
    border-radius: 20px;
    display: block;
    position: relative;
}
.main-timeline .timeline-content:hover{ text-decoration: none; }
.main-timeline .timeline-icon{
    color: #fff;
    background: linear-gradient(to right,#d60d24 49%,#eb7d21 50%);
    font-size: 45px;
    text-align: center;
    line-height: 150px;
    height: 150px;
    width: 150px;
    box-shadow: 0 0 7px rgba(0,0,0,0.2);
    border-radius: 50%;
    position: absolute;
    top: -32px;
    right: -75px;
    z-index: 1;
}
.main-timeline .timeline-icon img{
    max-width: 70px;
}
.main-timeline .timeline-icon:before{
    content: "";
    background: #eb7d21;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transform: translateX(-50%)translateY(-50%);
    position: absolute;
    width: 72%;
    height: 72%;
    top: 50%;
    left: 50%;
    z-index: -1;
}
.main-timeline .title{
    color: #fff;
    background: linear-gradient(to right,#eb7d21,#f1263d);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 40px;
    margin: -22px 0 20px 80px;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 5% 100%, 0 50%);
}
.main-timeline .description{
    font-size: 16px;
    letter-spacing: 1px;
    text-align: justify;
    margin: 0 65px 0 0;
}
.main-timeline .description h5{
    color: #333;
    font-size: 22px;
}
.main-timeline .description p{
    color: #333;
}
.main-timeline .timeline:nth-child(even){
    float: right;
    margin: 0 0 20px 30px;
}
.main-timeline .timeline:nth-child(even) .timeline-icon{
    right: auto;
    left: -75px;
}
.main-timeline .timeline:nth-child(even) .title{
    margin-left: 0;
    margin-right: 80px;
    padding-left: 50px;
    clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0 0);
}
.main-timeline .timeline:nth-child(even) .description{ margin: 0 0 0 65px; }
.main-timeline .timeline:nth-child(4n+2) .timeline-icon{
    background: linear-gradient(to right,#36E3E7 49%,#34CFC9 50%);
}
.main-timeline .timeline:nth-child(4n+2) .timeline-icon:before{ background: #3EF9EE; }
.main-timeline .timeline:nth-child(4n+2) .title{
    background: linear-gradient(to right,#10CFCA,#3298C9);
}
.main-timeline .timeline:nth-child(4n+3) .timeline-icon{
    background: linear-gradient(to right,#ea4800 49%,#ff5c14 50%);
}
.main-timeline .timeline:nth-child(4n+3) .timeline-icon:before{ background: #ff5b00; }
.main-timeline .timeline:nth-child(4n+3) .title{
    background: linear-gradient(to right,#ff5b00,#ea4800);
}
.main-timeline .timeline:nth-child(4n+4) .timeline-icon{
    background: linear-gradient(to right,#fc6b23 49%,#f94f16 50%);
}
.main-timeline .timeline:nth-child(4n+4) .timeline-icon:before{ background: #fc7937; }
.main-timeline .timeline:nth-child(4n+4) .title{
    background: -webkit-linear-gradient(left, #f9590e, #f98109);
    background: -o-linear-gradient(left, #f9590e, #f98109);
    background: linear-gradient(to right, #f9590e, #f98109);
}
@media screen and (max-width:990px){
    .main-timeline .timeline .title{ margin-left: 15px; }
    .main-timeline .timeline:nth-child(even) .title{ margin-right: 15px; }
}
@media screen and (max-width:767px){
    .main-timeline .timeline{ width: 100%; }
    .main-timeline .timeline .timeline-content{ min-height: auto; }
    .main-timeline .timeline .timeline-icon{
        font-size: 35px;
        line-height: 83px;
        height: 80px;
        width: 80px;
        right: auto;
        left: 0;
    }
    .main-timeline .timeline:nth-child(even) .timeline-icon{ left: 0; }
    .main-timeline .timeline .title{
        padding-right: 20px;
        margin-bottom: 30px;
        display: inline-block;
        clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0 0);
    }
    .main-timeline .timeline:nth-child(even) .title{
        margin-right: 0;
        margin-left: 15px;
    }
    .main-timeline .timeline .description,
    .main-timeline .timeline:nth-child(even) .description{
        margin: 0;
    }
    .main-timeline .timeline-icon{ right: -150px; }
}
@media screen and (max-width:576px){
    .main-timeline .title{ font-size: 18px; }
}

.ourphilosophy{
    background-color: #f2f2f2;
    padding: 25px;
    border: #d5d5d5 solid 1px;
}
.philosophy-icon{
    background-color: #fcab76;
    padding: 10px;
    border-radius: 5px;
    min-width: 120px;
    min-height: 120px;
}
.philosophy-icon2{
    background-color: #444;
    padding: 10px;
    border-radius: 5px;
    min-width: 120px;
    min-height: 120px;
}
.philosophy-icon3{
    background-color: #ffe0a4;
    padding: 10px;
    border-radius: 5px;
    min-width: 120px;
    min-height: 120px;
}

.slick-custom-arrow {
    position: absolute;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 100;
    padding: 7px 3px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #000;
  }
  .slick-custom-arrow:hover {
    cursor: pointer;
    background-color: #eb7717;
    color: #fff;
  }
  .slick-custom-arrow-right {
    right: 0;
    top: 50%;
    border-radius: 3px 0 0 3px;
  }
  .slick-custom-arrow-right img, .slick-custom-arrow-left img {
    max-width: 24px;
  }
  .slick-custom-arrow-left {
    left: 0;
    top: 50%;
    border-radius: 0 3px 3px 0;
  }
  @media screen and (max-width:800px){
    .slick-custom-arrow{
        display: none !important;
    }
}


/* Navigation Header */
.navigation {
    width: 100%;
    height: 70px;
    display: table;
    position: relative;
    font-family: inherit;
    background-color: #fff;
  }
  
  .navigation * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }
  
  .navigation-portrait {
    height: 48px;
  }
  
  .navigation-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19998;
  }
  
  .navigation-hidden {
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .align-to-right {
    float: right;
  }
  
  .nav-header {
    float: left;
  }
  
  .navigation-hidden .nav-header {
    display: none;
  }
  
  .nav-brand {
    line-height: 70px;
    padding: 0;
    color: #000;
    font-size: 24px;
    text-decoration: none !important;
  }
  
  .nav-brand:hover,
  .nav-brand:focus {
    color: #000;
  }
  
  .navigation-portrait .nav-brand {
    font-size: 18px;
    line-height: 48px;
  }
  
  .nav-logo > img {
    height: 48px;
    margin: 11px auto;
    padding: 0 15px;
    float: left;
  }
  
  .nav-logo:focus > img {
    outline: initial;
  }
  
  .navigation-portrait .nav-logo > img {
    height: 36px;
    margin: 6px auto 6px 15px;
    padding: 0;
  }
  
  .nav-toggle {
    width: 30px;
    height: 30px;
    padding: 6px 2px 0;
    position: absolute;
    top: 50%;
    margin-top: -14px;
    right: 0px;
    display: none;
    cursor: pointer;
  }
  
  .nav-toggle:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 0.5em 0 0 #000, 0 1em 0 0 #000;
  }
  
  .navigation-portrait .nav-toggle {
    display: block;
  }
  
  .navigation-portrait .nav-menus-wrapper {
    width: 320px;
    height: 100%;
    top: 0;
    left: -400px;
    position: fixed;
    background-color: #fff;
    z-index: 20000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition-duration: 0.2s;
    transition-timing-function: ease;
  }
  
  .navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
    left: auto;
    right: -400px;
  }
  
  .navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
    left: 0;
  }
  
  .navigation-portrait
    .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
    left: auto;
    right: 0;
  }
  
  .nav-menus-wrapper-close-button {
    width: 30px;
    height: 40px;
    margin: 10px 7px;
    display: none;
    float: right;
    color: #000;
    font-size: 26px;
    cursor: pointer;
  }
  
  .navigation-portrait .nav-menus-wrapper-close-button {
    display: block;
  }
  
  .nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: normal;
    font-size: 0;
  }
  
  .navigation-portrait .nav-menu {
    width: 100%;
  }
  
  .navigation-landscape .nav-menu.nav-menu-centered {
    float: none;
    text-align: center;
  }
  
  .navigation-landscape .nav-menu.nav-menu-centered > li {
    float: none;
  }
  
  .nav-menu > li {
    display: inline-block;
    float: left;
    text-align: left;
  }
  
  .navigation-portrait .nav-menu > li {
    width: 100%;
    position: relative;
    border-top: solid 1px #f0f0f0;
  }
  
  .navigation-portrait .nav-menu > li:last-child {
    border-bottom: solid 1px #f0f0f0;
  }
  
  .nav-menu + .nav-menu > li:first-child {
    border-top: none;
  }
  
  .nav-menu > li > a {
    height: 70px;
    padding: 33px 12px 45px;
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    transition: color 0.3s, background 0.3s;
  }
  
  .navigation-portrait .nav-menu > li > a {
    width: 100%;
    height: auto;
    padding: 12px 15px 12px 26px;
  }
  
  .nav-menu > li:hover > a,
  .nav-menu > li.active > a,
  .nav-menu > li.focus > a {
    color: #df430d;
  }
  
  .nav-menu > li > a > i,
  .nav-menu > li > a > [class*="ion-"] {
    width: 18px;
    height: 16px;
    line-height: 16px;
    transform: scale(1.4);
  }
  
  .nav-menu > li > a > [class*="ion-"] {
    width: 16px;
    display: inline-block;
    transform: scale(1.8);
  }
  
  .navigation-portrait .nav-menu.nav-menu-social {
    width: 100%;
    text-align: center;
  }
  
  .nav-menu.nav-menu-social > li {
    text-align: center;
    float: none;
    border: none !important;
  }
  
  .navigation-portrait .nav-menu.nav-menu-social > li {
    width: auto;
  }
  
  .nav-menu.nav-menu-social > li > a > [class*="ion-"] {
    font-size: 12px;
  }
  
  .nav-menu.nav-menu-social > li > a > .fa {
    font-size: 14px;
  }
  
  .navigation-portrait .nav-menu.nav-menu-social > li > a {
    padding: 15px;
  }
  
  .submenu-indicator {
    margin-left: 6px;
    margin-top: 6px;
    float: right;
    transition: all 0.2s;
  }
  
  .navigation-portrait .submenu-indicator {
    width: 54px;
    height: 44px;
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    z-index: 20000;
  }
  
  .submenu-indicator-chevron {
    height: 6px;
    width: 6px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #000000 #000000 transparent;
    transform: rotate(45deg);
    transition: border 0.2s;
  }
  
  .navigation-portrait .submenu-indicator-chevron {
    position: absolute;
    top: 18px;
    left: 24px;
  }
  
  .nav-menu > li:hover > a .submenu-indicator-chevron,
  .nav-menu > .active > a .submenu-indicator-chevron,
  .nav-menu > .focus > a .submenu-indicator-chevron {
    border-color: transparent #d85326 #d85326 transparent;
  }
  
  .navigation-portrait .submenu-indicator.submenu-indicator-up {
    transform: rotate(-180deg);
  }
  
  .nav-overlay-panel {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: none;
    z-index: 19999;
  }
  
  .no-scroll {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .nav-search {
    height: 70px;
    float: right;
    z-index: 19998;
  }
  
  .navigation-portrait .nav-search {
    height: 48px;
    padding: 0 10px;
    margin-right: 36px;
  }
  
  .navigation-hidden .nav-search {
    display: none;
  }
  
  .nav-search-button {
    width: 70px;
    height: 78px;
    line-height: 78px;
    text-align: center;
    cursor: pointer;
    background-color: #d85326;
  }
  
  .navigation-portrait .nav-search-button {
    width: 50px;
    height: 48px;
    line-height: 46px;
    font-size: 24px;
  }
  
  .nav-search-icon {
    width: 14px;
    height: 14px;
    margin: 2px 8px 8px 4px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: #fff;
    text-align: left;
    text-indent: -9999px;
    border: 3px solid;
    border-radius: 50%;
    transform: rotate(-45deg);
  }
  
  .nav-search-icon:after,
  .nav-search-icon:before {
    content: "";
    pointer-events: none;
  }
  
  .nav-search-icon:before {
    width: 2px;
    height: 11px;
    top: 11px;
    position: absolute;
    left: 50%;
    border-radius: 0 0 1px 1px;
    box-shadow: inset 0 0 0 32px;
    transform: translateX(-50%);
  }
  
  .nav-search-button:hover .nav-search-icon {
    color: #000;
  }
  
  .nav-search > form {
    width: 80%;
    height: 100%;
    padding: 0 auto;
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #fff;
    z-index: 99;
  }
  
  .nav-search-inner {
    width: 70%;
    height: 70px;
    margin: auto;
    display: table;
  }
  
  .navigation-portrait .nav-search-inner {
    height: 48px;
  }
  
  .nav-search-inner input[type="text"],
  .nav-search-inner input[type="search"] {
    height: 78px;
    width: 100%;
    margin: 0;
    padding: 0 12px;
    font-size: 24px;
    text-align: center;
    color: #000;
    outline: none;
    line-height: 78px;
    border: none;
    background-color: transparent;
    transition: all 0.3s;
  }
  
  .navigation-portrait .nav-search-inner input[type="text"],
  .navigation-portrait .nav-search-inner input[type="search"] {
    height: 48px;
    font-size: 18px;
    line-height: 48px;
  }
  
  .nav-search-close-button {
    width: 28px;
    height: 28px;
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: normal;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
  }
  
  .navigation-portrait .nav-search-close-button {
    top: 10px;
    right: 14px;
  }
  
  .nav-button {
    margin: 18px 15px 0;
    padding: 8px 14px;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
  }
  
  .nav-button:hover,
  .nav-button:focus {
    color: #fff;
    text-decoration: none;
  }
  
  .navigation-portrait .nav-button {
    width: calc(100% - 52px);
    margin: 17px 26px;
  }
  
  .nav-text {
    margin: 25px 15px;
    display: inline-block;
    color: #000;
    font-size: 14px;
  }
  
  .navigation-portrait .nav-text {
    width: calc(100% - 52px);
    margin: 12px 26px 0;
  }
  
  .navigation-portrait .nav-text + ul {
    margin-top: 15px;
  }
  
  .nav-dropdown {
    min-width: 200px;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    list-style: none;
    z-index: 98;
    white-space: nowrap;
  }
  
  .navigation-portrait .nav-dropdown {
    width: 100%;
    position: static;
    left: 0;
  }
  
  .nav-dropdown .nav-dropdown {
    left: 100%;
  }
  
  .nav-menu > li > .nav-dropdown {
    border-top: solid 1px #f0f0f0;
  }
  
  .nav-dropdown > li {
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    text-align: left;
  }
  
  .nav-dropdown > li > a {
    width: 100%;
    padding: 16px 20px;
    display: inline-block;
    text-decoration: none;
    float: left;
    font-size: 13px;
    color: #000;
    background-color: #fdfdfd;
  }
  
  .nav-dropdown > li:hover > a,
  .nav-dropdown > li.focus > a {
    color: #df430d;
  }
  
  .nav-dropdown.nav-dropdown-left {
    right: 0;
  }
  
  .nav-dropdown > li > .nav-dropdown-left {
    left: auto;
    right: 100%;
  }
  
  .navigation-landscape .nav-dropdown.nav-dropdown-left > li > a {
    text-align: right;
  }
  
  .navigation-portrait .nav-dropdown > li > a {
    padding: 12px 20px 12px 30px;
  }
  
  .navigation-portrait .nav-dropdown > li > ul > li > a {
    padding-left: 50px;
  }
  
  .navigation-portrait .nav-dropdown > li > ul > li > ul > li > a {
    padding-left: 70px;
  }
  
  .navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > a {
    padding-left: 90px;
  }
  
  .navigation-portrait
    .nav-dropdown
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > ul
    > li
    > a {
    padding-left: 110px;
  }
  
  .nav-dropdown .submenu-indicator {
    right: 15px;
    top: 10px;
    position: absolute;
  }
  
  .navigation-portrait .nav-dropdown .submenu-indicator {
    right: 0;
    top: 0;
  }
  
  .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
    transform: rotate(-45deg);
  }
  
  .navigation-portrait
    .nav-dropdown
    .submenu-indicator
    .submenu-indicator-chevron {
    transform: rotate(45deg);
  }
  
  .nav-dropdown > li:hover > a .submenu-indicator-chevron,
  .nav-dropdown > .focus > a .submenu-indicator-chevron {
    border-color: transparent #df430d #df430d transparent;
  }
  
  .navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
    left: 10px;
  }
  
  .navigation-landscape
    .nav-dropdown.nav-dropdown-left
    .submenu-indicator
    .submenu-indicator-chevron {
    transform: rotate(135deg);
  }
  .nav-dropdown-horizontal {
    width: 100%;
    left: 0;
    background-color: #fdfdfd;
    border-top: solid 1px #f0f0f0;
  }
  
  .nav-dropdown-horizontal .nav-dropdown-horizontal {
    width: 100%;
    top: 100%;
    left: 0;
  }
  
  .navigation-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
    border-top: none;
  }
  
  .nav-dropdown-horizontal > li {
    width: auto;
    clear: none;
    position: static;
  }
  
  .navigation-portrait .nav-dropdown-horizontal > li {
    width: 100%;
  }
  
  .nav-dropdown-horizontal > li > a {
    position: relative;
  }
  
  .nav-dropdown-horizontal .submenu-indicator {
    height: 18px;
    top: 11px;
    transform: rotate(90deg);
  }
  
  .navigation-portrait .nav-dropdown-horizontal .submenu-indicator {
    height: 42px;
    top: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  
  .navigation-portrait
    .nav-dropdown-horizontal
    .submenu-indicator.submenu-indicator-up {
    transform: rotate(-180deg);
  }
  
  .megamenu-panel {
    width: 70%;
    padding: 15px;
    display: none;
    position: absolute;
    font-size: 14px;
    z-index: 98;
    text-align: left;
    color: inherit;
    border-top: solid 1px #f0f0f0;
    background-color: #fdfdfd;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.075);
  }
  
  .navigation-portrait .megamenu-panel {
    padding: 25px;
    position: static;
    display: block;
  }
  
  .megamenu-panel [class*="container"] {
    width: 100%;
  }
  
  .megamenu-panel [class*="container"] [class*="col-"] {
    padding: 0;
  }
  
  .megamenu-panel-half {
    width: 50%;
  }
  
  .megamenu-panel-quarter {
    width: 25%;
  }
  
  .navigation-portrait .megamenu-panel-half,
  .navigation-portrait .megamenu-panel-quarter {
    width: 100%;
  }
  
  .megamenu-panel-row {
    width: 100%;
  }
  
  .megamenu-panel-row:before,
  .megamenu-panel-row:after {
    content: "";
    display: table;
    line-height: 0;
  }
  
  .megamenu-panel-row:after {
    clear: both;
  }
  
  .megamenu-panel-row [class*="col-"] {
    display: block;
    min-height: 20px;
    float: left;
    margin-left: 3%;
  }
  
  .megamenu-panel-row [class*="col-"]:first-child {
    margin-left: 0;
  }
  
  .navigation-portrait .megamenu-panel-row [class*="col-"] {
    float: none;
    display: block;
    width: 100% !important;
    margin-left: 0;
    margin-top: 15px;
  }
  
  .navigation-portrait
    .megamenu-panel-row:first-child
    [class*="col-"]:first-child {
    margin-top: 0;
  }
  
  .megamenu-panel-row .col-1 {
    width: 5.583333333333%;
  }
  
  .megamenu-panel-row .col-2 {
    width: 14.166666666666%;
  }
  
  .megamenu-panel-row .col-3 {
    width: 22.75%;
  }
  
  .megamenu-panel-row .col-4 {
    width: 31.333333333333%;
  }
  
  .megamenu-panel-row .col-5 {
    width: 39.916666666667%;
  }
  
  .megamenu-panel-row .col-6 {
    width: 48.5%;
  }
  
  .megamenu-panel-row .col-7 {
    width: 57.083333333333%;
  }
  
  .megamenu-panel-row .col-8 {
    width: 65.666666666667%;
  }
  
  .megamenu-panel-row .col-9 {
    width: 74.25%;
  }
  
  .megamenu-panel-row .col-10 {
    width: 82.833333333334%;
  }
  
  .megamenu-panel-row .col-11 {
    width: 91.416666666667%;
  }
  
  .megamenu-panel-row .col-12 {
    width: 100%;
  }
  
  .megamenu-tabs {
    width: 100%;
    float: left;
    display: block;
  }
  
  .megamenu-tabs-nav {
    width: 20%;
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
  }
  
  .navigation-portrait .megamenu-tabs-nav {
    width: 100%;
  }
  
  .megamenu-tabs-nav > li > a {
    width: 100%;
    padding: 10px 16px;
    float: left;
    font-size: 13px;
    text-decoration: none;
    color: #000;
    border: solid 1px #eff0f2;
    outline: 0;
    background-color: #fff;
  }
  
  .megamenu-tabs-nav > li.active a,
  .megamenu-tabs-nav > li:hover a {
    background-color: #f5f5f5;
  }
  
  .megamenu-tabs-pane {
    width: 80%;
    min-height: 30px;
    padding: 20px;
    float: right;
    display: none;
    font-size: 13px;
    color: #000;
    border: solid 1px #eff0f2;
    background-color: #fff;
  }
  
  .megamenu-tabs-pane.active {
    display: block;
  }
  
  .navigation-portrait .megamenu-tabs-pane {
    width: 100%;
  }
  
  .megamenu-lists {
    width: 100%;
    display: table;
  }
  
  .megamenu-list {
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
    display: inline-block;
    float: left;
    list-style: none;
  }
  
  .megamenu-list:last-child {
    margin: 0;
    border: none;
  }
  
  .navigation-landscape .megamenu-list {
    margin: -15px 0;
    padding: 20px 0;
    border-right: solid 1px #f0f0f0;
  }
  
  .navigation-landscape .megamenu-list:last-child {
    border: none;
  }
  .megamenu-list > li{
    padding: 0px 15px;
  }
  .megamenu-list > li > span{
    width: 100%;
    padding: 10px 0px;
    display: inline-block;
    color: #d85326;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
  }
  .megamenu-list > li > a {
    width: 100%;
    padding: 10px 3px;
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: #ccc solid 1px;
  }
  
  .megamenu-list > li > a:hover {
    background-color: #df430d;
    color: #fff;
  }
  
  .megamenu-list > li.megamenu-list-title > a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
  }
  
  .megamenu-list > li.megamenu-list-title > a:hover {
    background-color: transparent;
  }
  
  .navigation-landscape .list-col-2 {
    width: 50%;
  }
  
  .navigation-landscape .list-col-3 {
    width: 33%;
  }
  
  .navigation-landscape .list-col-4 {
    width: 25%;
  }
  
  .navigation-landscape .list-col-5 {
    width: 20%;
  }
  
  .nav-menu > li > a {
    color: #000;
    text-transform: uppercase;
  }
  
  .nav-dropdown > li > a {
    color: #000;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
    font-weight: 500;
    font-weight: 15px;
  }
  
  .nav-dropdown > li > a:hover,
  .nav-dropdown > li > a:focus {
    color: #df430d;
  }
  
  .main_header_area.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 9999;
    box-shadow: 0 5px 30px rgba(92, 76, 76, 0.1);
  }
  
  .transparent-menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
  }
  
  .navigation-portrait .nav-menu > li > a {
    width: 100%;
    height: auto;
    padding: 10px 10px 10px 30px;
  }
  
  @media only screen and (min-width: 320px) and (max-width: 767px) {
    .nav-dropdown > li > a,
    .megamenu-list > li > a {
      width: 100%;
    }
    .megamenu-panel{
        width: 100%;
    }
  }

  .appointment-contact-bg {
    background: #ffffff url(../images/home-appointment-contact-bg-image.png);
    background-repeat: no-repeat;
    background-position: center right;
}
.section-space--mb_50 {
    margin-bottom: 50px;
}
.contact-title .sub-title {
    font-size: 18px;
}
.contact-input {
    margin: 0 -10px;
}
.contact-input .contact-inner {
    float: left;
    margin: 0 0 20px;
    padding: 0 10px;
    width: 50%;
}
.contact-inner {
    margin: 0 0 20px;
}
.contact-inner input, .contact-inner textarea {
    width: 100%;
    color: #000;
    border-color: #fff;
    background-color: #fff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0em;
    border: none;
    width: 100%;
    outline: none;
    border: 1px solid #ccc;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 5px;
    padding: 3px 20px;
    height: 56px;
}
.contact-input .contact-inner {
    float: left;
    margin: 0 0 20px;
    padding: 0 10px;
    width: 50%;
}
.contact-inner select {
    color: #777;
}
.contact-inner textarea {
    height: 150px;
    padding: 15px;
}
.contact-inner select {
    padding: 3px 20px;
    height: 56px;
    max-width: 100%;
    width: 100%;
    outline: none;
    border: 1px solid #fff;
    border-radius: 5px;
    background: #fff url(../images/selector-icon.png) no-repeat center right 20px;
    background-color: #fff;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.comment-submit-btn .ht-btn {
    padding: 0 54px;
}
.ht-btn.ht-btn-md {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 54px;
    height: 54px;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
.ht-btn {
    font-size: 15px;
    font-weight: 500;
    border-style: solid;
    border-radius: 5px;
    border-color: transparent;
    padding: 0 36px;
    text-align: center;
    color: #ffffff;
    background: #d85326;
    border-width: 1px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
.contact-info-three .call-us {
    margin-bottom: 20px;
}
.call-us a:hover {
    text-decoration: none !important;
    color: #000 !important;
}
.contact-info-three .location-text-button img{
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 14px;
    display: inline-block;
}
.contact-info-three .location-text-button {
    color: #d85326;
    font-size: 16px;
}
.contact-info-three .location-text-button:hover {
    color: #d85326;
    text-decoration: none;
}

.testimonial-slider__one {
    position: relative;
    background: #fff;
    padding: 31px 50px 47px;
    border-radius: 5px;
    border-bottom: #d85326 solid 4px;
    margin: 20px 15px 35px;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
    box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(0px) !important;
    -ms-transform: translateY(0px) !important;
    transform: translateY(0px) !important;
}
.testimonial-slider__one .testimonial-slider--info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.testimonial-slider--info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 22px;
}
.testimonial-slider__text {
    font-size: 16px;
    color: #000;
}
.testimonial-slider__media {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 30px;
}
.testimonial-slider__author {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.testimonial-slider__media img {
    border-radius: 50%;
}

.testimonial-slider__author .name {
    color: #d85326;
    font-size: 18px;
    display: block;
    margin-bottom: 2px;
}
.testimonial-slider__author .designation {
    font-size: 15px;
    display: block;
}
.slick-carousel .slick-dots {
    list-style: none;
    margin: 0 auto;
    text-align: center;
  }
.slick-carousel .slick-dots li {
    display: inline-block;
  }
.slick-carousel .slick-dots li button {
    transition: 0.2s background-color ease-in-out 0s;
    border: none;
    padding: 0;
    color: transparent;
    width: 10px;
    height: 10px;
    background-color: #999;
    margin-right: 10px;
    border-radius: 50%;
    border: #999 solid 2px;
  }
.slick-carousel .slick-dots li.slick-active button {
    background-color: #d85326;
    text-decoration: none;
    border: none;
    border: #d85326 solid 2px;
  }
.services_box{
    text-align: center;
    margin-bottom: 30px;
    background-color: #fff;
    color: #000;
    padding: 30px 20px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transition: .5s;
    box-shadow: 0 5px 40px 0 rgba(0,0,0,.11);
    border: 1px dashed rgba(223,67,13,.2);
}
.services_box:hover{
    background: #333;
    border-radius: 0;
    transition: .5s;
    border-radius: 10px;
    color: #fff;
}
.services_box img{
    margin-bottom: 5px;
    max-width: 100px;
}
.services_box h4{
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}
.services_box h5{
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
}
.services_box .btn-more{
    background-color: #d85326;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    padding: 7px 10px;
}
.services_box .btn-more:hover{
    text-decoration: none;
}
.bor-tb {
    border-top: 1px solid #f9f9f9;
    border-bottom: 1px solid #f9f9f9;
}
.about-image {
    background-image: url(../images/about-us.jpg);
    background-size: cover;
    background-position: 50%;
    height: 100%;
}
.about-tab {
    max-width: 620px;
    padding: 150px 0;
    margin-left: 50px;
}
.about-tab .bar {
    height: 4px;
    width: 85px;
    background: #086ad8;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 16px;
}
.about-tab .about-list-tab .tabs {
    border-bottom: 1px solid #eee;
    padding-left: 0;
    margin-bottom: 25px;
    margin-top: 30px;
}
.about-tab .about-list-tab .tabs li.current {
    border-bottom: 2px solid #086ad8;
}
.about-tab .about-list-tab .tabs li {
    margin-right: 30px;
    padding: 0 0 10px;
    display: inline-block;
}
.about-tab .about-list-tab .tabs li.current span {
    color: #086ad8;
}
.about-tab .about-list-tab .tabs li span {
    position: relative;
    cursor: pointer;
    display: block;
}
.about-tab .about-list-tab .tab_content .tabs_item .text h3 {
    font-size: 20px;
    margin-bottom: 0;
}
.fachecklist{
    max-width: 16px;
    margin-right: 10px;
}
.liststyle h3{
    font-size: 20px;
}
.liststyle ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.liststyle ul li{
    margin: 8px 0;
    font-size: 16px;
}
.about-section{
    background-color: #f6f6f6;
}
.default-btn {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    padding: 12px 36px;
    text-align: center;
    color: #ffffff;
    background: #d85326;
    border-width: 0px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
.default-btn:hover{
    text-decoration: none;
    color: #fff;
}


.banner {
    position: relative;
    height: 400px;
}
.banner__slider {
    height: 100%;
}

.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;
}
.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%);
    padding: 7px 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;
    }
}


.servicebox{
    transition: .5s;
    box-shadow: 0 5px 40px 0 rgb(0 0 0 / 11%);
    border: 1px solid rgba(223,67,13,1);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    height: 100%;
    padding-bottom: 15px;
    border-bottom: #df430d solid 4px;
}
.servicebox:hover{
    transition: .5s;
    background-color: #f6f6f6;
    box-shadow: 0 5px 40px 0 rgb(223 67 12 / 30%);
}
.servicebox img{
    width: 100%;
}
.servicebox h4{
    padding: 20px 0 5px;
    font-size: 20px;
}
.servicebox h4, .servicebox p{
    padding-left: 15px;
    padding-right: 15px;
}

.contactinfo-col{
    border: #d85326 solid 1px;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    background: #ffffff;
    min-height: 160px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.contactinfo-col .bi{
    color: #d85326;
    font-size: 36px;
}
.contactinfo-col p{
    font-size: 20px;
}
.contact-form .form-group {
    margin-top: 10px;
}

.contact-form .form-group .form-control {
    font-size: 1em;
    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: 1em;
    color: #333;
    font-weight: 300;
    border-radius: 2px;
    height: 45px !important;
}

.contact-form .form-group {
    margin-top: 10px;
}

.contact-form .form-group .form-control {
    font-size: 1em;
    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: 1em;
    color: #333;
    font-weight: 300;
    border-radius: 2px;
    height: 45px !important;
}
.contact-title .sub-title {
    font-size: 18px;
}
.contact-input {
    margin: 0 -10px;
}
.contact-input .contact-inner {
    float: left;
    margin: 0 0 20px;
    padding: 0 10px;
    width: 50%;
}
.contact-inner {
    margin: 0 0 20px;
}
.contact-inner input, .contact-inner textarea, .contact-inner select {
    width: 100%;
    color: #000;
    border-color: #fff;
    background-color: #fff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0em;
    border: none;
    width: 100%;
    outline: none;
    border: 1px solid #7993bf !important;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 5px;
    padding: 3px 20px;
    height: 56px;
}
.contact-input .contact-inner {
    float: left;
    margin: 0 0 20px;
    padding: 0 10px;
    width: 50%;
}
.contact-inner select {
    color: #777;
}
.contact-inner textarea {
    height: 150px;
    padding: 15px;
}
.contact-inner select {
    padding: 3px 20px;
    height: 56px;
    max-width: 100%;
    width: 100%;
    outline: none;
    border: 1px solid #fff;
    border-radius: 5px;
    background: #fff url(../images/selector-icon.png) no-repeat center right 20px;
    background-color: #fff;
    -moz-appearance: none;
    -webkit-appearance: none;
}


@media screen and (max-width: 550px) and (min-width: 320px) {
    .about-image {
        height: 60vh;
    }
    .about-tab {
        max-width: 620px;
        padding: 50px 20px;
        margin-left: 0px;
    }
    .about-section .text-left{
        text-align: center !important;
    }
    .about-section .text-left ul li{
        text-align: left !important;
    }
    .footer_bottom ul{
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: left !important;
    }
    .footer_bottom ul li{
        margin-bottom: 6px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .navigation-portrait .nav-search-button {
        height: 77px;
        line-height: 77px;
    }
    .navigation-portrait {
        height: 76px;
    }
    .header.is-fixed .header__logo {
        max-width: 165px;
    }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
    .homebanner .slider, .homebanner .slide {
        height: 27vh;
        overflow: hidden;
    }
    .homebanner .slide .slide__content--headings h2 {
        font-weight: 700;
        font-size: 27px;
    }
    .homebanner .slide .slide__img::before {
        width: 63%;
    }
    .homebanner .slide .slide__content--headings {
        max-width: 55%;
    }
}

.b-desktop{
    display: block !important;
}
.bannermobile{
    display: none !important;
}

@media screen and (max-width: 767px) and (min-width: 320px) {
    .b-desktop{
        display: none !important;
    }
    .bannermobile{
        display: block !important;
    } 
}

.sitemap{
    list-style-type: square;
    margin: 0;
    padding: 0;
    flex-direction: row;
    flex-wrap: wrap;
}
.sitemap li{
    width: 33%;
    padding: 10px;
}
.sitemap li a:hover{
    text-decoration: none;
    color: #000;
}