html,
body {
    margin: 0;
    font-size: 100%;
    background: #fff;
    scroll-behavior: smooth;
}

body a {
    text-decoration: none;
}

html {

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

}

a:hover {
    text-decoration: none;
}

input[type="button"]:hover,
input[type="submit"]:hover {
    transition: .5s ease-in;
    -webkit-transition: .5s ease-in;
    -moz-transition: .5s ease-in;
    -o-transition: .5s ease-in;
    -ms-transition: .5s ease-in;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
}

p {
    font-size: 1em;
    color: #777;
    line-height: 1.8em;
}

ul {
    margin: 0;
    padding: 0;
}

body img {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
}

/* navigation */

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */

nav {
    margin: 0;
    padding: 0;
}

a.navbar-brand {
    font-size: 0.8em;
    font-weight: 100;
    letter-spacing: 1px;
    line-height: 0.8em;
    text-transform: uppercase;
    color: #fff;
}

#logo a {
    float: left;
    display: initial;
    color: red;
    font-weight: 600;
    font-family: auto;
}

#logo a img {
    height: 30px;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */

nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

ul.menu {
    margin-top: 0.4em;
}

/* Positioning the navigation items inline */

nav ul li {
    margin: 0px;
    display: inline-block;
}

/* Styling the links */

nav a {
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 0 14px;
    font-weight: 600;
    margin: 0 0.5em;
    text-transform: uppercase;
}


nav ul li ul li:hover {
    background: #f8f9fa;
}

li.log-vj a {
    display: inline-block;
}

li.social-icons a span {
    margin: 0 3px;
    font-size: 1.4em;
}

/* Background color change on Hover */

.menu li a:hover {
    color: #feac00;
}

.menu li.active a {
    color: #feac00;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */

nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 25px;
    padding: 10px;
        background: #34d6f1;
    padding: 10px;
    z-index: 999;
    border: 1px solid #ddd;
        left: 270px;
    text-align: left;
}

/* Display Dropdowns on Hover */

nav ul li:hover>ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */

nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul li a {
    color: #333;
    padding: 5px 10px;
    display: block;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/

nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}


/* Change ' +' in order to change the Dropdown symbol */

li>a:only-child:after {
    content: '';
}

/* Media Queries
--------------------------------------------- */

@media all and (max-width:992px) {

    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }

    nav {
        margin: 0;
    }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle+a,
    .menu {
        display: none;
    }

    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        padding: 7px 20px;
        font-size: 14px;
        text-decoration: none;
        border: none;
        float: right;
        background-color: #212529;
        color: #fff;
        cursor: pointer !important;
        margin-bottom: 0;
        text-transform: uppercase;
        margin-top: 0em;
    }

    .menu .toggle {
        float: none;
        text-align: left;
        margin: auto;
        width: 80%;
        padding: 5px;
        font-weight: normal;
        font-size: 16px;
        letter-spacing: 1px;
    }

    .toggle:hover {
        color: #333;
        background-color: #fff;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked+ul {
        display: block;
        background: rgba(16, 16, 16, 0.85);
        padding: 15px 0;
        text-align: left;
        width: 100%;
        z-index: 99999;
        border: none;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        padding: 5px 0;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: transparent;
    }

    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }

    label.toggle.toggle-2 {
        width: 94%;
        font-size: 13px;
    }

    nav ul li ul li .toggle,
    nav ul ul a {
        background-color: #343a40;
    }

    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */
        text-align: left;
    }

    /* Hide menus on hover */
    nav ul ul li:hover>ul,
    nav ul li:hover>ul {
        display: none;
    }

    nav ul {
        margin-left: 0em;
    }

    /* Fisrt Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
        padding: 0;
    }

    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */
    }

    nav ul ul li a {
        color: #fff;
        font-size: 0.8em;
    }

    nav ul li ul li:hover {
        background: none;
    }

    nav ul li.social-icons {
        display: inline-block;
        float: left;
        width: 32.3%;
        margin: 0 auto;
        text-align: center;
    }

    .tooltip {
        top: 0;
        left: 50%;
        padding: 0.2rem 0.5rem;
    }
}

@media all and (max-width: 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }

}

/* header */


/* banner */
.top_w3pvt_main {
    position: relative;
    z-index: 1;
}

.nav_w3pvt {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
    margin: 0 auto;
    background: transparent;
    margin-top: 1.2em;
}

/* banner-hny-info */
.banner-hny-info {
    padding: 14em 0 14em;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

/* banner slider */


#homepage-slider {
    position: relative;
}

.radio {
    display: none;
}

.images {
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.images-inner {
    width: 500%;
    transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.image-slide {
    width: 20%;
    float: left;
}

.image-slide,
.fake-radio,
.radio-btn {
    transition: all 0.5s ease-out;
}

.fake-radio {
    text-align: center;
    position: absolute;
    bottom: 5%;
    right: 2%;
    z-index: 9;
}

/* Move slides overflowed container */
#slide1:checked~.images .images-inner {
    margin-left: 0;
}

#slide2:checked~.images .images-inner {
    margin-left: -100%;
}

#slide3:checked~.images .images-inner {
    margin-left: -200%;
}

/* Color of bullets */
#slide1:checked~div .fake-radio .radio-btn:nth-child(1),
#slide2:checked~div .fake-radio .radio-btn:nth-child(2),
#slide3:checked~div .fake-radio .radio-btn:nth-child(3) {
    background: #feac00;
}

.radio-btn {
    width: 10px;
    height: 10px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #fff;
    display: inline-block !important;
    margin: 0 5px;
    cursor: pointer;
}

/* Color of bullets - END */

/* Text of slides */
#slide1:checked~.labels .label:nth-child(1),
#slide2:checked~.labels .label:nth-child(2),
#slide3:checked~.labels .label:nth-child(3) {
    opacity: 1;
}

.label {
    opacity: 0;
    position: absolute;
}

/* Text of slides - END */

/* Calculate AUTOPLAY for BULLETS */
@keyframes bullet {

    0%,
    33.32333333333334% {
        background: #feac00;
    }

    33.333333333333336%,
    100% {
        background: #fff;
    }
}

#play1:checked~div .fake-radio .radio-btn:nth-child(1) {
    animation: bullet 12300ms infinite -1000ms;
}

#play1:checked~div .fake-radio .radio-btn:nth-child(2) {
    animation: bullet 12300ms infinite 3100ms;
}

#play1:checked~div .fake-radio .radio-btn:nth-child(3) {
    animation: bullet 12300ms infinite 7200ms;
}

/* Calculate AUTOPLAY for BULLETS - END */

/* Calculate AUTOPLAY for SLIDES */
@keyframes slide {

    0%,
    25.203252032520325% {
        margin-left: 0;
    }

    33.333333333333336%,
    58.53658536585366% {
        margin-left: -100%;
    }

    66.66666666666667%,
    91.869918699187% {
        margin-left: -200%;
    }
}

.st-slider>#play1:checked~.images .images-inner {
    animation: slide 12300ms infinite;
}

/* Calculate AUTOPLAY for SLIDES - END */
/* //banner slider */

/* background images for banner */
.banner-w3pvt-1 {
    background: url(../images/joslider-1jo.jpg) no-repeat top;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 800px;
}

.banner-w3pvt-2 {
    background: url(../images/joslider-2jo.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 800px;
}

.banner-w3pvt-3 {
    background: url(../images/joslider-3jo.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 800px;
        background-position: 85% 0%;
}

.overlay-w3ls {
        background: rgba(0, 0, 0, 0.2);
    min-height: 800px;
}

.images-inner {
    position: relative;
}

.banner-hny-info h3 {
    font-size: 4em;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    text-align: center;
    color: #fff;
}

.btn {
    border: 2px solid #fff;
    padding: 11px 30px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: capitalize;
    display: inline-block;

}

.btn:hover {
    background: #feac00;
    border: 2px solid #feac00;
    color: #333;
    transition: .5s ease-in;
    -webkit-transition: .5s ease-in;
    -moz-transition: .5s ease-in;
    -o-transition: .5s ease-in;
    -ms-transition: .5s ease-in;
}

.btn.more {
    background: #feac00;
    border: 2px solid #feac00;
    color: #222;

}

.btn.more.black:hover {
    background: #212529;
    border: 2px solid #212529;
    color: #feac00;
}

.wthree-w3ls {
    border-bottom: 1px solid rgba(221, 221, 221, 0.25);
    padding-bottom: 1em;
}



/* Color Variables */
/* Social Icon Mixin */
/* Social Icons */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* width: 80px; */
    /* height: 80px; */
    /* margin: 0 0.5rem; */
    /* border-radius: 50%; */
    cursor: pointer;
    /* font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif; */
    /* font-size: 2.5rem; */
    text-decoration: none;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.15s ease;
}

.social-icon:hover {
    color: #fff;
}

.social-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(-50%, -150%);
    transform: translate(-50%, -150%);
}

.social-icon:active {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5) inset;
}

