/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    background-color: #f6f6f6;
    overflow-x: hidden;
}

a {
    color: #FD9429;
}

a:hover {
    color: #ff9f3e;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #FD9429;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #ff9f3e;
    color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global for section
--------------------------------------------------------------*/
.c-title {
    font-size: 14px;
    font-weight: 100;
    padding: 15px;
    line-height: 1px;
    margin: 0 0 5px 0;
    color: #FD9429;
}

.c-s-title {
    margin: 0;
    font-size: 25px;
    font-family: "Open Sans", sans-serif;
    color: #2a2c39;
    text-align: center;
}

.c-details {
    font-size: 13px;
    color: #949494;
    display: inline-block;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: rgba(19, 55, 80, 0.9);
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    background: rgba(19, 55, 80, 0.9);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
}

#header .logo h1 a, #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 37px;
    width: auto;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #fff;
    padding: 7px 15px 7px 15px;
    margin-left: 5px;
    transition: 0.3s;
    font-size: 0.8rem;
    border-radius: 50px;
    font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    background: #FD9429;
    text-decoration: none;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
    border-radius: 15px;
    margin-top: 5px;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #2a2c39;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #ff9f3e;
    background: none;
}

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #FD9429;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #2a2c39;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #ff9f3e;
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(20, 21, 28, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    overflow: hidden;
    position: relative;
    /*background:url(../img/unsplash-1.jpg), linear-gradient(0deg, rgb(19 55 80 / 0.8) 0%, #133750 100%);*/
    background-image: linear-gradient(0deg, rgba(19, 55, 80, 0.5) 0%, #133750 100%), url(../img/unsplash-1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0;
    min-height: 625px;
    height: auto;
}

#hero video {
    object-fit: cover;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    /* height: 84vh; */
    height: 58vh;
    padding-top: 8rem;
}

#hero h2 {
    color: #fff;
    /*margin-bottom: 30px;*/
    margin-bottom: 0;
    font-size: 2.5rem;
    white-space: pre-wrap;
    width: 60%;
    text-align: center;
    display: inline-block;
}

#hero p {
    width: 80%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
}

#hero .carousel-control-prev, #hero .carousel-control-next {
    width: 10%;
    padding-top: 98px;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#hero .btn-get-started {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #FD9429;
}

#hero .btn-get-started:hover {
    background: #ff9f3e;
    color: #fff;
    text-decoration: none;
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }

    #hero .carousel-control-prev, #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-width: 768px) {
    #hero {
        height: auto;
    }

    #hero .carousel-container {
        height: auto;
        padding-top: 85px;
    }

    #hero h2 {
        font-size: 2rem;
    }

    .pt-12 {
        padding-top: 12rem !important;
    }
}

.font-size-15-rem {
    font-size: 1.5rem;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0 0 0;
    overflow: hidden;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 1rem;
    font-weight: 400;
    padding: 15px;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    /*color: #aaaaaa;*/
    /* font-family: "Poppins", sans-serif; */
    text-align: center;
    color: #FD9429;
}

.section-title h2::after {
    /*content: "";*/
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #FD9429;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 2rem;
    /* font-weight: 700; */
    /*text-transform: uppercase;*/
    font-family: "Open Sans", sans-serif;
    color: #2a2c39;
    text-align: center;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding-top: 80px;
}

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li + li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #FD9429;
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #FD9429;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #FD9429;
}

.about .content .btn-learn-more:hover {
    background: #ff9f3e;
    color: #fff;
    text-decoration: none;
}

/*@media (min-width: 992px) {*/
/*    .aboutUs-3 .about-us-icon2 {*/
/*        left: unset !important;*/
/*        right: 10rem;*/
/*        top: -20px;*/
/*    }*/
/*}*/
/*.aboutUs-3 .about-us-icon2 {*/
/*    left: 48px !important;*/
/*    right:  unset !important;*/

/*}*/
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background-color: #ffffff;
    padding: 60px 0 60px 0;
}

.services .section-title {
    padding-bottom: 15px;
}

.services .section-title h2, .services .section-title p {
    text-align: left;
    padding-left: 0;
}

.services h3 {
    font-weight: 600;
    font-size: 26px;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services ul li {
    padding-bottom: 10px;
}

.services ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #FD9429;
}

.services .tab-pane p:last-child {
    margin-bottom: 0;
}

.services ul li {
    padding-top: 15px;
}

.services ul li span.details-li {
    font-size: 14px;
    color: #949494;
    max-width: 411px;
    display: inline-block;
}

.services ul li h6 {
    font-size: 16px;
    font-weight: 600;
}

.services-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #ff9f3e;
    text-align: center;
    border-radius: 50%;
}

.services-icon img {
    width: 22px;
    height: 22px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: #2a2c39;
    padding: 80px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #FD9429;
}

.cta .cta-btn:hover {
    background: #fff;
    color: #ff9f3e;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products {
    /*background-image: linear-gradient(90deg, #338da9 0%, #265579 100%);*/
    padding: 0;
    min-height: 360px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}

.products h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.products h2 {
    color: #fff;
    font-size: 23px;
    letter-spacing: 1.5px;
    font-weight: 400;
    width: 299px;
    display: inline-block;
    min-width: unset !important;
}

.products p {
    color: #FD9429;
    font-size: 13px;
    /*letter-spacing: 2px;*/
    /*text-transform: uppercase;*/
    width: 300px;
}

.products .btn-get-started {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    /* font-weight: 700; */
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 19px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #FD9429;
    margin-top: 9px;
    margin-left: 0;
}

.products .products-btn:hover {
    background: #fff;
    color: #ff9f3e;
}

.products .carousel-indicators {
    justify-content: end;
    margin-bottom: 2.5rem;
}

.products .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 1;
    border: 1px solid #fff;
}

.products .carousel-indicators span {
    line-height: 0.8;
    color: #fff;
    padding-right: 13px;
    font-weight: 100;
}

.products .carousel-indicators li:not(.active) {
    background-color: transparent;
}

@media (max-width: 1024px) {
    .products {
        background-attachment: scroll;
        min-height: 500px
    }

    .products .btn-get-started {
        margin-top: 10px !important;
    }

    .products .carousel-indicators {
        justify-content: center;
        bottom: -65px;
    }

    .products .carousel-inner {
        text-align: center;
    }

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

@media (min-width: 769px) {
    .products .products-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100%;
}

.features .icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}

.features .icon {
    position: absolute;
    left: -20px;
    top: calc(50% - 30px);
}

