body, html {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    line-height: normal;
}

.animate-on-scroll {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -moz-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    /*animation-delay: 300ms;*/
}

svg path, svg g {
    transform-box: fill-box;
}

#sign {
    animation-timing-function: cubic-bezier(.73, 1.46, .95, .85);
}

.navbar-brand:hover #sign {
    transform-origin: 55% 50%;
    -moz-transform-origin: 55% 50%;
    animation: flip_left 1.6s infinite forwards;
}

@keyframes flip_left {
    0% {
        transform: perspective(2000px) rotateY(90deg) skewY(-1deg)
    }
    30% {
        transform: perspective(2000px) rotateY(-25deg) skewY(-0.8deg)
    }
    50% {
        transform: perspective(2000px) rotateY(20deg) skewY(0.8deg)
    }
    70% {
        transform: perspective(2000px) rotateY(-10deg) skewY(-0.8deg)
    }
    100% {
        transform: perspective(2000px) rotateY(0deg)
    }
}

#my-fast-map {
    width: 100%;
    height: 500px;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

#my-fast-map img, #my-fast-map iframe {
    border: none;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: fill;
}

.in-view {
    -webkit-animation-name: inview;
    animation-name: inview;
}

@keyframes inview {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.in-view-top {
    -webkit-animation-name: inviewtop;
    animation-name: inviewtop;
}

@keyframes inviewtop {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.navbar {
    padding: 30px 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
}

.navbar ul.navbar-nav li {
    margin: 0 10px;
}

.navbar ul.navbar-nav {
    padding-top: 10px;
}

.navbar ul.navbar-nav li a {
    text-transform: uppercase;
    color: #fff;
}

.navbar ul.navbar-nav li a div.bottom-border {
    border-bottom: 2px solid #ff9e1b;
    margin-top: 8px;
    width: 0px;
    transition: all 0.5s;
}

.navbar ul.navbar-nav li.active a div.bottom-border, .navbar ul.navbar-nav li a:hover div.bottom-border {
    border-bottom: 2px solid #ff9e1b;
    margin-top: 8px;
    width: 100%;
}

.navbar ul.navbar-nav li a:hover {
    opacity: .5;
}

.navbar-toggler-icon {
}

.navbar-toggler-icon .nav-s-bar:first-child {
    margin-top: 1px;
}

.slick-initialized .slick-slide {
    outline: none;
}

.navbar-toggler {
    padding: 0.25rem 1.5rem;
}

.nav-s-bar {
    background: #ff9e1b;
    height: 4px;
    margin-bottom: 6px;
    border-radius: 2px;
}

.navbar.fixed-top {
    position: fixed;
    background: #f7f7f7;
    border-bottom: 1px solid #e6e6e6;
    padding: 15px 0 15px 0;
    transition: all 0.4s ease-out;
}

.navbar ul.navbar-nav li a div.bottom-border {
    width: 0px;
    margin-left: auto;
    margin-right: auto;
}

.navbar.fixed-top ul.navbar-nav li.active a div.bottom-border, .navbar.fixed-top ul.navbar-nav li a:hover div.bottom-border {
    width: 80%;
}

.navbar .navbar-brand svg {
    height: 50px !important;
}

.navbar .navbar-brand svg #text {
    fill: #fff;
}

.navbar .navbar-brand svg #rights {
    fill: #fff;
}

.navbar.fixed-top .navbar-brand svg {
    height: 40px !important;
}

.navbar.fixed-top .navbar-brand svg #text {
    fill: #000
}

.navbar.fixed-top .navbar-brand svg #rights {
    fill: #000
}

.navbar.fixed-top ul.navbar-nav li a {
    color: #4c4c4c;
}

.navbar.fixed-top ul.navbar-nav li.active a, .navbar.fixed-top ul.navbar-nav li a:hover {
    color: #000;
    opacity: 1;
}

.progress-container {
    position: fixed;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    z-index: 9999;
}

.progress-bar {
    height: 4px;
    background: #ff9e1b;
    width: 0%;
    transition: all 0.3s ease-out 0s;
}

#home {
    position: relative;
    background-color: #000;
}

#home .carousel {
    overflow: hidden;
    height: 100vh;
}

#home .carousel .carousel-control-prev, #home .carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    margin-top: -25px;
    border-radius: 50%;
    opacity: .5;
    transition: all 0.5s;
}

#home .carousel .carousel-control-prev:hover, #home .carousel .carousel-control-next:hover {
    opacity: 1;
}

#home .carousel .carousel-control-prev {
    left: 20px;
}

#home .carousel .carousel-control-next {
    right: 20px;
}

#home .carousel .controls-container {
}

.carousel-text-container {
    position: absolute;
    top: 30%;
}

.carousel-text-container h3 {
    color: #ff9e1b;
    font-size: 30px;
    line-height: 27px;
    padding: 0;
    margin: 0;
    font-weight: normal;
}

div.navigation .selected-page {
    background-color: #ff9e1b;
    color: #fff;
    border-top: none;
    border-bottom: none;
    border-color: #ff9e1b;
    padding: 16px 20px;
    display: block;
    font-weight: 500;
    font-style: normal;
    line-height: 24px;
    font-size: 18px;
}

div.navigation .selected-page:hover {
    background-color: #ed8e13 !important;
    border-right: transparent;
    color: #fff;
    cursor: pointer;
}

.page-item .page-link {
    color: #808080;
    background-color: #f5f5f5;
    border-top: none;
    border-bottom: none;
    padding: 16px 20px;
    display: block;
    font-weight: 500;
    font-style: normal;
    line-height: 24px;
    font-size: 18px;
    border-right: 1px solid #e6e6e6 !important;
    border-left: 1px solid #e6e6e6 !important;
}

div.pagination span.page a:hover {
    color: #000;
    text-decoration: none;
    background-color: #ebebeb;
    border-color: #dee2e6;
}

#all-posts div.navigation {
    background-color: #f5f5f5;
}

.carousel-text-container h2 {
    font-size: 60px;
    line-height: 45px;
    padding: 30px 0 50px;
    margin: 0;
    color: #fff;
}

#slider-main-scroll-next-svg-small {
    display: none;
}

.carousel-text-container-inner p {
    color: #fff;
    width: 66%;
    font-size: 18px;
    line-height: 26px;
}

.carousel-text-container-inner {
    position: relative;
}