.social-icon {
    background: linear-gradient(tint(#000, 5%), shade(#000, 5%));
    border-bottom: 1px solid shade(#000, 20%);
    color: tint(#000, 50%);
}

.social-icon:hover {
    color: tint(#000, 80%);
    text-shadow: 0px 1px 0px shade(#000, 20%);
}

.social-icon .tooltip {
    background: #fff;
    background: linear-gradient(tint(#000, 15%), #000);
    color: tint(#000, 80%);
}

.social-icon .tooltip:after {
    border-top-color: #fff;
}

.social-icon span {
    position: relative;
    top: 1px;
}

/* Tooltips */
.tooltip {
    display: block;
    position: absolute;
    top: 45%;
    left: 50%;
    padding: 0.2rem 1rem;
    border-radius: 0px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    transition: all 0.3s ease;
    z-index: 1;
    color: #000;
    letter-spacing: 1px;
}

.tooltip:after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    content: "";
    border: solid;
    border-width: 6px 6px 0 6px;
    border-color: transparent;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}

/* //background images for banner */

/* /stats */
h5.counter {
    color: #fff;
    font-size: 2em;
    font-weight: 700;
    margin: 0;
}

p.para-w3pvt {
    color: #fff;
    font-size: 1.4em;
    margin-left: 1em;
    font-weight: 300;
}

.hny-stats-inf {
    margin: 7em auto 0;
    width: 50%;
    text-align: center;
}

/* //stats */
/* //banner text */

.banner_bottom {
    background: #f7f7f7;
}


p.sub-tittle {
    font-size: 1.1em;
    font-weight: 400;
    color: #555;
}

.pink {
    color: #feac00;
}

h3.tittle-w3ls,
h3.tittle-w3ls.two {
    color: #1b1b1b;
    font-size: 2.5em;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        font-family: initial;
}

h3.tittle-w3ls.two {
    color: #fff;
}

/*--/about--*/
.banner_bottom_left h4 {
    font-size: 1.5em;
    color: #3c3c3c;
    letter-spacing: 1px;
    position: relative;
    font-weight: 600;
    line-height: 1.6em;
    margin-bottom: 0.3em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/*--/features--*/
.features-w3pvt-main {
    border-top: 1px solid #ddd;
    margin-top: 3em;
    padding-top: 4em;
}

.icon_left_grid {
    text-align: center;
}

.featured_grid_right_info h4 {
    font-size: 1.2em;
    margin-bottom: .7em;
    font-weight: 600;
    color: #222222;
    letter-spacing: 1px;
}

.icon_left_grid span {
    font-size: 2em;
    color: #ffc107;
    margin-top: 0.1em;
}

/*--//features--*/
.services {
    background: url(../images/jomaciojo.jpg) no-repeat top;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-color: #403f3f;
}

.over-lay-blue {
    background: rgba(10, 10, 10, 0.67);
}

.services-grid-inf h4,
.services-grid-inf span,
.services-grid-inf .link-hny,
.services-innfo p.sub-tittle {
    color: #fff;
}

.services-grid-inf p {
    color: #d5d7d8;
}

.services-grid-inf span {
    line-height: 40px;
}

/*--//services--*/

/*--/team --*/
.team-info h3 {
    font-size: 1.2em;
    color: #1b1b1b;
    margin: 0 0 0.5em 0;
}

.team-info h3 a {
    color: #1b1b1b;
}

.team-info h3 a:hover {
    color: #444;
}

.sub-tittle-team {
    font-size: 1em;
    color: #495057;
}

.team-info p {
    padding: 0 1em;
}

.icon-social.team a {
    color: #333;
}

ul.list-right-w3pvt-book.team-sing li {
    color: #777;
}

ul.list-right-w3pvt-book.team-sing span {
    font-size: 0.6em;
    margin-right: 1em;
}

.team-gd img:hover {
    opacity: 0.8;
}

/*--//team --*/
/*-- /gallery --*/

section#gallery {
    position: relative;
}

.gal-img img {
    padding: 6px;
    background: #f0f0f1;
}

.gal-info {
    background: #fff;
    margin-bottom: 1em;
    padding: 1em;
    text-align: left;

}

.gal-info:hover {
    background: #212529;
    transition: .5s ease-in;
    -webkit-transition: .5s ease-in;
    -moz-transition: .5s ease-in;
    -o-transition: .5s ease-in;
    -ms-transition: .5s ease-in;

}

.gal-info:hover h5 {
    color: #fff;
}

.gal-info h5 {
    text-align: left;
    font-size: 0.9em;
    color: #3a4045;
    font-weight: 600;
    text-transform: uppercase;
}

span.decription {
    text-transform: uppercase;
    display: block;
    font-size: 0.8em;
    color: #888;
    letter-spacing: 2px;
    margin-top: 0.5em;
}

.gal-info:hover span.decription {
    color: #fff;
}

/*-- popup --*/

.pop-overlay {
    position: fixed;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

.pop-overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: #fff;
    border-radius: 5px;
    width: 35%;
    position: relative;
    margin: 8em auto;
    padding: 3em 1em;
}

.popup p {
    font-size: 15px;
    color: #666;
    letter-spacing: .5px;
    line-height: 30px;
}


.popup .close {
    position: absolute;
    top: 5px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.popup .close:hover {
    color: #30c39e;
}


/*-- //popup --*/

/*-- /blogs--*/
.blog-grid-img img {
    border-radius: 0px;
}

.blog-grid-info {
    background: #212529;
}

.date-post {
    padding: 3em;
}


.date-post .link-hny {
    font-size: 0.9em;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.date-post p {
    color: #fff;
    margin-bottom: 0;
    font-size: 0.9em;
}

.date-post h4 {
    margin: 0.3em 0;
}

h6.date {
    font-size: 0.8em;
    color: #feac00;
}

/*-- //blogs--*/
.login label {
    color: #777879;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.link-hny {
    color: #222222;

}

.link-hny:hover {
    color: #ffc107;
    transition: .5s ease-in;
    -webkit-transition: .5s ease-in;
    -moz-transition: .5s ease-in;
    -o-transition: .5s ease-in;
    -ms-transition: .5s ease-in;
}

.apply-main .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-bottom: 2px solid #ddd;
}


/*-- //gallery --*/

.con-gd .form-control {
    padding: 15px 15px;
    border: 0;
    border: none;
    outline: none;
    background: rgba(247, 247, 247, 0.29);
    color: #fff;
    border-radius: 0;
    font-size: 0.9em;
    letter-spacing: 2px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border: 1px solid #ddd;
}

.con-gd button.btn {
    background: #feac00;
    border: 2px solid #feac00;
    color: #222;
    cursor: pointer;
    padding: 13px 0;
    width: 100%;
}

.con-gd button.btn:hover {
    background: #212529;
    border: 2px solid #212529;
    color: #feac00;
}

p.news-para {
    margin: 0.5em 0 0 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #555;
}

/*--placeholder-color--*/

.con-gd ::-webkit-input-placeholder {
    color: #777;
}

.con-gd :-moz-placeholder {
    /* Firefox 18- */
    color: #777;
}

.con-gd ::-moz-placeholder {
    /* Firefox 19+ */
    color: #777;
}

.con-gd :-ms-input-placeholder {
    color: #777;
}

/*--//placeholder-color--*/
/* testimonials */
.testmonials {
    background: url(../images/jotustomoniamjo.jpg) no-repeat top;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
}

.testimonials-gd-vj {
    box-shadow: 0px 0px 18.69px 2.31px rgba(98, 98, 103, 0);
    background: #fff;
}

p.sub-test {
    color: #666;
    font-size: 14px;
}

p.sub-test span {
    font-size: 1.7em;
    margin-right: 0.3em;
    color: #ddd;
}

.testi_grid h5 {
    color: #2f2e31;
    letter-spacing: 1px;
    font-size: 0.9em;
    font-weight: 600;
}

.testi_grid p {
    font-size: 13px;
    line-height: 0.5em;
}

section.hand-crafted p {
    color: #6e7275;
}

.testi-img-res img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

/* //testimonials */
/*--/inner-w3pvt-page-- */

.inner-w3pvt-page {
    background: url(../images/jologin-bgjo.html) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 11em;
        height: 400px;
}

.overlay-innerpage {
   min-height: 25em;
    background: rgba(0, 0, 0, 0.25);
}

.inner-w3pvt-page-info {
    padding-top: 7em;
}

.breadcrumb {
    background-color: transparent;
}

ol.breadcrumb {
    margin: 0;
    padding: 0;
}

ol.breadcrumb li {
    padding: 0;
    color: #555;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    background: rgba(140, 156, 171, 0.22);
    margin-right: 0.5em;
    color: #fff;
    border-radius: 0;
    background: transparent;
}

ol.breadcrumb li a {
    color: #feac00;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    /* background: none; */
    border-radius: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #fff;
    content: "/";
}

/*--/contact-- */
.contact-hny-form input,
.contact-hny-form textarea {
    padding: 13px 15px;
    border: 0;
    border: none;
    outline: none;
    background: rgba(247, 247, 247, 0.29);
    color: #000;
    border-radius: 0;
    font-size: 0.9em;
    letter-spacing: 2px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border: 1px solid #ddd;
    width: 100%;
}

.contact-hny-form textarea {
    min-height: 257px;
}

.more.black.con-submit {
    padding: 0.7em 3em;
}

.form-group label {
    color: #555;
    font-size: 0.9em;
}

.map-w3pvt {
    background: #d7d7d7;
    padding: 0.5em;
}

.map-w3pvt iframe {
    width: 100%;
    min-height: 400px;
    border: none;
}

/*--/single --*/
h4.title-hny {
    color: #3e3b3b;
    font-size: 1.2em;
    line-height: 1.5em;
    text-transform: capitalize;
    font-weight: 500;
}

.social-icons-footer ul li {
    display: inline-block;
    color: #555;
    list-style: none;
}

.social-icons-footer ul li a {
    margin: 0 0.5em;
    color: #333;
}

.social-icons-footer ul li a:hover {
    color: #feac00;
}

.comments-grid-right h4 {
    font-size: 17px;
    font-weight: 600;
}

.comments-grid-right ul li {
    display: inline-block;
    color: #888;
    font-size: 14px;
    letter-spacing: 1px;
}

.comments-grid-right ul li a {
    color: #feac00;
}

.single-page-form {}

/*--//single --*/
/*--//contact-- */
/*--//inner-w3pvt-page-- */
/*--/timeline--*/
/* Media Queries */
/* Card sizing */
/* Colors */
/* Calculations */
/* Placeholders */
@media (min-width: 1000px) {

    #timeline .demo-card:nth-child(odd) .head::after,
    #timeline .demo-card:nth-child(even) .head::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
    }

    #timeline .demo-card:nth-child(odd) .head::before,
    #timeline .demo-card:nth-child(even) .head::before {
        position: absolute;
        content: "";
        width: 9px;
        height: 9px;
        background-color: #bdbdbd;
        border-radius: 9px;
        box-shadow: 0px 0px 2px 8px #f7f7f7;
    }
}

/* Some Cool Stuff */
.demo-card:nth-child(1) {
    order: 1;
}

.demo-card:nth-child(2) {
    order: 4;
}

.demo-card:nth-child(3) {
    order: 2;
}

.demo-card:nth-child(4) {
    order: 5;
}

.demo-card:nth-child(5) {
    order: 3;
}

.demo-card:nth-child(6) {
    order: 6;
}

/* Border Box */
* {
    box-sizing: border-box;
}


#timeline {
    /* Fonts * padding: 100px 0;
    background: #f7f7f7;
    border-top: 1px solid rgba(191, 191, 191, 0.4);
    border-bottom: 1px solid rgba(191, 191, 191, 0.4);
    /* Fonts */
}

#timeline h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 20px;
}

#timeline p.leader {
    text-align: center;
    max-width: 90%;
    margin: auto;
    margin-bottom: 45px;
}

#timeline .demo-card-wrapper {
    position: relative;
    margin: auto;
}

@media (min-width: 1000px) {
    #timeline .demo-card-wrapper {
        display: flex;
        flex-flow: column wrap;
        width: 1170px;
        height: 1650px;
        margin: 0 auto;
    }
}

#timeline .demo-card-wrapper::after {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    border-left: 1px solid rgba(191, 191, 191, 0.4);
}

@media (min-width: 1000px) {
    #timeline .demo-card-wrapper::after {
        border-left: 1px solid #bdbdbd;
    }
}

#timeline .demo-card {
    position: relative;
    display: block;
    margin: 10px auto 80px;
    max-width: 94%;
    z-index: 2;
}

@media (min-width: 480px) {
    #timeline .demo-card {
        max-width: 60%;
        box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.07);
    }
}

@media (min-width: 720px) {
    #timeline .demo-card {
        max-width: 40%;
    }
}