.features .icon i {
    font-size: 64px;
    line-height: 1;
    transition: 0.5s;
}

.features .title {
    margin-left: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.features .title a {
    color: #2a2c39;
    transition: ease-in-out 0.3s;
}

.features .title a:hover {
    color: #ff9f3e;
}

.features .description {
    font-size: 14px;
    margin-left: 40px;
    line-height: 24px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .section-title p {
    text-align: left;
}

.portfolio .section-title p .title {
    text-align: left;
    margin-right: 5rem;
    color: #FD9429;
}

.portfolio .section-title p .details {
    font-size: 1rem;
    color: #949494;
    max-width: 411px;
    display: inline-block;
    font-weight: 100;
    font-family: "Open Sans", sans-serif;
}

.portfolio #portfolio-flters {
    list-style: none;
    margin-bottom: 40px;
    padding-left: 0;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    margin-right: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #444444;
    transition: all 0.3s ease-in-out;
    border-radius: 7px;
}

.portfolio .portfolio-info h4 {
    font-size: 16px;
    font-weight: 600;
    padding: 20px 0;
    margin-bottom: 10px;
    position: relative;
}

.portfolio .portfolio-info h4:before {
    content: '';
    position: absolute;
    bottom: 0;
    border-bottom: 2px solid #e6e6e6;
    width: 75%;
}

.portfolio .portfolio-info p {
    font-size: 14px;
    margin-bottom: 0.5rem;
    color: #8e8e8e;
}

.portfolio .portfolio-info p span:first-child {
    font-weight: 600;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background-color: #ff9f3e;
}

.portfolio #portfolio-flters li.filter-active::before, .portfolio #portfolio-flters li.filter-active::after {
    color: #ff9f3e;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
    border-radius: 7px;
    height: 320px;
}

.portfolio .portfolio-item .portfolio-img img {
    transition: all 0.8s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #fff;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #ff9f3e;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
    color: #ff9f3e;
}

/*.portfolio .portfolio-item:hover .portfolio-img img {*/
/*    transform: scale(0.95);*/
/*}*/

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
}

@media (max-width: 767px) {
    .portfolio .portfolio-item {
        text-align: center;
    }

    .portfolio .portfolio-info h4:before {
        width: 39% !important;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    /*box-sizing: content-box;*/
    padding: 30px 17px 0 17px;
    margin: 30px 15px;
    /*text-align: center;*/
    min-height: 200px;
    /*box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);*/
    border-radius: 12px;
    width: 216px;
    background-color: #fff;
    position: relative;
}

.testimonials .testimonial-item .testimonial-img {
    width: 63px;
    /*border-radius: 50%;*/
    border: 4px solid #fff;
    /*margin: 0 auto;*/
}

.testimonials .testimonial-item h3 {
    font-size: 0.97rem;
    font-weight: 600;
    margin: 20px 0 5px 0;
    color: #111;
    display: table-caption;
    width: 183px;
    line-height: 1.7;
}

.testimonials .testimonial-item h4 {
    font-size: 25px;
    color: #999;
    margin: 0;
    text-align: right;
    position: absolute;
    bottom: 7px;
    right: 13px;
}

.testimonials .testimonial-item h4 a {
    color: #999;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: #fedac0;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .owl-nav, .testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.testimonials .owl-dot.active {
    background-color: #ff9f3e !important;
}

@media (max-width: 767px) {
    .testimonials {
        margin: 30px 10px;
    }
}

.testimonials .owl-stage {
    display: -webkit-box;
}

.testimonials .owl-carousel.owl-drag .owl-item {
    width: 224px !important;
}

.testimonials .owl-carousel .owl-stage-outer {
    overflow: initial !important;
}

.owl-item, .owl-item.cloned {
    opacity: 0.3 !important;
}

.owl-item.cloned.active, .owl-item.active {
    opacity: 1 !important;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 25px -20px;
    padding: 30px 15px;
    font-size: 18px;
    font-weight: 600;
    color: #777777;
    background: #f8f8f8;
}

.pricing h4 {
    font-size: 36px;
    color: #FD9429;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing ul li {
    padding-bottom: 16px;
}

.pricing ul i {
    color: #FD9429;
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: #FD9429;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    background: #ff9f3e;
}

.pricing .featured {
    border: 2px solid #FD9429;
}

.pricing .featured h3 {
    color: #fff;
    background: #FD9429;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #FD9429;
    color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
    padding: 60px 0;
}

.faq .faq-list {
    padding: 0;
    list-style: none;
}

.faq .faq-list li {
    padding: 0 0 20px 25px;
}

.faq .faq-list a {
    display: block;
    position: relative;
    /*font-family: #ef6603;*/
    font-size: 18px;
    font-weight: 500;
}

.faq .faq-list i {
    font-size: 18px;
    position: absolute;
    left: -25px;
    top: 6px;
}

.faq .faq-list p {
    margin-bottom: 20px;
    font-size: 15px;
}

.faq .faq-list a.collapse {
    color: #ff9f3e;
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

.faq .faq-list a.collapsed:hover {
    color: #ff9f3e;
}

.faq .faq-list a.collapsed i::before {
    content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    background: #fff;
    padding: 60px 0;
}

.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
}

.team .member .social {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
}

.team .member .social a {
    transition: color 0.3s;
    color: #2a2c39;
    margin: 0 3px;
    padding-top: 7px;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    background: #FD9429;
    display: inline-block;
    transition: ease-in-out 0.3s;
    color: #fff;
}

.team .member .social a:hover {
    background: #ff9f3e;
}

.team .member .social i {
    font-size: 18px;
}

.team .member .member-info {
    padding: 25px 15px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #2a2c39;
}

.team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
}

.team .member:hover .social {
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: #FD9429;
    float: left;
    width: 44px;
    height: 44px;
    background: #ffecde;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2a2c39;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #555974;
}

.contact .info .email, .contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    background: #ff9f3e;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #FD9429;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #ff9f3e;
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    margin-top: 70px;
    background: #f7f8f9;
    min-height: 325px;
    /*background: linear-gradient(0deg, rgba(19, 55, 80, 0.5) 0%, #133750 100%), url(../img/unsplash-2.png) top no-repeat;*/
    background: url(../img/unsplash-2.png) top no-repeat;
    background-size: cover;
    text-align: center;
}

.breadcrumbs p {
    margin-top: 80px;
    color: #FD9429;
    font-size: 1rem;
}