@keyframes fade-from-bottom {
    0% {
        opacity: 0;
        transform: translate3d(0, -100vh, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.fade-from-bottom {
    animation-name: fade-from-bottom;
}

@keyframes fade-from-top {
    0% {
        opacity: 0;
        transform: translate3d(0, 100vh, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fade-from-top {
    animation-name: fade-from-top;
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        transform: scale3d(.9, .9, .9);
    }

    50% {
        opacity: 1;
    }
}

.zoom-in {
    animation-name: zoom-in;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    display: none;
}

.animated zoom-in {
    display: block;
}

.active .animated {
    display: block;
}

.orange-boxes-container {
    position: absolute;
    bottom: 0;
    z-index: 99;
}

.orange-boxes-container .media {
    padding: 0 15px;
}

.orange-boxes-container .col-lg-4 {
    margin-bottom: 35px;
    transition: transform .2s;
}

.brand-content {
    background-color: rgba(255, 158, 27, 1);
    display: flex;
    padding: 15px;
}

.brand-content:hover {
    background-color: rgba(255, 158, 27, .8)
}

.orange-boxes-container .container .media .col-lg-4:nth-child(2) .brand-content {
    background: #ed8e13;
}

.orange-boxes-container .container .media .col-lg-4:nth-child(2) .brand-content:hover {
    background-color: rgba(237, 142, 19, .8);
}

.orange-boxes-container .container .media .col-lg-4:nth-child(3) .brand-content {
    background: #dd7d00;
}

.orange-boxes-container .container .media .col-lg-4:nth-child(3) .brand-content:hover {
    background-color: rgba(221, 125, 0, .8);
}

.brand-content > img {
    width: 75px;
    height: 75px;
    transition: transform .2s;
}

#carouselControls-our-team .team-member .overlay p.member-p {
    font-size: 14px;
    font-weight: bold;
}

.media-body {
    padding-left: 20px;
}

.media-body h2 {
    color: #fff;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 10px;
}

.media-body p {
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
}

.d-block {
    background-size: cover !important;
    height: 100vh;
    min-height: 990px;
}

#carouselControls-our-team {
    padding: 0 15px;
}

#carouselControls-our-team .slick-list {
    margin: 0 -15px;
}

#carouselControls-our-team-nav {
    padding-top: 30px;
}

#carouselControls-our-team-nav .slick-prev, #carouselControls-our-team-nav .slick-next {
    background: #f7f7f7;
    width: 60px;
    height: 60px;
    line-height: 60px;
    opacity: 1;
    width: 50%;
    color: #808080;
    font-size: 24px;
    position: relative;
    flex: 1;
    border: none;
    text-align: center;
    cursor: pointer;
}

#carouselControls-our-team-nav .slick-prev {
    background: #ebebeb;
}

#carouselControls-our-team-nav .slick-next {
    background: #f5f5f5;
}

#carouselControls-our-team-nav .slick-prev:hover, #carouselControls-our-team-nav .slick-next:hover {
    background: #ff9e1b;
    color: #fff;
    transition: all 0.5s;
    position: relative;
}

#carouselControls-our-team .row {
    padding: 0px;
}

#carouselControls-our-team .row .col-sm-3 {
    display: flex;
}

#carouselControls-our-team .controls-container {
    margin-top: 40px;
    position: relative;
    height: 60px;
}

#carouselControls-our-team .team-member {
    position: relative;
}

#carouselControls-our-team .team-member .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 158, 27, 0.85) !important;
    padding: 20px;
    cursor: default;
}

#carouselControls-our-team .team-member .overlay, #carouselControls-our-team .team-member .overlay h4, #carouselControls-our-team .team-member .overlay p {
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.3s ease-out 0s;
    color: #fff;
}

#carouselControls-our-team .team-member .overlay p {
    padding-top: 5px;
    margin-bottom: 5px;
    transition: all 0.3s ease-out 0.15s;
}

#carouselControls-our-team .team-member:hover .overlay, #carouselControls-our-team .team-member:hover .overlay h4, #carouselControls-our-team .team-member:hover .overlay p {
    opacity: 1;
    transform: scale(1);
}

#carouselControls-our-team .team-member img {
    width: 100%;
}

#our-clients {
}

#carouselControls-our-clients {
    margin: 60px auto 110px;
    padding: 0 40px;
}

#carouselControls-our-clients {
    text-align: center;
}

#carouselControls-our-clients img {
    opacity: 1;
    transition: all 0.3s;
}

.our-clients-slider {
    position: relative;
    margin: 60px auto 110px;
    padding: 0 40px;
}

.ourclients-img img {
    margin: 0 auto;
}

.slick-slider-responsive-clients-nav .carousel-control-prev, .slick-slider-responsive-clients-nav .carousel-control-next {
    width: 50px;
    height: 50px;
    opacity: 1;
    border-radius: 50%;
    font-size: 30px;
}

.slick-slider-responsive-clients-nav .carousel-control-prev {
    left: 0;
    background: url(../images/arrows_sprite.svg) 0 -153px no-repeat;
    background-size: 100%;
}

.slick-slider-responsive-clients-nav .carousel-control-next {
    right: 0;
    background: url(../images/arrows_sprite.svg) 0 -103px no-repeat;
    background-size: 100%;
}

.slick-slider-responsive-clients-nav .carousel-control-prev:hover {
    background: url(../images/arrows_sprite.svg) 0 -253px no-repeat;
    background-size: 100%;
}

.slick-slider-responsive-clients-nav .carousel-control-next:hover {
    background: url(../images/arrows_sprite.svg) 0 -203px no-repeat;
    background-size: 100%;
}

.expertise .card {
    background-color: #f7f7f7;
    cursor: pointer;
    transition: all 0.3s ease-out 0s;
}

.expertise .card:hover {
    background-color: #fff;
}

.expertise .card:hover span {
    color: #ed8e13;
    transition: all 0.3s ease-out 0s;
}

.expertise .service-icon {
    background: url(../images/close.svg) no-repeat;
    background-size: 100%;
    height: 110px;
    width: 110px;
    display: block;
    transition: transform .2s;
    background-color: #9fcdff;
    border-radius: 50%;
}

.social-icons {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: center;
}

.social-icons li a {
    display: block;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    transition: all 0.5s;
}

.social-icons li a:hover {
    background: #fff;
}

.social-icons li a svg {
    color: #fff;
    border-radius: 50%;
    margin-top: 10px;
    transition: all 0.5s;
}

.social-icons li a:hover svg {
    color: #ff9e1b;
}

