html {
    margin: 0;
    padding: 0;
}

header, menu, nav, section {
    display: block;
}


ol, ul {
    list-style: inside;
}

html, body {
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
}

h1 {
    /*font-family: 'Gloria Hallelujah', cursive;*/
}

.img-center {
    margin: auto;
    display: inline-block;
}
/*---------------------------------------------------------------------------------------*/
/* GLOBAL SETTINGS */
/*--------------------------------------------------------------------------------------*/
*, *:before, *:after {
    box-sizing: inherit;
}

body {
    min-width: 320px;
}



.t-left {
    text-align: left;
}

.t-right {
    text-align: right;
}

.t-center {
    text-align: center;
}

body .no-padd {
    padding: 0;
}

.no-padd-nav {
    padding: 0;
}


/* background image settings */
.s-back-switch {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*-------------------------------------------------------------------------------------------------------*/
/* HEADER */
/*-------------------------------------------------------------------------------------------------------*/
.wpc-navigation {
    position: relative;
    min-height: 40px;
}

.main-menu {
    margin: 0;
}

    .main-menu li {
        display: inline-block;
        margin-right: 5px;
        padding-right: 5px;
        position: relative;
    }

    .main-menu .sub-menu {
        display: none;
        padding: 0;
        position: absolute;
        white-space: nowrap;
    }

    /* Active menu items */
    .main-menu .current-menu-parent a,
    .main-menu .current-menu-item a {
        color: #000;
    }

/* Show second and third menu levels */
@media screen and (min-width: 768px) {
    .main-menu .sub-menu li {
        display: block;
    }

    .main-menu li:hover > .sub-menu {
        display: block;
    }

    .main-menu .sub-menu .sub-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }
}

/* Responsive menu button */
.nav-menu-icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    display: none;
    cursor: pointer;
}

/* Don`t reqiured */
.wpc-navigation.active .nav-menu-icon i {
    background: none;
}

    .wpc-navigation.active .nav-menu-icon i:before {
        top: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .wpc-navigation.active .nav-menu-icon i:after {
        top: 0;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

/* End Don`t reqiured */
.nav-menu-icon i:before, .nav-menu-icon i:after {
    content: '';
    width: 32px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    -ms-transition: all 0.15s ease-out;
}

.nav-menu-icon i:before {
    top: -7px;
}

.nav-menu-icon i:after {
    bottom: -7px;
}

.nav-menu-icon i {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 2px;
    background: #000;
}

.menu-item-has-children > a span {
    display: none;
}

/* Responsive menu */
@media screen and (max-width: 768px) {
    .nav-menu-icon {
        display: block;
    }

    .main-menu {
        display: none;
    }

    .wpc-navigation.active .main-menu {
        display: block;
        width: 100%;
        background-color: #fff;
        padding: 0;
        height: auto;
    }

    .main-menu li {
        display: block;
    }

    .main-menu .sub-menu {
        position: static;
        padding: 5px 15px;
    }

    .menu-item-has-children > a span {
        display: inline-block;
    }

    .menu-item-has-children.active > .sub-menu {
        display: block;
        position: static;
    }
}

/*--------------- BUTTON ----------------*/

.a-btn {
    display: inline-block;
    text-transform: uppercase;
    font-size: 11px;
    color: #fff;
    padding: 14px 45px;
    letter-spacing: 1px;
    border-radius: 0;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    box-sizing: border-box;
}

    .a-btn.style-1 {
        background-color: #ff8065;
        border: 2px solid #ff8065;
    }

    .a-btn.style-2 {
        background-color: #46BAE2;
    }

    .a-btn.style-3 {
        background-color: #363E50;
        border: 1px solid #363E50;
    }

    .a-btn.hover-1:hover {
        background-color: transparent;
        color: #ff8065;
        text-decoration: none;
    }

    .a-btn.hover-2:hover {
        background-color: transparent;
        color: #46BAE2;
        text-decoration: none;
    }

    .a-btn.hover-3:hover {
        background-color: transparent;
        color: #363E50;
        text-decoration: none;
    }




/*-------------------------------------------------------------------------------------------------------------------------------*/
/* SWIPER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    direction: ltr;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: inherit;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    -webkit-transition-property: -webkit-transform, left, top;
    -webkit-transition-duration: 0s;
    -webkit-transform: translate3d(0px, 0, 0);
    -webkit-transition-timing-function: ease;
    -moz-transition-property: -moz-transform, left, top;
    -moz-transition-duration: 0s;
    -moz-transform: translate3d(0px, 0, 0);
    -moz-transition-timing-function: ease;
    -o-transition-property: -o-transform, left, top;
    -o-transition-duration: 0s;
    -o-transform: translate3d(0px, 0, 0);
    -o-transition-timing-function: ease;
    -o-transform: translate(0px, 0px);
    -ms-transition-property: -ms-transform, left, top;
    -ms-transition-duration: 0s;
    -ms-transform: translate3d(0px, 0, 0);
    -ms-transition-timing-function: ease;
    -webkit-transition-property: left, top, -webkit-transform;
    transition-property: left, top, -webkit-transform;
    transition-property: transform, left, top;
    transition-property: transform, left, top, -webkit-transform;
    transition-duration: 0s;
    transform: translate3d(0px, 0, 0);
    transition-timing-function: ease;
    box-sizing: content-box;
    /*cursor: ew-resize;*/
    margin: 0 auto;
    height: inherit;
    float: left;
}

.swiper-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    float: left;
    height: inherit;
    position: relative;
}

.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
}

.pagination {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
}

.swiper-pagination-switch {
    position: relative;
    display: inline-block;
    float: none;
    cursor: pointer;
    transition: all .35s ease-out;
    -webkit-transition: all .35s ease-out;
    -moz-transition: all .35s ease-out;
    -ms-transition: all .35s ease-out;
}

.point-style-1 .swiper-pagination-switch {
    width: 7px;
    height: 7px;
    background: #5c5c5c;
    margin: 0px 6px;
    border: 2px solid transparent;
}

    .point-style-1 .swiper-pagination-switch.swiper-active-switch {
        border: 2px solid #84694e;
        background: none;
    }

* {
    outline: none;
}