@media (min-width: 1000px) {
    #timeline .demo-card {
        max-width: 450px;
        height: 400px;
        margin: 90px;
        margin-top: 45px;
        margin-bottom: 45px;
    }

    #timeline .demo-card:nth-child(odd) {
        margin-right: 45px;
    }

    #timeline .demo-card:nth-child(odd) .head::after {
        border-left-width: 15px;
        border-left-style: solid;
        left: 100%;
    }

    #timeline .demo-card:nth-child(odd) .head::before {
        left: 491.5px;
    }

    #timeline .demo-card:nth-child(even) {
        margin-left: 45px;
    }

    #timeline .demo-card:nth-child(even) .head::after {
        border-right-width: 15px;
        border-right-style: solid;
        right: 100%;
    }

    #timeline .demo-card:nth-child(even) .head::before {
        right: 489.5px;
    }

    #timeline .demo-card:nth-child(2) {
        margin-top: 180px;
    }
}

#timeline .demo-card .head {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 400;
}

#timeline .demo-card .head .number-box {
    display: inline;
    float: left;
    margin: 15px;
    padding: 10px;
    font-size: 35px;
    line-height: 35px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.17);
}

#timeline .demo-card .head h3 {
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: inherit;
    letter-spacing: 2px;
    margin: 0;
    padding-bottom: 6px;
    line-height: 1rem;
    color: #ddd;
}

@media (min-width: 480px) {
    #timeline .demo-card .head h3 {
        line-height: 1.2rem;
    }
}

#timeline .demo-card .head h3 span {
    display: block;
    font-size: 0.6rem;
    margin: 0;
}

@media (min-width: 480px) {
    #timeline .demo-card .head h3 span {
        font-size: 0.8rem;
    }
}

#timeline .demo-card .body {
    background: #fff;
    border: 1px solid rgba(191, 191, 191, 0.4);
    border-top: 0;
    padding: 15px;
}

@media (min-width: 1000px) {
    #timeline .demo-card .body {}
}

#timeline .demo-card .body p {
    font-size: 14px;
    line-height: 1.5em;
    margin-bottom: 15px;
}

#timeline .demo-card .body img {
    display: block;
    width: 100%;
}

#timeline .demo-card--step1 {
    background-color: #3c3d3e;
}

#timeline .demo-card--step1 .head::after {
    border-color: #3c3d3e;
}

#timeline .demo-card--step2 {
    background-color: #3c3d3e;
}

#timeline .demo-card--step2 .head::after {
    border-color: #3c3d3e;
}

#timeline .demo-card--step3 {
    background-color: #3c3d3e;
}

#timeline .demo-card--step3 .head::after {
    border-color: #3c3d3e;
}

#timeline .demo-card--step4 {
    background-color: #3c3d3e;
}

#timeline .demo-card--step4 .head::after {
    border-color: #3c3d3e;
}

#timeline .demo-card--step5 {
    background-color: #3c3d3e;
}

#timeline .demo-card--step5 .head::after {
    border-color: #3c3d3e;
}

/* typography */

.typo-wthree h4.typo {
    color: #333;
    font-size: 1.5em;
    text-transform: uppercase;
}

.grid-bg {
    border: 2px solid #f7f7f7;
}

.sub-code {
    padding: 2em;
    background: #f7f7f7;
}

.highlight.sub-code span {
    color: #777;
}

.bd-example {
    padding: 1.5rem;
    margin-right: 0;
    margin-left: 0;
    border-width: .2rem;
}

.bd-example-container {
    min-width: 16rem;
    max-width: 25rem;
    margin-right: auto;
    margin-left: auto;
}

.bd-example-container-body {
    height: 8rem;
    margin-right: 4.5rem;
    background-color: #f7f7f7;
    border-radius: .25rem;
}

.bd-example-container-sidebar {
    float: right;
    width: 4rem;
    height: 8rem;
    background-color: #2f2e41;
    border-radius: .25rem;
}

.media span {
    font-size: 4em;
    color: #555;
}

.media-body h5 {
    font-size: 1.2em;
    color: #444;
    margin-bottom: 1em;
}

.bread-w3ls .breadcrumb {
    background: #eee;
}

.bread-w3ls .breadcrumb-item.active {
    color: #6c757d;
}

.bread-w3ls .breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #555;
    content: "/";
}

.bread-w3ls li.breadcrumb-item a {
    color: #777;
}

.bread-w3ls nav a {
    padding: 0;
}

/* //typography */
/*--//typography--*/
@media screen and (max-width: 600px) {}

@media screen and (max-width: 480px) {}

@media screen and (max-width: 375px) {}

@media screen and (max-width: 320px) {}

/*--/error--*/
.error-w3pvt h3 {
    font-size: 10em;
    font-weight: bold;
}

.error-w3pvt h4 {
    text-transform: uppercase;
    font-size: 2em;
    font-weight: lighter;
    letter-spacing: 30px;
}

.error-w3pvt h5 {
    text-transform: uppercase;
    font-size: 1.2em;
    margin: 1em 0;
    font-weight: lighter;
    letter-spacing: 4px;
    color: #777;
}

/*--//error--*/
/*mobile responsive888888888888888888888888888888888888888888*******************************/
@media screen and (max-width: 991px) {
    .error-w3pvt h3 {
        font-size: 7em;
    }

    .error-w3pvt h4 {
        font-size: 1.1em;
        letter-spacing: 11px;
    }

    .error-w3pvt h5 {
        font-size: 1em;
    }

    .copy_right p {
        font-size: 14px;
        margin: 0;
        margin-top: 0.5em;
    }

    .kl-1 {
        margin-bottom:10px;
    }
    .conta-top-1 ul li span {
        display:none;
    }
    .mtt-3 {
            padding: 5px 15px !important;
    }
    .fake-radio {
            bottom: 20%;
    }
    .call-now {
            top: 227px !important;
    }
    .ab-2 {
        padding: 30px 0 30px 0;
    }
    .skhp {
        margin-bottom:15px;
    }
    .ltru-2 h3 {
        font-size:22px;
    }
    .services {
            background-position: 74% 83%;
    }
    .hd-2 {
        padding-top:20px;
    }
    .pop-3 {
        width: 90%;
    overflow: hidden;
    }
    .sda {
        padding-top:20px;
    }
    .gauren-2 {
        margin-bottom:30px;
    }
    .hfc-2 {
            margin-bottom: 25px !important;
                font-size: 22px !important;
    }
    footer {
        background-position: 47% 81% !important;
    }
    .vdsp {
            font-size: 16px !important;
            margin-top: 7px !important;
    }
    .inner-w3pvt-page {
            height: 130px !important;
    }
    .ofdate-2 {
    margin-left: 0% !important;
}

    .inner-privacy {
        height: 130px !important;
    }
    .about-bg-img {
            height: 130px !important;
    }
    .six-fd {
        margin-bottom:20px;
    }
    .isfd h4 {
        font-size: 20px!important;
        line-height:30px;
    }

    .ashg h4 {
        margin-top:25px;
    }
    .member-bg-1 {
            height: 130px !important;
    }
    .service-bg {
        height: 130px !important;
    }
    .mar-bottom-res {
        margin-bottom:15px;
    }
    .serv-tex h3 {
        font-size:26px !important;
    }
    .kmfs {
        margin-top:15px;
    }
    .time-bg {
            height: 130px !important;
    }
    .team-bg-2 {
        height: 130px !important;
    }
    .team-head {
        margin-bottom: 30px !important;
    }
    .male-rd {
    margin-top: 20px !important;
}
    .nghj {
        margin-bottom:20px;
    }
    .ht-featured-post {
        margin-bottom:40px;
    }
    .card-container {
        margin-bottom:15px;
    }
    .tipo-bg {
            height: 130px !important;
    }
    .klue {
        font-size: 23px !important;
        margin-top:35px;
    }
    .welco-ted h4 {
        line-height: 35px;
    text-align: justify;
    }
    .d-pics-wrapper .ahj {
        flex: 35% !important;
    max-width: 100% !important;
    padding: 0 15px 20px 0 !important;
    }
    .error-bg-1 {
            height: 130px !important;
    }
    .premiumlabel {
        right: 0px !important;
    }
    .roshj-3 {
        margin-bottom:30px;
    }
    .dcf-6 {
        margin-top:0px !important;
    }
    .suray-2 h4 {
        font-size:18px !important;
            margin-bottom: 30px !important;
    }
    .gallery-bg {
            height: 130px !important;
    }
    .blog-bg-1 {
            height: 130px !important;
    }
    .contact-bg-1 {
            height: 130px !important;
    }












































































































}
/*end mobile responisive**********************************************************************/
@media screen and (max-width: 375px) {
    .error-w3pvt h3 {
        font-size: 6em;
    }

    .error-w3pvt h4 {
        font-size: 1em;
        letter-spacing: 11px;
    }

    .error-w3pvt h5 {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 320px) {}

/*-- footer --*/
footer {
    background: #222;
   background-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.62) 0%,rgba(0, 0, 0, 0.29) 100%), url(../images/jofooter-bgjo.jpg) ;
    background-size:cover;
    
    background-repeat:no-repeat;

}

.footer-grids h4 {
    color: #fff;
    font-size: 1.2em;
}

.footer-grids h5 {
        color: #cecece;
}

.footer-grids h5 span {
    color: #feac00;
}

.footer-grids p,
.footer-grids p a,
.copyright p,
.copyright p a {
    font-size: 15px;
    color: #fff;
    font-weight: normal;
    letter-spacing: .5px;
}

.footer-grids ul li a {
    font-size: 15px;
        color: #fff;
    font-weight: normal;
    letter-spacing: 1px;
}

.footer-grids ul li {
    list-style-type: none;
}

.footer-grids input[type="email"] {
    background: #fff;
    box-shadow: none !important;
    padding: 12px 15px;
    color: #777;
    font-size: 14px;
    border: none;
    letter-spacing: 1px;
    outline: none;
}