.expertise .card:hover .service-icon {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.parallax {
    background: url("../images/mVentix_About_Quote.jpg") no-repeat center center fixed;
    background-size: cover;
}

.parallax-quotes {
    color: #fff;
}

.fun-facts-quotes {
    /*position: relative;*/
    color: #fff;
    padding-bottom: 100px;
    padding-top: 100px;
}

.counter {
    display: table-cell;
    font-size: 50px;
    vertical-align: middle;
    text-align: center;
}

.footer {
    width: 100%;
    height: 60px;
    background-color: #ff9e1b;
    color: #fff;
}

.counter-outer-circle {
    background: #ff9e1b;
    border-radius: 50%;
    height: 200px;
    width: 200px;
    position: relative;
    margin: 0 auto;
}

.counter-inner-circle {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    height: 150px;
    width: 150px;
    top: 50%;
    left: 50%;
    margin: -75px 0px 0px -75px;
}

.counter-background {
    background-color: #f7f7f7;
    min-height: 290px;
    height: 100%;
}

.color-orange {
    color: #ff9e1b;
}

#load {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background: url("mventix_icon.gif") no-repeat center center rgba(0, 0, 0, 1)
}

.single-blog {
    margin-bottom: 30px;
    overflow: hidden;
}

.blog-image {
    width: 45%;
    float: left;
    position: relative;
}

.blog-image img {
    /*width: 100%;*/
    /*height: 340px;*/
}

.single-blog .blog-image .blog-image-overlay {
    position: absolute;
    cursor: pointer;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.5)
}

.single-blog .blog-image:hover .blog-image-overlay {
    position: absolute;
    cursor: pointer;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    /*max-height: 350px;*/
    height: 100%;
    opacity: 0.5;
    background-color: #000;
    transform: scale(1);
    transition: all 0.3s ease-out 0s;
}

.post-date {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 48px;
    font-weight: 400;
    line-height: 30px;
    position: absolute;
    text-align: center;
    top: 0;
    left: 0;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.post-date span {
    font-size: 18px;
    display: block;
}

.entry-content {
    width: 55%;
    float: left;
    padding: 0 22px 62px 22px;
    height: 100%;
    font-weight: 300;
    background-color: #f5f5f5;
}

.entry-content p {
    font-weight: 300;
    font-style: normal;
    line-height: 22px;
    font-size: 15px;
}

.entry-content a:hover {
    text-decoration: none;
    background-color: #ed8e13 !important;
}

.entry-content .btn.btn-primary {
    background-color: #ff9e1b;
    color: #fff;
    width: 100%;
    border: none;
    display: inline-block;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 0;
}

.entry-meta span {
    color: #808080;
    margin-right: 18px;
    font-size: 16px;
    margin-bottom: 30px;
    display: block;
}

.entry-meta span a:hover {
    color: #ff9e1b;
    text-decoration: none;
}

.entry-content h2 {
    color: #000;
}

.entry-content a:hover h2 {
    color: #666666;
}

.fun-facts-svg-total-employees {
    background: url("../images/employees.svg") no-repeat;
    background-size: 100%;
    height: 110px;
    width: 110px;
    display: block;
    margin: 0 auto;
    transition: transform .2s;
}

.fun-facts-svg-hidden-talents {
    background: url("../images/talents.svg") no-repeat;
    background-size: 100%;
    height: 110px;
    width: 110px;
    display: block;
    margin: 0 auto;
    transition: transform .2s;
}

.fun-facts-svg-languages-spoken {
    background: url("../images/languages.svg") no-repeat;
    background-size: 100%;
    height: 110px;
    width: 110px;
    display: block;
    margin: 0 auto;
    transition: transform .2s;
}

.fun-facts-xs-margin:hover .fun-facts-svg-total-employees, .fun-facts-xs-margin:hover .fun-facts-svg-hidden-talents, .fun-facts-xs-margin:hover .fun-facts-svg-languages-spoken {
    -ms-transform: scale(1.2); /* IE 9 */
    -webkit-transform: scale(1.2); /* Safari 3-8 */
    transform: scale(1.2);
}

.sidebar-page {
    margin-top: 25px;
    margin-bottom: 25px;
}

.portfolio_mainblock {
    padding-top: 0 !important;
}

.blog-heading h1 {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-top: 20px;
}

.blog-heading .blog-meta-info {
    margin-top: 15px;
}

.blog-heading .blog-meta-info span a {
    font-size: 16px;
    margin-right: 20px;
    color: #333;
}

.blog-text {
    margin-top: 25px;
}

#blog-posts-form {
    margin-top: 50px;
    padding-top: 30px;
}

#contact-us-form form {
    margin-top: 20px;
}

#contact-us-form span.required, #blog-posts-form span.required {
    color: #4c4c4c;
    font-size: 18px;
    font-weight: 300;
}

#blog-posts-form button.send {
    margin-right: 50px;
}

#blog-posts-form .learn-more-about {
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.sidebar-widget {
    padding: 0px 10px;
    margin-bottom: 45px;
}

.sidebar-widget h3 {
    margin-top: 0px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #dedcdc;
    font-size: 20px;
}

.sidebar-widget ul {
    list-style: none;
    padding-left: 0px;
}

.sidebar-widget ul li {
    width: 100%;
    padding: 10px 15px 10px;
    transition: all 700ms;
    display: inline-block;
    border-bottom: 1px solid #dedcdc;
    margin: 0px;
}

.sidebar-widget ul li:hover {
    background: #eee;
    color: #ff9e1b !important;
}

.sidebar-widget ul li a {
    color: #333;
}

.sidebar-widget ul li a:hover {
    color: #ff9e1b;
    text-decoration: none;
}

.section-title {
    text-align: left;
}

.section-title h2 {
    font-size: 50px;
    padding: 0;
    margin: 0;
}

.parallax div.parallax-quotes hr {
    width: 68px;
}

.section-title hr, .parallax-quotes hr {
    width: 140px;
    height: 2px;
    background: #ff9e1b;
    margin-bottom: 30px;
    margin-top: 30px;
    float: left;
}

.section-title p {
    clear: both;
    font-size: 18px;
    margin-bottom: 0px !important;
    max-width: 760px;
}

.contact-row {
    margin-top: 50px;
}

.contact-row h4 {
    font-size: 28px;
    color: #ff9e1b;
    margin: 0;
}

.contact-row ul {
    list-style: none;
    padding-left: 0;
    margin-top: 35px;
}

