body {
    background: url('../images/ishimarine_digital.png') #fff;
    background-position: bottom center;
    background-repeat: repeat;
    color: #444;
    font-family: "Open Sans", sans-serif;
}

a {
    color: #4cc5d6;
    transition: 0.5s;
}

    a:hover, a:active, a:focus {
        color: #51d8af;
        outline: none;
        text-decoration: none;
    }

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

.text-caps {
    text-transform: uppercase;
}
/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    background: #4cc5d6;
    color: #fff;
    padding: 6px 12px 9px 12px;
    font-size: 16px;
    border-radius: 2px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
}

    .back-to-top i.fa {
        margin-right: 0px;
    }

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
}

.back-to-top:focus {
    background: #4cc5d6;
    color: #fff;
    outline: none;
}

.back-to-top:hover {
    background: #0c2e8a;
    color: #fff;
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    /*background: #fff;*/
    background: #354c86; /* Old browsers */
    background: -moz-linear-gradient(left, #354c86 1%, #4cc4d5 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #354c86 1%,#4cc4d5 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #354c86 1%,#4cc4d5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#354c86', endColorstr='#4cc4d5',GradientType=1 ); /* IE6-9 */
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 100%;
}

    #topbar .contact-info a {
        line-height: 1;
        color: #fff;
    }

        #topbar .contact-info a:hover {
            color: #4cc5d6;
        }

    #topbar .contact-info i {
        color: #4cc5d6;
        padding: 4px;
    }

    #topbar .contact-info .fa-phone {
        padding-left: 20px;
        margin-left: 20px;
        border-left: 1px solid #e9e9e9;
    }

    #topbar .social-links a {
        color: #36528A;
        padding: 4px 10px;
        display: inline-block;
        line-height: 1px;
        border-left: 1px solid #4cc5d6;
    }

        #topbar .social-links a:hover {
            color: #ffffff;
        }

        #topbar .social-links a:first-child {
            border-left: 0;
        }
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    padding: 5px 0;
    height: auto;
    transition: all 0.5s;
    z-index: 997;
    background: #fff;
    box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}

    #header #logo h1 {
        font-size: 42px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
    }

        #header #logo h1 a {
            color: #0c2e8a;
            line-height: 1;
            display: inline-block;
        }

            #header #logo h1 a span {
                color: #4cc5d6;
            }

    #header #logo img, #header #zeiglerlogo img {
        padding: 0;
        margin: 0;
    }

    #header #logo a, #header #zeiglerlogo a {
        display: block;
    }

@media (max-width: 768px) {
    #header {
        padding: 5px 0;
        height: auto;
    }

        #header #logo h1 {
            font-size: 34px;
        }

        #header #logo a {
            text-align: center;
        }

        #header #logo img, #header #zeiglerlogo img {
            height: auto;
        }
    /*#zeiglerlogo {
        margin-right: 50px;
    }*/
}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
    width: 100%;
    height: 60vh;
    position: relative;
    background: url("../img/intro-carousel/ishimarine_technologies_banner_website_1.png") no-repeat;
    background-size: cover;
}

    #intro .intro-content {
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

        #intro .intro-content h2 {
            color: #0c2e8a;
            margin-bottom: 30px;
            font-size: 64px;
            font-weight: 700;
        }

            #intro .intro-content h2 span {
                color: #4cc5d6;
                text-decoration: underline;
            }

@media (max-width: 767px) {
    #intro .intro-content h2 {
        font-size: 34px;
    }
}

#intro .intro-content .btn-get-started, #intro .intro-content .btn-projects {
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
}

#intro .intro-content .btn-get-started {
    background: #0c2e8a;
    border: 2px solid #0c2e8a;
}

    #intro .intro-content .btn-get-started:hover {
        background: none;
        color: #0c2e8a;
    }

#intro .intro-content .btn-projects {
    background: #4cc5d6;
    border: 2px solid #4cc5d6;
}

    #intro .intro-content .btn-projects:hover {
        background: none;
        color: #4cc5d6;
    }