.footer-grids button.btn {
    background: #feac00;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 12px;
    display: inline-block;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

h2 a.navbar-brand {
    color: #fff;
}

.icon-social a {
    color: #fff;
    margin-right: 0.5em;
}

ul.list-info-wthree li a {
    display: block;
    margin: 1em 0;
}

ul.list-info-wthree li a:hover {
    color: #00ffad;
    text-decoration: underline;

}

.ad-info p {
    display: block;
    margin: 1em 0;
}

.ad-info p span {
    margin-right: 0.5em;
}

/*-- //footer --*/

/*--/copy_right--*/


.copy_right {
    border-top: 1px solid rgba(221, 221, 221, 0.12);
}

.copy_right p a {
    color: #fff;
}

.copy_right p a:hover {
    opacity: .8;
}

.copy_right p {
    letter-spacing: 1px;
    font-size: 16px;
    margin: 0;
    color: #fff;
    margin-top: 0.5em;
}

/*--//copy_right--*/
/* /move-top */
a.move-top span {
    color: #fdfdfd;
    width: 36px;
    height: 36px;
    border: transparent;
    background: transparent;
    background: #e9316d;
    text-align: center;
        padding-top: 5px;
}

/* //move-top */
/*--responsive--*/

@media(max-width:1280px) {
    .tooltip {
        display: block;
        position: absolute;
        top: 0;
        left: 8%;
        padding: 0.2rem 0.5rem;
    }

    .hny-stats-inf {
        margin: 6em auto 0;
        width: 67%;
    }

    .date-post {
        padding: 2em;
    }

    .banner-w3pvt-1,
    .banner-w3pvt-2,
    .banner-w3pvt-3,
    .overlay-w3ls {
            min-height: 550px;
    }

    .banner-hny-info {
        padding: 14em 0 12em;
    }

    .banner-hny-info h3 {
        font-size: 3.5em;
    }
}

@media(max-width:1080px) {
    .date-post {
        padding: 1em;
    }

    .inner-w3pvt-page,
    .overlay-innerpage {
        min-height: 10em;
    }

}


@media(max-width:1024px) {
    .banner-hny-info {
        padding: 11em 0 9em;
    }

    .banner-w3pvt-1,
    .banner-w3pvt-2,
    .banner-w3pvt-3,
    .overlay-w3ls {
        min-height: 656px;
    }

    .inner-w3pvt-page,
    .overlay-innerpage {
        min-height: 25em;
    }
}

@media(max-width:991px) {
    .hny-stats-inf {
        margin: 6em auto 0;
        width: 85%;
    }

    .featured_grid_right_info h4 {
        font-size: 1em;
    }

    .date-post {
        padding: 2em;
    }

    .con-gd .form-control {
        margin: 1em 0;
    }
}


@media(max-width:768px) {
    .banner_bottom_left h4 {
        font-size: 1.2em;
    }

    p {
        font-size: 0.9em;
    }
}

@media(max-width:767px) {

    .inner-w3pvt-page,
    .overlay-innerpage {
        min-height: 10em;
    }

    .featured_grid_right_info,
    .featured_grid_right_info {
        text-align: center;
        margin-top: 0.5em;
    }

    .team-gd {
        margin-bottom: 1.5em;
    }

    .team-info h3 {
        font-size: 1em;
    }
}

@media(max-width:667px) {
    .hny-stats-inf {
        margin: 6em auto 0;
        width: 95%;
    }

    .banner-w3pvt-1,
    .banner-w3pvt-2,
    .banner-w3pvt-3,
    .overlay-w3ls {
        min-height: 600px;
    }

    .banner-hny-info h3 {
        font-size: 2.5em;
    }

    .banner-hny-info {
        padding: 10em 0 5em;
    }

    .banner-hny-info h3 {
        font-size: 2em;
    }

    .btn {
        padding: 7px 23px;
    }

    .banner-hny-info {
        padding: 8em 0 1em;
    }

    h3.tittle-w3ls,
    h3.tittle-w3ls.two {
        font-size: 2em;
        letter-spacing: 1px;
    }

    p.sub-tittle {
        font-size: 1em;
    }

    .copy_right p {
        font-size: 14px;
    }

    .map-w3pvt iframe {
        min-height: 200px;
    }

    .contact-hny-form textarea {
        min-height: 130px;
    }

    h3.title-hny {
        font-size: 1.4em;
    }
}

@media(max-width:640px) {
    h5.counter {
        font-size: 1.5em;
        margin: 0;
    }

    p.para-w3pvt {
        font-size: 1em;
        margin-left: 0.5em;
    }

    .banner-w3pvt-1,
    .banner-w3pvt-2,
    .banner-w3pvt-3,
    .overlay-w3ls {
        min-height: 550px;
    }

    .hny-stats-inf {
        margin: 4em auto 0;
        width: 95%;
    }

    .tooltip {
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        padding: 0.2rem 0.5rem;
    }

    .banner-hny-info {
            padding: 5em 0 0em;
    }
}

@media(max-width:600px) {

    .banner-w3pvt-1,
    .banner-w3pvt-2,
    .banner-w3pvt-3,
    .overlay-w3ls {
        min-height: 470px;
    }

    h3.tittle-w3ls,
    h3.tittle-w3ls.two {
        font-size: 1.8em;
        letter-spacing: 1px;
    }

    .nav_w3pvt {
        padding: 0 1em;
    }
    .inner-w3pvt-page-info {
        padding-top: 5em;
    }
    .inner-w3pvt-page, .overlay-innerpage {
        min-height: 7em;
    }
}

@media(max-width:414px) {
    .hny-stats-inf {
        margin: 0em auto 0;
        width: 95%;
    }

    .banner-w3pvt-1,
    .banner-w3pvt-2,
    .banner-w3pvt-3,
    .overlay-w3ls {
        min-height: 288px;
    background-position: center;
    }

    .nav_w3pvt {
        margin-top: 1em;
        padding: 0 1em;
    }
}

@media(max-width:384px) {

    h3.tittle-w3ls,
    h3.tittle-w3ls.two {
        font-size: 1.6em;
    }

    .banner-hny-info h3 {
        font-size: 18px;
    }

    .banner-w3pvt-1,
    .banner-w3pvt-2,
    .banner-w3pvt-3,
    .overlay-w3ls {
        min-height: 430px;
    }

    .hny-stats-inf {
       margin: 0em auto 0;
        width: 95%;
    }
}

@media(max-width:375px) {

    h3.tittle-w3ls,
    h3.tittle-w3ls.two {
        font-size: 1.5em;
    }

    .banner-w3pvt-1,
    .banner-w3pvt-2,
    .banner-w3pvt-3,
    .overlay-w3ls {
                min-height: 250px;
                    background-position: center;
    }
}

@media(max-width:320px) {

    .banner-w3pvt-1,
    .banner-w3pvt-2,
    .banner-w3pvt-3,
    .overlay-w3ls {
        min-height: 350px;
    }

    h3.tittle-w3ls,
    h3.tittle-w3ls.two {
        font-size: 1.4em;
    }

    .banner-hny-info h3 {
        font-size: 1.6em;
    }

    .btn {
        padding: 7px 20px;
    }
}

/*--//responsive--*/

/*my css start tamplate edit*/

.header-one {
    padding:10px 0 10px 0;
    background-color: #e9316d;
    
    
}
.conta-top-1 ul li {
    list-style:none;
    display:inline-block;
}
    .conta-top-1 ul li a {
        color:white;
    }
        .conta-top-1 ul li a i {
            margin-right:5px;
        }
    .conta-top-1 ul li span {
        color:white;
    }

.top-add p {
    margin:0px;
    color:white;
}
    .top-add p i {
        margin-right:5px;
    }

.clint-login h4 {
    font-size:18px;
}
    .clint-login h4 a {
        color:white;
            font-family: auto;
    }
        .clint-login h4 a i {
            margin-right:3px;
        }
.banner-new {
        padding: 8em 0 2em;
}
.call-now {
    position: fixed;
        background: #e9316d;
    right: -11px;
    top: 155px;
    padding: 5px 30px;
    font-size: 15px;
        color: #fff;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    z-index: 99;
}
    .call-now a {
         color: #fff;
    }
.jk-2 {
    font-size: 16px !important;
    text-align: justify;
    font-family: auto;
    letter-spacing: 0.5px;
}
.pick {
        color: #e9316d;
    font-family: none;
}
.vbc {
        font-family: none;
}
.ltru-2 {
       padding: 2rem 0 2rem;
       background-color: #00cccc;                                              cannnnnnnggggggggggggggg 4 image gole uper
}
.yhjo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
        border: 2px dashed #e9316d;
}
.yhjo h3 {
    font-size: 24px;
    padding-top: 10px;
    font-family: auto;
}
.skhp {
    margin-top:15px;
}
.skhp a {
    background-color: black;
    padding: 5px 30px 7px 30px;
    color: white;
    font-family: sans-serif;
    border-radius: 5px;
}
.ltru-2 h3 {
    text-align: center;
    margin-bottom: 24px;
    font-family: none;
}
.left-k1 h4 {
    text-align: center;
    font-family: auto;
    font-size: 26px;
}
.left-k1 p {
    text-align: justify;
    font-size: 16px;
    font-family: auto;
    color: black;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.left-k1 ul li {
    font-size: 16px;
    font-family: none;
}
.left-k1 ul {
    padding-left:15px;
}
.main-tro-2 {
    padding-top: 2em;
}
.utl-1 p {
    color: black;
    font-family: initial;
    text-align: justify;
}
.blue-new {
    background: rgba(10, 10, 10, 0.36);
}
.last-vid {
    box-shadow: 0px 0px 8px 8px #00000047;
}
    .last-vid video {
            outline: none;
    }

    #generic_price_table{
	background-color: #FE2E9A;                                              price side bacgrawnd
}

/*PRICE COLOR CODE START*/
#generic_price_table .generic_content{
	    background-color: #886A08;
}

#generic_price_table .generic_content .generic_head_price{
	background-color: #f6f6f6;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg{
	border-color: #ffbf00; rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ffbf00;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head span{
	color: #525252;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .sign{
    color: #414141;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .currency{
    color: #414141;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .cent{
    color: #414141;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .month{
    color: #414141;
}

#generic_price_table .generic_content .generic_feature_list ul li{	
	    color: #ffffff;
}


#generic_price_table .generic_content .generic_feature_list ul li:hover{
	    background-color: #000000;
	border-left: 5px solid #2ECC71;
}

#generic_price_table .generic_content .generic_price_btn a{
	border: 2px solid #ffffff;
    color: #ffffff;
} 

#generic_price_table .generic_content.active .generic_head_price .generic_head_content .head_bg,
#generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head_bg{
	border-color: #432ecc; rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #432ecc;
	color: #fff;
}

#generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head span,
#generic_price_table .generic_content.active .generic_head_price .generic_head_content .head span{
	color: #fff;
}

#generic_price_table .generic_content:hover .generic_price_btn a,
#generic_price_table .generic_content.active .generic_price_btn a{
	    background-color: #000000;
	color: #fff;
} 
#generic_price_table{
	    padding: 50px 0 50px 0;
    font-family: 'Raleway', sans-serif;
}
.row .table{
    padding: 28px 0;
}

/*PRICE BODY CODE START*/

#generic_price_table .generic_content{
	overflow: hidden;
	position: relative;
	text-align: center;
}