.contact-row ul li, .contact-row ul li a {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.contact-row ul li span.icon {
    margin-right: 20px;
    color: #ff9e1b;
}

.contact-social ul li span.icon {
    color: #808080;
}

.contact-social ul li a {
    color: #333;
}

.contact-social ul li a:hover {
    text-decoration: none;
}

.contact-social ul li a:hover span.icon {
    color: #ff9e1b;
}

.contact-form-wrapper {
    background-color: #f7f7f7;
}

.contact-form {
    margin-top: 50px;
    margin-bottom: 70px;
    text-align: center;
}

.contact-form form {
    padding: 0;
}

.contact-form h4 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
}

.send-button {
    background: #ff9e1b;
    border: none;
    color: #fff;
    font-size: 20px;
    width: 60%;
    height: 45px;
    text-align: center;
    margin-top: 20px;
}

.contact-us {
    padding-top: 100px;
}

.required-field-alert {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 300;
    color: #4c4c4c;
    text-align: left;
}

.after-clients {
    background: #f7f7f7;
    border-bottom: 1px solid #fff;
}

.after-clients .img-fluid {
    max-height: 380px;
    width: 100%;
}

.results-box-text {
    color: #333333;
}

.see-all-posts {
    background-color: #ebebeb;
    width: 100%;
    padding: 15px;
    text-align: center;
    color: #808080;
    transition: all 0.5s;
}

.see-all-posts:hover {
    background-color: #ed8e13;
    color: #fff;
    text-decoration: none;
}

.contact-send-button {
    background-color: #ff9e1b;
    width: 100%;
    padding: 15px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-style: normal;
    line-height: 26px;
    font-size: 20px;
    border: 1px solid #ff9e1b;
    transition: all 0.5s;
}

.open-positions {
    background-color: #ff9e1b;
    width: 100%;
    padding: 15px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-style: normal;
    line-height: 26px;
    font-size: 20px;
    border: 1px solid #ff9e1b;
    transition: all 0.5s;
}

.open-positions:hover {
    text-decoration: none;
    color: #fff;
    background-color: #ed8e13;
    cursor: pointer;
}

.contact-send-button:hover {
    text-decoration: none;
    color: #fff;
    background-color: #ed8e13;
    cursor: pointer;
}

.slider-main-prev-svg {
    background: url(../images/arrows_sprite.svg) 0 -53px no-repeat;
    background-size: 100%;
}

/*SAFARI*/
@media screen and (min-color-index: 0)
and(-webkit-min-device-pixel-ratio: 0) {
    @media {
        .slider-main-scroll-next-svg {
            animation: MoveUpDown 1s linear infinite;
            background: url(../images/arrows_sprite.svg) 0 -50px no-repeat;
            background-size: 100%;
            display: block;
            position: absolute;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-top: 20px;
            opacity: .5;
            transition: all 0.5s;
            -webkit-transform: rotate(270deg);
            -moz-transform: rotate(270deg);
            -o-transform: rotate(270deg);
            -ms-transform: rotate(270deg);
            transform: rotate(270deg);
            z-index: 9999;
            left: 49%;
        }

        @keyframes MoveUpDown {
            0% {
                bottom: 20px;
            }
            50% {
                bottom: 40px;
            }
            100% {
                bottom: 20px;
            }
        }
    }
}

.animated-slider-svg {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-25px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

#slider-main-scroll-next-svg {
    background: url(../images/arrows_sprite.svg) 0 -305px no-repeat;
    background-size: 100%;
    display: block;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 50%;
    opacity: .5;
    transition: all 0.5s;
}

#slider-main-scroll-next-svg:hover {
    opacity: 1;
    cursor: pointer;
}

.slider-main-next-svg {
    background: url(../images/arrows_sprite.svg) 0 -3px no-repeat;
    background-size: 100%;
}

.slider-our-team-prev-svg {
    background: url(../images/arrows_sprite.svg) 0 -156px no-repeat;
    background-size: 100%;
}

.slider-our-team-next-svg {
    background: url(../images/arrows_sprite.svg) 0 -106px no-repeat;
    background-size: 100%;
}

@-moz-document url-prefix() {
    #slider-main-scroll-next-svg {
        background: url(../images/arrows_sprite.svg) 0 -300px no-repeat;
        background-size: 100%;
    }

    #slider-main-scroll-next-svg-small {
        background: url(../images/arrows_sprite.svg) 0 -300px no-repeat;
        background-size: 100%;
    }

    .slick-slider-responsive-clients-nav .carousel-control-prev, .slick-slider-responsive-clients-nav .carousel-control-next {
        width: 50px;
        height: 50px;
        opacity: 1;
        border-radius: 50%;
        font-size: 30px;
    }

    .slick-slider-responsive-clients-nav .carousel-control-prev {
        left: 0;
        background: url(../images/arrows_sprite.svg) 0 -150px no-repeat;
        background-size: 100%;
    }

    .slick-slider-responsive-clients-nav .carousel-control-next {
        right: 0;
        background: url(../images/arrows_sprite.svg) 0 -100px no-repeat;
        background-size: 100%;
    }

    .slick-slider-responsive-clients-nav .carousel-control-prev:hover {
        background: url(../images/arrows_sprite.svg) 0 -250px no-repeat;
        background-size: 100%;
    }

    .slick-slider-responsive-clients-nav .carousel-control-next:hover {
        background: url(../images/arrows_sprite.svg) 0 -200px no-repeat;
        background-size: 100%;
    }

    .slider-main-prev-svg {
        background: url(../images/arrows_sprite.svg) 0 -50px no-repeat;
        background-size: 100%;
    }

    .slider-main-next-svg {
        background: url(../images/arrows_sprite.svg) 0 0 no-repeat;
        background-size: 100%;
    }

    .slider-our-team-prev-svg {
        background: url(../images/arrows_sprite.svg) 0 -150px no-repeat;
        background-size: 100%;
    }

    .slider-our-team-next-svg {
        background: url(../images/arrows_sprite.svg) 0 -100px no-repeat;
        background-size: 100%;
    }
}