#intro #intro-carousel {
    z-index: 8;
}

    #intro #intro-carousel::before {
        content: '';
        /*background-color: rgba(255, 255, 255, 0.7);*/
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 7;
    }

    #intro #intro-carousel .item {
        width: 100%;
        height: 60vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        -webkit-transition-property: opacity;
        transition-property: opacity;
    }
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nav-menu ul {
        position: absolute;
        display: none;
        top: 100%;
        left: 0;
        z-index: 99;
    }

    .nav-menu li {
        position: relative;
        white-space: nowrap;
    }

    .nav-menu > li {
        float: left;
    }

    .nav-menu li:hover > ul, .nav-menu li.sfHover > ul {
        display: block;
    }

    .nav-menu ul ul {
        top: 0;
        left: 100%;
    }

    .nav-menu ul li {
        min-width: 180px;
    }
/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
    padding-right: 22px;
}

    .sf-arrows .sf-with-ul:after {
        content: "\f107";
        position: absolute;
        right: 8px;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
    }

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}
/* Nav Meu Container */
#nav-menu-container {
    float: right;
    margin: 0;
}

@media (min-width: 1201px) {
    .nav-menu-col {
        display: none;
    }
}

@media (max-width: 1200px) {
    #nav-menu-container, .zeiglerlogo {
        display: none;
    }

    .zeigler-block {
        display: block !important;
    }
}
/* Nav Meu Styling */
.nav-menu a {
    padding: 10px 8px;
    text-decoration: none;
    display: inline-block;
    color: #555;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 16px;
    outline: none;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
    color: #4cc5d6;
}

.nav-menu > li {
    margin-left: 3px;
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
}

    .nav-menu ul li {
        transition: 0.3s;
    }

        .nav-menu ul li a {
            padding: 10px;
            color: #333;
            transition: 0.3s;
            display: block;
            font-size: 15px;
            text-transform: none;
        }

        .nav-menu ul li:hover > a {
            color: #4cc5d6;
        }

    .nav-menu ul ul {
        margin: 0;
    }
/* Mobile Nav Toggle */
#mobile-nav-toggle {
    position: fixed;
    left: 2px;
    top: -1px;
    z-index: 999;
    margin: 0px 0px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
    padding: 0px;
}

    #mobile-nav-toggle i {
        color: #fff;
        background: #1f4183;
        padding: 3px 5px;
    }

        #mobile-nav-toggle i.fa {
            margin-right: 0px;
        }

/*#mobile-nav-toggle i.fa-times {
            color: #fff;
        }*/
/*@media (max-width: 768px) {
    #mobile-nav-toggle {
        display: inline;
    }
}*/
@media (max-width: 1200px) {
    #mobile-nav-toggle {
        display: block;
    }
}
/* Mobile Nav Styling */
#mobile-nav {
    position: relative;
    margin-top: 10px;
    z-index: 998;
    background: rgba(52, 59, 64, 0.9);
    width: 100%;
    transition: 0.4s;
    display: none;
}

    #mobile-nav ul, #horz-nav-ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        #mobile-nav ul li {
            position: relative;
            float: left;
        }

            #mobile-nav ul li a {
                color: #fff;
                font-size: 16px;
                padding: 10px 22px 10px 23px;
                position: relative;
                text-decoration: none;
                width: 100%;
                display: block;
                outline: none;
            }

                #mobile-nav ul li a:hover, #mobile-nav ul li a:focus {
                    color: #4cc5d6;
                }

            #mobile-nav ul li li {
                padding-left: 30px;
            }

ul#horz-nav-ul {
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    top: 2em;
    left: 0;
}

#horz-nav-ul li:hover ul, #horz-nav-ul li.sfHover ul {
    left: 0;
    top: 3.3em;
    z-index: 99999999;
}

#horz-nav-ul ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: rgba(0, 0, 0, 0.7);
}

#mobile-nav ul li li {
    position: relative;
    white-space: nowrap;
}

#mobile-nav ul li ul li {
    min-width: 180px;
}

#mobile-nav ul li li a {
    border-left: 1px solid #4cc5d6;
}

#mobile-nav ul .menu-has-children i.submenu {
    position: absolute;
    right: -5px;
    z-index: 99;
    cursor: pointer;
    color: #fff;
    top: 14px;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #4cc5d6;
}

#mobile-nav ul .menu-item-active {
    color: #4cc5d6;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(52, 59, 64, 0.9);
    display: none;
}

/* Mobile Nav body classes */
/*.nav-menu-col.mobile-nav-active {
    overflow: hidden;
}

    .nav-menu-col.mobile-nav-active #mobile-nav {
        left: 0;
    }

    .nav-menu-col.mobile-nav-active #mobile-nav-toggle {
        color: #fff;
    }*/