/*--------------------------------------------------------------------------------------*/
/* HEADER BOTTOM */
/*--------------------------------------------------------------------------------------*/
/* Logo */
.logo-wrap {
    float: left;
    display: block;
    max-height: 100px;
    text-align:center;
    width:100%;
}

    .logo-wrap a {
        width: 100%;
        overflow: hidden;
        display: block;
        font-size: 24px;
        line-height: 30px;
        display: inline-block;
        text-decoration: none;
        color: #04517d;
        text-decoration: none;
        letter-spacing: 2.40px;
        text-transform: uppercase;
    }

        .logo-wrap a span {
            color: #ff8065;
        }

        .logo-wrap a img {
            max-height: 60px;
            width: auto;
            display: inline-block;
            margin-top: 20px;
        }

    .logo-wrap.style-1 {
        padding-top: 0px;
        padding-bottom: 0px;
    }

        .logo-wrap.style-1 a {
            line-height: 100px;
        }

    .logo-wrap.style-2 {
        padding-top: 0px;
        padding-bottom: 0px;
        width: 100%;
        position: relative;
        max-height: 118px;
    }

        .logo-wrap.style-2 a {
            line-height: 100px;
            margin-top: 18px;
            max-height: 100px;
        }

            .logo-wrap.style-2 a img {
                max-height: 60px;
                margin-top: 15px;
                margin-right: 275px;
            }

        .logo-wrap.style-2:before {
            position: absolute;
            content: '';
            top: 0;
            left: -1000px;
            min-width: 1600px;
            height: 9px;
            background-color: #313752;
        }

        .logo-wrap.style-2:after {
            position: absolute;
            content: '';
            top: 5px;
            right: -8px;
            min-width: 50px;
            height: 50px;
            background-color: transparent;
            z-index: 1;
            border-top: 20px solid #313752;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }

/* Menu contacts */

.hide-btn {
    display: block;
}

@media (max-width:767px) {
    .hide-btn {
        display: none !important;
    }
}

.menu-contacts {
    float: right;
    width: 100%;
    background-color: #313752;
    text-align: right;
    font-size: 0px;
    padding-top: 9px;
    padding-bottom: 11px;
    position: relative;
}

    .menu-contacts .logo-wrap {
        display: none;
    }

    .menu-contacts a {
        display: inline-block;
        color: #ffffff;
        font-size: 12px;
        line-height: 10px;
        text-decoration: none;
        box-sizing: content-box;
    }

        .menu-contacts a:last-child {
            margin-left: 5px;
        }

        .menu-contacts a:nth-last-child(2) {
            margin-left: 5px;
        }

        .menu-contacts a:nth-last-child(3) {
            margin-left: 12px;
        }

    .menu-contacts .text-link {
        padding-right: 16px;
        border-right: 0px solid #afb2b8;
        margin-top: 9px;
        margin-bottom: 9px;
        -webkit-transition: all ease 0.7s;
        transition: all ease 0.7s;
    }

        .menu-contacts .text-link:hover {
            color: #ff8065;
        }

    .menu-contacts .button-link {
        line-height: 30px;
        border-radius: 15px;
        text-transform: uppercase;
        padding: 0px;
        -webkit-transition: all ease 0.7s;
        transition: all ease 0.7s;
        box-sizing: border-box;
        text-align: center;
        margin-right: 5px;
    }

        .menu-contacts .button-link.orange-bg {
            background-color: #ff8065;
        }

            .menu-contacts .button-link.orange-bg:hover {
                background-color: #ffffff;
                -webkit-transition: all ease 0.7s;
                transition: all ease 0.7s;
                color: #ff8065;
            }

        .menu-contacts .button-link.blue-bg {
            background-color: #10c0e7;
        }

            .menu-contacts .button-link.blue-bg:hover {
                background-color: #ffffff;
                -webkit-transition: all ease 0.7s;
                transition: all ease 0.7s;
                color: #10c0e7;
            }

        .menu-contacts .button-link.no-blue-bg {
            background-color: transparent;
        }

            .menu-contacts .button-link.no-blue-bg:hover {
                background-color: #ffffff;
                -webkit-transition: all ease 0.7s;
                transition: all ease 0.7s;
                color: #10c0e7;
            }

        .menu-contacts .button-link.no-orange-bg {
            background-color: #ff8065;
            height: 30px;
            width: 30px;
        }

            .menu-contacts .button-link.no-orange-bg:hover {
                background-color: #ffffff;
                -webkit-transition: all ease 0.7s;
                transition: all ease 0.7s;
                color: #ff8065;
            }

    .menu-contacts:after {
        position: absolute;
        content: '';
        min-width: 1000px;
        min-height: 50px;
        top: 0;
        right: -1000px;
        background-color: #313752;
    }

    .menu-contacts:before {
        position: absolute;
        content: '';
        width: 50px;
        height: 50px;
        top: 0;
        left: -35px;
        background-color: #313752;
        border-bottom-left-radius: 50%;
        z-index: 1;
    }

/* Main menu */
.wpc-navigation {
    position: relative;
    min-height: 0px;
    font-size: 0px;
    float: right;
}

.main-menu {
    padding: 0px;
    margin: 0;
    float: right;
}

    .main-menu .menu-item a {
        /*font-family: 'Gloria Hallelujah', cursive;*/
        color: #313752;
        font-size: 11px;
        line-height: 20px;
        display: inline-block;
        letter-spacing: 1.10px;
        text-transform: uppercase;
        margin-left: 15px;
        margin-right: 15px;
        z-index: 100;
        -webkit-transition: all ease 0.5s;
        transition: all ease 0.5s;
        text-decoration: none;
    }

        .main-menu .menu-item a:hover {
            color: #F2745F;
        }

        .main-menu .menu-item a .fa-angle-down {
            position: relative;
            padding: 0px 10px;
            z-index: 10;
        }

        .main-menu .menu-item a.active {
            color: #F2745F;
        }

    .main-menu .menu-item:last-child a {
        margin-right: 0px;
    }

    .main-menu .menu-item .sub-menu {
        min-width: 100px;
        z-index: 200;
    }

        .main-menu .menu-item .sub-menu .menu-item a {
            padding-top: 15px;
            padding-bottom: 15px;
            margin-right: 0px;
            margin-left: 0px;
            padding-left: 15px;
            padding-right: 15px;
            width: 100%;
        }

        .main-menu .menu-item .sub-menu .menu-item.menu-item-has-children > a:after {
            /*content: '\f105';*/
            float: right;
            font-family: FontAwesome;
            font-size: 12px;
        }

    /* Style-1 for menu */
    .main-menu.style-1 {
        position: relative;
        background-color: #313752;
    }

        .main-menu.style-1 .menu-item a {
            padding-top: 40px;
            padding-bottom: 40px;
        }

        .main-menu.style-1 .menu-item .sub-menu {
            background-color: #313752;
        }

        .main-menu.style-1:after {
            position: absolute;
            content: '';
            min-width: 1000px;
            height: 100px;
            background-color: #313752;
            right: -1000px;
            top: 0;
        }

        .main-menu.style-1:before {
            position: absolute;
            content: '';
            width: 168px;
            height: 168px;
            background-color: #313752;
            left: -50px;
            top: -34px;
            border-radius: 50%;
            z-index: -1;
        }

    /* Style-2 for menu */
    .main-menu.style-2 {
        background-color: #ffffff;
    }

        .main-menu.style-2 .menu-item a {
            padding-top: 24px;
            padding-bottom: 24px;
        }

        .main-menu.style-2 .menu-item .sub-menu {
            background-color: #ffffff;
        }

        .main-menu.style-2 > .menu-item > a.active {
            border-bottom: 3px solid #ff8065;
            padding-bottom: 21px;
        }

    /* Style-3 for menu */
    .main-menu.style-3 {
        background-color: #ffffff;
    }

        .main-menu.style-3 .menu-item a {
            padding-top: 24px;
            padding-bottom: 24px;
        }

            .main-menu.style-3 .menu-item a:hover {
                color: #10c0e7;
            }

        .main-menu.style-3 .menu-item .sub-menu {
            background-color: #ffffff;
        }

        .main-menu.style-3 > .menu-item > a.active {
            border-bottom: 3px solid #10c0e7;
            color: #10c0e7;
            padding-bottom: 21px;
        }

    .main-menu li {
        display: inline-block;
        margin-right: 0px;
        padding-right: 0px;
        position: relative;
    }

    .main-menu .sub-menu {
        display: none;
        padding: 0;
        position: absolute;
        white-space: nowrap;
    }

/* Active menu items */

/*.main-menu .current-menu-parent a,
.main-menu .current-menu-item a {
  color: #000;
  color: #b9bed1; }*/

/* Responsive menu button */
.nav-menu-icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    display: none;
    cursor: pointer;
}

    .nav-menu-icon i {
        top: 50%;
    }