.breadcrumbs h2 {
    font-size: 40px;
    font-weight: 400;
    margin: 0;
    color: #ffffff;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 25px 0 0 0;
    margin: 0;
    font-size: 14px;
    justify-content: center;
}

@media (max-width: 992px) {
    .breadcrumbs ol {
        margin-top: 10px;
    }
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li {
    color: #ffffff;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #ffffff;
    content: ">";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
    position: relative;
}

.portfolio-details .portfolio-details-carousel {
    position: relative;
    z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #FD9429 !important;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: -70px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
    width: 50%;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0 0 0 0;
}

@media (max-width: 768px) {
    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #113650;
    color: #fff;
    font-size: 14px;
    /*text-align: center;*/
    padding: 30px 0;
}

#footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: "Open Sans", sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer p {
    font-size: 15px;
    font-style: italic;
    padding: 0;
    margin: 0 0 40px 0;
}

#footer .social-links {
    margin: 0 0 40px 0;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    color: #ff9f3e;
    text-decoration: none;
}

#footer .copyright {
    margin: 0 0 5px 0;
}

#footer .credits {
    font-size: 13px;
    text-align: center;
}

#footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

#footer .subscribe {
    line-height: 2.5;
    text-align: center;
    display: block;
}

#footer .subscribe-form {
    justify-items: center;
    display: inline-flex;
}

#footer .subscribe-form input {
    font-size: 13px;
    height: auto;
    border: 0;
}

#footer .subscribe-form button {
    font-size: 13px;
}

#footer .footer-logo {
    max-width: 85px;
}

#footer .footer-p-details {
    margin: 20px 0 40px 0;
    font-size: 12px;
    font-style: normal;
}

#footer .contact-us span {
    display: block;
    padding-top: 5px;
    font-size: 13px;
    font-style: normal;
}

#footer .useful-links ul {
    list-style-type: none;
}

#footer .useful-links ul li {
    padding-top: 4px;
}

#footer .useful-links ul li a {
    color: #ffffff;
    font-size: 13px;
}

#footer.inner-page {
    background: #ffffff;
    color: #949494;
    font-size: 14px;
    /*text-align: center;*/
    padding: 30px 0;
}

#footer.inner-page h3 {
    font-size: 36px;
    font-weight: 700;
    color: #949494;
    position: relative;
    font-family: "Open Sans", sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer.inner-page h6 {
    font-weight: 600;
    color: #0c3a59;
}

#footer.inner-page p {
    font-size: 15px;
    font-style: italic;
    padding: 0;
    margin: 0 0 40px 0;
}

#footer.inner-page .social-links {
    margin: 0 0 40px 0;
}

#footer.inner-page .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #949494;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer.inner-page .social-links a:hover {
    color: #ff9f3e;
    text-decoration: none;
}

#footer.inner-page .copyright {
    margin: 0 0 5px 0;
}

#footer.inner-page .credits {
    font-size: 13px;
    text-align: center;
}

#footer.inner-page hr {
    border-top: 1px solid #c9c9c9;
}

#footer.inner-page .subscribe {
    line-height: 2.5;
    text-align: center;
    display: block;
}

#footer.inner-page .subscribe-form {
    justify-items: center;
    display: inline-flex;
}

#footer.inner-page .subscribe-form input {
    font-size: 13px;
    height: auto;
    /*border: 0;*/
}

#footer.inner-page .subscribe-form input[type="text"] {
    border: 1px solid #ebebeb !important;
}

#footer.inner-page .subscribe-form button {
    font-size: 13px;
}

#footer.inner-page .footer-logo {
    max-width: 85px;
    height: auto;
}

#footer.inner-page .footer-p-details {
    margin: 20px 0 40px 0;
    font-size: 0.8rem;
    font-style: normal;
}

#footer.inner-page .contact-us span {
    display: block;
    padding-top: 5px;
    font-size: 13px;
    font-style: normal;
}

#footer.inner-page .useful-links ul {
    list-style-type: none;
}

#footer.inner-page .useful-links ul li {
    padding-top: 4px;
}

#footer.inner-page .useful-links ul li a {
    color: #949494;
    font-size: 13px;
}


#hero .social-links a {
    color: #ffffff;
    padding: 0 10px;
}

#hero .social-links a:hover {
    color: #ff9f3e;
}

#hero fieldset {
    min-width: unset !important;
    padding: 20px !important;
    margin: unset !important;
    border: 1px solid #ccc !important;
    transform: rotate(180deg) !important;
}

#hero fieldset * {
    transform: rotate(180deg);
}

#hero legend {
    font-size: 1rem;
    color: #FD9429;
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
}

#header .cta-btn {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-block;
    padding: 7px 30px;
    border-radius: 50px;
    color: #fff;
    background: #FD9429;
}

#header .cta-btn:hover {
    background: #fff;
    color: #ff9f3e;
}

.statistics * {
    font-family: sans-serif !important;
}

.statistics p {
    width: auto !important;
}

/*--------------------------------------------------------------
# Ourclient
--------------------------------------------------------------*/
#ourclient {
    /*background: linear-gradient(0deg, #ffffff 0%, #f9f9f9 25%, #f9f9f9 50%, #f9f9f9 75%, #ffffff 100%);*/
    background-image: url("../img/random-square-halftone-pattern_1409-1062.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #113650;
    padding-bottom: 60px;
}

.ourclient .ourclient-item {
    background-color: #fff;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    padding: 10px;
    margin: 15px;
    width: 239px;
    height: 97px;
}

.ourclient .ourclient-item img {
    max-height: 76px;
    height: auto;
    max-width: 200px;
    width: auto;
    margin: 0 auto;
}

.ourclient p.details {
    font-size: 14px;
    color: #949494;
    max-width: 285px;
    display: inline-block;
}

.ourclient .section-title h2,
.ourclient .section-title p {
    text-align: left;
    padding-left: 0;
}

.ourclient .btn-get-started {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    /* font-weight: 700; */
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 26px;
    border-radius: 9px;
    transition: 0.5s;
    margin: 10px 10px 10px 0;
    color: #fff;
    background: #FD9429;
    margin-top: 62px
}

/*--------------------------------------------------------------
# HappyClient
--------------------------------------------------------------*/
.happyClient {
    background: #ffffff;
    padding-bottom: 60px;
    min-height: 588px;
    background: url(../img/happyClient205.png) no-repeat center;
    background-size: 100%;
    background-position: center 83px;
}

.happyClient .container {

}