@media screen and (max-width: 767px) {
    #nav-wrap {
        height: auto;
        margin-bottom: 5px !important;
    }

        #nav-wrap ul {
            display: block;
            height: auto;
        }

            #nav-wrap ul li {
                width: 50%;
                float: left;
                position: relative;
            }

            #nav-wrap ul#horz-nav-ul > li > a {
                border: 0.5px solid #e9e9e9;
                /*border-right: 1px solid #576979;*/
            }

            #nav-wrap ul li a {
                text-align: left;
                width: 100%;
                /*text-indent: 25px;*/
            }

    #nav-wrap {
        width: 100%;
    }

    #mobile-nav ul .menu-has-children i.submenu {
        right: 10px;
    }
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 480px) {
    #nav-wrap {
        border-bottom: 0;
    }

        #nav-wrap ul {
            height: auto;
        }
}
/*Smartphone*/
@media only screen and (max-width : 320px) {
    #nav-wrap li {
        display: block;
        float: left;
        width: 100%;
        position: relative;
    }

        #nav-wrap li a {
            border-bottom: 1px solid #576979;
        }
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header {
    margin-bottom: 20px;
}

    .section-header h2 {
        font-size: 32px;
        color: #0c2e8a;
        text-transform: uppercase;
        font-weight: 700;
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 10px;
    }

        .section-header h2::before {
            content: '';
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: #4cc5d6;
            bottom: 0;
            left: 0;
        }

    .section-header p {
        padding: 0;
        margin: 0;
    }

@media (max-width: 768px) {
    .section-header, .section-header h2 {
        margin-bottom: 15px;
    }

        .section-header h2 {
            padding-bottom: 10px;
        }

    .carousel {
        display: none;
    }
    /*.tab-pane .container{
            padding-right: 0px;
    padding-left: 0px;
    }*/
}
/* About Section
--------------------------------*/
#about {
    padding: 60px 0 30px 0;
}

    #about .about-img {
        overflow: hidden;
    }

@media (max-width: 768px) {
    #about .about-img {
        height: auto;
    }

        #about .about-img img {
            margin-left: 0;
            padding-bottom: 5px;
        }
}

#about .content h2 {
    color: #0c2e8a;
    font-weight: 700;
    font-size: 36px;
    font-family: "Raleway", sans-serif;
}

#about .content p {
    line-height: 26px;
}

    #about .content p:last-child {
        margin-bottom: 0;
    }

#about .content i {
    font-size: 20px;
    padding-right: 4px;
    color: #4cc5d6;
}

#about .content ul {
    list-style: none;
    padding: 0;
}

    #about .content ul li {
        padding-bottom: 10px;
    }

@media (max-width: 768px) {
    #about {
        padding: 20px 0 20px 0;
    }

        .section-header h2, #about .content h2 {
            font-size: 22px;
        }

        #about .nav-justified .nav-item {
            flex-basis: inherit;
        }
}
/* Services Section
--------------------------------*/
#services {
    padding:60px 0 30px 0;
}

    #services .box {
        padding: 15px;
        margin-bottom: 40px;
        box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
        background: #fff;
        transition: 0.4s;
    }

        #services .box:hover {
            box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
            transform: translateY(-10px);
            -webkit-transform: translateY(-10px);
            -moz-transform: translateY(-10px);
        }

        #services .box .icon {
            float: left;
        }

            #services .box .icon i {
                color: #444;
                font-size: 64px;
                transition: 0.5s;
                line-height: 0;
                margin-top: 34px;
            }

                #services .box .icon i:before {
                    background: #0c2e8a;
                    background: linear-gradient(45deg, #4cc5d6 0%, #a3ebd5 100%);
                    background-clip: border-box;
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                }

        #services .box h4 {
            margin-left: 100px;
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 22px;
        }

            #services .box h4 a, #services p a {
                color: #444;
            }

        #services .box p {
            font-size: 14px;
            margin-left: 100px;
            margin-bottom: 0;
            line-height: 24px;
        }