@media screen and (min-color-index: 0)
and(-webkit-min-device-pixel-ratio: 0) {
    @media {
        .slick-slider-responsive-clients-nav .carousel-control-prev, .slick-slider-responsive-clients-nav .carousel-control-next {
            width: 50px;
            height: 50px;
            opacity: 1;
            border-radius: 50%;
            font-size: 30px;
        }

        .slider-main-scroll-next-svg {
            animation: MoveUpDown 1s linear infinite;
            background: url(../images/arrows_sprite.svg) 0 -50px no-repeat;
            background-size: 100%;
        }

        @keyframes MoveUpDown {
            0% {
                bottom: 20px;
            }
            50% {
                bottom: 40px;
            }
            100% {
                bottom: 20px;
            }
        }

        .slick-slider-responsive-clients-nav .carousel-control-prev {
            left: 0;
            background: url(../images/arrows_sprite.svg) 0 -150px no-repeat;
            background-size: 100%;
        }

        .slick-slider-responsive-clients-nav .carousel-control-next {
            right: 0;
            background: url(../images/arrows_sprite.svg) 0 -100px no-repeat;
            background-size: 100%;
        }

        .slick-slider-responsive-clients-nav .carousel-control-prev:hover {
            background: url(../images/arrows_sprite.svg) 0 -250px no-repeat;
            background-size: 100%;
        }

        .slick-slider-responsive-clients-nav .carousel-control-next:hover {
            background: url(../images/arrows_sprite.svg) 0 -200px no-repeat;
            background-size: 100%;
        }

        .slider-main-prev-svg {
            background: url(../images/arrows_sprite.svg) 0 -50px no-repeat;
            background-size: 100%;
        }

        #slider-main-scroll-next-svg-small {
            background: url(../images/arrows_sprite.svg) 0 -300px no-repeat;
            background-size: 100%;
        }

        .slider-main-next-svg {
            background: url(../images/arrows_sprite.svg) 0 0 no-repeat;
            background-size: 100%;
        }

        .slider-our-team-prev-svg {
            background: url(../images/arrows_sprite.svg) 0 -150px no-repeat;
            background-size: 100%;
        }

        .slider-our-team-next-svg {
            background: url(../images/arrows_sprite.svg) 0 -100px no-repeat;
            background-size: 100%;
        }
    }
}

@supports (-webkit-overflow-scrolling: touch) {
    #slider-main-scroll-next-svg-small {
        background: url(../images/arrows_sprite.svg) 0 -300px no-repeat;
        background-size: 100%;
    }

    .slider-main-scroll-next-svg {
        animation: MoveUpDown 1s linear infinite;
        background: url(../images/arrows_sprite.svg) 0 -50px no-repeat;
        background-size: 100%;
    }

    @keyframes MoveUpDown {
        0% {
            bottom: 20px;
        }
        50% {
            bottom: 40px;
        }
        100% {
            bottom: 20px;
        }
    }

    .slick-slider-responsive-clients-nav .carousel-control-prev, .slick-slider-responsive-clients-nav .carousel-control-next {
        width: 50px;
        height: 50px;
        opacity: 1;
        border-radius: 50%;
        font-size: 30px;
    }

    .slick-slider-responsive-clients-nav .carousel-control-prev {
        left: 0;
        background: url(../images/arrows_sprite.svg) 0 -150px no-repeat;
        background-size: 100%;
    }

    .slick-slider-responsive-clients-nav .carousel-control-next {
        right: 0;
        background: url(../images/arrows_sprite.svg) 0 -100px no-repeat;
        background-size: 100%;
    }

    .slick-slider-responsive-clients-nav .carousel-control-prev:hover {
        background: url(../images/arrows_sprite.svg) 0 -250px no-repeat;
        background-size: 100%;
    }

    .slick-slider-responsive-clients-nav .carousel-control-next:hover {
        background: url(../images/arrows_sprite.svg) 0 -200px no-repeat;
        background-size: 100%;
    }

    /* CSS specific to iOS devices */
    #slider-main-scroll-next-svg {
        background: url(../images/arrows_sprite.svg) 0 -300px no-repeat;
        background-size: 100%;
    }

    #slider-main-scroll-next-svg-small {
        background: url(../images/arrows_sprite.svg) 0 -300px no-repeat;
        background-size: 100%;
    }

    .slider-main-prev-svg {
        background: url(../images/arrows_sprite.svg) 0 -50px no-repeat;
        background-size: 100%;
    }

    .slider-main-next-svg {
        background: url(../images/arrows_sprite.svg) 0 0 no-repeat;
        background-size: 100%;
    }

    .slider-our-team-prev-svg {
        background: url(../images/arrows_sprite.svg) 0 -150px no-repeat;
        background-size: 100%;
    }

    .slider-our-team-next-svg {
        background: url(../images/arrows_sprite.svg) 0 -100px no-repeat;
        background-size: 100%;
    }
}

#footer {
    background-color: #ff9e1b;
    color: #fff;
}

#footer-copyright {
    background-color: #ed8e13;
    color: #fff;
}

.footer-menu {
    padding-top: 40px;
    padding-bottom: 30px;
}

.footer-menu ul {
    list-style: none;
    padding-left: 0;
}

.footer-menu ul li {
    display: inline;
    margin-right: 20px;
}

.footer-menu ul li a {
    font-size: 16px;
    color: #fff;
    opacity: 0.6;
    text-decoration: none;
    transition: all 0.5s;
}

.footer-menu ul li a:hover {
    opacity: 1;
}

.footer-social {
    margin-top: 20px;
}

.jobs-social {
    margin-top: 20px;
}

.jobs-social a:hover {
    text-decoration: none;
}

.footer-social div {
    display: inline-block;
    margin-right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: #ff9e1b;
    border: solid 2px #fff;
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding: 10px;
    transition: all 0.5s;
}

.jobs-social div {
    display: inline-block;
    margin-right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: #fff;
    border: solid 2px #ff9e1b;
    color: #ff9e1b;
    text-align: center;
    font-size: 16px;
    padding: 10px;
    transition: all 0.5s;
}

.footer-social div:hover {
    background: #fff;
    color: #ff9e1b;
}

.jobs-social div:hover {
    background: #ff9e1b;
    color: #fff;
    text-decoration: none;
}

.footer-logo svg {
    width: 226px;
    float: right;
    fill: #fff !important;
    fill-opacity: 0.7;
    transition: all 0.5s;
}

.footer-logo svg .st0 {
    fill: #fff !important;
}

.footer-logo svg:hover {
    fill: #fff !important;
    fill-opacity: 1;
}

#back-to-top.show {
    opacity: .5;
}

#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 15px;
    z-index: 9;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 35px;
    color: #fff;
    cursor: pointer;
    border-radius: 40px;
    text-decoration: none;
    transition: opacity .2s ease-out;
    opacity: 0;
}