.happyClient .comma {
    font-family: arial, sans-serif;
    font-size: 75px;
    letter-spacing: -5px;
    color: #FD9429;
    display: block;
    line-height: 1;
    /* padding-top: 57px; */
    height: 13px;
    z-index: 3;
    position: relative;
    left: -25px;
    top: -15px
}

.happyClient .section-title .details {
    font-size: 13px;
    color: #949494;
    max-width: 630px;
    display: inline-block
}

.happyClient .client-details img {
    max-width: 68px;
    max-height: 68px;
    width: auto;
    height: auto;
    border-radius: 50%;
}
.happyClient .happyClient-item.slick-slide.slick-current img {
    max-width: 115px !important;
    max-height: 115px !important;
}
.happyClient .owl-stage {
    display: flex;
}

.happyClient .happyClient-item.slick-current {
    /*margin: 0 15px;*/
    text-align: center;
    padding-top: 21px !important;
}
.happyClient .happyClient-item {
    /*margin: 0 15px;*/
    text-align: center;
    padding-top: 42px !important;
    min-height: 165px;
}
.happyClient .owl-item.active.center {
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 15px;
}

.happyClient .client-details .happyClient-position {
    display: block;
    font-size: 12px;
    text-align: center;
}

.happyClient .client-details .happyClient-name {
    display: block;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    padding-top: 15px;
}

.happyClient .owl-item, .happyClient .owl-item.active {
    opacity: 0.3 !important;
}

.happyClient .happyClient-details-carousel .owl-item.active {
    opacity: 1 !important;
}

.happyClient .happyClient-details-carousel .owl-item {
    display: inline-flex;
}

.happyClient .owl-item .happyClient-name,
.happyClient .owl-item .happyClient-position,
.happyClient .owl-item.active .happyClient-name,
.happyClient .owl-item.active .happyClient-position {
    display: none;
}

.happyClient .owl-item.active.center {
    opacity: 1 !important;
}

.happyClient .owl-item.active.center .happyClient-name,
.happyClient .owl-item.active.center .happyClient-position {
    display: block;
}

.happyClient .owl-item.active.center img {
    max-width: 85px;
    max-height: 85px;
    width: auto;
    height: auto;
}

/*--------------------------------------------------------------
# Last News
--------------------------------------------------------------*/
.lastNews {
    /*background: #fff;*/
    padding: 60px 0;
}

.lastNews .member {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    /*background: #fff;*/
}

.lastNews .member .member-img {
    position: relative;
    overflow: hidden;
}

.lastNews .member .member-img img {
    max-height: 200px;
}

.lastNews .member .social {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
}

.lastNews .member .social a {
    transition: color 0.3s;
    color: #2a2c39;
    margin: 0 3px;
    padding-top: 7px;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    background: #FD9429;
    display: inline-block;
    transition: ease-in-out 0.3s;
    color: #fff;
}

.lastNews .member .social a:hover {
    background: #ff9f3e;
}

.lastNews .member .social i {
    font-size: 18px;
}

.lastNews .member .member-info {
    padding: 25px 15px 25px 0;
}

.lastNews .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 13px;
    color: #2a2c39;
}

.lastNews .member .member-info p {
    font-size: 14px;
    color: #777777;
}

.lastNews .member:hover .social {
    opacity: 1;
    bottom: 15px;
}

.lastNews .badge {
    padding: 0.5em 3em;
    border-radius: 16px;
    font-weight: 100;
    margin-right: 15px;
    font-size: 12px;
}

.lastNews .member-info span.details {
    font-size: 13px;
    color: #949494;
}

/**
COLORS
 */
.text-warning {
    color: #FD9429 !important;
}

a.text-warning:focus, a.text-warning:hover {
    color: #ff9f3e !important;
}

.btn-warning {
    color: #ffffff;
    background-color: #FD9429;
    border-color: #FD9429;
}

.btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active, .show > .btn-warning.dropdown-toggle {
    color: #ffffff;
    background-color: #ff9f3e;
    border-color: #ff9f3e;
}

.btn-warning.focus, .btn-warning:focus, .btn-warning:hover {
    color: #ffffff;
    background-color: #ff9f3e;
    border-color: #ff9f3e;
}

.text-warning-cc {
    color: #FD9429;
}

.btn-outline-warning {
    color: #FD9429;
    border-color: #FD9429;
}

.btn-outline-warning:hover {
    color: #ffffff;
    background-color: #ff9f3e;
    border-color: #ff9f3e;
}

.btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active, .show > .btn-outline-warning.dropdown-toggle {
    color: #ffffff;
    background-color: #ff9f3e;
    border-color: #ff9f3e;
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus,
.btn-outline-warning.focus, .btn-outline-warning:focus {
    box-shadow: none;
}

.text-primary-2 {
    color: #62aeff !important;
}

/**
Radius
 */
.border-radius-right-0 {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.border-radius-left-0 {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

@media (max-width: 767px) {
    .text-sm-center {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .text-sm-center {
        text-align: initial !important;
    }
}

/* **************************************
              Sub Pages
************************************** */
.sub-pages .nav-menu a {
    color: #000000;
}

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

#header.sub-pages {
    background: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.servicesPage {
    padding: 60px 0;
    background: linear-gradient(0deg, #ffffff 0%, #f6f6f6 25%, #f6f6f6 75%, #ffffff 100%);
}

.servicesPage .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100%;
}

.servicesPage .icon-box .icon img {
    width: 60px;
}

.servicesPage .icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}

/*.servicesPage .icon {*/
/*  position: absolute;*/
/*  left: -20px;*/
/*  top: calc(50% - 30px);*/
/*}*/

.servicesPage .icon i {
    font-size: 64px;
    line-height: 1;
    transition: 0.5s;
}

.servicesPage .title {
    font-size: 14px;
    font-weight: bold;
    margin: 20px 0 5px 0;
    color: #000;
    display: table-caption;
    width: 96px;
    line-height: 1.7;
}

.servicesPage .title a {
    color: #2a2c39;
    transition: ease-in-out 0.3s;
}

.services .title a:hover {
    color: #ff9f3e;
}

.servicesPage .description {
    margin: 20px 0 5px 0;
    font-size: 12px;
    line-height: 24px;
    color: #949494;
}

/*--------------------------------------------------------------
# Products Page
--------------------------------------------------------------*/
.productsPage {
    padding-bottom: 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 25%, #f6f6f6 90%, #ffffff 100%);
}

.productsPage .section-title p {
    max-width: 595px;
}

.productsPage .product-container {
    background-color: #ffffff;
    padding: 50px 50px 0 50px;
    text-align: center;
}

.productsPage > .product-container > .row > .col-md-4:first-child {
    padding-left: 40px;
}

.productsPage > .product-container > .row > .col-md-4:last-child {
    padding-right: 40px;
}

.productsPage .cta-btn {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    padding: 9px 40px;
    border-radius: 50px;
    color: #fff;
    background: #FD9429;
}

.productsPage .img-fixed-width {
    max-width: 630px;
    width: 100%;
}

.productsPage.productsPage-2 {
    /*margin-bottom: 60px;*/
    background: #113650;
}

.productsPage.productsPage-2 .section-title p {
    max-width: 595px;
}

.productsPage.productsPage-2 .product-container {
    background-color: transparent;
    padding: 50px 50px 0 50px;
    text-align: center;
}

.productsPage.productsPage-2 .product-container .c-s-title,
.productsPage.productsPage-2 .product-container .c-details {
    color: #ffffff;
}

.productsPage.productsPage-2 > .product-container > .row > .col-md-4:first-child {
    padding-left: 40px;
}

.productsPage.productsPage-2 > .product-container > .row > .col-md-4:last-child {
    padding-right: 40px;
}

.productsPage.productsPage-2 .cta-btn {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    padding: 9px 40px;
    border-radius: 50px;
    color: #fff;
    background: #FD9429;
}

.productsPage.productsPage-2 .img-fixed-width {
    max-width: 630px;
    width: 100%;
}

/*--------------------------------------------------------------
# Careers Page
--------------------------------------------------------------*/
.careersPage {
    background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
}

.careersPage .section-title p .title {
    max-width: 260px;
}

.careersPage .section-title p .details {
    font-size: 13.5px;
    color: #949494;
    max-width: 545px;
    display: inline-block;
    font-weight: 100;
    font-family: "Open Sans", sans-serif;
}

/*--------------------------------------------------------------
# Careers Page sections
--------------------------------------------------------------*/
.careersPage-sections {
    background: url(../img/wave.svg) no-repeat;
    min-height: 120px;
    height: auto;
}

.careersPage-sections .main-icon {
    background-color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: inline-flex;
}

.careersPage-sections .number {
    color: #949494;
    font-size: 13px;
    padding-top: 10px;
}

.careersPage-sections .title {
    color: #000000;
    font-size: 13px;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Careers Page search
--------------------------------------------------------------*/
.careersPage-search {
    padding-bottom: 60px;
    background: linear-gradient(180deg, #f6f6f6 0%, #f6f6f6 90%, #ffffff 100%);
}

.careersPage-search .card {
    border: 0;
    border-radius: 10px;
}

.careersPage-search .card .card-body {
    padding: 2rem;
}

.careersPage-search .card .card-body .card-title {
    font-weight: 600;
}

.careersPage-search .card .card-body .card-subtitle {
    font-size: 12px;
}

.careersPage-search .card .card-body .card-subtitle .time {
    color: #FD9429;
    background-color: #ef660312;
    padding: 3px 10px;
    border-radius: 3px;
}

.careersPage-search .card .card-body .card-text {
    color: #949494;
    font-size: 13px;
    min-height: 75px;
}

.careersPage-search .card .card-body a {
    border-radius: 10px;
}

/*--------------------------------------------------------------
# Career Details
--------------------------------------------------------------*/
.careerDetails {
    padding-bottom: 60px;
    background: linear-gradient(180deg, #f6f6f6 0%, #f6f6f6 90%, #ffffff 100%);
}

.careerDetails .career-left-details,
.careerDetails .career-right-details-1,
.careerDetails .career-right-details-2 {
    background-color: #ffffff;
    margin-top: 15px;
}

.careerDetails .career-right-details-1,
.careerDetails .career-right-details-2 {
    font-size: 12px;
}

.careerDetails .time {
    color: #FD9429;
    background-color: #ef660312;
    padding: 3px 10px;
    border-radius: 3px;
}

.careerDetails .text-muted {
    font-size: 12px;
}

.careerDetails .text-muted span {
    margin-right: 40px;
}

.careerDetails .content-title {
    font-size: 14px;
}

.careerDetails .content-details {
    line-height: 1.9;
}

.careerDetails ul {
    padding-inline-start: 13px;
}

.careerDetails .career-right-details-title {
    font-size: 14px;
}

.careerDetails .dash {
    position: relative;
}

.careerDetails .dash:before {
    content: '';
    position: absolute;
    bottom: -1px;
    border-bottom: 2px solid #FD9429;
    width: 35%;
}

.border-radius-10 {
    border-radius: 10px;
}

.font-size-12 {
    font-size: 0.8rem !important;
}

.font-size-14 {
    font-size: 1.2rem !important;
}

.font-size-20 {
    font-size: 20px !important;
}

.margin-left-80 {
    margin-left: 80px;
}

.margin-left-24 {
    margin-left: 24px;
}

/*--------------------------------------------------------------
# Contact Us page
--------------------------------------------------------------*/
.contactUs-first-details {
    position: relative;
    padding-top: 0;
    overflow: initial;
    background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 50%, #f6f6f6 75%, #ffffff 100%);
    min-height: 200px;
}

.contactUs-first-details .contactUs-details-container {
    /*position: absolute;*/
    /*width: 100%;*/
    background-color: #ffffff;
    min-height: 50px;
    margin-top: -20px;
    text-align: center;
}

.contactUs-first-details .contactUs-circle {
    text-align: center;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background-color: #FD9429;
    color: #ffffff;
    display: inline-block;
    font-size: 41px;
    margin-bottom: 20px;
}

.contactUs-first-details .v-dash {
    position: relative;
}

.contactUs-first-details .v-dash:before {
    content: '';
    position: absolute;
    top: 20px;
    border-right: 1px solid #ccc;
    height: 75%;
    right: 0;
}

.contactUs-second-details {
    background-color: #ffffff;
}

.contactUs-second-details .section-title p {
    max-width: 377px;
}

.input-icon {
    position: absolute;
    top: 4px;
    right: 10px;
    color: #FD9429;
}

.contactUs-third-details {
    padding-top: 0;
    height: 350px;
}

/*--------------------------------------------------------------
# About Us page
--------------------------------------------------------------*/
.aboutUs {
    background-color: #ffffff;
}

.aboutUs .max-width-395 {
    width: 395px;
    line-height: 2;
}

.aboutUs .img-first-section {
    text-align: center;
    width: 415px;
    height: 415px;
    overflow: hidden;
    border-radius: 50%;
    /*position: relative;*/
}

.aboutUs .img-first-section:before {
    content: ' ';
    background-image: url(../img/half-c.png);
    background-size: 400px;
    background-repeat: no-repeat;
    position: absolute;
    top: 30px;
    right: 6%;
    width: 415px;
    height: 415px;
}

@media (max-width: 767px) {
    .aboutUs .img-first-section {
        text-align: center;
        width: 315px;
        height: 315px;
        overflow: hidden;
        border-radius: 50%;
        /*position: relative;*/
    }

    .aboutUs .img-first-section:before {
        content: ' ';
        background-image: url(../img/half-c.png);
        background-size: 300px;
        background-repeat: no-repeat;
        position: absolute;
        top: 30px;
        right: 6%;
        width: 315px;
        height: 315px;
    }
}

.aboutUs-3 {
    background-color: #113650;
    padding: 0;
    min-height: 500px;
}

.aboutUs-3 .container {
    background-image: url(../img/about-3-bg.png);
    background-repeat: no-repeat;
    background-position: 60% bottom;
    background-size: 100%;
    height: 100%;
}

/*.aboutUs-3 .portfolio-container{*/
/*  max-width: 770px;*/
/*}*/
.aboutUs-3 .portfolio-item {
    margin-bottom: 20px;
    margin-left: 60px;
}

.aboutUs-3 .portfolio-item .portfolio-img {
    overflow: hidden;
    border-radius: 7px;
    padding: 20px;
}

.aboutUs-3 .portfolio-item .portfolio-img img {
    transition: all 0.8s ease-in-out;
}

.aboutUs-3 .portfolio-item:hover .portfolio-img img {
    transform: scale(1.2);
}

@media (max-width: 767px) {
    .aboutUs-3 .portfolio-item {
        text-align: center;
    }

    .aboutUs-3 .portfolio-item {
        margin-bottom: 5px;
    }

    .aboutUs-3 .portfolio-item .portfolio-img {
        overflow: hidden;
        border-radius: 7px;
        padding: 5px;
    }
}

.aboutUs-2 {
    background-image: url(../img/about-2-bg.png), linear-gradient(0deg, #ffffff 0%, #f6f6f6 25%, #f6f6f6 50%, #f6f6f6 75%, #ffffff 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0;
    min-height: 500px;
    height: auto;
}

.aboutUs-2 .d-1 {
    padding: 20px;
    text-align: center;
    width: 200px;
    height: 200px;
    /*border-radius: 50%;*/
    /*background-color: #FFFFFF;*/
    font-size: 3rem;
    z-index: 4;
}

@media (max-width: 767px) {
    .aboutUs-2 .d-1 {
        padding: 20px;
        text-align: center;
        width: 179px;
        height: 179px;
        /*border-radius: 50%;*/
        /*background-color: #FFFFFF;*/
        font-size: 2rem;
        z-index: 4;
    }
    .img-circle {
        width: auto !important;
        height: auto !important;
    }
    .aboutUs-2 .d-2 {
        margin-right: auto !important;
    }
    .w-git{
        margin-top: -44px !important;
        margin-right: 45px;
    }
    .w-android{
        margin-right: 71px !important;
    }
    .w-vuejs{
        margin-top: -202px;
    }
    .footer-p-details{
        text-align: center !important;
    }
}
@media (min-width: 768px) {
    .aboutUs-2 .d-2 {
        margin-right: 20% !important;
    }
}
.aboutUs-2 .d-2 {
    padding: 20px;
    text-align: center;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: transparent;
    /*border: 1px dashed #898989;*/
    direction: ltr;
    float: right;
}

.aboutUs-2 .d-2 .data-01 {
    position: absolute;
    top: -90px;
    left: 116px;
}

.aboutUs-2 .d-2 .data-01 .number {
    display: block;
    color: #37C827;
    font-size: 1rem;
}

.aboutUs-2 .d-2 .data-01 .title {
    display: block;
    color: #6c757d;
    font-size: 1rem;
    padding-top: 5px;
    padding-bottom: 5px;
}

.aboutUs-2 .d-2 .data-01 .circle {
    /*background-color: #37C827;*/
    width: 70px;
    height: 70px;
    /*border-radius: 50%;*/
    position: relative;
}

.aboutUs-2 .d-2 .data-01 .circle:after {
    content: "";
    background-color: #37C827;
    width: 70px;
    height: 70px;
    -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    position: absolute;
    top: -4px;
    left: 0;
}

.aboutUs-2 .d-2 .data-02 {
    position: absolute;
    top: 43px;
    right: -198px;
    text-align: left;
}

.aboutUs-2 .d-2 .data-02 .number {
    display: block;
    color: #F8C90D;
    font-size: 1rem;
    padding-left: 10px;
}

.aboutUs-2 .d-2 .data-02 .title {
    display: block;
    color: #6c757d;
    font-size: 1rem;
    padding: 5px;
    padding-left: 10px;
    max-width: 80%;
}

.aboutUs-2 .d-2 .data-02 .circle {
    /*background-color: #F8C90D;*/
    width: 70px;
    height: 70px;
    /*border-radius: 50%;*/
}
.aboutUs-2 .d-2 .data-02 .circle:after {
    content: "";
    background-color: #F8C90D;
    width: 70px;
    height: 70px;
    -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    position: absolute;
    top: 0;
    left: 0;
}
.aboutUs-2 .d-2 .data-03 {
    position: absolute;
    bottom: 29px;
    right: -187px;
    text-align: left;
}

.aboutUs-2 .d-2 .data-03 .number {
    display: block;
    color: #113CE9;
    font-size: 1rem;
    padding-left: 10px;
}

.aboutUs-2 .d-2 .data-03 .title {
    display: block;
    color: #6c757d;
    font-size: 1rem;
    padding: 5px;
    padding-left: 10px;
    max-width: 80%;
}

.aboutUs-2 .d-2 .data-03 .circle {
    /*background-color: #113CE9;*/
    width: 70px;
    height: 70px;
    /*border-radius: 50%;*/
}
.aboutUs-2 .d-2 .data-03 .circle:after {
    content: "";
    background-color: #113CE9;
    width: 70px;
    height: 70px;
    -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    position: absolute;
    top: 0;
    left: 0;
}
.aboutUs-2 .d-2 .data-04 {
    position: absolute;
    bottom: -96px;
    left: 104px;
}

.aboutUs-2 .d-2 .data-04 .number {
    display: block;
    color: #F92C48;
    font-size: 1rem;
}

.aboutUs-2 .d-2 .data-04 .title {
    display: block;
    color: #6c757d;
    font-size: 1rem;
    padding-top: 5px;
    padding-bottom: 5px;
}

.aboutUs-2 .d-2 .data-04 .circle {
    /*background-color: #F92C48;*/
    width: 70px;
    height: 70px;
    /*border-radius: 50%;*/
}
.aboutUs-2 .d-2 .data-04 .circle:after {
    content: "";
    background-color: #F92C48;
    width: 70px;
    height: 70px;
    -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    position: absolute;
    top: unset;
    left: unset;
}

.aboutUs-2 .d-2 .data-05 {
    position: absolute;
    bottom: 25px;
    left: -156px;
    text-align: right;
}

.aboutUs-2 .d-2 .data-05 .number {
    display: block;
    color: #FD9429;
    font-size: 1rem;
    padding-right: 15px;
}

.aboutUs-2 .d-2 .data-05 .title {
    display: block;
    color: #6c757d;
    font-size: 1rem;
    padding: 5px;
    max-width: 95%;
}

.aboutUs-2 .d-2 .data-05 .circle {
    /*background-color: #FD9429;*/
    width: 70px;
    height: 70px;
    /*border-radius: 50%;*/
}
.aboutUs-2 .d-2 .data-05 .circle:after {
    content: "";
    background-color: #FD9429;
    width: 70px;
    height: 70px;
    -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    position: absolute;
    top: unset;
    left: unset;
}

.aboutUs-2 .d-2 .data-06 {
    position: absolute;
    top: 39px;
    left: -168px;
    text-align: right;
}

.aboutUs-2 .d-2 .data-06 .number {
    display: block;
    color: #C229D9;
    font-size: 1rem;
    padding-right: 15px;
}

.aboutUs-2 .d-2 .data-06 .title {
    display: block;
    color: #6c757d;
    font-size: 1rem;
    padding: 5px;
    max-width: 95%;
}

.aboutUs-2 .d-2 .data-06 .circle {
    /*background-color: #C229D9;*/
    width: 70px;
    height: 70px;
    /*border-radius: 50%;*/
}
.aboutUs-2 .d-2 .data-06 .circle:after {
    content: "";
    background-color: #C229D9;
    width: 70px;
    height: 70px;
    -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    position: absolute;
    top: unset;
    left: unset;
}
.aboutUs-2 .d-2 .data-01,
.aboutUs-2 .d-2 .data-02,
.aboutUs-2 .d-2 .data-03,
.aboutUs-2 .d-2 .data-04,
.aboutUs-2 .d-2 .data-05,
.aboutUs-2 .d-2 .data-06 {
    cursor: pointer;
    z-index: 5;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from {
        display: none;
    }
    to {
        display: block;
    }
}

.data-slider {
    display: none;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
    animation: fadein 2s;
}

.data-slider.active {
    display: block;
}

/*.aboutUs-2 .d-2 .data-01 .circle,*/
/*.aboutUs-2 .d-2 .data-02 .circle,*/
/*.aboutUs-2 .d-2 .data-03 .circle,*/
/*.aboutUs-2 .d-2 .data-04 .circle,*/
/*.aboutUs-2 .d-2 .data-05 .circle,*/
/*.aboutUs-2 .d-2 .data-06 .circle{*/
/*  padding: 1.2rem;*/
/*}*/
/*.aboutUs-2 .d-2 .data-01 .circle img,*/
/*.aboutUs-2 .d-2 .data-02 .circle img,*/
/*.aboutUs-2 .d-2 .data-03 .circle img,*/
/*.aboutUs-2 .d-2 .data-04 .circle img,*/
/*.aboutUs-2 .d-2 .data-05 .circle img,*/
/*.aboutUs-2 .d-2 .data-06 .circle img{*/
/*  width: 100%;*/
/*  height: auto;*/
/*}*/
.d-2-data-logo img {
    height: auto;
    width: 1.5rem;
}

.min-h-58ex {
    height: 58ex;
}

@media (max-width: 767px) {
    .aboutUs-2 .d-2 {
        width: 262px !important;
        height: 262px !important;
    }

    .aboutUs-2 .d-2 .data-01 {
        top: -90px !important;
        left: 93px !important;
    }

    .aboutUs-2 .d-2 .data-04 {
        bottom: -90px !important;
        left: 85px !important;
    }
    .aboutUs-2 .d-2 .data-06 {
        top: 26px !important;
        left: -174px !important;
    }
    .aboutUs-2 .d-2 .data-02 {
        top: 29px !important;
        right: -198px !important;
    }
    .aboutUs-2 .d-2 .data-05 {
        bottom: 21px !important;
        left: -163px !important;
    }
    .d-slider-section .title {
        visibility: hidden;
    }

    .min-h-58ex {
        height: 40ex;
    }
    .hex4:before {
        width: 295px !important;
        height: 295px !important;
        top: -19px !important;
        left: -20px !important;
    }
    .hex4:after {
        width: 293px !important;
        height: 293px !important;
        top: -18px !important;
        left: -19px !important;
    }
}

.padding-top-6-rem {
    padding-top: 6rem !important;
}

@media (min-width: 1024px) {
    .title-fluid-h2 {
        min-width: 404px !important;
    }

    .img-fluid-p {
        max-width: 87% !important;
    }

    .pl-88 {
        padding-left: 45px !important;
    }
}

.img-fluid-p {
    max-width: 100%;
}

.title-fluid-h2 {
    min-width: unset;
}

.carousel-indicators {
    margin-right: 23%;
    margin-left: 23%;
}

.pl-88 {
    padding-left: 0;
}

.empty-space {
    max-width: 162px;
    background-color: #fff1e1 !important;
}

/*******************
Happy client slider

********************/
.happyClient-details-carousel.slider-for {
    max-width: 635px;
    text-align: center;
    margin: 0 auto;
}

.happyClient-details-carousel .slick-slide {
    float: unset !important;
}

.happyClient-carousel.slider-nav button {
    display: none !important;
}

.happyClient .happyClient-carousel .happyClient-item.slick-slide {
    /*opacity: 0.6;*/
    padding-top: 0;
    transition: 20ms opacity linear, 20ms padding-top linear;
}

.happyClient-carousel .slick-active.slick-center {
    /*padding-top: 38px !important;*/
    opacity: 1 !important;
}

.happyClient .happyClient-carousel .slick-active.slick-center .client-details img {
    max-width: 84px;
    max-height: 84px;
}

.font-size-08rem {
    font-size: 1rem !important;
}

.modal .input-group-text {
    border-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}

.isotope-pager {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
}

.isotope-pager .pager {
    margin: 10px;
}

.isotope-pager .pager span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fd9429;
    display: inline-block;
}

.isotope-pager .pager:hover span, .isotope-pager .pager.active span {
    background-color: #fd9429;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #fd9429;
    border-color: #fd9429;
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #fd9429;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    z-index: 2;
    color: #fd9429;
    text-decoration: none;
    background-color: #efefef;
    border-color: #dee2e6;
}

a:focus {
    outline: 0;
}

.feature-main-img {
    min-height: 100%;
}

@media (max-width: 768px) {
    .feature-main-img {
        min-height: auto !important;
    }

    .products .carousel .carousel-item {
        min-height: 464px !important;
        background-position: right bottom;
        background-size: 100%;
    }

    .products .carousel {
        width: 100% !important;
    }
}

@media (min-width: 767.9px) {
    .products .carousel-indicators {
        width: fit-content;
        height: fit-content;
        top: 90%;
    }

    .products .carousel-container .product-logo-z {
        /*margin-top: 48px;*/
        margin-top: 80px;
    }
}
@media (max-width: 767.8px) {
    .products .carousel-container .product-logo-z {
        margin-top: 40px;
    }
}
.products .carousel {
    width: 64%;
}

.product-logo-z img {
    /*max-width: 200px;*/
    max-height: 59px;
}

.products .carousel .carousel-item {
    /*background-image: url(http://ts2g.tld/uploads/products/3879191.png);*/
    height: 100%;
    min-height: 383px;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
}

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

.img-circle {
    /*width: auto;*/
    /*height: 25%;*/
    /*display: block;*/
    /*margin-top: 9% !important;*/
    width: auto;
    height: 155%;
    display: block;
    margin-top: -45px !important;
    margin-left: -28px;
}

.ml-64 {
    margin-left: 64px !important;
}

@media (min-width: 1367px) {
    .mt-c {
        margin-top: 3rem !important;
    }
}

@media (max-width: 1366px) {
    .mt-c {
        margin-top: 1rem !important;
    }
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.w-anguler {
    width: 175px;
    height: 87px;
    background-color: #ffffff;
    border-radius: 7px;
    overflow: hidden;
}

.w-android {
    width: 100px;
    height: 88px;
    background-color: #ffffff;
    border-radius: 7px;
    overflow: hidden;
}

.w-vuejs {
    width: 170px;
    height: 149px;
    background-color: #ffffff;
    border-radius: 7px;
    overflow: hidden;
}

.w-git {
    width: 176px;
    height: 97px;
    background-color: #ffffff;
    border-radius: 7px;
    overflow: hidden;
}

.w-react {
    width: 100px;
    height: 88px;
    background-color: #ffffff;
    border-radius: 7px;
    overflow: hidden;
}

/***************** animations ****************************/
/* Enter and leave animations can use different */
/* durations and timing functions.              */
.loader-transition-enter-active, .l-loader-transition-enter-active {
    transition: all 2s ease-in-out;
}
.loader-transition-leave-active, .l-loader-transition-leave-active {
    transition: all 2s ease-in-out;
}
.loader-transition-enter, .loader-transition-leave-to
    /* .slide-fade-leave-active below version 2.1.8 */ {
    transform: translateX(10px);
    opacity: 0;
}
.l-loader-transition-enter, .l-loader-transition-leave-to
    /* .slide-fade-leave-active below version 2.1.8 */ {
    transform: translateX(-10px);
    opacity: 0;
}
.bounce-enter-active {
    animation: bounce-in .5s;
}

.bounce-leave-active {
    animation: bounce-in .5s reverse;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

/******************* hex4 *************************/
.hex4:before {
    content: "";
    background: #454545;
    -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    width: 340px;
    height: 340px;
    position: absolute;
    top: -19px;
    left: -20px;
    z-index: 1;
}

.hex4:after {
    content: "";
    background: #f6f6f6;
    -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    width: 338px;
    height: 338px;
    position: absolute;
    top: -18px;
    left: -19px;
    z-index: 2;
}
.contactUs-second-details .form-control{
    border: 1px solid #fd9429;
}
.form-control:focus {
    border-color: #fd9429;
    box-shadow: 0 0 0 0.2rem rgb(253 148 41 / 25%);
}
.f-s-50px{
    font-size: 50px;
}
.f-s-20px{
    font-size: 20px;
}
.section-statistics-card{
    z-index: 11;
    margin-top: -136px;
    padding-bottom: 15px;
    position: relative;
    background: none;
}
.statistics-card{
    background-color: #ffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 5px 0 #828080;
}
.OurServices-tabs.nav-tabs .nav-item.show .nav-link, .OurServices-tabs.nav-tabs .nav-link.active{
    color: #FD9429;
    background-color: transparent;
    border-bottom: 2px solid #FD9429;
}
.OurServices-tabs.nav-tabs .nav-link {
    border: 0;
    border-radius: 0 !important;
    border-bottom: 2px solid #E1E1E1;
}
.OurServices-tabs.nav-tabs a.nav-link:hover{
    color: #FD9429 !important;
    text-decoration: none;
}
.OurServices-tabs.nav-tabs a.nav-link {
    color: #113650;
}
.OurServices-tabs.nav-tabs{
    border: 0;
}
.ourclient .companies-carousel .ourclient-item {
    background-color: #fff;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    padding: 10px;
    margin: 15px;
    width: auto;
    height: 97px;
}
.ourclient .companies-carousel .ourclient-item img {
    margin: auto auto;
}
.portfolio-img .portfolio-info{
    background: rgba(68,68,68,0.67);
    position: absolute;
    padding: 10px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding-top: 33px;
}
.portfolio-img .portfolio-info p{
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
}
.portfolio-img:hover .portfolio-info{
    opacity: 1;
}
.service-box{
    box-shadow: 0 2px 12px rgb(0 0 0 / 8%);
    border-radius: 12px;
    padding: 30px 20px;
    background-color: #fff;
    position: relative;
}
.text-end{
    text-align: end;
}
.text-D5D5D5{
    color: #D5D5D5;
}
.happyClient-item.slick-slide .comma{
    display: none;
}
.happyClient-item.slick-slide.slick-current .comma{
    display: block;
    height: 0;
}
.happyClient-details-carousel .client-details{
    float: left!important;
}
.f-s-32px{
    font-size: 32px !important;
}
.f-s-18px{
    font-size: 18px !important;
}