@media (max-width: 767px) {
    #services .box .box {
        margin-bottom: 20px;
    }

    #services .box .icon {
        float: none;
        text-align: center;
        padding-bottom: 15px;
    }

    #services .box h4, #services .box p {
        margin-left: 0;
        text-align: center;
    }

    #services .box {
        padding: 10px;
        margin-bottom: 20px;
    }
}
/* Clients Section
--------------------------------*/
#clients {
    padding: 30px 0;
}

    #clients img {
        max-width: 100%;
        opacity: 0.5;
        transition: 0.3s;
        padding: 15px 0;
    }

        #clients img:hover {
            opacity: 1;
        }

    #clients .owl-nav, #clients .owl-dots {
        margin-top: 5px;
        text-align: center;
    }

    #clients .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd;
    }

        #clients .owl-dot.active {
            background-color: #4cc5d6;
        }
/* Our Portfolio Section
--------------------------------*/
#portfolio {
    padding: 60px 0 30px 0;
}

    #portfolio #portfolio-flters {
        padding: 0;
        margin: 0 auto 25px auto;
        list-style: none;
        text-align: center;
        border-radius: 50px;
    }

        #portfolio #portfolio-flters li {
            cursor: pointer;
            display: inline-block;
            padding: 10px 18px 12px 18px;
            font-size: 14px;
            font-weight: 500;
            line-height: 1;
            color: #444;
            margin: 0 3px 10px 3px;
            transition: all ease-in-out 0.3s;
            background: #f7f7f7;
            border-radius: 4px;
        }

            #portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
                color: #fff;
                background: #50d8af;
            }

            #portfolio #portfolio-flters li:last-child {
                margin-right: 0;
            }

    #portfolio .portfolio-item {
        margin-bottom: 30px;
        overflow: hidden;
    }

        #portfolio .portfolio-item img {
            position: relative;
            top: 0;
            transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
            height: 400px;
            width: 100%;
        }

        #portfolio .portfolio-item .portfolio-info {
            /*opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;*/
            background: #2F3055;
            padding: 15px 20px;
            color: #fff;
        }

            #portfolio .portfolio-item .portfolio-info h4 {
                font-size: 18px;
                color: #fff;
                font-weight: 500;
                margin: 0px;
                line-height: 24px;
            }

            #portfolio .portfolio-item .portfolio-info p {
                color: #fff;
                font-size: 14px;
                margin-bottom: 0;
            }

            #portfolio .portfolio-item .portfolio-info .preview-link, #portfolio .portfolio-item .portfolio-info .details-link, #portfolio .portfolio-item .portfolio-info .facebook-link {
                position: absolute;
                right: 80px;
                font-size: 24px;
                top: calc(50% - 18px);
                color: rgba(255, 255, 255, 0.6);
                transition: ease-in-out 0.3s;
            }

                #portfolio .portfolio-item .portfolio-info .preview-link:hover, #portfolio .portfolio-item .portfolio-info .details-link:hover {
                    color: #fff;
                }

            #portfolio .portfolio-item .portfolio-info .facebook-link {
                right: 15px;
            }

            #portfolio .portfolio-item .portfolio-info .details-link {
                right: 42px;
            }
/*#portfolio .portfolio-item:hover img {
  top: -30px;
}

#portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}*/
  #portfolio .portfolio-item .portfolio-info .post-date {
	position: absolute;
    top: 0;
    text-align: center;
    right: 15px;
    padding: 5px;
    background: #2F3055;
    min-width:60px;
}
 #portfolio .portfolio-item .portfolio-info .post-date p {
	margin-bottom: 0;
    color: #fff;
    font-size: 16px;
}
 #portfolio .portfolio-item .portfolio-info .post-date span {
	color: #fff;
	display: block;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.54px;
	text-transform: capitalize;
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 30px;
}

    .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: #50d8af !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-description h2 {
        width: 100%;
    }

    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }

    #portfolio .portfolio-item img {
        height: 250px;
        width: 100%;
    }
}

/* Testimonials Section
--------------------------------*/
#testimonials {
    padding: 60px 0 30px 0;
}

    #testimonials .testimonial-item {
        box-sizing: content-box;
        padding: 30px 30px 0 30px;
        margin: 30px 15px;
        text-align: center;
        min-height: 350px;
        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
        background: #fcfcfc;
    }

    #testimonials .testimonial-item-img {
        box-sizing: content-box;
        padding: 10px;
        margin: 30px 15px;
        text-align: center;
        /*min-height: 350px;*/
        height: 115px;
        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    }

@media (max-width: 767px) {
    #testimonials .testimonial-item {
        margin: 30px 10px;
    }
}

#testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 0%;
    border: 4px solid #fff;
    margin: 0 auto;
    height: 100px;
}

#testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
    text-align: left;
}

#testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 20px;
    text-align: justify;
}

#testimonials .testimonial-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 10px;
    display: inline-block;
    width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
    margin-bottom: -15px;
    padding-left: 10px;
    display: inline-block;
    max-width: 100%;
    width: 37px;
}

#testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

#testimonials .owl-nav, #testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
    margin-bottom: 15px;
}

#testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

    #testimonials .owl-dot.active {
        background-color: #4cc5d6;
    }

#testimonials .owl-carousel .owl-item .testimonial-item-img.portfolio-item img {
    display: block;
    width: 100%;
    height: 100%;
}
/* Call To Action Section
--------------------------------*/
#call-to-action {
    background: #081e5b;
    background-size: cover;
    padding: 40px 0;
}

    #call-to-action .cta-title {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
    }

    #call-to-action .cta-text {
        color: #fff;
    }

@media (min-width: 769px) {
    #call-to-action .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

#call-to-action .cta-btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 3px;
    transition: 0.5s;
    margin: 10px;
    border: 3px solid #fff;
    color: #fff;
}

    #call-to-action .cta-btn:hover {
        background: #4cc5d6;
        border: 3px solid #4cc5d6;
    }
/* Our Team Section
--------------------------------*/
#team {
    background: #fff;
    padding: 30px 0 0 0;
}

    #team .member {
        text-align: center;
        margin-bottom: 20px;
    }

        #team .member .pic {
            overflow: hidden;
            text-align: center;
        }

            #team .member .pic img {
                max-width: 100%;
            }

        #team .member .details {
            background: #4cc5d6;
            color: #fff;
            padding: 15px;
            border-radius: 0 0 3px 3px;
        }

        #team .member h4 {
            font-weight: 700;
            margin-bottom: 2px;
            font-size: 18px;
        }

        #team .member span {
            font-style: italic;
            display: block;
            font-size: 13px;
        }

        #team .member .social {
            margin-top: 5px;
        }

            #team .member .social a {
                color: #fff;
            }

            #team .member .social i {
                font-size: 16px;
                margin: 0 2px;
            }
/* Contact Section
--------------------------------*/
#contact {
    padding: 60px 0 30px 0;
}

    #contact .contact-info {
        margin-bottom: 20px;
        text-align: center;
    }

        #contact .contact-info i {
            font-size: 48px;
            display: inline-block;
            margin-bottom: 10px;
            color: #4cc5d6;
        }

        #contact .contact-info address, #contact .contact-info p {
            margin-bottom: 0;
            color: #000;
        }

        #contact .contact-info h3 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: bold;
            text-transform: uppercase;
            color: #333;
        }

        #contact .contact-info a {
            color: #000;
        }

            #contact .contact-info a:hover {
                color: #4cc5d6;
            }

    #contact .contact-address, #contact .contact-phone, #contact .contact-email {
        margin-bottom: 20px;
    }

@media (min-width: 768px) {
    #contact .contact-border {
        padding: 20px 0;
    }
}

@media (min-width: 768px) {
    #contact .contact-border {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
}

#contact #google-map {
    height: 290px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    #contact #google-map {
        margin-top: 20px;
    }
}

#contact .form #sendmessage {
    color: #4cc5d6;
    border: 1px solid #4cc5d6;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

    #contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
        display: block;
    }

#contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#contact .form input, #contact .form textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
}

#contact .form button[type="submit"] {
    background: #4cc5d6;
    border: 0;
    border-radius: 3px;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
}

    #contact .form button[type="submit"]:hover {
        background: #2dc899;
    }

#contact .form input.btnsubmit {
    background: #4cc5d6;
    border: 0;
    border-radius: 3px;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
}

    #contact .form input.btnsubmit:hover {
        background: #2dc899;
    }
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 70px; /* Margin bottom by footer height */
}

#footer {
    background: #f2f5f8;
    padding: 0 0 20px 0;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px;
}

    #footer .copyright {
        text-align: left;
        padding-top: 25px;
    }

    #footer .credits {
        text-align: right;
        font-size: 13px;
        color: #555;
        padding-top: 15px;
    }

        #footer .credits a {
            color: #0c2e8a;
        }