#back-to-top.show .fa {
    vertical-align: middle;
    margin-top: 5px;
}

#back-to-top.show:hover {
    opacity: 1;
}

.show {
    display: block !important;
}

.single-post-socials .btn-group {
    text-align: center;
    display: flex;
}

.single-post-page-container .contact-us {
    padding-top: 0;
}

.single-post-page-container .required-field-alert {
    margin-top: 0;
}

.single-post-socials .btn {
    flex: 1;
    border-radius: 0;
    line-height: 50px;
    padding: 0px;
}

.single-post-socials .btn {
    background: #f5f5f5;
}

.single-post-socials .btn:hover {
    background-color: #ed8e13 !important;
    color: #fff;
}

.single-post-socials .btn:nth-child(odd) {
    background: #ebebeb;
}

.single-post-navigation a.disabled {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: black;
}

.single-post-navigation a {
    border-bottom: 2px solid #ebebeb;
    line-height: 50px;
    width: 100%;
    display: block;
    color: #808080;
    text-decoration: none;
    transition: opacity .3s ease-out;
}

.single-post-navigation a:hover {
    border-bottom: 2px solid #ff9e1b;
    background: #f5f5f5;
    color: #000;
}

.go-back-single-blogpost {
    background: #ff9e1b;
    color: #fff;
    width: 100%;
    line-height: 50px;
    border: none;
    display: inline-block;
    font-size: 16px;
    padding: 0 20px;
    border-radius: 0;
}

.go-back-single-blogpost:hover {
    text-decoration: none;
    background-color: #ed8e13 !important;
}

.single-blog-post img {
    max-width: 100%;
}

.single-post-comments {

}

.article-date-comments {
    border-bottom: 1px solid #ebebeb;
    color: #ed8e13;
}

.privacy-content a {
    text-decoration: underline;
    color: #ff9e1b;
}

.privacy-content a:hover {
    text-decoration: none;
    color: #dd7d00;
}

.article-date-comments span {
    color: #808080;
}

.article-content {
}

.article-content ul {
    margin-bottom: 30px;
    margin-top: 20px;
    line-height: 24px;
    font-size: 16px;
}

.article-content h2 {
    margin-bottom: 30px;
    margin-top: 20px;
    font-size: 18px;
}

.article-content p {
    padding-bottom: 30px;
    line-height: 24px;
    font-size: 16px;
}

.single-post-comments h2 {
    color: #ff9e1b;
}

.single-post-comment-container {
    background: #f5f5f5;
    padding: 30px;
}

.single-post-comment-container img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.single-post-comment-container span {
    color: #999999;
}

.single-post-comment-container img {
    width: 100%;
}

.single-post-socials {

}

.single-post-page-container section.parallax-single-post {
    background: url(../images/mventix-blog-post.jpg) !important;
}

.single-post-page-container section.privacy-policy {
    background: url(../images/privacy_policy.jpg) !important;
}

.single-blog-post .article-content hr {
    border: none;
    height: 2px;
    color: #e6e6e6; /* old IE */
    background-color: #e6e6e6;
}

.parallax-all-posts {
    position: relative;
    background: url(mventix-blog.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
}

.parallax-all-posts hr {
    margin-bottom: 20px;
    margin-top: 20px;
}

.parallax-all-posts ul.breadcrumb {
    padding: 0;
    list-style: none;
    background-color: transparent;
}

.parallax-all-posts ul.breadcrumb li {
    display: inline;
}

.parallax-all-posts ul.breadcrumb li + li:before {
    color: #fff;
    text-decoration: inherit;
    padding: 0 8px;
    font-size: 14px;
}

.parallax-all-posts ul.breadcrumb li a {
    color: #ffffff;
    text-decoration: none;
}

.parallaxSMALL, .parallaxSMALLfunfacts {
    display: none;
}

.parallax-all-posts ul.breadcrumb li a:hover {
    color: #ed8e13;
}

#all-posts .blog-image {
    flex: 2;
}

#all-posts .entry-content {
    flex: 5;
    height: 100%;
    padding: 0 20px 62px 30px;
}

#all-posts .entry-content .btn.btn-primary {
    width: 100%;
    max-width: 230px;
}

#all-posts ul.pagination .previous a.page-link:hover {
    border-right: none !important;
}

#all-posts .pagination {
    max-width: 262px;
    margin: 0 auto;
    width: 100%;
}

#all-posts .page-item.active .page-link {
    background-color: #ff9e1b;
    color: #fff;
    border-top: none;
    border-bottom: none;
    border-color: #ff9e1b;
}

#all-posts .previous .page-link {
    border-radius: 0;
    border-right: none !important;
}

#all-posts .not-active .page-link {
    color: #bebebe !important;
    pointer-events: none;
    cursor: default;
}

#all-posts .next .page-link {
    border-radius: 0;
}

#all-posts .page-item.active .page-link:hover {
    background-color: #ed8e13 !important;
    border-right: transparent;
    color: #fff;
}

#all-posts .page-item .page-link:hover {
    color: #000;
    text-decoration: none;
    background-color: #ebebeb;
    border-color: #dee2e6;
}

#all-posts .page-item .page-link {
    color: #808080;
    background-color: #f5f5f5;
    border-top: none;
    border-bottom: none;
    padding: 16px 20px;
}

#all-posts .pagination-around nav {
    background-color: #f5f5f5;
}

#all-posts .next .page-link {
    border-right: 1px solid #e6e6e6 !important;
}

#all-posts .page-link {
    border-right: 1px solid #e6e6e6 !important;
    border-left: 1px solid #e6e6e6 !important;
}

.footer-social a:hover {
    text-decoration: none;
}

#all-posts .single-blog .blog-image:hover .post-date, #big-time-results .single-blog .blog-image:hover .post-date {
    background-color: rgba(237, 142, 19, 1);
}

#all-posts .single-blog .blog-image:hover .post-date span, #big-time-results .single-blog .blog-image:hover .post-date span {
    color: #fff;
}

.jobs-contacts hr {
    border: none;
    height: 2px;
    color: #e6e6e6;
    background-color: #e6e6e6;
    margin-top: 30px;
    margin-bottom: 30px;
}

.jobs-contacts img {
    width: 100%;
}

.jobs-contacts h1 {
    color: #333;
}

.jobs-contacts h2 {
    color: #333;
    line-height: 36px;
}

#error-page {
    background: url(mventix-blog.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
    position: relative;
}

.error-text {
    position: fixed;
    top: 40%;
    color: #fff;
    font-size: 26px;
}