/* Don`t reqiured */
.wpc-navigation.active .nav-menu-icon i {
    background: none;
}

    .wpc-navigation.active .nav-menu-icon i:before {
        top: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .wpc-navigation.active .nav-menu-icon i:after {
        top: 0;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

/* End Don`t reqiured */
.nav-menu-icon i:before, .nav-menu-icon i:after {
    content: '';
    width: 32px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    -ms-transition: all 0.15s ease-out;
}

.nav-menu-icon i:before {
    top: -7px;
}

.nav-menu-icon i:after {
    bottom: -7px;
}

.nav-menu-icon i {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 2px;
    background: #000;
}

.menu-item-has-children > a span {
    display: none;
}

.nav-menu-icon.style-2 i,
.nav-menu-icon.style-2 i:before,
.nav-menu-icon.style-2 i:after {
    background-color: #313752;
}

/*--------------------------------------------------------------------------------------*/
/* BANNER */
/*--------------------------------------------------------------------------------------*/
.banner-wrap {
    padding: 150px 0 130px;
}
@media(max-width:767px ) {
    .banner-wrap.style-1 {
        padding: 120px 0;
        height:400px;
    }

}
@media(min-width:768px ) {
    .banner-wrap.style-1 {
        padding: 120px 0;
        height: 450px;
    }
}
        .banner-wrap.style-1 .banner {
            text-align: left;
            max-width: 1030px;
            margin: auto;
        }

            .banner-wrap.style-1 .banner .title {
                max-width: 500px;
                line-height: 50px;
                margin-bottom: 37px;
            }

            .banner-wrap.style-1 .banner .a-btn {
                margin-top: 62px;
                /*box-shadow: 0 10px 10px rgba(168, 173, 187, 0.62);*/
            }

    .banner-wrap.style-2 {
        padding: 128px 0 120px;
    }

        .banner-wrap.style-2 .banner .subtitle {
            font-size: 15px;
            max-width: 566px;
            margin: auto;
            line-height: 25px;
        }

    .banner-wrap .a-btn {
        padding: 10px 25px;
    }

.banner {
    text-align: center;
}

    .banner .title {
        font-size: 42px;
        color: #fff;
        margin-bottom: 26px;
    }

    .banner .subtitle {
        color: #ff8065;
        font-size: 16px;
        font-weight: 400;
    }

    .banner .a-btn {
        margin-top: 90px;
    }

/* Banner-slider */
.banner-slider-wrap {
    position: relative;
}

    .banner-slider-wrap .swiper-arrow-left {
        position: absolute;
        text-align: center;
        top: 50%;
        left: 10.8%;
        font-size: 18px;
        line-height: 42px;
        height: 42px;
        width: 42px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: #ffffff;
        -webkit-transition: all ease 0.3s;
        transition: all ease 0.3s;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        cursor: pointer;
    }

        .banner-slider-wrap .swiper-arrow-left .fa {
            line-height: 38px;
            width: 38px;
            text-align: center;
            vertical-align: top;
            padding-right: 3px;
        }

        .banner-slider-wrap .swiper-arrow-left:hover {
            border-color: #ffffff;
        }

    .banner-slider-wrap .swiper-arrow-right {
        position: absolute;
        top: 50%;
        right: 10.8%;
        font-size: 18px;
        line-height: 42px;
        height: 42px;
        width: 42px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: #ffffff;
        text-align: center;
        -webkit-transition: all ease 0.3s;
        transition: all ease 0.3s;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        cursor: pointer;
    }

        .banner-slider-wrap .swiper-arrow-right .fa {
            line-height: 38px;
            width: 38px;
            text-align: center;
            vertical-align: top;
            padding-left: 3px;
        }

        .banner-slider-wrap .swiper-arrow-right:hover {
            border-color: #ffffff;
        }

    .banner-slider-wrap .pagination {
        padding-bottom: 30px;
    }

        .banner-slider-wrap .pagination .swiper-pagination-switch {
            width: 8px;
            height: 8px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            margin-right: 8px;
        }

            .banner-slider-wrap .pagination .swiper-pagination-switch:last-child {
                margin-right: 0px;
            }

        .banner-slider-wrap .pagination .swiper-active-switch {
            background-color: #ffffff;
            border: 2px solid #ffffff;
        }

    .banner-slider-wrap body .banner-wrap {
        padding-bottom: 105px;
    }

        .banner-slider-wrap body .banner-wrap .banner {
            padding-top: 4px;
            padding-left: 24px;
        }

            .banner-slider-wrap body .banner-wrap .banner .title {
                max-width: 450px;
                margin-bottom: 25px;
            }

            .banner-slider-wrap body .banner-wrap .banner .subtitle {
                max-width: 450px;
            }

            .banner-slider-wrap body .banner-wrap .banner .a-btn {
                margin-top: 86px;
                letter-spacing: 1.10px;
                padding-right: 44px;
            }

/* Banner rocket */
.banner-rocket-wrap {
    padding-top: 130px;
    position: relative;
    height: 500px;
    /*background-image: url(../img/r-4.jpg);*/
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

    .banner-rocket-wrap .shine {
        position: absolute;
        width: 700px;
        height: 700px;
        top: 40%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

        .banner-rocket-wrap .shine .img {
            width: 100%;
            opacity: 0;
            height: auto;
        }

    .banner-rocket-wrap .rocket {
        position: absolute;
        width: 270px;
        height: 866px;
        top: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

        .banner-rocket-wrap .rocket .img {
            width: 100%;
            height: auto;
        }

    .banner-rocket-wrap .banner-overlay {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(58, 69, 88, 0.75);
    }

    .banner-rocket-wrap .banner {
        max-width: 570px;
        margin-left: auto;
        margin-right: auto;
    }

        .banner-rocket-wrap .banner .subtitle {
            line-height: 24px;
            font-size: 15px;
        }

        .banner-rocket-wrap .banner .a-btn {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

    .banner-rocket-wrap.active {
        -webkit-animation-name: rocket-bg;
        animation-name: rocket-bg;
        -webkit-animation-duration: 10s;
        animation-duration: 10s;
        -webkit-animation-delay: 5s;
        animation-delay: 5s;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

        .banner-rocket-wrap.active .shine .img {
            -webkit-animation-name: shine;
            animation-name: shine;
            -webkit-animation-delay: 7s;
            animation-delay: 7s;
            -webkit-animation-duration: 5s;
            animation-duration: 5s;
            -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
        }

        .banner-rocket-wrap.active .rocket {
            -webkit-animation-name: rocket;
            animation-name: rocket;
            -webkit-animation-duration: 18s;
            animation-duration: 18s;
            -webkit-animation-delay: 3s;
            animation-delay: 3s;
            -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
        }

/* Banner error page */
.banner-error-page-wrap {
    min-height: 504px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

    .banner-error-page-wrap .banner-overlay {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(58, 69, 88, 0.9);
        z-index: -1;
    }

    .banner-error-page-wrap .banner-error-image {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
    }

        .banner-error-page-wrap .banner-error-image .img {
            position: absolute;
            left: 50%;
            bottom: -2px;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
        }

/* Banner rocket - faq */
.banner-rocket-wrap.faq .banner {
    max-width: 650px;
}

    .banner-rocket-wrap.faq .banner .subtitle {
        max-width: 570px;
        margin-left: auto;
        margin-right: auto;
    }

/* Banner rocket - wordpress hosting */
.banner-rocket-wrap.hosting-wordpress .banner {
    max-width: 650px;
}

    .banner-rocket-wrap.hosting-wordpress .banner .subtitle {
        max-width: 570px;
        margin-left: auto;
        margin-right: auto;
    }





/*-------------------------------------------------------------------------------------------------------------------------------*/
/* MEDIA QUERIES */
/*-------------------------------------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 1599px) {
    .banner-slider-wrap .swiper-arrow-left {
        left: 3%;
    }

    .banner-slider-wrap .swiper-arrow-right {
        right: 3%;
    }
}


@media only screen and (min-width: 1200px) {
    .no-padd-lg {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media only screen and (min-width: 993px) {
    .menu-item-has-children > a span {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    /* Logo */
    .logo-wrap.style-1 {
        max-height: 80px;
    }

        .logo-wrap.style-1 a {
            line-height: 80px;
            height: 80px;
        }

            .logo-wrap.style-1 a img {
                margin-top: 15px;
                max-height: 50px;
            }

    .logo-wrap.style-2 {
        display: none;
    }
    /* Main-menu navigation */
    .main-menu {
        display: block;
    }

        .main-menu .menu-item a {
            margin-left: 10px;
            margin-right: 10px;
        }

        .main-menu .menu-item .sub-menu {
            min-width: 80px;
            z-index: 200;
        }

            .main-menu .menu-item .sub-menu .menu-item a {
                padding-top: 15px;
                padding-bottom: 15px;
                margin-right: 0px;
                margin-left: 0px;
                padding-left: 10px;
                padding-right: 10px;
            }
        /* Style-1 for menu */
        .main-menu.style-1 {
            position: relative;
            background-color: #313752;
        }

            .main-menu.style-1 .menu-item a {
                padding-top: 30px;
                padding-bottom: 30px;
            }

            .main-menu.style-1:after {
                position: absolute;
                content: '';
                min-width: 300px;
                height: 80px;
                background-color: #313752;
                right: -300px;
                top: 0;
            }

            .main-menu.style-1:before {
                position: absolute;
                content: '';
                width: 148px;
                height: 148px;
                background-color: #313752;
                left: -40px;
                top: -34px;
                border-radius: 50%;
                z-index: -1;
            }
        /* Style-2 for menu */
        .main-menu.style-2 .menu-item a {
            padding-top: 30px;
            padding-bottom: 30px;
        }

        .main-menu.style-2 > .menu-item > a.active {
            padding-bottom: 27px;
        }
        /* Style-3 for menu */
        .main-menu.style-3 .menu-item a {
            padding-top: 30px;
            padding-bottom: 30px;
        }

        .main-menu.style-3 > .menu-item > a.active {
            padding-bottom: 27px;
        }
    /* Menu contacts */
    .menu-contacts .logo-wrap {
        display: block;
        padding: 0px;
    }

        .menu-contacts .logo-wrap a {
            font-size: 20px;
            line-height: 30px;
            margin-left: 0px;
            max-height: 30px;
        }

            .menu-contacts .logo-wrap a img {
                max-height: 30px;
                margin-top: 0;
            }

    .menu-contacts:before {
        width: 500px;
        left: -500px;
        border-radius: none;
    }
}

@media only screen and (max-width: 768px) {
}

@media only screen and (max-width: 767px) {
    /* Main-menu navigation */
    .wpc-navigation {
        float: none;
        width: 100%;
    }

    .nav-menu-icon.style-1 {
        display: block;
        position: absolute;
        top: -58px;
        right: 15px;
    }

    .nav-menu-icon.style-2 {
        display: block;
        position: absolute;
        top: 7px;
        right: 15px;
    }

    .main-menu {
        display: none;
    }

    .wpc-navigation.active .main-menu {
        display: block;
        width: 100%;
        padding: 0;
        height: auto;
    }

    .main-menu li {
        display: block;
    }

    .main-menu .sub-menu {
        position: static;
        padding: 5px 40px;
    }

    .menu-item-has-children > a span {
        display: inline-block;
    }

    .menu-item-has-children.active > .sub-menu {
        display: block;
        position: static;
    }
    /* Main-menu */
    .main-menu {
        text-align: center;
    }

        .main-menu .menu-item a {
            width: 100%;
            padding: 20px 15px;
            margin-left: 0px;
            margin-right: 0px;
        }

        .main-menu .menu-item .sub-menu {
            position: static;
            width: 100%;
            padding-top: 0px;
            padding-bottom: 0px;
        }

            .main-menu .menu-item .sub-menu .menu-item a {
                width: 100%;
                position: static;
                display: block;
            }

            .main-menu .menu-item .sub-menu .menu-item .sub-menu {
                padding-top: 0px;
                padding-bottom: 0px;
                position: static;
                width: 100%;
            }

            .main-menu .menu-item .sub-menu .menu-item.menu-item-has-children > a:after {
                display: none;
            }
    /* Menu contacts */
    body .menu-contacts {
        text-align: center;
    }

        body .menu-contacts .logo-wrap {
            width: 100%;
            text-align: center;
        }

            body .menu-contacts .logo-wrap a {
                margin-left: 0px;
                box-sizing: border-box;
            }

        body .menu-contacts .text-link {
            border: none;
            margin-top: 15px;
            margin-bottom: 15px;
            width: 100%;
        }

        body .menu-contacts .button-link {
            width: 50%;
            width: 100px;
            margin: 10px;
        }

        body .menu-contacts a:last-child {
            margin-left: 10px;
        }

        body .menu-contacts a:nth-last-child(2) {
            margin-left: 10px;
        }

        body .menu-contacts a:nth-last-child(3) {
            margin-left: 0px;
        }

    .menu-contacts:before {
        display: none;
    }

    .menu-contacts:after {
        display: none;
    }
    /* Style-1 for menu */
    .main-menu.style-1 .menu-item a {
        padding: 20px 15px;
        background-color: #313752;
    }

    .main-menu.style-1 .menu-item a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .main-menu.style-1 .menu-item:last-child a {
        border-bottom: none;
    }

    .main-menu.style-1 .menu-item a {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        margin-top: -1px;
    }

    .main-menu.style-1:after {
        display: none;
    }

    .main-menu.style-1:before {
        display: none;
    }
    /* Style-2 for menu */
    .main-menu.style-2 .menu-item a {
        padding: 20px 15px;
        background-color: #313752;
        color: #fff;
    }

    .main-menu.style-2 .menu-item .sub-menu {
        background-color: #313752;
    }

    .main-menu.style-2 .menu-item a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .main-menu.style-2 .menu-item:last-child a {
        border-bottom: none;
    }

    .main-menu.style-2 .menu-item a {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        margin-top: -1px;
    }

    .main-menu.style-2 > .menu-item > a.active {
        border-bottom: none;
        padding-bottom: 20px;
    }
    /* Style-3 for menu */
    .main-menu.style-3 .menu-item a {
        padding: 20px 15px;
        background-color: #ffffff;
    }

    .main-menu.style-3 .menu-item a {
        border-bottom: 1px solid #10c0e7;
    }

    .main-menu.style-3 .menu-item:last-child a {
        border-bottom: none;
    }

    .main-menu.style-3 .menu-item a {
        border-top: 1px solid #10c0e7;
        margin-top: -1px;
    }

    .main-menu.style-3 > .menu-item > a.active {
        border-bottom: none;
        padding-bottom: 20px;
    }

    .main-menu .menu-item.menu-item-has-children > a {
        padding-left: 25px;
    }

    .main-menu .sub-menu .menu-item.menu-item-has-children > a {
        padding-left: 20px;
    }


    /* Banner */
    .banner .title {
        line-height: 1.3;
    }

    .banner .subtitle {
        line-height: 1.7;
    }

    .prices-content .price-wrap {
        line-height: 1.5;
    }

    body .guarantee-3 .guarantee3-content {
        padding: 0 40px;
        float: none;
        width: auto;
        text-align: center;
    }

        body .guarantee-3 .guarantee3-content .text {
            max-width: 100%;
        }


    /* Banner error page */
    .banner-error-page-wrap {
        min-height: 400px;
    }

        .banner-error-page-wrap .banner-error-image .img {
            width: 400px;
        }
    /* Banner slider */
    .banner-slider-wrap .swiper-arrow-left {
        display: none;
    }

    .banner-slider-wrap .swiper-arrow-right {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .banner-wrap {
        padding: 100px 0 80px;
    }

    .banner .title {
        font-size: 34px;
    }

    .banner .a-btn {
        margin-top: 40px;
    }

    body .xs-padd {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 480px) {
    body .banner-wrap .banner .subtitle {
        max-width: 280px;
        width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    body .guarantee-3 .guarantee3-content {
        padding: 0;
    }


    /* Banner error page */
    .banner-error-page-wrap {
        min-height: 350px;
    }

        .banner-error-page-wrap .banner-error-image .img {
            width: 85%;
        }
}


/*-------------- Home About---------------*/


.about {
    padding-top: 70px;
    padding-bottom: 70px;
}

.about-box {
    padding: 10px 10px;
}

    .about-box h1 {
        color: #313752;
        margin-bottom: 10px;
    }

        .about-box h1 span {
            color: #ff8065;
        }

    .about-box p {
        line-height: 29px;
        color: #777;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .about-box a {
        background-color: #ff8065;
        padding: 12px 20px;
        text-decoration: none;
        color: #fff;
        transition: all 0.4s;
    }

        .about-box a:hover {
            box-shadow: 5px 5px 5px #000;
        }


/*----------- Product Section -----------*/


.product {
    padding-top: 0px;
    padding-bottom: 70px;
}

.product-head {
    padding-top: 0px;
    padding-bottom: 50px;
}

    .product-head h1 {
        color: #ff8065;
        margin-bottom: 10px;
    }

        .product-head h1 span {
            color: #313752;
        }

    .product-head h5 {
        color: #777;
        margin-bottom: 20px;
        margin-top: 20px;
    }

.product-btn {
    background-color: #ff8065;
    padding: 12px 30px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s;
}

    .product-btn:hover {
        box-shadow: 5px 5px 5px #000;
        text-decoration: none;
        color: #fff;
    }

.team-section {
    position: relative;
}

.team-member {
    position: relative;
    margin-bottom: 60px;
}

.owl-carousel .team-member {
    width: 100% !important;
}

.team-member .inner-box {
    position: relative;
    overflow: hidden;
}

    .team-member .inner-box .image-box {
        position: relative;
    }

        .team-member .inner-box .image-box img {
            position: relative;
            width: 100%;
            display: block;
        }

    .team-member .inner-box .overlay-box {
        position: absolute;
        width: 100%;
        left: 0px;
        bottom: 0px;
        padding: 15px;
    }

        .team-member .inner-box .overlay-box .user-info {
            position: relative;
        }

            .team-member .inner-box .overlay-box .user-info .text {
                position: relative;
                color: #777777;
                font-size: 14px;
                font-family: 'Courgette', cursive;
            }

            .team-member .inner-box .overlay-box .user-info h4 {
                color: #fff;
                font-size: 15px;
                font-weight: 700;
                text-transform: uppercase;
                margin: 0;
            }


        .team-member .inner-box .overlay-box:before {
            position: absolute;
            content: '';
            left: 0px;
            bottom: 0px;
            border-bottom: 88px solid #313752;
            border-right: 372px solid transparent;
        }

        .team-member .inner-box .overlay-box:after {
            position: absolute;
            content: '';
            right: -100%;
            bottom: 0px;
            border-bottom: 70px solid #ff8065;
            border-left: 180px solid transparent;
            transition: all 0.5s ease;
            -webkit-transition: all 0.5s ease;
            -ms-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
        }

        .team-member .inner-box .overlay-box .social-icon-two {
            position: absolute;
            right: 10px;
            bottom: 0px;
            z-index: 99;
            opacity: 0;
            transition: all 1s ease;
            -webkit-transition: all 1s ease;
            -ms-transition: all 1s ease;
            -o-transition: all 1s ease;
        }

    .team-member .inner-box:hover .overlay-box:after {
        right: 0px;
    }

    .team-member .inner-box:hover .social-icon-two {
        opacity: 1;
    }


/*Social Icon Two*/

.social-icon-two {
    position: relative;
}

    .social-icon-two li {
        position: relative;
        margin-left: 12px;
        display: inline-block;
    }

        .social-icon-two li a {
            color: #ffffff;
            font-size: 14px;
        }

/*Social Icon Three*/

.social-icon-three {
    position: relative;
}

    .social-icon-three a {
        color: #aaaaaa;
        margin-left: 10px;
        font-size: 14px;
    }

        .social-icon-three a:hover {
            color: #0c1f38;
        }

.theme_color {
    color: #0c1f38;
}

.team-product-btn {
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    background-color: transparent;
    transition: all 0.4s;
    padding: 5px 10px;
}

    .team-product-btn:hover {
        color: #ffffff;
        text-decoration: none;
        box-shadow: 5px 5px 5px #000;
    }

@media(max-width:480px) {
    .team-member .inner-box .overlay-box .user-info h4 {
        font-size: 13px;
    }

    .team-product-btn {
        font-size: 12px !important;
    }

    .team-member .inner-box .overlay-box:after {
        border-bottom: 60px solid #ff8065;
        border-left: 150px solid transparent;
    }
}

/*------------ Service --------------*/
.service {
    padding-top: 70px;
    padding-bottom: 70px;
    background-image: url(../../images/EAutomation/pattern.png);
    background-attachment: fixed;
    background-repeat: repeat;
}

    .service h1 {
        color: #ddd;
        margin-bottom: 10px;
    }

    .service h5 {
        color: #ddd;
        margin-bottom: 20px;
        margin-top: 20px;
    }

.service-box {
    padding-bottom: 50px;
}

.service-border {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
}

.service-circle {
    width: 80px;
    height: 80px;
    background-color: #ddd;
    color: #ff8065;
    text-align: center;
    line-height: 80px;
    font-size: 30px;
    float: left;
    margin-right: 15px;
    border-radius: 50%;
}

.service-border p {
    color: #ddd;
    padding: 20px;
}


/*-------Portfolio-------*/

.mb_1 {
    margin-bottom: 30px;
}

.portfolio_area {
    padding-bottom: 0px;
    padding-top: 70px;
}

    .portfolio_area h1 {
        color: #ff8065;
        margin-bottom: 10px;
    }

        .portfolio_area h1 span {
            color: #313752;
        }

    .portfolio_area h5 {
        color: #777;
        margin-bottom: 20px;
        margin-top: 20px;
    }

.portfolio_box {
    padding-top: 50px;
}

.portfolio_menu {
    padding-bottom: 25px;
}

.portfolio_single_item {
    position: relative;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.portfolio_overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(255,128,101,0.5);
    visibility: hidden;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
}

.portfolio_single_item:hover .portfolio_overlay {
    visibility: visible;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.portfolio_single_item > img {
    width: 100%;
}

.portfolio_item_content {
    height: 35px;
    width: 35px;
    top: 50%;
    left: 90%;
    position: absolute;
    text-align: center;
    visibility: hidden;
    border: 0px solid #fff;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

    .portfolio_item_content::before {
        position: absolute;
        width: 25px;
        height: 1px;
        background: #fff;
        content: "";
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }

    .portfolio_item_content::after {
        position: absolute;
        width: 1px;
        height: 25px;
        background: #fff;
        content: "";
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }

.portfolio_single_item:hover .portfolio_item_content {
    bottom: 35%;
    left: 50%;
    visibility: visible;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
}

.project_title {
    left: 12%;
    position: absolute;
    top: 36%;
    visibility: hidden;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

span.project_title {
    color: #fff;
    font-size: 14px;
    line-height: 45px;
    text-transform: capitalize;
}

.portfolio_single_item:hover .project_title {
    left: 50%;
    top: 36%;
    visibility: visible;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.portfolio_menu button {
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    margin-right: 10px;
    padding-left: 15px;
    padding-right: 15px;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid #eee;
    border-radius: 20px;
}

    .portfolio_menu button:hover {
        color: #333;
        border-color: #777;
    }

        .portfolio_menu button:hover::before {
            visibility: visible;
            -webkit-opacity: 1;
            -moz-opacity: 1;
            -ms-opacity: 1;
            -o-opacity: 1;
            opacity: 1;
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
        }

    .portfolio_menu button.active {
        color: #333;
        border-color: #777;
    }


@media only screen and (min-width: 768px) and (max-width: 991px) {

    .portfolio_item_content {
        width: 40px;
        height: 40px;
    }

    .portfolio_single_item:hover .portfolio_item_content {
        bottom: 10%;
    }
}


/*=============Medium Mobile Screen==============*/
@media only screen and (min-width: 481px) and (max-width: 767px) {

    .portfolio_single_item:hover .portfolio_item_content {
        bottom: 10%;
    }
}

/*============Small Mobile Display==============*/
@media only screen and (min-width: 320px) and (max-width: 480px) {

    .portfolio_item_content {
        width: 40px;
        height: 40px;
    }

    .portfolio_menu button {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 8px;
        margin-right: 0;
    }

    .portfolio_single_item:hover .project_title {
        top: 33%;
    }

    .portfolio_single_item:hover .portfolio_item_content {
        bottom: 20%;
    }
}

/*----------------Over Portpolio------------------*/




/*------------  Contact - Footer  ----------*/

.contact {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #fff;
}


    .contact h1 {
        color: #ff8065;
        margin-bottom: 10px;
    }

        .contact h1 span {
            color: #313752;
        }

    .contact h5 {
        color: #777;
        margin-bottom: 20px;
        margin-top: 20px;
    }

.contact-circle-box {
    padding-top: 50px;
}

.contact-circle {
    margin-bottom: 30px;
    border: 10px solid #ebebeb;
    border-radius: 50%;
    height: 265px;
    margin: 0 auto;
    margin-bottom: 30px;
    width: 265px;
    text-align: center;
    padding: 70px 20px 0 20px;
    transition: all 0.4s;
}

    .contact-circle:hover {
        box-shadow: 0px 0px 20px rgba(0, 0, 0,0.3);
    }

    .contact-circle i {
        color: #ff8065;
        font-size: 40px;
    }

    .contact-circle p {
        font-size: 14px;
        margin-top: 10px;
        color: #313752;
    }

    .contact-circle a {
        font-size: 14px;
        margin-top: 10px;
        color: #313752;
    }


/*---------- Contact Bottom -------------*/
.contact-bottom {
    padding-top: 70px;
    padding-bottom: 50px;
    background-image: url(../../images/EAutomation/c3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
    /*.contact-bottom::before
{
	position:absolute;
	content:"";
	background-color:;
	height:100%;
	width:100%;
	top:0;
	left:0;
	display:block;
	background: rgba(255,128,101,0.9);
	z-index:0;
	
	}*/
    .contact-bottom p {
        font-size: 24px;
        font-weight: bold;
        line-height: 29px;
        color: #fff;
    }

.contact-bottom-box {
    padding-top: 50px;
}

    .contact-bottom-box label {
        margin-bottom: 15px;
        color: #fff;
    }

    .contact-bottom-box input {
        height: 50px;
        width: 100%;
        border: 1px solid #fff;
        padding: 10px 15px;
        margin-bottom: 30px;
    }

    .contact-bottom-box textarea {
        height: 110px;
        width: 100%;
        border: 1px solid #fff;
        padding: 10px 15px;
        margin-bottom: 30px;
    }

    .contact-bottom-box a {
        display: inline-block;
        border: 2px solid #fff;
        margin-bottom: 30px;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: bold;
        color: #313752;
        background-color: #fff;
        text-decoration: none !important;
        transition: all 0.4s;
        margin-top: 20px;
        margin-bottom: 30px;
    }

        .contact-bottom-box a:hover {
            border: 2px solid #fff;
            text-transform: uppercase;
            color: #fff;
            background-color: transparent;
            text-decoration: none !important;
        }

.footer {
    background-image: url(../../images/EAutomation/pattern.png);
    padding-bottom: 30px;
}

.footer-social {
    width: 45px;
    height: 45px;
    background-color: #000;
    text-align: center;
    line-height: 45px;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.4s;
    margin-right: 5px;
    margin-bottom: 15px;
    display: inline-block;
}

    .footer-social:hover {
        color: #ff8065;
        background-color: rgba(0,0,0,0.5);
    }

.footer-p {
    padding-top: 10px;
    color: #fff;
    text-align: center;
}

/*------------- About Page -------------*/

.a-about {
    background-attachment: fixed;
    background-image: url(../../images/EAutomation/testimonial-back-4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
}

    .a-about h2 {
        color: #fff;
        font-size: 35px;
    }

    .a-about h6 {
        color: #fff;
        font-size: 16px;
    }

/*------------- Product Page -------------*/

.p-Product {
    background-attachment: fixed;
    background-image: url('../../images/EAutomation/testimonial-back-4.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
}

    .p-Product h2 {
        color: #fff;
        font-size: 35px;
    }

    .p-Product h6 {
        color: #fff;
        font-size: 16px;
    }

.p-Product-padd {
    padding-top: 70px;
}


.p-Productsub {
    background-color: transparent;
}

.p-Productsub-mar {
    margin-bottom: 30px;
}

.p-Productsub-img {
    height: 180px;
    width: 100%;
    padding: 4px;
    border-radius: 4px;
    border: 1px solid rgba(221,221,221,1.00);
    object-fit: cover;
}

@media(min-width:600px) and (max-width:767px) {
    .p-Productsub-img {
        height: auto;
        width: 100%;
        padding: 4px;
        border-radius: 4px;
        border: 1px solid rgba(221,221,221,1.00);
        object-fit: cover;
    }
}

.p-Productsub h3 {
    color: #ff8065;
   margin-top: 0px;
    text-align: left;
}

.p-Productsub p {
    color: #777;
    text-align: left;
}

@media (max-width:991px) {
    .p-Productsub h3 {
        text-align: center;
    }

    .p-Productsub p {
        text-align: center;
    }
}


/*-------------    Service Page  ---------------*/


.s-service {
    padding-top: 35px;
    padding-bottom: 50px;
}

    .s-service h2 {
        color: #ff8065;
        margin-bottom: 20px;
        font-size: 35px;
    }

    .s-service h5 {
        color: #313752;
        margin-top: 20px;
    }

.service-margin {
    margin-bottom: 30px;
}

.service-img1 {
    /*background: rgba(0, 0, 0, 0) url("../img/b1.jpg") no-repeat scroll center top / cover;*/
    width: 100%;
    /*background-color: #ff8065;*/
    color: #000;
}

    .service-img1:hover {
        /*background: rgba(0, 0, 0, 0) url("../img/b1.jpg") no-repeat scroll center top / cover;*/
        width: 100%;
        /*background-color: #ff8065;*/
        /*color:#fff;*/
        border: 1px solid #ff8065;
    }

.service-img2 {
    /*background: rgba(0, 0, 0, 0) url("../img/b2.jpg") no-repeat scroll center top / cover;*/
    width: 100%;
}

.service-img3 {
    /*background: rgba(0, 0, 0, 0) url("../img/b3.jpg") no-repeat scroll center top / cover;*/
    width: 100%;
}

.service-img1 {
    /*background: rgba(0, 0, 0, 0) url("../img/b4.jpg") no-repeat scroll center top / cover;*/
    width: 100%;
    /*background-color: #ff8065;*/
}

.service-box-overlay {
    background: #fff none repeat scroll 0 0;
    border-radius: 3px;
    bottom: 0;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    left: 0;
    margin: 0 15px;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.4s ease-in-out 0s;
}

.service-box {
    border-radius: 5px;
    padding: 35px 15px 20px;
    transition: all 0.4s ease-in-out 0s;
}

    .service-box h1 {
        color: #ff8065;
    }

    .service-box:hover .service-box-overlay {
        opacity: 0;
    }

    .service-box:hover .service-box-text h5 a {
        color: #fff;
        text-decoration: none;
    }

    .service-box:hover .service-box-text i {
        color: #fff;
    }

.service-box-text {
    position: relative;
}

    .service-box-text i {
        font-size: 48px;
        display: inline-block;
        transition: all 0.4s ease-in-out 0s;
        color: #ff8065;
    }

    .service-box-text h5 a {
        color: #000438;
        font-size: 20px;
        font-weight: 500;
        padding: 10px 0;
        display: block;
        transition: all 0.4s ease-in-out 0s;
    }

    .service-box-text p {
        color: #7c8595;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        margin-bottom: 15px;
        padding-bottom: 0px;
    }


/*------------ Gallery  -----------------*/
.g-gallery {
    padding-bottom: 70px;
}



/*------------ contact  -----------------*/
.c-contact-map {
    padding-top: 20px;
    padding-bottom: 30px;
}

.btnsubmit {
    color: #313752;
    background-color: #fff;
    height: auto;
    width: 130px !important;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.4s;
    border: 2px solid #fff;
    padding: 10px 30px;
    font-size: 16px;
    margin-top: 20px;
}

    .btnsubmit:hover {
        background-color: transparent;
        border: 2px solid #fff;
        font-weight: bold;
        color: #fff;
    }

.btn.refreshButton {
    background-image: none;
    height: 60px;
    width: 60px;
    background-size: cover;
    background-position: center center;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 0px;
    box-shadow: none;
    transition: all ease 0.5s 0s;
    font-weight: 400;
    margin-top: 0px;
}

/* START - bootstrap-notify patch */
.notify {
    z-index: 99999 !important;
}

    .notify .close {
        top: auto !important;
        right: 15px !important;
        margin-top: -2px;
    }

    .notify .notify-icon {
        float: left;
    }

    .notify .notify-title {
        margin-top: -2px;
        font-weight: bold;
    }

    .notify .notify-message {
        margin-left: 25px;
        padding-right: 25px;
    }
/* END - bootstrap-notify patch */

.img_resize_cropped {
    height: 300px;
    overflow: hidden;
    object-fit: cover;
    width: 250px;
}

@media (min-width:600px) and (max-width:700px) {
    .img_resize_cropped {
        height: 600px;
        overflow: hidden;
        object-fit: cover;
        width: 250px;
    }
}

@media (min-width:767px) {
    .img_resize_cropped {
        height: auto;
        overflow: hidden;
        object-fit: cover;
        width: 250px;
    }
}

@media(max-width:600px) {
    .img_resize_cropped_Product {
        height: 300px;
        overflow: hidden;
        object-fit: cover;
        width: 250px;
    }
}

@media (min-width:500px) (max-width:767px) {
    .img_resize_cropped_Product {
        height: auto;
        overflow: hidden;
        object-fit: cover;
        width: 250px;
    }
}

@media(min-width:768px) {
    .img_resize_cropped_Product {
        height: 300px;
        overflow: hidden;
        object-fit: cover;
        width: 250px;
    }
}

.img_resize_fit {
    overflow: hidden;
    object-fit: contain;
}

.thumbnail-border {
    background-color: transparent;
    border: 1px solid #ddd;
    display: block;
    line-height: 1.42857;
    transition: border 0.2s ease-in-out 0s;
}

.p-img {
    transition: all 0.3s;
}

@media (min-width:600px) {
    .img_resize_cropped_Gallery {
        height: auto;
        overflow: hidden;
        object-fit: cover;
        width: 250px;
    }
}

@media (min-width:320px) and (max-width:599px) {
    .img_resize_cropped_Gallery {
        height: auto;
        overflow: hidden;
        object-fit: cover;
        width: 250px;
    }
}

@media (min-width:320px) and (max-width:599px) {
    .img_resize_cropped_Gallery_Home {
        height: 250px;
        overflow: hidden;
        object-fit: cover;
        width: 250px;
    }
}

@media (min-width:600px) and (max-width:960px) {
    .img_resize_cropped_Gallery_Home {
        height: auto;
        overflow: hidden;
        object-fit: cover;
        width: 250px;
    }
}

@media (min-width:961px) {
    .img_resize_cropped_Gallery_Home {
        height: 150px;
        overflow: hidden;
        object-fit: cover;
        width: 250px;
    }
}

@media(max-width:400px) {
    .img_resize_cropped_Inner_Page {
        height: 250px;
        overflow: hidden;
        object-fit: cover;
        width: 250px;
    }
}

@media (min-width:400px) and (max-width:767px) {
    .img_resize_cropped_Inner_Page {
        height: auto;
        overflow: hidden;
        object-fit: cover;
        width: 250px;
    }
}

@media(min-width:768px) and (max-width:1000px) {
    .img_resize_cropped_Inner_Page {
        height: 200px;
        overflow: hidden;
        object-fit: cover;
        width: 250px;
    }
}

@media(min-width:1001px) {
    .img_resize_cropped_Inner_Page {
        height: 250px;
        overflow: hidden;
        object-fit: cover;
        width: 250px;
    }
}

.services_Detail {
    color: #313752;
}

.line-clamp::after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 1.5em;
    text-overflow: ellipsis;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 100%);
}

.module.line-clamp {
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 10px;
    height: 80px;
}

/*----------Automation Products-------------*/
@media(min-width:300px ) and (max-width:600px) {
    .AutomationProducts.leftimgwraptext {
        width: 100%;
        height: 300px !important;
        float: left;
        margin-bottom: 20px;
        margin-left: 10px;
    }
}

@media(min-width:600px ) and (max-width:960px) {
    .AutomationProducts.leftimgwraptext {
        width: 50%;
        height: 350px !important;
        float: left;
        margin-bottom: 20px;
        margin-left: 20px;
        margin-top: 30px;
    }
}

@media(min-width:960px ) {
    .AutomationProducts.leftimgwraptext {
        width: 50%;
        height: 500px !important;
        float: left;
        margin-bottom: 20px;
        margin-left: 20px;
    }
}

/*----------Automation Products-------------*/

.bullet
{
     list-style-position: outside;
}
.about-box h4 span {
    color: #ff8065;
}
.about-box h2 span {
    color: #ff8065;
}
.Water-box{
	padding: 30px 0px;
		
	}
.Water-box h4 span {
    color: #ff8065;
}
.Water-box h2 span {
    color: #ff8065;
}

/*--------------------Menu-------------*/
@media(min-width:300px )and (max-width:767px){
.MenuHeader {
    width: 100%;
    align-content: center; 
}
#imgCompanyLogoSmall {
    width: 50%;
}
}

@media(max-width:988px ) {
    .MenuHeader {
        width: 100%;
        align-content: center;
    }
}

@media(min-width:990px ) {
    .MenuHeader {
        width: 100%;
        align-content: center;
        display: none;
    }
}
@media(max-width:1199px){
.logo.logoimage{
    width:80%;
}

}
@media (min-width:500px) and (max-width:800px){
#imgCompanyLogoSmall {
    width: 30%;
}

}

@media(min-width:1200px){
.logo.logoimage{
    width:50%;
    margin-right: 150px;
}

}