@media (max-width: 768px) {
    #footer {
        height: auto;
        position: relative;
        font-size: 17px;
    }

    body {
        margin-bottom: 0px; /* Margin bottom by footer height */
    }

    #footer .copyright, #footer .credits {
        text-align: center;
        font-size: 17px;
    }
}
/****EDIT*/
#about .content #accordion h3 {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    font-style: normal;
    margin-bottom: 0px;
    text-align: left;
}

#about .content h3 {
    color: #444;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 26px;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 0px;
    text-align: justify;
}

@media (max-width: 768px) {
    #about .content #accordion h3 {
        font-size: 15px;
    }
}

#about #accordion .card {
    margin-bottom: 5px;
}

#about p {
    text-align: justify;
    font-size: 1.1rem;
}

#about #accordion .card-header {
    padding: .75rem .75rem;
    margin-bottom: 0;
    /*background-color: rgba(0,0,0,.01);
    border-bottom: 1px solid rgba(0,0,0,.125);*/
    background-color: rgba(76, 197, 214, .1);
    border-bottom: 1px solid #4cc5d6;
}

#about #accordion .card-block {
    padding: 10px;
}

#about #accordion .nav-pills .nav-link.active, #about #accordion .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #0C2E8A;
}

#about #accordion .nav-link {
    background: #354c86;
}

.fa-ul {
    position: relative;
    margin-left: 1.542857em;
}

.fa-li {
    left: -1.542857em;
    position: absolute;
    text-align: center;
    line-height: inherit;
    width: 1em;
    top: auto;
}

.applyform .form #sendmessage {
    color: #202353;
    border: 1px solid #202353;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

.applyform .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

    .applyform .form #sendmessage.show, .applyform .form #errormessage.show, .applyform .form .show {
        display: block;
    }

.applyform .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

.applyform .form input, .applyform .form textarea {
    /*padding: 10px 14px;*/
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
}

    .applyform .form button[type="submit"], .applyform .form input[type="button"].register {
        background: #202353;
        border: 0;
        border-radius: 0px;
        padding: 10px 30px;
        color: #fff;
        transition: 0.4s;
        cursor: pointer;
    }

        .applyform .form button[type="submit"]:hover, .applyform .form input[type="button"].register:hover {
            background: #2dc899;
        }
/******Button*******/
#apply .btn-primary {
    background: #202353;
    border: 0;
    border-radius: 0px;
    color: #fff;
    transition: 0.4s;
    background-color: #202353;
    border-color: #202353;
}

    #apply .btn-primary:hover {
        background: #2dc899;
    }

#apply .form-control {
    border-radius: 0px;
}

#portfolio .box {
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
    background: #fff;
    transition: 0.4s;
    cursor: pointer;
}

    #portfolio .box:hover {
        box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
    }

    #portfolio .box .icon {
        float: left;
    }

        #portfolio .box .icon i {
            color: #444;
            font-size: 64px;
            transition: 0.5s;
            line-height: 0;
            margin-top: 34px;
        }

            #portfolio .box .icon i:before {
                background: #0c2e8a;
                background: linear-gradient(45deg, #4cc5d6 0%, #a3ebd5 100%);
                background-clip: border-box;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

    #portfolio .box h4 {
        margin-left: 100px;
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 22px;
    }

        #portfolio .box h4 a {
            color: #444;
        }

    #portfolio .box p {
        font-size: 14px;
        margin-left: 100px;
        margin-bottom: 0;
        line-height: 24px;
    }

    #portfolio .box.newsbtn-active {
        background: #4cc5d6;
        color: #fff;
    }

        #portfolio .box.newsbtn-active .icon i:before {
            background: #0c2e8a;
            background: linear-gradient(45deg, #444 0%, #888 100%);
            background-clip: border-box;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

@media (max-width: 767px) {
    #portfolio .box .box {
        margin-bottom: 20px;
    }

    #portfolio .box .icon {
        float: none;
        text-align: center;
        padding-bottom: 15px;
    }

    #portfolio .box h4, #portfolio .box p {
        margin-left: 0;
        text-align: center;
    }
}

i.fa {
    margin-right: 5px;
}

.text-white {
    color: #ffffff;
}
/****Ocen Wave*/
#footer {
    /*width: 500px;
  height: 500px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;*/
    background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
    overflow: hidden;
}

.wave {
    width: 700px;
    height: 725px;
    position: absolute;
    /*top: -25%;
  left: 50%;
  margin-left: -400px;
  margin-top: -400px;*/
    border-radius: 35%;
    background: rgba(255, 255, 255, .75);
    animation: wave 15s infinite linear;
}