.error-text hr {
    width: 140px;
    height: 2px;
    background: #ff9e1b;
    margin-bottom: 30px;
    margin-top: 30px;
    float: left;
}

.error-text span.oops {
    font-size: 30px;
    line-height: 27px;
    color: #ff9e1b;
    margin-bottom: 15px;
    display: block;
}

.error-text h1 {
    font-size: 70px;
    line-height: 70px;
    color: #fff;
}

.error-text p {
    clear: left;
    font-size: 20px;
    line-height: 32px;
    width: 30%;
}

.error-footer {
    position: fixed;
    bottom: 0;
}

.error-footer .footer-social div {
    background: transparent;
}

.error-footer .footer-social div:hover {
    background: #fff;
}

.shadow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    background: -moz-linear-gradient(left, black 0%, black 20%, transparent 100%);
    background: -webkit-linear-gradient(left, black 0%, black 20%, transparent 100%);
    background: linear-gradient(to right, black 0%, black 20%, transparent 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#00000000', GradientType=1);
}

#orange-boxes-small {
    display: none;
}

.jobs-contacts .title {
    color: #ed8e13;
    line-height: 33px;
}

.jobs-contacts a.job-mail-to {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 26px;
    color: #000;
}

.single-blog {
    display: flex;
    margin-bottom: 30px;
    overflow: hidden;
    height: auto;
}

.blog-image {
    width: auto;
    flex: 4;
    float: none;
    position: relative;
    background-color: #f5f5f5;
}

.wrapper-blog-home {
    width: 220px;
    height: 360px;
    overflow: hidden;
    background-size: cover;
    background-position: 50%;
}

.wrapper-blog-all-posts {
    width: 350px;
    height: 350px;
    overflow: hidden;
    background-size: cover;
    background-position: 50%;
}

.entry-content {
    width: auto;
    float: none;
    flex: 5;
    padding: 0 22px 40px 22px;
    height: auto;
    font-weight: 300;
    background-color: #f5f5f5;
}

@media (max-width: 1366px) {
    .carousel-text-container {
        position: absolute;
        top: 13%;
    }
}

@media (max-width: 1300px) {
    .carousel-text-container-inner {
        padding: 0 100px;
    }
}

@media (min-width: 1200px) {
    .contact-row:first-child .col-sm-1 {
        padding-right: 0 !important;
        margin-right: -15px;
    }

    .contact-row:first-child span.icon {
        margin-right: 0px;
    }

}

@media (max-width: 1200px) {
    #error-page .error-text p {
        width: 70%;
    }

    #all-posts .blog-image {
        flex: 3;
    }

    .wrapper-blog-home {
        width: 100%;
        height: 100%;
        min-width: 330px;
        min-height: 330px;
    }

    section#fun-facts .fun-facts-quotes {
        background-attachment: scroll !important;
    }

    #my-fast-map iframe, #my-fast-map img {
        object-fit: cover
    }

    .carousel-text-container-inner p {
        width: 80%;
    }

    .parallax-ios-hidden {
        display: none;
    }

    .parallaxSMALL, .parallaxSMALLfunfacts {
        display: block;
    }

    #all-posts .blog-image {
        width: 100%;
    }

    .col-100-percentage-md {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .entry-content {
        width: auto;
        min-height: 0;
        height: auto;
        padding: 0 20px 80px 30px;
    }

    .single-blog {
        display: flex;
        height: auto;
    }

    .blog-image {
        flex: 2;
        width: auto;
        height: auto;
        overflow: hidden;
    }

    .entry-content {
        flex: 3;
        width: auto;
        height: auto;
    }

    .blog-image img {
        /*width: 100%;*/
        /*height: auto;*/
        /*max-width: 100%;*/
    }

    #carouselControls-our-clients {
        padding: 0 80px;
    }

    #carouselControls-our-clients .carousel-control-prev {
        left: 0px;
    }

    #carouselControls-our-clients .carousel-control-next {
        right: 0px;
    }

}