#generic_price_table .generic_content .generic_head_price {
	margin: 0 0 10px 0;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content{
	margin: 0 0 50px 0;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg{
    border-style: solid;
    border-width: 75px 1411px 23px 399px;
	position: absolute;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head{
	padding-top: 20px;
	position: relative;
	z-index: 1;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head span{
    font-family: "Raleway",sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag{
	padding: 0 0 20px;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price{
	display: block;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .sign{
    display: inline-block;
    font-family: "Lato",sans-serif;
    font-size: 28px;
    font-weight: 400;
    vertical-align: middle;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .currency{
    font-family: "Lato",sans-serif;
    font-size: 60px;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 60px;
    padding: 0;
    vertical-align: middle;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .cent{
    display: inline-block;
    font-family: "Lato",sans-serif;
    font-size: 24px;
    font-weight: 400;
    vertical-align: bottom;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .month{
    font-family: "Lato",sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    vertical-align: bottom;
}

#generic_price_table .generic_content .generic_feature_list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

#generic_price_table .generic_content .generic_feature_list ul li{
	font-family: "Lato",sans-serif;
	font-size: 16px;
	padding: 8px 0;
	transition: all 0.3s ease-in-out 0s;
    border-bottom: 2px solid #f6f6f6;
    font-family: auto;
    font-weight: 500;
}
#generic_price_table .generic_content .generic_feature_list ul li:hover{
	transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;

}
#generic_price_table .generic_content .generic_feature_list ul li .fa{
	padding: 0 10px;
}
#generic_price_table .generic_content .generic_price_btn{
	    margin: 20px 0 20px;
}

#generic_price_table .generic_content .generic_price_btn a{
    border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	-webkit-border-radius: 50px;
    display: inline-block;
        font-family: auto;
    font-size: 18px;
    outline: medium none;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
}

#generic_price_table .generic_content,
#generic_price_table .generic_content:hover,
#generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg,
#generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head_bg,
#generic_price_table .generic_content .generic_head_price .generic_head_content .head h2,
#generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head h2,
#generic_price_table .generic_content .price,
#generic_price_table .generic_content:hover .price,
#generic_price_table .generic_content .generic_price_btn a,
#generic_price_table .generic_content:hover .generic_price_btn a{
	transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
} 
@media (max-width: 320px) {	
}

@media (max-width: 767px) {
	#generic_price_table .generic_content{
		margin-bottom:50px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#generic_price_table .col-md-3{
		float:left;
		width:50%;
	}
	
	#generic_price_table .col-md-4{
		float:left;
		width:50%;
	}
	
	#generic_price_table .generic_content{
		margin-bottom:75px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
#generic_price_table_home{
	 font-family: 'Raleway', sans-serif;
}

.text-center h1,
.text-center h1 a{
	color: #7885CB;
	font-size: 30px;
	font-weight: 300;
	text-decoration: none;
}
.demo-pic{
	margin: 0 auto;
}
.demo-pic:hover{
	opacity: 0.7;
}

#generic_price_table_home ul{
	margin: 0 auto;
	padding: 0;
	list-style: none;
	display: table;
}
#generic_price_table_home li{
	float: left;
}
#generic_price_table_home li + li{
	margin-left: 10px;
	padding-bottom: 10px;
}
#generic_price_table_home li a{
	display: block;
	width: 50px;
	height: 50px;
	font-size: 0px;
}
#generic_price_table_home .blue{
	background: #3498DB;
	transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .emerald{
	background: #2ECC71;
	transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .grey{
	background: #7F8C8D;
	transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .midnight{
	background: #34495E;
	transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .orange{
	background: #E67E22;
	transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .purple{
	background: #9B59B6;
	transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .red{
	background: #E74C3C;
	transition:all 0.3s ease-in-out 0s;
}
#generic_price_table_home .turquoise{
	background: #1ABC9C;
	transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .blue:hover,
#generic_price_table_home .emerald:hover,
#generic_price_table_home .grey:hover,
#generic_price_table_home .midnight:hover,
#generic_price_table_home .orange:hover,
#generic_price_table_home .purple:hover,
#generic_price_table_home .red:hover,
#generic_price_table_home .turquoise:hover{
	border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
	transition: all 0.3s ease-in-out 0s;
}
#generic_price_table_home .divider{
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
	padding: 20px;
}
#generic_price_table_home .divider span{
	width: 100%;
	display: table;
	height: 2px;
	background: #ddd;
	margin: 50px auto;
	line-height: 2px;
}
#generic_price_table_home .itemname{
	text-align: center;
	font-size: 50px ;
	padding: 50px 0 20px ;
	border-bottom: 1px solid #ddd;
	margin-bottom: 40px;
	text-decoration: none;
    font-weight: 300;
}
#generic_price_table_home .itemnametext{
    text-align: center;
    font-size: 20px;
    padding-top: 5px;
    text-transform: uppercase;
    display: inline-block;
}
#generic_price_table_home .footer{
	padding:40px 0;
}

.price-heading{
    text-align: center;
}
.price-heading h1{
	color: #666;
	margin: 0;
	padding: 0 0 50px 0;
}
.demo-button {
    background-color: #333333;
    color: #ffffff;
    display: table;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 50px;
    outline-color: -moz-use-text-color;
    outline-style: none;
    outline-width: medium ;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
}
.bottom_btn{
	background-color: #333333;
    color: #ffffff;
    display: table;
    font-size: 28px;
    margin: 60px auto 20px;
    padding: 10px 25px;
    text-align: center;
    text-transform: uppercase;
}
.demo-button:hover{
	background-color: #666;
	color: #FFF;
	text-decoration:none;
	
}
.bottom_btn:hover{
	background-color: #666;
	color: #FFF;
	text-decoration:none;
}
#generic_price_table h3 {
    text-align: center;
    margin-bottom: 40px;
    font-family: auto;
    text-decoration: underline;
    text-shadow: 3px 3px 5px #00000045;
}
.stale {
       color: #ffffff;
    font-family: none;
    text-shadow: 3px 3px 5px #0000006b;
}
.galert {
        background-color: darkcyan;
}
.grt-1 h5 {
        text-align: center;
            
}
.grt-1 {
    background: #fe2e9a;                      girel nama clour cannnnnnnnnnnnnnnnnngggggggggggggg
}
.pop-3 {
    background-image: radial-gradient(ellipse at center, rgba(212, 23, 23, 0.45) 0%,rgba(35, 68, 187, 0.24) 100%), url(../images/joback-2jo.jpg);
    background-size:cover;
        background-position: 73% 79%;
    background-repeat:no-repeat;
}
.joi-2 {
    text-align:center;
        color: #efff00;
        text-shadow: 3px 3px 5px #0000006b;
            margin-bottom: 13px;
                font-family: auto;
                font-weight:500;
}
.prt-6 a {
    font-size:24px;
    color:yellow;
    font-weight:600;
}
.prt-6 span {
    color: black;
    font-size: 22px;
    padding-top: 2px;
    margin-right:3px;
    
}
.pop-3 img {
    box-shadow: 0px 0px 8px 8px #00000030;
}
.poster {
        padding: 2rem 0 0rem 0;
            background-color: #ed0f43;
}
    .poster h3 {
        color: #ffffff;
    }
    .poster img {
        height:229px;
            width: 100%;
    }
.banner-bot {
        background-color: #00d9dc;
}
.herep h3 {
    text-align: center;
    font-family: initial;
    font-size: 36px;
    border-bottom: 2px dashed black;
    padding-bottom: 15px;
        margin-bottom: 20px;
}
.herep p {
    font-family: auto;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-align: justify;
    color: #404040;
    font-size:15px;
}
.imagehelp img {
    margin-top:30px;
    border-radius:10px;
    background-color: #0bc9dc;
    border: 1px solid #0bc9dc;
    box-shadow: 0px 0px 8px 8px #00000033;
}
.radg-2 a {
    background-color: #e54c4c;
    color: white;
    padding: 3px 20px 3px 20px;
    border-radius: 5px;
    font-family: auto;
    border: 1px solid #e54c4c;
    text-shadow: 2px 2px 4px #000000;
}
.radg-2 {
    margin-top:10px;
}
.light-1 {
    background: rgba(10, 10, 10, 0.42);
}
.tastoch-2 {
        background: #0000005e;
}
    .tastoch-2 p {
        color:white;
    }
.resp img {
    width:80px;
}
.gfd h5 {
    color: #5500ff;
}
.gauren-2 img {
    width:160px;
    height:160px;
    box-shadow: 0px 0px 8px 8px #00000047;
    border-radius: 50%;
}
.garet-3 {
        background-color: #d5ecffbf;
}
.hfc-2 {
   font-family: -webkit-body;
    margin-bottom: 35px;
    font-size: 24px;
    text-decoration: underline;
    text-shadow: 3px 3px 5px #0000003d;
}
.foot-2 {
    padding-bottom: 1.7rem !important;
}
.move-top a {
    font-size: 24px;
   
}
.vdsp {
    font-size: 30px;
    color: white;
    margin-top: 45px;
    font-family: auto;
    font-weight: 600;
}
.form-container{ font-family: 'Poppins', sans-serif; }
.form-container .form-icon{
    color: rgba(255,255,255,0.5);
    background-color: #07CBC9;
    font-size: 45px;
    text-align: center;
    line-height: 80px;
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 2px solid #049898;
    position: relative;
}
.form-container .form-icon:before,
.form-container .form-icon:after{
    content: '';
    background-color: #07CBC9;
    height: 2px;
    width: 100%;
    transform: translateY(-50%);
    position: absolute;
    left: -140%;
    top: 50%;
}
.form-container .form-icon:after{ left: 140%; }