.wave1 {
    width: 700px;
    height: 725px;
    position: absolute;
    /*top: -25%;
  left: 50%;
  margin-left: -400px;
  margin-top: -400px;*/
    left: 50%;
    border-radius: 35%;
    background: rgba(255, 255, 255, .75);
    animation: wave 15s infinite linear;
}

@keyframes wave {
    from {
        transform: rotate(0deg);
    }

    from {
        transform: rotate(360deg);
    }
}

.col-centered {
    float: none;
    margin: 0 auto;
}
/*.product-tabs .tab-content {
  color : white;
  background-color: #428bca;
  padding : 5px 15px;
}
.product-tabs .nav-tabs > li > a {
  border-radius: 0;
}*/
.product-tabs .nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

    .product-tabs .nav > li > a:hover, .product-tabs .nav > li > a:focus {
        text-decoration: none;
        background-color: #4cc5d6;
        color: #ffffff;
    }

.product-tabs .tab-content {
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    border-top: 1px solid #dee2e6;
    margin-top: -1px;
}

@media (max-width: 768px) {
    .product-tabs .nav-tabs > li {
        float: none;
        /*width:100%;*/
        flex-basis: inherit;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        text-align: center;
    }
}

.mtop10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.tech_ziegler_text {
    color: #004964;
    font-weight: 900;
    text-transform: uppercase;
    text-align: right;
    vertical-align: middle;
    font-size: 1.7vw;
    letter-spacing: -1px;
    margin-top: 5%;
}

.ziegler_text {
    color: #004964;
    font-weight: 900;
    text-transform: uppercase;
    text-align: right;
    vertical-align: middle;
    font-size: 90%;
    letter-spacing: -1px;
    margin-top: 0;
}

.togglecontact {
    display: none;
    padding: 5px;
    background: #1f4183;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    visibility: hidden;
    font-size: 16px;
    font-weight: 700;
    color: #fff !important;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.conbtnarr {
    display: block;
    background: url("../images/arrow.png") no-repeat scroll 100% -13px;
    font-family: "Open sans", sans-serif;
    font-size: 17px;
    line-height: 21px;
    color: #fff;
    cursor: pointer;
    position: relative;
    height: 10px;
    display: inline-block;
    top: 0px;
    width: 32px;
}

.active .conbtnarr {
    background-position: 100% 0px;
}

.main-top {
    display: none;
}

#portfolio .a-inherit {
    color: inherit;
}

#nav-menu-container ul .menu-has-children i.submenu {
    float: right;
    z-index: 99;
    padding: 5px;
    cursor: pointer;
    color: #444;
}

.bg-ingesta {
    background-color: #26a7de;
}

.bg-nanshe {
    background-color: #303c61;
}

.bg-ingesta-premium {
    background-color: #ffcc34;
}

.bg_timee_premium {
    background-color: #cd3c38;
}

.bg_hamun {
    background-color: #9b4698;
}

.bg_timee {
    background-color: #1b98a6;
}

#top-navigation {
    text-align: center;
    margin: 0 auto;
    background: #1f4183;
}

    #top-navigation ul {
        margin: 0;
        padding: 0;
    }

        #top-navigation ul li.menu-item {
            display: inline-block;
        }

        #top-navigation ul li {
            display: block;
            list-style-type: none;
            line-height: 27px;
            font-size: 18px;
        }

            #top-navigation ul li a {
                color: #ffffff;
            }

#blogs {
    padding: 60px 0 30px 0;
}