@media (min-width: 992px) {
    .hightlight-zoom img {
        -ms-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    .orange-boxes-container .col-lg-4:hover {
        -ms-transform: scale(1.05);
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    .media-body h2, .media-body p {
        transition: transform .2s;
    }

    .orange-boxes-container .col-lg-4:hover .brand-content > img {
        -ms-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@media (max-width: 991px) {

    #error-page {
        height: 100vh !important;
    }

    .carousel-text-container {
        position: absolute;
        top: 30%;
    }

    .orange-boxes-container {
        display: none;
    }

    #orange-boxes-small {
        display: block;
        background-color: #f7f7f7;
        z-index: 2;
        padding-bottom: 30px;
        padding-top: 20px;
    }

    #orange-boxes-small .col-lg-4 {
        margin-bottom: 0;
    }

    #slider-main-scroll-next-svg-small {
        background: url(../images/arrows_sprite.svg) 0 -304px no-repeat;
        background-size: 100%;
        width: 50px;
        height: 50px;
        position: absolute;
        opacity: .5;
        transition: all .5s;
        display: block;
        z-index: 9999;
        bottom: 0;
        left: 48%;
    }

    .jobs-contacts h2 {
        margin-top: 20px;
    }

    .member-margin-sm {
        margin-bottom: 50px;
    }

    #all-posts .entry-content {
        flex: 3;
    }

    .about-us .grid {
        padding-bottom: 30px;
    }

    #all-posts .entry-content {
        width: 56%;
        padding: 0 20px 37px 30px;
    }

    .d-block {
        min-height: 600px;
    }

    .orange-boxes-container {
        position: relative;
    }

    .orange-boxes-container .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .carousel-text-container-inner {
        padding: 0 65px;
    }

    div.single-blog .entry-content {
        padding: 1px 20px 37px 30px;
    }

    .orange-boxes-container .media {
        padding: 0;
        margin: 0;
    }

    .carousel-text-container-inner {
        padding: 0 80px;
    }

    #home .carousel .carousel-control-prev, #home .carousel .carousel-control-next {
        top: 47%;
    }

    .navbar .navbar-brand svg {
        height: 30px !important;
    }

    #navbarResponsive {
        width: 100%;
        height: 100% !important;
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 1);
    }

    #navbarResponsive.show, #navbarResponsive.collapsing {
        display: flex !important;
    }

    #navbarResponsive ul {
        flex: 1;
        margin: auto auto;
        padding-top: 0;
        max-width: 300px;
    }

    #navbarResponsive ul li {
        text-align: center;
    }

    #navbarResponsive ul li a {
        display: inline-block;
        font-size: 24px;
    }

    #navbarResponsive ul li.active a {
        color: #ff9e1b;
    }

    .navbar-toggler {
        margin-right: 10px;
    }

    header .navbar-toggler, header .navbar-brand {
        z-index: 10;
    }

    .navbar.fixed-top ul.navbar-nav li a {
        color: #fff;
    }

    .navbar.fixed-top ul.navbar-nav li.active a, .navbar.fixed-top ul.navbar-nav li a:hover {
        color: #fff;
        opacity: 1;
    }

    .navbar .navbar-brand svg {
        height: 30px !important;
    }

    .navbar-expand-lg {
        position: fixed;
        background: #f7f7f7;
        border-bottom: 1px solid #e6e6e6;
        padding: 8px 0;
    }

    .navbar.navbar-expand-lg .navbar-brand svg #text, .navbar.navbar-expand-lg .navbar-brand svg #rights {
        fill: #000;
    }

    .navbar.fixed-top .navbar-brand svg {
        height: 30px !important;
    }

    .navbar.navbar-expand-lg {
        padding: 12px 0 8px;
    }

    .mc-expanded.navbar-expand-lg .navbar-brand svg #rights,
    .mc-expanded.navbar-expand-lg .navbar-brand svg #text {
        fill: #fff;
    }

    .mc-expanded .nav-s-bar {
        background: #fff;
    }

    .navbar-toggler:focus {
        outline: none;
    }

    .navbar-toggler-icon {
        position: relative;
        overflow: hidden;
    }

    .navbar-toggler-icon .nav-s-bar {
        width: 100%;
        transition: margin 0.5s;
    }

    .navbar-toggler-icon .nav-s-bar:nth-child(1) {
        top: 0;
    }

    .navbar-toggler-icon .nav-s-bar:nth-child(2) {
        top: 50%;
        margin-top: 1px;
    }

    .navbar-toggler-icon .nav-s-bar:nth-child(3) {
        bottom: 0;
    }

    .mc-expanded .navbar-toggler-icon .nav-s-bar {
        position: absolute;
        transition: all 0.5s;
        margin: 0;
    }

    .mc-expanded .navbar-toggler-icon .nav-s-bar:nth-child(1) {
        top: 0;
        height: 0;
        transition: all 0.1s;
        background: #000;
    }

    .mc-expanded .navbar-toggler-icon .nav-s-bar:nth-child(2) {
        top: 11px;
        transform: rotate(45deg);
    }

    .mc-expanded .navbar-toggler-icon .nav-s-bar:nth-child(3) {
        bottom: 11px;
        transform: rotate(-45deg);
    }

}

@media (max-width: 768px) {
    #error-page {
        padding-top: 115px !important;
    }

    #learn-more-form .row-materialize .col.s6, #blog-posts-form .row-materialize .col.s6 {
        width: 100%;
    }

    .contact-send-button {
        margin-bottom: 30px;
    }

    #all-posts div.blog-post-sm-xs .entry-content {
        width: 100%;
    }

    .footer-menu .center-xs {
        text-align: center;
    }

    .footer-logo svg {
        padding-top: 30px;
        float: none;
        margin: 0 auto;
        display: block;
    }

    .footer-social {
        margin-top: 30px;
    }

    .col-100-percentage-md {
        display: none;
    }

    .blog-post-sm-xs {
        margin-bottom: 30px;
    }

    div.blog-post-sm-xs .entry-content {
        width: 100%;
    }

    .blog-post-sm-xs .post-date {
        left: 15px;
    }

    .blog-post-sm-xs .single-blog {
        margin-bottom: 0;
    }

    .carousel-text-container-inner {
        padding: 0 40px;
    }

    .single-blog {
        display: block;
        height: auto;
    }

    .blog-image {
        display: block;
        width: auto;
        height: auto;
        overflow: hidden;
    }

    .entry-content {
        display: block;
        width: auto;
        height: auto;
    }

    .single-blog-mobile-img {
        width: 100%;
        max-width: 100%;
    }
}

@media (min-width: 769px) {
    .blog-post-sm-xs {
        display: none;
    }

}

@media (max-width: 580px) {
    #error-page .error-text p {
        width: 100%;
    }

    .jobs-contacts h1 {
        line-height: 30px;
    }

    .fun-facts-quotes > div > span {
        line-height: 22px;
    }

    .fun-facts-quotes .fun-facts-xs-margin {
        margin-bottom: 70px;
    }

    #carouselControls-our-team .slick-list {
        margin: 0 !important;
    }

    #carouselControls-our-team .team-member {
        margin: 0px !important;
    }
}

@media (max-width: 576px) {
    #error-page .error-text {
        top: 25%;
    }

    .shadow-overlay {
        display: none;
    }

    .error-text {
        position: relative;
    }

    .error-footer {
        position: relative;
    }

    #error-page {
        height: 100%;
        padding-top: 90px;
    }

    #carouselControls-our-team .team-member {
        width: 100%;
    }

    #carouselControls-our-team .team-member img {
        width: 100%;
    }

    .d-block {
        min-height: 400px;
    }

    #home .d-block {
        background-position: center !important;
    }

    #home .carousel .carousel-control-next {
        right: 5px;
        opacity: .5;
        width: 50px;
        height: 50px;
    }

    #home .carousel .carousel-control-prev {
        left: 5px;
        opacity: .5;
        width: 50px;
        height: 50px;
    }

    .carousel-text-container h3 {
        font-size: 16px;
    }

    .carousel-text-container-inner p {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
    }

    .carousel-text-container h2 {
        font-size: 24px;
        line-height: 30px;
        padding: 15px 0 15px;
    }

    .carousel-control-prev, .carousel-control-next {
        bottom: 63%;
    }

    .carousel-text-container {
        top: 30%;
    }

    .fun-facts-xs-margin {
        margin-bottom: 30px;
    }

    #all-posts .pagination {
        max-width: 260px;
        margin: 0 auto;
        width: 100%;
    }

    .navbar-brand {
        padding-left: 15px;
    }
}

@media (max-width: 380px) {

    .footer-menu li:last-child {
        display: block;
        padding-top: 10px;
    }

}

@media (max-width: 360px) {
    #error-page {
        height: 100% !important;
    }

    #learn-more-recaptcha > div {
        transform: scale(0.75);
        transform-origin: 0 0;
    }

}