.form-container .form-horizontal{
    background-color: #07CBC9;
    padding: 25px 20px 10px 20px;
    position: relative;
}
.form-container .form-horizontal:before{
    content: '';
    background: linear-gradient(-45deg,transparent 49%, #07CBC9 50%);
    height: 15px;
    width: 15px;
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: -8px;
}
.form-horizontal .form-group{
    font-size: 0;
    margin: 0 0 15px;
}
.form-horizontal .input-icon{
    color: #fff;
    background-color: #079797;
    font-size: 22px;
    text-align: center;
    line-height: 45px;
    height: 45px;
    width: 55px;
    vertical-align: top;
    display: inline-block;
}
.form-horizontal .form-control{
    color: #555;
    background-color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    width: calc(100% - 55px);
    height: 44px;
    padding: 2px 10px;
    box-shadow: 0 0 5px -3px #333;
    border: none;
    border-radius: 0;
    display: inline-block;
    transition: all 0.3s;
}
.form-horizontal .form-control:focus{
    box-shadow: none;
    border: none;
}
.form-horizontal .form-control::placeholder{
    color: rgba(0,0,0,0.7);
    font-size: 14px;
    text-transform: capitalize;
}
.form-horizontal .btn{
    color: #fff;
    background-color: #fcc900;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100px;
    padding: 5px 18px;
    margin: 0 0 15px 0;
    border: none;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
}
.form-horizontal .btn:hover,
.form-horizontal .btn:focus{
    color: #fff;
    background-color: #079797;
    box-shadow: 0 0 5px #555 inset;
}
.form-horizontal .remember-me{
    font-size: 11px;
    line-height: 15px;
    text-align: right;
    width: calc(100% - 105px);
    vertical-align: top;
    display: inline-block;
}
.form-horizontal .remember-me input{
    background-color: #fff;
    height: 12px;
    width: 22px;
    margin: 0 0 -2px 0;
    border-radius: 10px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.form-horizontal .remember-me input:focus{ outline: none; }
.form-horizontal .remember-me input:not(:checked){ background-color: #fff; }
.form-horizontal .remember-me input:checked{ background-color: #079797; }
.form-horizontal .remember-me input:before{
    content: '';
    background-color: #079797;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    top: 2px;
    transition: left 0.3s ease;
}
.form-horizontal .remember-me input:checked:before{
    background-color: #fff;
    left: 12px;
}
.form-horizontal .social-links{
    padding: 0;
    margin: 0 0 10px;
    list-style: none;
    text-align: center;
}
.form-horizontal .social-links li{
    background-color: rgba(255,255,255,0.5);
    width: 40%;
    padding: 5px;
    margin: 0 9% 0 0;
    display: inline-block;
}
.form-horizontal .social-links li:nth-child(2){ margin: 0 0 0 9%; }
.form-horizontal .social-links li a{
    color: #fff;
    background-color: #079797;
    font-size: 13px;
    padding: 7px 10px;
    border-radius: 5px;
    display: block;
    transition: all 0.3s ease;
}
.form-horizontal .social-links li a:hover{ box-shadow: 0 0 5px rgba(0,0,0,0.5) inset; }
.form-horizontal .forgot-pass{
    font-size: 12px;
    text-align: center;
    display: block;
}
.form-horizontal .forgot-pass a{
    color: #079797;
    transition: all 0.3s ease;
}
.form-horizontal .forgot-pass a:focus,
.form-horizontal .forgot-pass a:hover{
    text-decoration: underline;
}
@media only screen and (max-width: 576px){
    .form-horizontal .social-links li,
    .form-horizontal .social-links li:nth-child(2){
        width: auto;
        margin: 0;
    }
}
.ofdate-2 {
    margin-left: 16%;
}
.hssd-2 {
        background-color: #ededed;
            padding: 3rem 0 3rem 0;
}
.blink{
		width:100%;
		height: 50px;
	    
		padding: 15px;	
		text-align: center;
		line-height: 50px;
        animation: blink 1s linear infinite;
        font-size: 32px;
		font-family: sans-serif;
		    color: #000000;
            margin: 0 0 20px 0;
            text-transform:capitalize;
            text-shadow: 3px 3px 5px #0000008c;
	}
	
@keyframes blink{
0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;}
}
.form-icon i {
    color:white;
}
.inner-privacy {
    background: url(../images/joprivacy-bgjo.html) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    
    height: 400px;
}
.jsac {
    font-family: auto;
    text-decoration: underline;
    text-align:center;
        margin-bottom: 30px;
}
.privacy-text p {
    color: #252525;
    text-align: justify;
    font-family: none;
    font-weight: 500;
}
.privacy-text ol li {
    font-family: auto;
    letter-spacing: 0.5px;
    text-align: justify;
    margin-bottom:10px;
}
.about-bg-img {
    background: url(../images/joabout-bgjo.html) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    height: 400px;
}
.jgb {
        color: #15c0e7;
}
.jtwq {
    text-align: center;
    color: black;
    font-family: none;
    font-weight: 500;
}
.isfd h4 {
    font-size: 22px;
    font-family: auto;
    text-transform: capitalize;
}
.isfd p {
    text-align: justify;
    font-family: none;
    font-size: 16px;
    color: #3a3a3a;
    font-weight: 500;
}
.isfd ul {
    padding-left:15px;
    margin-top:25px;
}
    .isfd ul li {
        margin-bottom: 5px;
    font-family: auto;
    }
.uslk-6 h4 {
    padding-top: 30px;
    font-family: initial;
    color: #15c0e7;
        margin-bottom: 25px;
}
.uslk-6 p {
    text-align: justify;
    font-family: none;
    font-size: 16px;
    color: #3a3a3a;
    font-weight: 500;
}
.yorw ul li {
    margin-bottom: 5px;
    font-family: auto;
}
.yorw ul {
    padding-left:15px;
}
.six-fd img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0px 0px 5px 5px #00000080;
}
.six-fd h3 {
    font-size: 22px;
    font-family: auto;
    margin-top: 15px;
    color: #000000;
    text-shadow: 1px 1px 3px #000000;
    font-weight: 600;
}
.orwd h4 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 26px;
    font-family: auto;
}
.orwd p {
    margin-bottom: 30px;
    color: #1f1f1f;
    font-family: auto;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-align: justify;
}
.ashg h4 {
    text-align: center;
    font-family: initial;
    text-shadow: 2px 2px 8px #00000075;
    margin-bottom:25px;
}
.ashg p {
    text-align: justify;
    color: #212529;
    font-family: auto;
    letter-spacing: 0.5px;
}
.more-1 {
    color: #000 !important;
    font-weight: bold;
       
}
.btn.more-1.black:hover {
    color: #feac00 !important;
    outline:none;
}
.krosf-2 {
    padding:3rem 0 4rem 0;
    background-color: #252525;
}
.box{
    font-family: 'Lexend Deca', sans-serif;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0px 0px 5px 5px #e9316d;
}
.box:hover{ box-shadow:5px 5px 10px rgba(0, 0, 0, 0.4); }
.box:before,
.box:after{
    content: "";
        background: #1832ef;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    opacity: 0;
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 1;
    transition: all 600ms ease;
}
.box:after{
    background: none;
    height: 100%;
    width: 100%;
       border: 15px solid #d6d6d6;
       box-shadow: 0 0 0 20px #d6d6d6;
    opacity: 0;
    left: 0;
    top: 0;
    transition: all 600ms ease;
}
.box:hover:before,
.box:hover:after{
    opacity: 1;
    animation: borderSkewOut 600ms ease forwards;
}
.box:hover:before{ opacity: 0.7; }
.box img{
    width: 100%;
    height: auto;
    transform: scale(1.25);
    transition: all 0.3s ease;
}
.box:hover img {
    transform: scale(1);
    filter: grayscale(50%) hue-rotate(180deg);
}
.box .box-content{
    color: #fff;
    width: 100%;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
}
.box .title{
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 3px 0;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.6s;
}
.box .post{
    font-size: 16px;
    font-style: italic;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(50px);
    display: block;
    transition: all 0.6s;
    padding-top: 13px;
    color: white;
}
.box:hover .title,
.box:hover .post,
.box:hover .icon{
    opacity: 1;
    transform: translate(0);
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateY(-100px);
    transition: all 0.6s;
}
.box .icon li{
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s;
}
.box .icon li a{
    color: #f77300;
    background: #fff;
    font-size: 20px;
    line-height: 35px;
    height: 35px;
    width: 35px;
    display: block;
    transition: all 0.5s ease;
}
.box .icon li  a:hover{
    color: #fff;
    background: #f77300;
    border-radius: 50% 50% 0 0;
    box-shadow: 0 0 15px #fff;
}
@keyframes borderSkewOut{
    33%{ transform: skew(-3deg, -3deg); }
    66%{ transform: skew(3deg, 3deg); }
}
@media only screen and (max-width:990px){
    .box { margin: 0 0 30px; }
}
.member-bg-1 {
    background: url(../images/jomember-bgjo.html) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    height: 400px;
}
.new-dsfk {
    padding:3rem 0 3rem 0;
           background-color: #e1f34c;
}
.regist-1 p {
    color:black;
    font-weight:bold;
}
.regist-1 ol li {
    color:black;
    margin-bottom:10px;
    font-weight: bold;
    text-align: justify;
}
.sfdsy-3 {
    padding:3rem 0 3rem 0;
          background-color: #ffc3c3;
}
.sdfl-2 p {
    font-size: 16px;
    font-family: auto;
    color: black;
    font-weight: 500;
    text-align: justify;
        margin-bottom: 5px;
}
.sdfl-2 h4 {
    text-align: center;
    font-family: auto;
    margin-top: 20px;
        margin-bottom: 20px;
}
.sdfl-2 ol li {
    font-family: sans-serif;
    color: black;
    margin-bottom: 5px;
}
.member-blog {
    padding:3rem 0 3rem 0;
    background-color: #f1f1f1;
}
@import url(https://fonts.googleapis.com/css?family=Lato);
@import url(https://fonts.googleapis.com/css?family=Oswald);
@import url(../code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.html);
.snip1518 {
  font-family: 'Lato', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  
 
  width: 100%;
  background-color: #ffffff;
  color: #2B2B2B;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

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

.snip1518 img {
  max-width: 100%;
  vertical-align: top;
  position: relative;
}

.snip1518 figcaption {
     padding: 5%;
      padding-bottom: 50px;
  background-color: #ffffff;
}

.snip1518 h3 {
  font-family: 'Oswald';
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  margin: 3px 0;
}

.snip1518 h5 {
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
     color: #000;
 letter-spacing: 1.5px;
    font-family: fantasy;
        margin-bottom: 10px;
}

.snip1518 foouy-1 {
  border-top: 1px solid rgba(0, 0, 0, 0.065);
  padding: 0 20px;
  font-size: 13px;
  line-height: 50px;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.snip1518 foouy-1 .icons {
  position: absolute;
  right: 20px;
  top: 0;
}

.snip1518 foouy-1 .icons > div {
  display: inline-block;
  margin-left: 8px;
}

.snip1518 foouy-1 .icons i {
  display: inline-block;
  margin-right: 5px;
  font-size: 1em;
}

.snip1518 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
.news-blog {
    text-align: center;
    margin-bottom: 30px;
    font-family: none;
    text-shadow: 3px 3px 5px #00000045;
}
.snip1518 p {
    font-family: auto;
    text-align: justify;
    color: black;
}
.service-bg {
    background: url(../images/joservice-bgjo.html) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    height: 400px;
}
.bcx-1 {
    text-align: center;
    font-size: 34px;
    font-family: auto;
    color: red;
    text-decoration: underline;
        margin-bottom: 30px;
}
/*copy start*/
.service-box {
    background: #f5f5f5;
    padding-top: 40px;
    padding-bottom: 40px;
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
}
.service-circle {
    width: 75px;
    height: 75px;
    margin: auto;
    border-radius: 0;
    display: block;
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}
.big-circle {
    width: 100%;
    height: 100%;
    background-color: #262626;
    position: relative;
    display: inline-block;
    border-radius: 10%;
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}
.big-circle span {
    font-size: 25px;
    color: #fff;
}
.big-circle span {
    width: 100%;
    font-size: 40px;
    color: #fff;
    position: absolute;
        top: 41%;
    left: 0;
    margin-top: -12.5px;
}
.marB10 {
    margin-bottom: 10px;
}
.marT20 {
    margin-top: 20px;
}
.service-box p {
    padding: 10px;
    font-family: initial;
    color: #4f4d4d;
    
}
.service-box.hover:hover {
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.175);
    background: #fff;
}
.service-box:hover .service-circle {
    padding: 5px;
    border: 1px solid #d4d4d4;
}
.service-box.hover:hover .service-circle {
    border-radius: 10%;
}
.theme-bg, .itg-button:hover, .theme-circle:hover, .theme-circle:focus, .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span, .service-box:hover .big-circle, .owl-theme .owl-nav [class*='owl-']:hover, .sticker-tag:hover, .service-box:hover .itg-button, .top-bar-icon li a span, .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus, .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover, .itg-button.dark, .comming-soon-content .search_bar button, .thecube .cube:before, .demo-button .itg-button, .theme-heading h1:before, .theme-heading h1:after, .filter-section .ui-state-default, .filter-section .ui-widget-content .ui-state-default, .filter-section .ui-widget-header .ui-state-default, .filter-section .ui-button, html .ui-button.ui-state-disabled:hover, .filter-section.ui-button.ui-state-disabled:active, .filter-section input[type="checkbox"]:checked + label:before, .register-section .tablinks.active, .register-section .tablinks:hover, ul.nav.navbar-nav li a:hover, .navbar-default .navbar-nav > .open > a:hover, .navbar-nav>li>.dropdown-menu, .dropdown-menu, .theme-heading span, .navbar-default .navbar-nav .open .dropdown-menu>li>a, .facts.box:hover .big-circle, .gallery-img figure:after, .product-text-sec-box .itg-button.light:hover, .table-section:hover .itg-button.light, .table-section:hover .month-box a, .new-letter-section .nav-seach-box .button-style, .foot-sec h3:after, .service-detail:hover .itg-button.light, .chef-detail.box .theme-circle:hover, .tooltip-box .progress-bar, .comming-soon-content.box .theme-circle:hover, .pagination-box span:hover, .checbox-section input[type="checkbox"]:checked + label:before, .rating-section .itg-button, .order-bosx, .details-section-boxs:hover .big-circle, .product-text-sec-icons1 li a:hover, .serch-result.box-sec .product-text-sec-icons1 li a:hover, .serch-result.box-sec .product-text-sec-box .itg-button.light:hover, .facts box:hover .big-circle, #productslist .product-text-sec-icons1 li a:hover, #productslist .product-text-sec-box .itg-button.light:hover, #style-switcher h2 a {
    background-color: #ea3813;
}

.marB10 a {
    font-family: initial;
    letter-spacing: 0.5px;
    font-size: 22px;
}
.kmfs {
        font-family: serif;
    text-align: center;
    font-size: 28px;
}
    .kmfs span {
            color: #f9115d;
    }
.nbds p {
    text-align: justify;
    font-family: auto;
    color: #191919;
}
.fasd {
    padding-top:25px;
}
.ser-bg-1 {
    background-image:url(../images/joaboutkljo.html);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.serv-tex h3 {
    font-size: 39px;
    text-align: center;
    color: #6ec1e4;
    font-family: auto;
    margin-bottom: 15px;
}
.serv-tex p {
    text-align: center;
    color: white;
    font-family: unset;
    border-top: 2px solid white;
    padding-top: 40px;
    border-bottom: 2px solid white;
    padding-bottom: 40px;
}
.serviceBox{
    font-family: 'Raleway', sans-serif;
    text-align: center;
}
.serviceBox .service-icon{
    color: #eb3b5a;
      background: #000;
    font-size: 50px;
    border-radius: 15px 15px 0 0;
    padding: 10px 10px 8px;
    margin: 0 25px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .service-icon i{
    transform: rotate(360deg);
    transition: all 0.3s;
}
.serviceBox .service-content{
    color: #fff;
    background: linear-gradient(to bottom,#d92856,#EF7C46);
    text-shadow: 0 0 2px #555;
    padding: 50px 20px 30px;
    border-radius: 5px 5px 15px 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.serviceBox .service-content:before,
.serviceBox .service-content:after{
    content: "";
       background: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: -30px;
    left: 50%;
}
.serviceBox .service-content:after{
    background: linear-gradient(to bottom,rgba(255,255,255,0.1),transparent);
    width: 100%;
    height: 100%;
    border-radius: 100% 0 0 0;
    transform: translateX(0);
    top: 15px;
    left: 0;
}
.serviceBox .title{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.serviceBox .description{
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
        color: white;
}
.serviceBox.purple .service-icon{ color: #B67BD5; }
.serviceBox.purple .service-content{ background: linear-gradient(to bottom,#B67BD5,#D87BA7); }
.serviceBox.blue .service-icon{ color: #13b8ef; }
.serviceBox.blue .service-content{ background: linear-gradient(to bottom,#13b8ef,#72daf9); }
.serviceBox.green .service-icon{ color: #22AB15; }
.serviceBox.green .service-content{ background: linear-gradient(to bottom,#22AB15,#A4DC61); }
@media only screen and (max-width:990px){
    .serviceBox{ margin: 0 0 30px; }
}
.servi-las {
    background-color: #f5f5f5;
}
    .servi-las h2 {
        text-align: center;
    margin-bottom: 30px;
    font-family: initial;
    color: #ef165d;
    }
.time-bg {
    background: url(../images/jotime-bgjo.html) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    height: 400px;
}
.call-now a:hover {
    color:white;
        outline: none;
}
.jhs {
    font-size: 32px;
    font-family: auto;
    text-decoration: underline;
        color: white;
}
.redn span {
    font-size: 28px;
    font-family: serif;
        font-weight: bold;
                color: #0400ff;
}
.redn p {
    margin-top: 10px;
    font-family: auto;
    text-align: justify;
    
        color: white;
    font-weight: 500;
    margin-bottom: 15px;
}
.redn i {
    font-size: 22px;
    color: red;
    margin-right: 5px;
}
.time-lio {
    padding:1rem 0 1rem 0;
    background-color: #212121;
}

.img-shadow-1
{
-webkit-box-shadow: 0 28px 16px -26px black;
-moz-box-shadow: 0 28px 16px -26px black;
    box-shadow: 0 28px 16px -26px #f1f1f1;
}

.img-shadow-1:hover
{
transform:scale(1.1);
-webkit-transform:scale(1.1);
-moz-transform:scale(1.1);
-ms-transform:scale(1.1);
-o-transform:scale(1.1);

-webkit-box-shadow: 0 58px 36px -56px black;
-moz-box-shadow: 0 58px 36px -56px black;
box-shadow: 0 58px 36px -56px #f1f1f1;
}

.img-shadow-1
{
transition:all .6s ease-in-out;
-webkit-transition:all .6s ease-in-out;
-moz-transition:all .6s ease-in-out;
-ms-transition:all .6s ease-in-out;
-o-transition:all .6s ease-in-out;
}

.img-shadow-1:hover
{
transition:all .6s ease-in-out;
-webkit-transition:all .6s ease-in-out;
-moz-transition:all .6s ease-in-out;
-ms-transition:all .6s ease-in-out;
-o-transition:all .6s ease-in-out;
}
.bfd-2 img {
    width:100%;
}
.sep {
    border: 2px solid #c2c2c2;
    padding: 20px 20px 30px 20px;
        background-color: #f1f1f1;
}
.sep-text h4 {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: blue;
}
.sep-text p {
    margin:0px;
    color: black;
    font-weight: bold;
    font-family: serif;
}
.sep h2 {
    margin-bottom: 30px;
    font-size: 18px;
    text-align: center;
    font-family: auto;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px #0000006e;
}
.nbc-2 {
    padding:0px;
}
.sif-imag {
    padding:2rem 0 2rem 0;
        background-color: #212121;
}
    .sif-imag h4 {
        text-align: center;
    font-family: auto;
    margin-bottom:10px;
    color:white;
    }
    .sif-imag p {
        text-align: center;
    font-size: 24px;
    color: white;
    font-family: initial;
    margin-bottom: 25px;
    }
.sirf-nitext p {
    font-size: 15px;
    text-align: justify;
    font-family: sans-serif;
    color:white;
    text-transform: uppercase;
}
.ghb-2 {
    box-shadow: 0px 0px 8px 8px #1b0dedc4;
}
.team-bg-2 {
    background: url(../images/jotim-bgjo.html) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    height: 400px;
}
.trgh-2 {
    padding:3rem 0 1rem 0;
        background-color: #f9f9f9;
}
.team-head {
    font-family: auto;
    margin-bottom: 40px;
}
.hgsv h3 {
    font-size: 22px;
    font-family: initial;
    color: #1e1edb;
    margin-bottom: 15px;
}
.hgsv p {
    text-align: justify;
    font-family: serif;
    color: #323232;
}
.male-rd {
 margin-top: 50px;
}
.jfgsy {
    padding:1rem 0 1rem 0;
        background-color: #f9f9f9;
}
.luogo {
    padding:3rem 0 3rem 0;
    background: #FFC107;
}
/*copy add start*/
.ht-featured-post {
    float: left;
    margin-left: 3%;
    
    text-align: center;
    border: 2px solid #FFF;
    padding: 30px;
}
.ht-featured-icon {
    display: inline-block;
    color: #FFF;
    font-size: 46px;
    line-height: 80px;
    width: 180px;
    background: #FFC107;
    -ms-transform: translateY(-35px);
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px);
}

.ht-featured-post h5 {
    text-transform: uppercase;
    margin-bottom: 25px;
        color: white;
}
.ht-featured-link {
    -ms-transform: translateY(52px);
    -webkit-transform: translateY(52px);
    transform: translateY(50px);
}
.ht-featured-link a {
    padding: 0 15px;
    display: inline-block;
    line-height: 40px;
    background: #FFF;
    color: #FFC107;
    border-right: 10px solid #FFC107;
    border-left: 10px solid #FFC107;
}
    .ht-featured-link a:hover {
        background-color:black;
        color:white;
    }
.ht-featured-excerpt {
    color:white;
}
.luogo h4 {
    text-align: center;
    margin-bottom: 10px;
    color: white;
    font-size: 28px;
    font-family: initial;
}
.luogo p {
    text-align:center;
    color:white;
    margin-bottom:40px;
    font-family: sans-serif;
}
.swigh-2 {
        padding: 3rem 0 3rem 0;
            background-color: #383838;
}
.card-container {
  cursor: pointer;
     height: 350px;
  perspective: 600;
  position: relative;
  width: 100%;
}
.card {
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: all 1s ease-in-out;
  width: 100%;
  border:none;
}
.card:hover {
  transform: rotateY(180deg);
}
.card .side {
  backface-visibility: hidden;
  border-radius: 6px;
  height: 100%;
  position: absolute;
  overflow: hidden;
  width: 100%;
}
.card .back {
      background: #8888f1;
    color: #ffffff;
  line-height: 75px;
  text-align: center;
  transform: rotateY(180deg);
}
.side img {
    width:100%;
        height: 100%;
}
.back p {
    color:white;
    margin:0px;
}
.swigh-2 h4 {
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-family: auto;
    text-shadow: 6px 3px 8px #ef0914;
}
.tipo-bg {
    background: url(../images/jotipo-bgjo.html) no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    height: 400px;
}
.welcome-2 {
    background: linear-gradient(135deg, #ffffff 0%,#ffffff 61%,#f4ca0b 61%,#020202 61%,#f4c90a 61%,#f4c90a 62%,#f4c90a 62%,#f4cc12 100%);
}
.welcolo-2 {
        background: linear-gradient(135deg, #f4cb0d 0%,#f4cb0e 61%,#f4ca0d 61%,#020202 61%,#f4c90a 61%,#f4ca0e 62%,#ffffff 62%,#ffffff 100%);
}

.klue {
    font-family: "Lobster",Sans-serif;
    font-size: 40px;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    color: #38B726;
   margin-bottom: 35px;
   text-align:center;
}
.welco-ted h4 {
        font-family: initial;
    margin-bottom: 20px;
}
.welco-ted p {
    color: black;
    font-family: sans-serif;
}
.jurto i {
    background-color: #38B726;
    font-size: 36px;
    padding: 27px;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    line-height: 1;
    text-align: center;
    margin-bottom: 20px;
}
.bgh-2 {
    padding-top:3rem;
}
.jurto h5 {
    font-family: auto;
    margin-bottom: 15px;
}
.licja-2 h4 {
    font-size: 17px;
    font-family: "Roboto",Sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-style: normal;
    line-height: 1.1em;
    letter-spacing: 0;
    text-shadow: 0 0 0 rgba(0,0,0,.3);
        margin-bottom: 20px;
}
.licja-2 ul li {
    list-style:none;
    margin-bottom:10px;
        display: flex;
}
    .licja-2 ul li i {
        margin-right: 8px;
    font-size: 18px;
        padding-top: 5px;
    }
.licja-2 span {
        font-family: initial;
    font-weight: bold;
}
.krey-2 {
    padding:3rem 0 3rem 0;
        background-color: #f9f9fa;
}
.rukni-2 i {
    color: #38B726;
    font-size: 60px;
    display: inline-block;
    line-height: 1;
    
    margin-bottom: 20px;
}
.rukni-2 h4 {
    margin: 10px auto 30px;
    color: #38B726;
    font-weight: 700;
    text-transform: uppercase;
    font-style: normal;
    line-height: 1.1em;
    letter-spacing: 0;
    text-shadow: 0 0 0 rgba(0,0,0,.3);
    font-family: "Roboto",Sans-serif;
 font-size: 17px;
}
.alag-2 ul li {
    list-style:none;
    text-align: left;
    padding-left: 15px;
        display: flex;
            margin-bottom: 5px;
}
    .alag-2 ul li i {
        font-size: 20px;
    margin-right: 10px;
    color: black;
        padding-top: 2px;
    }
.alag-2 span {
        font-family: initial;
}
.dsklo-1 {
    padding:3rem 0;
}
.ight-2 i {
    color: #38B726;
    display: inline-block;
    line-height: 1;
    font-size: 50px;
    
    margin-bottom: 20px;
}
.ight-2 h4 {
    font-family: Open Sans;
    color: #222a3e;
    font-size: 70px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}
.ight-2 p {
    color: #222a3e;
    font-family: "Lato",Sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    text-align: center;
    line-height: 2.5;
        margin-bottom: 15px;
}
.separator {
    width: 25%;
    border-top: 3px solid #e2e2e2;
    padding: 2px 0;
    display: inline-block;
}
.laki-img-2 {
    padding:3rem 0;
        background-color: #fcfcfc;
}
.lxf-1 h4 {
    text-align: center;
    font-size: 34px;
    font-family: auto;
    margin-bottom: 20px;
}
.lxf-1 p {
        font-family: initial;
        text-align:justify;
        letter-spacing:0.5px;
}
.d-under {
    border-top-style: solid;
    border-top-width: 2px;
    border-top-color: #dcdcdc;
    width: 15%;
    display: inline-block;
}
/*img copy start*/
.d-pics-wrapper {
    display: flex;
    flex-flow: row wrap;
    padding: 10px 0 40px;
        overflow: hidden;
}
    .d-pics-wrapper .ahj {
        
    max-width: 20%;
    padding: 0 72px 20px 0;
    }
    .d-pics-wrapper .ahj img {
    width: 100%;
    margin: 0 30px;
}
.new-sec-6 {
    padding:3rem 0;
        background-color: #555;
               border-bottom: 5px solid #784654;
}
.youk-2 p {
    color: white;
    text-align: center;
    font-size: 24px;
    font-family: initial;
        margin: 0px;
}
.youk-2 h4 {
    font-size: 40px;
    font-weight: 700;
    text-align:center;
    color:white;
}
.separator {
    text-align: left;
    padding: 2px 0;
    line-height: 0;
    font-size: 0;
}
.white-color {
    color: #fff !important;
}
.hiw-component-text {
    color: #4ebaec;
    font-family: "Roboto",Sans-serif;
    font-weight: 400;
    text-align: left;
    line-height: 29px;
    font-size: 15px;
    letter-spacing: 0px;
    margin-bottom: 5px;
}
.hiw-component-desc {
    font-family: Open Sans;
    font-size: 11px;
    color: #fff;
    line-height: 30px;
    letter-spacing: 0px;
    font-weight: normal;
    font-style: normal;
    overflow: hidden;
    padding-left: 15px;
    background-color: #784654;
}
.hg-2 {
    margin-top:30px;
}
.error-bg-1 {
    background: url(../images/joerror-bgjo.html) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    height: 400px;
}
.yorp-2 h4 {
    text-align: center;
    font-family: serif;
    text-decoration: underline;
    margin-bottom:40px;
}
.yorp-2 p {
    color: #2e2d2d;
    font-family: serif;
    text-align: justify;
}
.yorp-2 strong {
    color: #ff6600;
}
.adf-2 {
    margin-top:15px;
}
.error-op li {
    font-family: sans-serif;
    color: black;
    margin-bottom: 8px;
    font-size:15px;
}
.error-op {
    margin-top:15px;
}
.dsckl-2 {
    padding:2rem 0 3rem 0;
}
.yatr-3 h5 {
   font-size: 18px;
    padding-top: 3px;
    color: white;
    font-family: none;
}
.yatr-3 p {
   font-size: 14px;
    color: white;
    font-family: serif;
}
.yatr-3 {
    position: relative;
    margin-top: -67px;
    padding: 1px;
    background: rgba(254,90,203,0.4);
        border-radius: 4px;
}
    .yatr-3 i {
        margin-right:5px;
        color:white;
    }
    .yatr-3:hover {
        background: rgba(254, 90, 203, 0.69);
    }

/*copy primium label*/
.premiumlabel {
    position: absolute;
    right: -7px;
    top: -8px;
    z-index: 1;
    text-align: right;
}
.rad3 {
    border-radius: 3px;
}
.premiumlabel span {
    font-size: 13px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 23px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    background: #79A70A;
    background: linear-gradient(#F7C214 0%, #FC5E1F 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
   top: 20px;
    right: -5px;
}
    .premiumlabel span::before {
        content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #FC5E1F;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #FC5E1F;
    }
    .premiumlabel span::after {
        content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #FC5E1F;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #FC5E1F;
    }
.dcf-6 {
    margin-top:30px;
}
.nxz-2 {
    width:100%;
      height: 380px;
}
.suray-2 {
    padding:2rem 0;
}
    .suray-2 h4 {
        text-align: center;
    font-size: 20px;
    font-family: none;
    font-weight: 900;
    margin-bottom:40px;
    }
.kdsav p {
    color: black;
    font-family: none;
    text-align: justify;
}
.ddfg {
    margin-top:20px;
}
.pto-2 {
    padding:3rem 0 1rem 0;
}
.gallery-bg {
    background: url(../images/jogallery-bgjo.html) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    height: 400px;
}
.galler-2 {
    padding:3rem 0;
}
.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
    margin: 0;
}

.grid figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid figure figcaption>a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.grid figure h2 {
    word-spacing: -0.15em;
    font-weight: 300;
}

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

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

.grid figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
}



figure.effect-ravi {
    background: #ed00d0;
    margin: 0;
}

.grid [class^="col"] {
    padding: 2px;
}

figure.effect-ravi h2 {
        font-size: 27px;
}

figure.effect-ravi h2,
figure.effect-ravi p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
}

figure.effect-ravi figcaption::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 2px solid #fff;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(0, 0, 1);
    transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(0, 0, 1);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
}

figure.effect-ravi p {
    width: 100px;
    text-transform: none;
    font-size: 121%;
    line-height: 2;
}

figure.effect-ravi p a {
    color: #fff;
}

figure.effect-ravi p a:hover,
figure.effect-ravi p a:focus {
    opacity: 0.6;
}

figure.effect-ravi p a i {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-ravi p a:first-child i {
    -webkit-transform: translate3d(-60px, -60px, 0);
    transform: translate3d(-60px, -60px, 0);
}

figure.effect-ravi p a:nth-child(2) i {
    -webkit-transform: translate3d(60px, -60px, 0);
    transform: translate3d(60px, -60px, 0);
}

figure.effect-ravi p a:nth-child(3) i {
    -webkit-transform: translate3d(-60px, 60px, 0);
    transform: translate3d(-60px, 60px, 0);
}

figure.effect-ravi p a:nth-child(4) i {
    -webkit-transform: translate3d(60px, 60px, 0);
    transform: translate3d(60px, 60px, 0);
}

figure.effect-ravi:hover figcaption::before {
    opacity: 1;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
    transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
}

figure.effect-ravi:hover h2 {
    opacity: 0;
    -webkit-transform: translate3d(-50%, -50%, 0) scale3d(0.8, 0.8, 1);
    transform: translate3d(-50%, -50%, 0) scale3d(0.8, 0.8, 1);
}

figure.effect-ravi:hover p i:empty {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    /* just because it's stronger than nth-child */
    opacity: 1;
}
.galler-2 h4 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-family: none;
    text-decoration: underline;
    text-shadow: 0 0 10px #c4c4c4, 0 0 11px #adadad;
}
.cds-2 img {
    width:100%;
    height:350px;
}
.blog-bg-1 {
    background: url(../images/joblog-bgjo.html) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    height: 400px;
}
.bol-2 {
    width:100%;
}
.swng-2 p {
    font-family: none;
    color: black;
        text-align: justify;
}
.sr-2 {
    text-align: center;
    color: red;
    font-family: none;
    font-weight: 600;
}
.blo-uk-1 h4 {
    font-size: 18px;
 font-family: initial;
    color: red;
    margin-bottom: 25px;
  text-align:justify;
    line-height: 25px;
}
.blo-uk-1 img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0px 0px 8px 8px #0000000d;
    border: 2px double #f7f7f7;
}
.blo-uk-1 p {
    margin-top:15px;
}
.abo-bg {
        background-color: #fbfbfb;
}
.contact-bg-1 {
    background: url(../images/jocontact-bg-1jo.html) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    height: 400px;
}
.contact-section {
    padding:3rem 0 1rem;
}
.ycon {
    font-family: none;
    color: black;
}
.conhj-2 h3 {
    text-align: center;
    font-family: serif;
    margin-bottom: 15px;
    color: white;
    font-size: 24px;
}
.conhj-2 p a {
        color: white;
    font-size: 18px;
    font-family: initial;
}
.conhj-2 p i {
    margin-right: 5px;
    font-size: 18px;
        color: white;
}
.conhj-2 span {
    font-size: 20px;
    color: white;
        font-family: initial;
    line-height: 40px;
}
.inter-2 {
        color: white;
    font-family: initial;
    font-size: 18px;
}
.conhj-2 p {
    margin-bottom:0px;
}
.contact-hny-form textarea {
    min-height: 200px;
}
.real-contact h3 {
    text-align: center;
    font-size: 22px;
    font-family: initial;
    margin-bottom: 15px !important;
}
.conhj-2 {
    background-color: #535353;
    padding: 14px;
}
.coust-2 img {
    margin-top:60px;
        border-radius: 0px;
}
.map-1 {
    margin-bottom:50px;
}