section.featured-posts .text-inner {
    padding: 70px 20px;
    height: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

section.featured-posts .post-header {
    margin-bottom: 10px;
}

section.featured-posts p {
    font-weight: 400;
    color: #777;
    font-size: 0.95em;
}

section.featured-posts .post-footer {
    margin-top: 30px;
}

section.featured-posts a .post-header h2{
    color: #555;
}

section.featured-posts .image {
    max-height: 200px;
    width: auto;
    overflow: hidden;
    padding: 0;
}

    section.featured-posts .image img {
        height: 100%;
        width: 100%;
    }

section.featured-posts .avatar {
    max-width: 40px;
    min-width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 10px;
}

section.featured-posts .title, section.featured-posts .date, section.featured-posts .comments {
    font-size: 0.8em;
    font-weight: 400;
    color: #999;
}

    section.featured-posts .title i, section.featured-posts .date i, section.featured-posts .comments i {
        margin-right: 5px;
    }

    section.featured-posts .title::after, section.featured-posts .date::after, section.featured-posts .comments::after {
        content: '|';
        display: inline-block;
        margin: 0 7px;
        font-size: 0.9em;
        color: #ccc;
    }

    section.featured-posts .comments::after {
        display: none;
    }

section.featured-posts .row:nth-of-type(odd) .text {
    background: #fafafa;
}

section.featured-posts .row:last-of-type {
    margin-bottom: 0;
}

section.featured-posts .box {
    padding: 30px 30px 15px 15px;
    margin-bottom: 140px;
    box-shadow: 10px 10px 15px rgb(73 78 92 / 10%);
    background: #fff;
    transition: 0.4s;
}

.jp_first_blog_post_cont_wrapper {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
    border-top: 0;
    text-align: justify;
}

    .jp_first_blog_post_cont_wrapper a {
        color: #556BAE;
        transition: 0.5s;
    }

        .jp_first_blog_post_cont_wrapper a:hover {
            color: #004964;
        }

    .jp_first_blog_post_cont_wrapper p span {
        text-transform: uppercase;
        color: #2F3055;
        font-weight: 700;
    }

.jp_first_blog_bottom_cont_wrapper {
    padding: 25px 30px;
    border: 1px solid #e2e2e2;
    border-top: 0;
    width: 100%;
}

.jp_blog_bottom_right_cont ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jp_blog_bottom_right_cont li {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

    .jp_blog_bottom_right_cont li:first-child {
        margin-left: 0;
        color: #222;
        margin-top: 7px;
    }

    .jp_blog_bottom_right_cont li a {
        float: left;
        width: 35px;
        height: 35px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        background: transparent;
        text-align: center;
        line-height: 35px;
        color: #797979;
        /*border-radius: 50px;
            background: #ddd;*/
    }

        /*.jp_blog_bottom_right_cont li a:hover {
            background: #2F3055;
            color: #ffffff;
            -webkit-transition: all 0.5s;
            -o-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -moz-transition: all 0.5s;
            transition: all 0.5s;
        }*/

.job_filter_category_sidebar {
    border: 1px solid #e2e2e2;
    margin-bottom: 30px;
}

.job_filter_sidebar_heading {
    padding: 18px 20px;
    background: #2F3055;
    text-align: center;
}

    .job_filter_sidebar_heading h1 {
        color: #fff;
        font-size: 18px;
        text-transform: uppercase;
        margin: 0;
    }

.category_jobbox {
    padding: 20px;
}

.jp_rightside_career_img {
    float: left;
    width: 80px;
}

.jp_rightside_career_content_wrapper {
    margin-bottom: 25px;
}

.jp_rightside_career_img_cont {
    float: left;
    width: calc(100% - 80px);
    padding-left: 20px;
}

    .jp_rightside_career_img_cont h4 {
        margin: 0px;
        padding: 0px;
    }

        .jp_rightside_career_img_cont h4 a {
            font-size: 16px;
            color: #222;
        }

    .jp_rightside_career_img_cont p {
        font-size: 14px;
        padding-top: 3px;
        text-transform: capitalize;
    }

        .jp_rightside_career_img_cont p i {
            color: #f36969;
            font-size: 14px;
        }

.category_jobbox a {
    color: #556BAE;
    transition: 0.5s;
}

.category_jobbox .seeMore a {
    text-transform: uppercase;
}

.category_jobbox a:hover {
    color: #004964;
}

@media (max-width: 991px) {
    section.featured-posts .image {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        max-height: 300px;
        min-height: auto !important;
    }

        section.featured-posts .image img {
            width: 100%;
            height: auto !important;
        }

    section.featured-posts .text {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

@media (max-width: 575px) {
    section.featured-posts .post-footer {
        font-size: 0.9em;
    }
}

@media (max-width: 350px) {
    section.featured-posts .text-inner {
        padding: 15px;
    }

    section.featured-posts .post-footer {
        font-size: 0.75em;
    }
}


/*Styles for screen 515px and lower*/
@media (max-width : 480px) {
    .tech_ziegler_text {
        font-size: 3vw;
        letter-spacing: 0px;
        margin-top: 3%;
    }
}

@media (max-width: 784px) {
    #topbar {
        display: none !important;
    }
}
